/* ============================================================
   QuadrAngle — Editorial timber palette
   System: serif display (Cormorant) + body (Inter), Arabic (Noto Naskh)
   Palette: warm wood-led, single bronze accent
   ============================================================ */

:root {
  --ink:      #1a140e;   /* primary text — espresso */
  --ink-soft: #3a2e22;
  --walnut:   #4a2f1f;   /* deep wood */
  --oak:      #8a6a44;   /* mid-tone */
  --bronze:   #b08456;   /* accent — pulled from product hardware */
  --sand:     #e6d8bd;
  --ivory:    #f5efe3;   /* page bg */
  --paper:    #fbf7ee;   /* surface */
  --line:     #d8c9ad;
  --line-soft:#ece3cf;
  --mute:     #7b6852;
  --shadow:   0 1px 2px rgba(26,20,14,.04), 0 12px 36px -12px rgba(26,20,14,.18);
  --shadow-lg:0 24px 60px -20px rgba(26,20,14,.28);

  --maxw: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);

  --f-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --f-arabic: "Noto Naskh Arabic", "Amiri", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--ivory);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body[dir="rtl"] { font-family: var(--f-arabic), var(--f-body); }
body[dir="rtl"] .display, body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3 {
  font-family: var(--f-arabic), var(--f-display);
  letter-spacing: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak);
}
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* ---------- Layout ---------- */
.shell { max-width: 100%; margin: 0 auto; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-block: clamp(72px, 8vw, 120px); }
.section--tight { padding-block: clamp(56px, 6vw, 84px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,239,227,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.nav__logo svg { height: 30px; width: auto; color: var(--ink); }
.nav__menu {
  display: flex; gap: 28px; justify-content: center;
  font-size: 13.5px; letter-spacing: 0.01em;
}
.nav__menu a { position: relative; padding: 8px 2px; color: var(--ink-soft); transition: color .2s; }
.nav__menu a:hover { color: var(--ink); }
.nav__menu a.active { color: var(--ink); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--bronze);
}
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; align-items: center; gap: 1px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em;
  border: 1px solid var(--line); border-radius: 999px; padding: 2px;
  background: var(--paper);
}
.lang button {
  padding: 5px 11px; border-radius: 999px; color: var(--mute);
  transition: all .2s;
}
.lang button.on { background: var(--ink); color: var(--ivory); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: var(--walnut); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper); border-color: var(--oak); }
.btn--wa { background: #128c4f; color: #fff; }
.btn--wa:hover { background: #0e7a44; }
.btn--lg { padding: 14px 26px; font-size: 14px; }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(3px); }
body[dir="rtl"] .btn:hover .arr { transform: translateX(-3px) scaleX(-1); }

/* ---------- Mobile menu button ---------- */
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__left { position: relative; }
.hero__caption {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero__caption .dot { width: 6px; height: 6px; background: var(--bronze); border-radius: 50%; }
.hero__title {
  font-size: clamp(54px, 7.4vw, 108px);
  margin: 0 0 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--walnut);
}
.hero__sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
}
.hero__ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero__meta .stat {
  display: flex; flex-direction: column; gap: 2px;
}
.hero__meta .stat .n {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
}
.hero__meta .stat .l {
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
  font-family: var(--f-mono);
}

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(26,20,14,.88);
  color: var(--ivory);
  padding: 12px 18px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  display: flex; align-items: center; gap: 10px;
  border-radius: 2px;
}
.hero__tag .price { color: var(--sand); }
.hero__deco {
  position: absolute;
  right: 0; top: 28px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  color: var(--mute);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ---------- Marquee / type strip ---------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 64px;
  animation: scroll-x 60s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--f-display);
  font-size: 26px;
  font-style: italic;
  color: var(--walnut);
  display: inline-flex; align-items: center; gap: 64px;
  white-space: nowrap;
}
.marquee span::after {
  content: ""; width: 6px; height: 6px; background: var(--bronze); border-radius: 50%;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section header ---------- */
.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
.section__head .title {
  font-size: clamp(36px, 4.5vw, 60px);
  margin: 12px 0 0;
}
.section__head .desc { color: var(--mute); max-width: 50ch; font-size: 14.5px; }

/* ---------- Collections filter & grid ---------- */
.filterbar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.filterbar button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ink-soft);
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.filterbar button:hover { border-color: var(--oak); color: var(--ink); }
.filterbar button.on {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}
.filterbar .count {
  font-family: var(--f-mono); font-size: 10px;
  opacity: .7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}
