:root {
  --ink: #10100f;
  --ink-2: #191815;
  --ink-3: #27251f;
  --bronze: #bd8d50;
  --bronze-light: #d9b77d;
  --sand: #d5c1a3;
  --stone: #eee9e0;
  --paper: #f7f4ee;
  --olive: #4e574a;
  --line: rgba(20, 19, 16, 0.16);
  --white-line: rgba(255, 255, 255, 0.16);
  --display: "Alexandria", sans-serif;
  --body: "IBM Plex Sans Arabic", sans-serif;
  --utility: "Manrope", sans-serif;
  --page: min(92vw, 1440px);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--bronze); color: var(--ink); }

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: white;
  padding: 10px 16px;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 36px;
  padding: 6px 4vw;
  background: var(--bronze);
  color: #18140f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
}
.announcement span,
.announcement button { font-weight: 700; }
.announcement p { margin: 0; }
.text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: none;
  cursor: pointer;
}

.site-header {
  height: var(--header-h);
  padding: 0 4vw;
  background: rgba(16, 16, 15, 0.94);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: height 240ms ease, box-shadow 240ms ease;
}
.site-header.compact { height: 72px; box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12); }
.brand { height: 60px; display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: 48px; object-fit: contain; object-position: center top; }
.brand-copy { display: grid; line-height: 1.25; }
.brand-copy b { font-family: var(--display); font-size: 14px; font-weight: 500; }
.brand-copy small { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .04em; }
.desktop-nav { display: flex; gap: clamp(18px, 2.4vw, 42px); align-items: center; }
.desktop-nav a { position: relative; font-size: 14px; color: rgba(255,255,255,.72); transition: color 180ms ease; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -10px auto; width: 0; height: 1px; background: var(--bronze); transition: width 220ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.primary-button, .outline-button, .light-button {
  min-height: 48px;
  border: 1px solid transparent;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.primary-button { background: var(--bronze); color: #17130e; }
.primary-button:hover { background: var(--bronze-light); transform: translateY(-2px); }
.outline-button { background: transparent; border-color: rgba(255,255,255,.28); color: white; }
.outline-button:hover { background: white; color: var(--ink); transform: translateY(-2px); }
.outline-button.dark { border-color: var(--line); color: var(--ink); }
.outline-button.dark:hover { background: var(--ink); color: white; }
.light-button { background: white; color: var(--ink); }
.light-button:hover { background: var(--bronze-light); transform: translateY(-2px); }
.cart-button {
  height: 42px;
  border: 0;
  background: transparent;
  color: white;
  display: flex;
  gap: 7px;
  align-items: center;
  cursor: pointer;
}
.cart-button span { font-size: 12px; color: rgba(255,255,255,.65); }
.cart-button b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--ink); font-size: 11px; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--white-line); background: none; padding: 13px; cursor: pointer; }
.menu-button span { display: block; height: 1px; background: white; margin: 6px 0; transition: transform 180ms ease; }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: calc(36px + var(--header-h)) 0 0 0;
  padding: 50px 7vw;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-rows: 1fr auto;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 340ms cubic-bezier(.7,0,.2,1), opacity 260ms ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu nav { display: grid; align-content: start; }
.mobile-menu nav a { padding: 16px 0; font-family: var(--display); font-size: clamp(23px, 7vw, 36px); border-bottom: 1px solid var(--white-line); }
.mobile-contact { display: grid; }
.mobile-contact small { color: rgba(255,255,255,.5); }
.mobile-contact a { color: var(--bronze-light); font-family: var(--utility); }