.card {
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .35s ease;
  text-align: start;
}
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  border-radius: 2px;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(26,20,14,.92);
  color: var(--ivory);
  padding: 10px 14px;
  font-size: 12px; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateY(8px);
  transition: all .25s;
  border-radius: 2px;
}
.card:hover .card__quick { opacity: 1; transform: translateY(0); }
.card__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--paper);
  color: var(--mute);
  padding: 4px 10px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.card__body {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.card__name {
  font-family: var(--f-display);
  font-size: 21px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.card__price {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--walnut);
  white-space: nowrap;
}
.card__price.enq { color: var(--mute); }
.card__sub {
  padding-top: 4px;
  font-size: 12.5px; color: var(--mute);
}

/* ---------- Story / craft section ---------- */
.story {
  background: var(--ink);
  color: var(--ivory);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story .eyebrow { color: var(--bronze); }
.story h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 18px 0 28px;
  color: var(--ivory);
}
.story h2 em { font-style: italic; color: var(--sand); }
.story p { font-size: 16px; line-height: 1.7; color: #d6c8ad; max-width: 52ch; }
.story p + p { margin-top: 16px; }
.story__sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
}
.story__sig .name {
  font-family: var(--f-display); font-size: 22px; font-style: italic;
  color: var(--ivory);
}
.story__sig .role {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--bronze); text-transform: uppercase;
}
.story__image {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 2px;
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__numbers {
  position: absolute; right: -28px; bottom: 28px;
  background: var(--bronze);
  color: var(--ink);
  padding: 22px 26px;
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  border-radius: 2px;
}
.story__numbers .n { font-size: 54px; line-height: 1; }
.story__numbers .l { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

/* ---------- Bespoke process ---------- */
.bespoke__inner {
  display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(40px, 6vw, 96px);
}
.bespoke__lead h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 14px 0 24px;
}
.bespoke__lead p {
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.7;
  max-width: 44ch;
}
.bespoke__lead .btn { margin-top: 28px; }
.steps {
  display: grid; gap: 18px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--oak);
  line-height: 1;
}
.step h3 { font-family: var(--f-display); font-size: 24px; margin: 0 0 6px; font-weight: 500; }
.step p { color: var(--mute); margin: 0; font-size: 13.5px; line-height: 1.6; max-width: 52ch; }
.step__t {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--mute);
}

/* ---------- Featured spotlight ---------- */
.spotlight {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.spot {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.spot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.spot:hover img { transform: scale(1.05); }
.spot__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(26,20,14,.85));
  color: var(--ivory);
}
.spot__caption .t { font-family: var(--f-display); font-size: 26px; font-style: italic; }
.spot__caption .m {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sand); margin-top: 4px;
}