.hero {
  min-height: calc(100vh - 124px);
  background: var(--ink);
  color: white;
  position: relative;
  display: grid;
  grid-template-columns: minmax(400px, .88fr) minmax(500px, 1.12fr);
  padding: clamp(40px, 6vw, 90px) max(4vw, calc((100vw - 1440px) / 2));
  gap: clamp(40px, 5vw, 90px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 53%);
}
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 24px 0 40px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-family: var(--display); font-weight: 600; letter-spacing: .04em; color: #665d51; }
.eyebrow i { width: 35px; height: 1px; background: var(--bronze); position: relative; }
.eyebrow i::before, .eyebrow i::after { content: ""; position: absolute; width: 1px; height: 7px; background: var(--bronze); top: -3px; }
.eyebrow i::before { right: 4px; } .eyebrow i::after { left: 4px; }
.eyebrow.light { color: rgba(255,255,255,.55); }
.hero h1 { margin: 30px 0 25px; font-family: var(--display); font-size: clamp(52px, 6.4vw, 98px); font-weight: 400; line-height: 1.12; letter-spacing: -.045em; }
.hero h1 em, .story h2 em, .identity h2 em, .quote h2 em { color: var(--bronze-light); font-style: normal; }
.hero-copy > p { max-width: 550px; margin: 0; color: rgba(255,255,255,.64); font-size: 17px; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.hero-proof { display: flex; gap: 0; margin-top: 58px; border-top: 1px solid var(--white-line); max-width: 560px; }
.hero-proof div { padding: 19px 0 0; flex: 1; border-left: 1px solid var(--white-line); }
.hero-proof div + div { padding-right: 24px; }
.hero-proof div:first-child { border-left: 0; }
.hero-proof strong { display: block; font-family: var(--display); font-size: 24px; font-weight: 500; }
.hero-proof span { font-size: 11px; color: rgba(255,255,255,.45); }
.hero-visual { align-self: center; position: relative; z-index: 2; }
.hero-frame { position: relative; height: min(66vh, 720px); min-height: 510px; overflow: hidden; background: #2a241e; }
.hero-frame::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.2); z-index: 2; pointer-events: none; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.002); transition: transform 1.2s cubic-bezier(.2,.6,.2,1); }
.hero-frame:hover img { transform: scale(1.045); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,7,6,.05), rgba(8,7,6,.55)); }
.frame-index { position: absolute; z-index: 3; top: 34px; left: 34px; font: 11px var(--utility); letter-spacing: .15em; }
.material-tag { position: absolute; z-index: 4; bottom: 36px; right: 36px; background: rgba(15,14,12,.88); backdrop-filter: blur(12px); display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.material-tag small, .material-tag b { display: block; }
.material-tag small { color: rgba(255,255,255,.45); font-size: 9px; }
.material-tag b { font: 10px var(--utility); margin-top: 3px; letter-spacing: .03em; }
.material-swatch { width: 38px; height: 38px; background: url("assets/spc-walnut.jpeg") center/cover; }
.measure-line { position: absolute; z-index: 3; top: 50%; left: 15px; width: 34%; border-top: 1px solid rgba(255,255,255,.5); }
.measure-line::before, .measure-line::after { content:""; width: 1px; height: 12px; top: -6px; background: rgba(255,255,255,.6); position: absolute; }
.measure-line::before { left: 0; } .measure-line::after { right: 0; }
.measure-line span { position: absolute; top: -22px; width: 100%; text-align: center; font-size: 8px; font-family: var(--utility); letter-spacing: .1em; }
.hero-caption { display: flex; justify-content: space-between; margin-top: 13px; color: rgba(255,255,255,.5); font-size: 10px; }
.hero-caption small { font-size: 10px; }
.hero-side-note { position: absolute; z-index: 3; left: 0; top: 50%; transform: translate(-45%, -50%) rotate(-90deg); color: rgba(255,255,255,.2); font: 9px var(--utility); letter-spacing: .25em; }

.craft-rail { background: var(--bronze); color: #19140f; overflow: hidden; height: 54px; display: flex; align-items: center; }
.rail-track { display: flex; align-items: center; gap: 38px; white-space: nowrap; min-width: max-content; animation: rail 28s linear infinite; font-family: var(--display); font-size: 12px; font-weight: 600; }
.rail-track i { width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); opacity: .5; }
@keyframes rail { to { transform: translateX(50%); } }

.section { width: var(--page); margin-inline: auto; padding: clamp(90px, 11vw, 170px) 0; }
.section-label { display: grid; grid-template-columns: 1fr 2fr; border-top: 1px solid var(--line); padding-top: 14px; font-size: 11px; color: #665d51; }
.section-label b { font-weight: 500; color: var(--ink); }
.story-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 8vw; margin-top: 75px; }
.story-title { position: relative; min-height: 300px; display: flex; align-items: flex-end; }
.story-title h2, .section-heading h2, .identity-intro h2, .process h2, .quote h2 { font-family: var(--display); font-weight: 400; line-height: 1.3; letter-spacing: -.035em; margin: 0; font-size: clamp(38px, 5vw, 72px); }
.display-mark { position: absolute; top: -35px; right: 0; font-family: var(--display); font-size: 260px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(189,141,80,.35); opacity: .8; }
.story-copy { border-right: 1px solid var(--line); padding-right: clamp(30px,4vw,64px); display: flex; flex-direction: column; justify-content: flex-end; }
.story-copy > p { font-size: 20px; color: #4d4841; margin: 0 0 35px; line-height: 1.9; }
.story-copy blockquote { margin: 0 0 35px; padding: 20px 24px 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); color: #756858; }
.arrow-link { border: 0; padding: 0; background: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 13px; font-weight: 600; width: max-content; }
.arrow-link span { color: var(--bronze); transition: transform 180ms ease; }
.arrow-link:hover span { transform: translateX(-6px); }

.services { border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: clamp(45px,6vw,85px); }
.section-heading .eyebrow { margin-bottom: 24px; }
.section-heading > p { width: min(440px, 40%); margin: 0; color: #6a645b; font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; min-height: 370px; border: 1px solid var(--line); padding: 34px; margin-left: -1px; display: flex; flex-direction: column; align-items: flex-start; background: var(--paper); transition: background 280ms ease, color 280ms ease, transform 280ms ease; }
.service-card:not(.featured):hover { background: var(--ink); color: white; transform: translateY(-8px); z-index: 2; }
.service-card.featured { grid-row: span 2; min-height: 741px; padding: 0; background: var(--ink); color: white; overflow: hidden; }
.service-photo { height: 60%; width: 100%; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-card.featured:hover .service-photo img { transform: scale(1.04); }
.service-content { height: 40%; padding: 32px 34px; position: relative; width: 100%; }
.service-number { font: 10px var(--utility); letter-spacing: .15em; color: var(--bronze); }
.service-card h3 { font-family: var(--display); font-size: 25px; font-weight: 500; line-height: 1.4; margin: auto 0 12px; }
.service-card p { color: #6c665e; margin: 0 0 18px; }
.service-card:hover p, .service-card.featured p { color: rgba(255,255,255,.55); }
.service-card.featured h3 { margin-top: 24px; }
.circle-link { position: absolute; left: 28px; bottom: 32px; width: 48px; height: 48px; border: 1px solid var(--white-line); color: white; background: none; border-radius: 50%; cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.circle-link:hover { background: var(--bronze); color: var(--ink); }
.service-icon { width: 80px; height: 80px; margin: 36px 0; position: relative; color: var(--bronze); }
.blueprint-icon { border: 1px solid currentColor; background-image: linear-gradient(rgba(189,141,80,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(189,141,80,.18) 1px, transparent 1px); background-size: 16px 16px; }
.blueprint-icon span { position: absolute; width: 42px; height: 28px; border: 1px solid currentColor; top: 24px; right: 18px; }
.blueprint-icon span::before { content: ""; position: absolute; height: 34px; border-right: 1px solid currentColor; top: -4px; right: 50%; transform: rotate(35deg); }
.layers-icon i { position: absolute; width: 62px; height: 22px; border: 1px solid currentColor; transform: skewX(-28deg); left: 8px; }
.layers-icon i:nth-child(1){top:11px}.layers-icon i:nth-child(2){top:28px}.layers-icon i:nth-child(3){top:45px}
.wall-icon { border-bottom: 1px solid currentColor; }
.wall-icon::before, .wall-icon::after, .wall-icon span { content:""; position:absolute; bottom:0; width:18px; border:1px solid currentColor; border-bottom:0; }
.wall-icon::before{right:5px;height:55px}.wall-icon::after{right:29px;height:72px}.wall-icon span:first-child{right:53px;height:45px}

.material-showcase { background: var(--olive); color: white; display: grid; grid-template-columns: 1.12fr .88fr; min-height: 720px; }
.material-image { min-height: 720px; position: relative; }
.material-image::after { content: "SPC / 05"; position: absolute; left: 24px; bottom: 20px; font: 10px var(--utility); letter-spacing:.2em; color: rgba(0,0,0,.55); }
.material-image img { width:100%; height:100%; object-fit:cover; }
.material-copy { padding: clamp(65px, 8vw, 130px); display:flex; flex-direction:column; justify-content:center; }
.material-copy h2 { font: 400 clamp(42px,5vw,72px)/1.3 var(--display); letter-spacing:-.04em; margin:28px 0; }
.material-copy > p { color: rgba(255,255,255,.68); font-size:17px; max-width:540px; }
.material-copy ul { list-style:none; padding:0; margin:34px 0; border-top:1px solid var(--white-line); }
.material-copy li { display:flex; gap:22px; padding:15px 0; border-bottom:1px solid var(--white-line); color:rgba(255,255,255,.75); }
.material-copy li span { font:10px var(--utility); color:var(--bronze-light); }
.material-copy .light-button { width:max-content; margin-top:8px; }

.store-heading .store-note { border-right: 2px solid var(--bronze); padding-right: 18px; display:grid; align-self:flex-end; }
.store-note b { font-size:13px; }.store-note span { font-size:11px;color:#787168; }
.store-toolbar { display:flex; justify-content:space-between; align-items:center; gap:30px; padding:16px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-bottom:40px; }
.filters { display:flex; gap:8px; flex-wrap:wrap; }
.filter, .project-tabs button { border:0; background:transparent; padding:8px 16px; cursor:pointer; color:#716a61; font-size:12px; }
.filter.active, .filter:hover, .project-tabs button.active, .project-tabs button:hover { background:var(--ink); color:white; }
.search-box { display:flex; align-items:center; gap:8px; border-bottom:1px solid var(--line); padding:5px 0; min-width:260px; }
.search-box span { font-size:22px; transform:rotate(-20deg); }
.search-box input { border:0; outline:0; background:transparent; width:100%; color:var(--ink); }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; min-height:400px; }
.product-card { position:relative; border:1px solid var(--line); background:#f4f0e9; overflow:hidden; transition:transform 260ms ease, box-shadow 260ms ease; }
.product-card:hover { transform:translateY(-8px); box-shadow:0 20px 40px rgba(29,24,18,.11); }
.product-card.hidden { display:none; }
.product-image { position:relative; aspect-ratio:1 / 1.15; overflow:hidden; background:#ded8ce; }
.product-image img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.product-card:hover .product-image img { transform:scale(1.045); }
.product-image::after { content:""; position:absolute; inset:auto 0 0; height:30%; background:linear-gradient(transparent,rgba(0,0,0,.2)); }
.product-category { position:absolute; top:14px; right:14px; z-index:2; background:rgba(247,244,238,.9); color:var(--ink); padding:5px 9px; font-size:9px; backdrop-filter:blur(6px); }
.product-quick { position:absolute; z-index:3; left:14px; bottom:14px; width:40px; height:40px; border:0; background:var(--ink); color:white; cursor:pointer; opacity:0; transform:translateY(8px); transition:.22s ease; }
.product-card:hover .product-quick { opacity:1; transform:translateY(0); }
.product-info { padding:19px 18px 20px; }
.product-code { color:#8a8278; font:9px var(--utility); letter-spacing:.12em; }
.product-info h3 { font:500 16px/1.5 var(--display); margin:7px 0 4px; }
.product-sub { color:#797269; font-size:11px; min-height:20px; }
.product-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:14px; margin-top:14px; border-top:1px solid var(--line); }
.product-price { display:grid; line-height:1.35; }.product-price small{font-size:8px;color:#8a8278}.product-price b{font:600 14px var(--display);}
.product-add { width:38px;height:38px;border:1px solid var(--line);background:transparent;cursor:pointer;font-size:20px;transition:.18s ease; }
.product-add:hover { background:var(--bronze);border-color:var(--bronze); }
.no-results { grid-column:1/-1; min-height:300px; display:grid; place-items:center; text-align:center; border:1px dashed var(--line); color:#777066; }
.store-footer { margin-top:38px; padding:26px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:30px; }
.store-footer p { margin:0; color:#69635a; }.store-footer p span{font-weight:700;color:var(--ink);}

.projects { border-top:1px solid var(--line); }
.project-tabs { align-self:flex-end;display:flex;gap:4px; }
.projects-layout { display:grid; grid-template-columns:1.15fr .85fr; grid-template-rows:420px 360px; gap:18px; }
.project-card { position:relative; border:0; padding:0; overflow:hidden; cursor:pointer; color:white; text-align:right; background:#222; }
.project-large { grid-row:span 2; }.project-tall { height:100%; }
.projects-layout > .project-card:nth-child(3), .projects-layout > .project-card:nth-child(4) { width:calc(50% - 9px); grid-row:2; }
.projects-layout > .project-card:nth-child(3) { grid-column:2; justify-self:start; }
.projects-layout > .project-card:nth-child(4) { grid-column:2; justify-self:end; }
.project-card img { width:100%;height:100%;object-fit:cover;transition:transform .9s ease,filter .4s ease; }
.project-card::after { content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(12,11,9,.82));transition:background .3s ease; }
.project-card:hover img { transform:scale(1.045);filter:saturate(.82); }
.project-overlay { position:absolute;z-index:2;right:25px;left:25px;bottom:24px;display:grid; }
.project-overlay small {font-size:9px;color:var(--bronze-light);}.project-overlay b{font:500 clamp(18px,2vw,28px) var(--display);margin:5px 0;}.project-overlay i{font-style:normal;font-size:9px;color:rgba(255,255,255,.55);}
.projects-cta { width:100%; margin-top:18px; min-height:100px; padding:0 38px; background:var(--bronze); border:0; display:grid; grid-template-columns:1fr 1fr auto; align-items:center; text-align:right; cursor:pointer; }
.projects-cta span{font-size:12px;}.projects-cta b{font:500 clamp(22px,2.4vw,34px) var(--display);}.projects-cta i{font-size:30px;font-style:normal;transition:transform .2s ease;}.projects-cta:hover i{transform:translateX(-8px);}

.process { width:100%; background:var(--ink);color:white;padding-inline:max(4vw,calc((100vw - 1440px)/2));display:grid;grid-template-columns:.78fr 1.22fr;gap:8vw; }
.process-intro { align-self:center; }.process-intro h2{margin:28px 0;}.process-intro>p{color:rgba(255,255,255,.55);max-width:470px;}
.process-steps { list-style:none;margin:0;padding:0;border-top:1px solid var(--white-line); }
.process-steps li { min-height:145px;border-bottom:1px solid var(--white-line);display:grid;grid-template-columns:90px 1fr;align-items:center;position:relative;overflow:hidden; }
.process-steps li::before{content:"";position:absolute;inset:0;background:var(--bronze);transform:translateX(105%);transition:transform .35s cubic-bezier(.7,0,.2,1);}
.process-steps li:hover::before{transform:translateX(0)}
.process-steps li>span,.process-steps li>div{position:relative;z-index:1;transition:color .25s ease}.process-steps li>span{font:10px var(--utility);color:var(--bronze-light)}
.process-steps b{font:500 28px var(--display);}.process-steps p{margin:4px 0 0;color:rgba(255,255,255,.5);}.process-steps li:hover,.process-steps li:hover p,.process-steps li:hover>span{color:var(--ink)}

.identity { overflow:hidden; }
.identity-intro { display:grid;grid-template-columns:1fr 1.2fr;column-gap:8vw;align-items:end;margin-bottom:70px; }
.identity-intro .eyebrow { grid-column:1/-1;margin-bottom:26px; }.identity-intro p{margin:0 0 8px;color:#6e675e;max-width:520px;}
.identity-directions { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.identity-card { border:1px solid var(--line);background:white;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease; }
.identity-card:hover { transform:translateY(-9px);box-shadow:0 24px 60px rgba(28,23,16,.12); }
.identity-visual { height:380px;position:relative;overflow:hidden;display:flex;flex-direction:column;align-items:center;justify-content:center; }
.identity-copy { padding:26px 28px 30px;min-height:290px;display:flex;flex-direction:column;align-items:flex-start; }
.identity-copy h3{font:500 26px var(--display);margin:14px 0 8px}.identity-copy p{color:#736c63;margin:0 0 24px;font-size:14px}.recommendation,.direction-label{font-size:9px;padding:5px 8px;border:1px solid currentColor;}.recommendation{color:#8a6537;background:#f0e2cb}.direction-label{color:#7c756c}
.swatches{display:flex;margin-top:auto;margin-bottom:22px}.swatches i{width:28px;height:28px;border-radius:50%;margin-left:-5px;border:2px solid white;}
.direction-one .identity-visual{background:#11110f;color:#ca9c5f}.direction-logo{font:300 122px var(--display);position:relative;z-index:2}.direction-lines{position:absolute;inset:45px;border:1px solid rgba(202,156,95,.35);background-image:linear-gradient(rgba(202,156,95,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(202,156,95,.12) 1px,transparent 1px);background-size:35px 35px}.identity-visual small{position:absolute;bottom:22px;left:25px;font:8px var(--utility);letter-spacing:.2em}.direction-one .swatches i:nth-child(1){background:#10100f}.direction-one .swatches i:nth-child(2){background:#bd8d50}.direction-one .swatches i:nth-child(3){background:#d5c1a3}.direction-one .swatches i:nth-child(4){background:#eee9e0}
.direction-two .identity-visual{background:#d8cbb3;color:#384033}.layer-mark{position:relative;width:120px;height:100px;margin-bottom:28px}.layer-mark i{position:absolute;width:100px;height:32px;right:10px;border:3px solid currentColor;transform:skewX(-28deg)}.layer-mark i:nth-child(1){top:0}.layer-mark i:nth-child(2){top:22px;right:20px}.layer-mark i:nth-child(3){top:44px;right:30px}.direction-two .identity-visual>b{font:500 38px var(--display)}.direction-two .identity-visual>small{position:static;font-family:var(--body);letter-spacing:0}.direction-two .swatches i:nth-child(1){background:#d8cbb3}.direction-two .swatches i:nth-child(2){background:#8d6749}.direction-two .swatches i:nth-child(3){background:#55604b}.direction-two .swatches i:nth-child(4){background:#f2ede3}
.direction-three .identity-visual{background:#111d26;color:#ddd9cf}.grid-logo{font:700 88px var(--utility);letter-spacing:-.12em;z-index:2}.tech-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(194,148,79,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(194,148,79,.13) 1px,transparent 1px);background-size:28px 28px;clip-path:polygon(0 0,100% 0,68% 100%,0 100%)}.direction-three .swatches i:nth-child(1){background:#111d26}.direction-three .swatches i:nth-child(2){background:#87909a}.direction-three .swatches i:nth-child(3){background:#bd7b38}.direction-three .swatches i:nth-child(4){background:#e2e0da}

.quote { width:100%;background:#292721;color:white;padding-inline:max(4vw,calc((100vw - 1440px)/2));display:grid;grid-template-columns:.72fr 1.28fr;gap:9vw; }
.quote-aside h2{margin:28px 0}.quote-aside>p{color:rgba(255,255,255,.55)}.quote-contact{display:grid;margin-top:70px;padding-top:25px;border-top:1px solid var(--white-line)}.quote-contact small{color:rgba(255,255,255,.45);margin-bottom:8px}.quote-contact a{width:max-content}.quote-contact a:first-of-type{font:500 20px var(--utility);color:var(--bronze-light)}.quote-contact a:last-of-type{font-size:12px;color:rgba(255,255,255,.6)}
.quote-form { display:grid;grid-template-columns:1fr 1fr;gap:26px 22px; }
.field { display:grid;gap:6px; }.field.full,.file-field.full{grid-column:1/-1}.field label{font-size:10px;color:rgba(255,255,255,.5)}
.field input,.field textarea,.field select{width:100%;background:transparent;color:white;border:0;border-bottom:1px solid rgba(255,255,255,.23);padding:10px 0;outline:0;border-radius:0;resize:vertical}.field select{color:rgba(255,255,255,.75)}.field select option{color:var(--ink)}.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--bronze)}
.file-field{border:1px dashed rgba(255,255,255,.25);min-height:100px;display:grid;grid-template-columns:auto 1fr;column-gap:16px;align-content:center;padding:18px 22px;cursor:pointer;position:relative}.file-field>span{grid-row:span 2;font-size:26px;color:var(--bronze-light)}.file-field b{font-size:12px}.file-field small{font-size:9px;color:rgba(255,255,255,.4)}.file-field input{position:absolute;opacity:0;pointer-events:none}.form-submit{width:100%;}.form-note{font-size:9px;color:rgba(255,255,255,.4);margin:auto 0;}

.site-footer{background:var(--ink);color:white;padding:75px 4vw 25px}.footer-main{max-width:1440px;margin:auto;display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:8vw;padding-bottom:65px}.footer-brand img{height:92px;width:76px;object-fit:contain}.footer-brand p{color:rgba(255,255,255,.48);font-size:13px;max-width:320px}.footer-links{display:grid;align-content:start;gap:10px}.footer-links small{color:var(--bronze-light);font-size:9px;margin-bottom:10px}.footer-links a,.footer-links span{font-size:12px;color:rgba(255,255,255,.58)}.footer-links a:hover{color:white}.footer-bottom{max-width:1440px;margin:auto;border-top:1px solid var(--white-line);padding-top:20px;display:flex;justify-content:space-between;gap:30px;font-size:9px;color:rgba(255,255,255,.36)}.footer-bottom div{display:flex;gap:18px}.proposal-badge{color:var(--bronze-light)}
.whatsapp-float{position:fixed;z-index:70;left:22px;bottom:22px;background:#efebe3;color:var(--ink);height:48px;padding:0 8px 0 16px;display:flex;align-items:center;gap:12px;box-shadow:0 12px 35px rgba(0,0,0,.18);font-size:11px}.whatsapp-float b{width:34px;height:34px;border-radius:50%;background:#1e9d61;color:white;display:grid;place-items:center;font-size:18px}

.page-overlay{position:fixed;z-index:300;inset:0;background:rgba(8,8,7,.62);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .25s ease}.page-overlay.active{opacity:1;pointer-events:auto}
.cart-drawer{position:fixed;z-index:310;left:0;top:0;bottom:0;width:min(470px,100%);background:var(--paper);transform:translateX(-105%);transition:transform .38s cubic-bezier(.7,0,.2,1);display:flex;flex-direction:column}.cart-drawer.open{transform:translateX(0)}.drawer-head{padding:28px 30px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between}.drawer-head small{font-size:9px;color:#837b71}.drawer-head h2{font:500 27px var(--display);margin:2px 0}.drawer-head button,.modal-close{width:40px;height:40px;border:1px solid var(--line);background:transparent;font-size:25px;cursor:pointer}.cart-items{overflow:auto;padding:8px 30px}.cart-item{display:grid;grid-template-columns:76px 1fr auto;gap:15px;align-items:center;padding:18px 0;border-bottom:1px solid var(--line)}.cart-item img{width:76px;height:76px;object-fit:cover}.cart-item h4{font:500 13px var(--display);margin:0}.cart-item small{font-size:9px;color:#7c756b}.cart-qty{display:flex;align-items:center;gap:8px;margin-top:8px}.cart-qty button{width:24px;height:24px;border:1px solid var(--line);background:transparent;cursor:pointer}.cart-qty span{font:11px var(--utility)}.cart-remove{border:0;background:none;color:#837a70;cursor:pointer;font-size:11px}.cart-empty{margin:auto;padding:40px;text-align:center;color:#777066}.cart-empty>span{font-size:48px;color:var(--bronze)}.cart-empty h3{font:500 22px var(--display);color:var(--ink)}.cart-empty .outline-button{margin:20px auto 0}.cart-summary{margin-top:auto;padding:25px 30px 30px;border-top:1px solid var(--line);background:white}.cart-summary>div{display:flex;justify-content:space-between}.cart-summary b{font:600 20px var(--display)}.cart-summary small{display:block;color:#8a8277;font-size:9px;margin:8px 0 18px}.cart-summary .primary-button{width:100%}

dialog{padding:0;border:0;box-shadow:0 30px 100px rgba(0,0,0,.3)}dialog::backdrop{background:rgba(8,8,7,.72);backdrop-filter:blur(6px)}.product-modal{width:min(980px,92vw);max-height:90vh;background:var(--paper);grid-template-columns:1fr 1fr;overflow:auto}.product-modal[open]{display:grid}.modal-close{position:absolute;z-index:4;top:16px;left:16px;background:rgba(247,244,238,.9)}.modal-image{min-height:610px;position:relative}.modal-image img{width:100%;height:100%;object-fit:cover}.modal-image>span{position:absolute;top:18px;right:18px;background:var(--ink);color:white;padding:6px 10px;font-size:9px}.modal-content{padding:70px 55px;display:flex;flex-direction:column;justify-content:center}.modal-content>small{font:9px var(--utility);letter-spacing:.15em;color:#847c71}.modal-content h2{font:500 clamp(30px,4vw,50px)/1.3 var(--display);margin:14px 0}.modal-content>p{color:#6d665d}.modal-specs{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--line);margin:24px 0}.modal-specs div{padding:14px 0;border-bottom:1px solid var(--line)}.modal-specs small,.modal-specs b{display:block}.modal-specs small{font-size:8px;color:#8a8278}.modal-specs b{font-size:12px}.modal-price{display:flex;align-items:end;justify-content:space-between;margin-bottom:20px}.modal-price span{font-size:10px;color:#857d72}.modal-price b{font:600 22px var(--display)}
.identity-modal{width:min(1050px,92vw);max-height:90vh;background:var(--paper);grid-template-columns:1.1fr .9fr;overflow:auto}.identity-modal[open]{display:grid}.identity-modal-visual{min-height:650px}.identity-modal-copy{padding:70px 55px;display:flex;flex-direction:column;justify-content:center}.identity-modal-copy>span{font:10px var(--utility);color:var(--bronze)}.identity-modal-copy h2{font:500 clamp(34px,5vw,58px) var(--display);margin:15px 0}.identity-modal-copy>p{color:#6c655c;font-size:16px}.identity-modal-copy>div{margin:20px 0 30px}.identity-modal-copy>div p{border-top:1px solid var(--line);padding:12px 0;margin:0;font-size:12px;display:flex;justify-content:space-between}.identity-modal-copy>div span{color:#81796e}
.identity-modal-visual.dir-1{background:#11110f;position:relative;display:grid;place-items:center;color:#c99b5e}.identity-modal-visual.dir-1::before{content:"تـ";font:300 180px var(--display);z-index:1}.identity-modal-visual.dir-1::after{content:"TAKWEEN ALJANOUB / ARCHITECTURAL LUXURY";position:absolute;bottom:30px;left:30px;font:8px var(--utility);letter-spacing:.18em}.identity-modal-visual.dir-2{background:#d8cbb3 url("assets/chevron-light.jpeg") center/cover;background-blend-mode:soft-light;display:grid;place-items:center;color:#3e4739}.identity-modal-visual.dir-2::before{content:"تكوين";font:500 72px var(--display);padding:30px 55px;border:4px double currentColor}.identity-modal-visual.dir-3{background-color:#111d26;background-image:linear-gradient(rgba(189,123,56,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(189,123,56,.16) 1px,transparent 1px);background-size:32px 32px;display:grid;place-items:center;color:#e2e0da}.identity-modal-visual.dir-3::before{content:"TK";font:700 130px var(--utility);letter-spacing:-.15em}
.toast{position:fixed;z-index:500;right:50%;bottom:30px;transform:translate(50%,30px);background:var(--ink);color:white;padding:13px 22px;box-shadow:0 18px 45px rgba(0,0,0,.25);font-size:12px;opacity:0;pointer-events:none;transition:.25s ease}.toast.show{opacity:1;transform:translate(50%,0)}

.reveal { opacity:0; transform:translateY(28px); transition:opacity .75s ease,transform .75s cubic-bezier(.2,.65,.2,1); }
.reveal.visible { opacity:1; transform:none; }.delay-1{transition-delay:.09s}.delay-2{transition-delay:.18s}.delay-3{transition-delay:.27s}

button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:2px solid var(--bronze-light);outline-offset:3px}

@media(max-width:1180px){
  .desktop-nav{display:none}.menu-button{display:block}.header-cta{display:none}.hero{grid-template-columns:.85fr 1.15fr}.hero h1{font-size:clamp(48px,7vw,74px)}.products-grid{grid-template-columns:repeat(3,1fr)}.services-grid{grid-template-columns:1fr 1fr}.service-card.featured{grid-row:span 2}.identity-visual{height:320px}.identity-copy{min-height:310px}
}
@media(max-width:860px){
  :root{--header-h:72px}.announcement{justify-content:space-between;gap:10px}.announcement p{display:none}.site-header{padding:0 5vw}.brand-copy{display:none}.brand img{height:49px}.hero{grid-template-columns:1fr;padding:60px 5vw 75px;gap:40px;min-height:auto}.hero-copy{padding:0}.hero h1{font-size:clamp(52px,14vw,78px)}.hero-frame{height:68vh;min-height:500px}.hero-side-note{display:none}.section{padding:90px 0}.section-label{grid-template-columns:1fr}.section-label b{margin-top:6px}.story-grid{grid-template-columns:1fr;gap:45px;margin-top:50px}.story-title{min-height:250px}.story-copy{padding-right:25px}.section-heading{display:grid;gap:26px}.section-heading>p{width:auto}.services-grid{grid-template-columns:1fr}.service-card.featured{grid-row:auto;min-height:650px}.material-showcase{grid-template-columns:1fr}.material-image{min-height:550px}.material-copy{padding:75px 6vw}.products-grid{grid-template-columns:repeat(2,1fr)}.projects-layout{grid-template-columns:1fr;grid-template-rows:580px 500px 340px 340px}.project-large{grid-row:auto}.projects-layout>.project-card:nth-child(3),.projects-layout>.project-card:nth-child(4){width:100%;grid-column:1;grid-row:auto;justify-self:auto}.projects-cta{grid-template-columns:1fr auto}.projects-cta span{display:none}.process{grid-template-columns:1fr;gap:60px}.identity-intro{grid-template-columns:1fr;gap:30px}.identity-directions{grid-template-columns:1fr}.identity-visual{height:440px}.identity-copy{min-height:250px}.quote{grid-template-columns:1fr;gap:60px}.footer-main{grid-template-columns:1.3fr 1fr 1fr}.footer-main>.footer-links:last-child{grid-column:1/-1}.product-modal,.identity-modal{grid-template-columns:1fr}.modal-image,.identity-modal-visual{min-height:460px}.modal-content,.identity-modal-copy{padding:55px 7vw}.footer-bottom{flex-wrap:wrap}
}
@media(max-width:560px){
  .announcement{padding-inline:5vw}.announcement span{font-size:10px}.site-header{top:0}.cart-button span{display:none}.mobile-menu{inset:calc(36px + var(--header-h)) 0 0}.hero{padding-top:50px}.hero h1{font-size:clamp(45px,14.2vw,68px)}.hero-copy>p{font-size:15px}.hero-actions{display:grid}.hero-proof{margin-top:38px}.hero-proof div+div{padding-right:12px}.hero-frame{height:62vh;min-height:430px}.material-tag{bottom:28px;right:28px}.section{width:90vw;padding:75px 0}.story-title h2,.section-heading h2,.identity-intro h2,.process h2,.quote h2{font-size:38px}.display-mark{font-size:190px}.story-copy>p{font-size:17px}.service-card{min-height:340px;padding:28px}.service-card.featured{min-height:610px}.material-image{min-height:430px}.material-copy{padding:65px 5vw}.material-copy h2{font-size:40px}.store-toolbar{align-items:stretch;display:grid}.search-box{min-width:0}.products-grid{grid-template-columns:1fr 1fr;gap:9px}.product-info{padding:13px 12px 15px}.product-info h3{font-size:13px}.product-sub{display:none}.product-bottom{margin-top:10px;padding-top:10px}.product-quick{opacity:1;transform:none}.store-footer{align-items:stretch;display:grid}.projects-layout{grid-template-rows:520px 430px 300px 300px}.project-tabs{overflow:auto}.projects-cta{padding:0 22px}.identity-visual{height:350px}.quote-form{grid-template-columns:1fr}.field,.field.full,.file-field.full{grid-column:1}.form-note{margin-top:-10px}.footer-main{grid-template-columns:1fr 1fr;gap:45px 30px}.footer-brand{grid-column:1/-1}.footer-main>.footer-links:last-child{grid-column:1/-1}.footer-bottom{display:grid}.proposal-badge{order:-1}.whatsapp-float span{display:none}.whatsapp-float{padding:7px}.modal-image,.identity-modal-visual{min-height:350px}.modal-content,.identity-modal-copy{padding:50px 24px}.modal-specs{grid-template-columns:1fr}.cart-drawer{width:100%}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}.rail-track{animation:none}.reveal{opacity:1;transform:none;transition:none}.hero-frame img,.project-card img{transition:none}*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
}