/* ---------- Projects ---------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.project { display: flex; flex-direction: column; gap: 14px; }
.project__img {
  aspect-ratio: 5 / 4;
  background: var(--sand);
  overflow: hidden;
  border-radius: 2px;
}
.project__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.project:hover .project__img img { transform: scale(1.04); }
.project__meta {
  display: flex; justify-content: space-between; align-items: baseline;
}
.project__meta .t { font-family: var(--f-display); font-size: 24px; }
.project__meta .y { font-family: var(--f-mono); font-size: 11px; color: var(--mute); }
.project__cat {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bronze);
}

/* ---------- Showroom ---------- */
.showroom__inner {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.showroom__img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.showroom__img img { width: 100%; height: 100%; object-fit: cover; }
.showroom__panel {
  display: flex; flex-direction: column;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.showroom__panel h2 { font-size: clamp(34px, 4vw, 52px); margin: 12px 0 18px; }
.showroom__rows {
  margin-top: 24px;
  display: grid; gap: 16px;
}
.showroom__row {
  display: grid; grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.showroom__row .k {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
  padding-top: 3px;
}
.showroom__row .v { color: var(--ink); }
.showroom__row .v small { color: var(--mute); font-size: 12px; }
.showroom__ctas { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

/* ---------- Heritage block ---------- */
.heritage {
  background: var(--walnut);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.heritage::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(176,132,86,.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,235,200,.05), transparent 50%);
  pointer-events: none;
}
.heritage__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.heritage h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin: 14px 0 24px;
  color: var(--ivory);
}
.heritage h2 em { color: var(--sand); font-style: italic; }
.heritage p { color: #e5d4b3; max-width: 50ch; line-height: 1.7; font-size: 15.5px; }
.heritage__meta {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,227,.18);
  font-size: 13px;
}
.heritage__meta .k {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bronze);
  margin-bottom: 4px;
}
.heritage__mark {
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
  border: 1px solid rgba(245,239,227,.22);
  border-radius: 2px;
  aspect-ratio: 1 / 1;
  position: relative;
}
.heritage__mark svg { width: 60%; height: auto; color: var(--sand); }
.heritage__mark .lbl {
  position: absolute; bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em;
  color: var(--bronze); text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding-top: 80px;
  padding-bottom: 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,227,.12);
}
.footer h4 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 13.5px; }
.footer ul a { color: #cdbe9d; transition: color .2s; }
.footer ul a:hover { color: var(--ivory); }
.footer__brand p { color: #b5a17e; font-size: 13px; max-width: 38ch; line-height: 1.6; margin-top: 18px; }
.footer__brand .logo { color: var(--ivory); }
.footer__brand .logo svg { height: 36px; }
.footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  color: #978362;
}
.footer__bottom .legal { display: flex; gap: 18px; }

/* ---------- WhatsApp FAB ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 60;
  background: #128c4f;
  color: white;
  border-radius: 999px;
  padding: 13px 20px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 12px 30px -8px rgba(18,140,79,.5);
  transition: transform .2s;
}
.fab:hover { transform: translateY(-2px); }
body[dir="rtl"] .fab { right: auto; left: 22px; }

/* ---------- Modal (Product detail / Enquire) ---------- */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(26,20,14,.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--ivory);
  border-radius: 2px;
  width: min(1100px, 96vw);
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: rise .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__media {
  background: var(--paper);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  padding: 28px;
}
.modal__media img { width: 100%; height: 100%; object-fit: contain; }
.modal__body {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--paper);
  transition: all .2s;
}
.modal__close:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.modal__cat {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bronze);
  margin-bottom: 12px;
}
.modal h3 {
  font-family: var(--f-display);
  font-size: 40px; line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 400;
}
.modal__price {
  font-family: var(--f-mono); font-size: 14px; letter-spacing: .03em;
  color: var(--walnut);
  padding: 12px 16px;
  background: var(--paper);
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 2px;
  margin-bottom: 22px;
  align-self: flex-start;
  border: 1px solid var(--line-soft);
}
.modal__price .label { color: var(--mute); font-size: 11px; }
.modal__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.specs { display: grid; gap: 12px; margin-bottom: 28px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.specs__row { display: grid; grid-template-columns: 110px 1fr; font-size: 13px; gap: 16px; padding: 6px 0; }
.specs__row .k {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute);
  padding-top: 1px;
}
.modal__form {
  margin-top: auto;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.modal__form .btn { flex: 1; justify-content: center; }

/* Enquire form (modal variant) */
.enquire-form {
  display: grid; gap: 14px;
  margin-top: 24px;
}
.enquire-form label { display: grid; gap: 6px; font-size: 12px; color: var(--mute); font-family: var(--f-mono); letter-spacing: .06em; text-transform: uppercase; }
.enquire-form input, .enquire-form textarea, .enquire-form select {
  font: inherit; font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s;
}
.enquire-form input:focus, .enquire-form textarea:focus, .enquire-form select:focus {
  outline: 0; border-color: var(--oak);
}
.enquire-form textarea { min-height: 110px; resize: vertical; }
.enquire-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Sent state */
.sent {
  text-align: center; padding: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.sent .check {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--bronze); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 8px;
}

/* ---------- Mobile / responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .story__inner, .bespoke__inner, .showroom__inner, .heritage__inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight__grid { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .nav__burger {
    display: inline-flex; width: 38px; height: 38px;
    align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 999px;
  }
  .modal { grid-template-columns: 1fr; }
  .modal__media { aspect-ratio: 4 / 3; }
}

/* ---------- RTL minor flips ---------- */
body[dir="rtl"] .hero__deco { right: auto; left: 0; writing-mode: vertical-lr; }
body[dir="rtl"] .step { grid-template-columns: auto 1fr 56px; }

/* ---------- Tweaks panel docking ---------- */
.tweak-pill { font-family: var(--f-mono); font-size: 11px; }
