/* ============================================================
   AL JAWAL TENTS & WEDDING STAGES
   Champagne · Black · Ivory — Cormorant Garamond + Inter Tight
   Sharjah, UAE · Since 2002
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --sand:        #FAF5E8;
  --sand-2:      #F0E8D0;
  --sand-3:      #E5D9BC;
  --velvet:      #0C0A08;
  --velvet-2:    #181410;
  --ivory:       #F5EDD8;
  --ink:         #1A1612;
  --ink-soft:    #2E281F;
  --gold:        #C9A45B;
  --gold-lt:     #DCC07A;
  --gold-deep:   #8A6A2A;
  --slate:       #7A6C5D;
  --slate-soft:  #B6A89A;
  --rule:        rgba(26,22,18,0.11);
  --rule-dark:   rgba(245,237,216,0.1);

  --serif:    "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:     "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:     "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --f-arabic: "Noto Naskh Arabic", "Arial Unicode MS", serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(60px, 8vw, 140px);
  --max:   1440px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.55;
  mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
em, .em { font-style: italic; font-family: var(--serif); color: var(--gold-deep); }

.h-hero    { font-size: clamp(48px, 8.5vw, 128px); line-height: 0.94; letter-spacing: -0.025em; }
.h-display { font-size: clamp(40px, 6vw, 88px);  line-height: 1.0; }
.h-section { font-size: clamp(32px, 4.4vw, 64px); line-height: 1.05; }
.h-sub     { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; }

.lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.body { font-size: 16px; line-height: 1.72; color: var(--ink-soft); }
.body + .body { margin-top: 18px; }
.body.dropcap::first-letter { font-family: var(--serif); font-size: 3.2em; float: left; line-height: 0.78; margin: 4px 10px 0 0; color: var(--gold-deep); }
.signoff { margin-top: 32px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); }

.eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--slate); display: block;
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--champagne-lt { color: var(--gold-lt); }

.plate-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate);
}

/* ---------- Layout ---------- */
.section { padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section--sand-2 { background: var(--sand-2); }
.section--velvet { background: var(--velvet); color: var(--ivory); }
.section--velvet h1,.section--velvet h2,.section--velvet h3 { color: var(--ivory); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 50px; padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.section-head__left { max-width: 620px; }
.section-head__left .eyebrow { margin-bottom: 14px; }
.section-head__right { text-align: right; flex-shrink: 0; }
.section-head__right .plate-num { display: block; margin-bottom: 4px; }

@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head__right { text-align: left; }
}

/* ---------- Announce bar ---------- */
.announce {
  background: var(--velvet); color: rgba(245,237,216,0.7);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 10px var(--pad-x);
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 101;
}
.announce .dot { opacity: 0.35; }
.announce .gold { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(12,10,8,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,237,216,0.08);
  transition: background 240ms var(--ease);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 17px;
  letter-spacing: 0.02em; color: var(--ivory);
}
.nav__monogram {
  width: 34px; height: 34px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  color: var(--velvet); flex-shrink: 0;
}
.nav__wordmark { font-size: 15px; }
.nav__wordmark em { color: var(--gold-lt); font-style: italic; }

.nav__links {
  display: flex; gap: 36px; list-style: none;
}
.nav__links a {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,237,216,0.75);
  transition: color 200ms ease; padding: 4px 0;
}
.nav__links a:hover { color: var(--gold-lt); }

.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  font-family: var(--f-arabic); font-size: 13px;
  color: rgba(245,237,216,0.7); border: 1px solid rgba(245,237,216,0.22);
  padding: 6px 12px; transition: all 200ms ease; letter-spacing: 0;
}
.lang-toggle:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--velvet);
  padding: 11px 20px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav__toggle { display: none; }

@media (max-width: 1020px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: block; background: var(--gold); color: var(--velvet);
    padding: 10px 16px; font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
  }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; background: var(--velvet); color: var(--ivory);
  z-index: 200; display: none; flex-direction: column; padding: 60px var(--pad-x);
}
.drawer.is-open { display: flex; }
.drawer__close { align-self: flex-end; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); }
.drawer__brand { margin-top: 40px; font-family: var(--serif); font-size: 22px; color: var(--ivory); display: flex; align-items: center; gap: 12px; }
.drawer__monogram { background: var(--gold); color: var(--velvet); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; }
.drawer__links { list-style: none; margin-top: 50px; display: flex; flex-direction: column; gap: 20px; }
.drawer__links a { font-family: var(--serif); font-size: 34px; color: var(--ivory); }
.drawer__cta {
  margin-top: auto; display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  background: var(--gold); color: var(--velvet);
  padding: 18px 28px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--ink); color: var(--ivory);
  border: 1px solid var(--ink);
  transition: all 220ms var(--ease);
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold { background: var(--gold); color: var(--velvet); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn--large { padding: 20px 36px; font-size: 11px; }

.btn__arrow { display: inline-block; width: 12px; height: 12px; position: relative; }
.btn__arrow::after { content: "→"; font-family: var(--mono); position: absolute; top: -3px; left: 0; transition: transform 200ms ease; }
.btn:hover .btn__arrow::after { transform: translateX(4px); }

/* ---------- Reveal animations (fail-open) ---------- */
[data-reveal].reveal--hidden { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
[data-reveal].reveal--show   { opacity: 1; transform: translateY(0); }
.img-reveal { overflow: hidden; }
.img-reveal .img-fill, .img-reveal img { transition: transform 800ms var(--ease); }
.img-reveal.is-revealed .img-fill, .img-reveal.is-revealed img { transform: scale(1); }
[data-reveal-stagger] > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-staggered > * { animation: staggerIn 500ms var(--ease) both; }
@keyframes staggerIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  [data-reveal].reveal--hidden { opacity: 1; transform: none; }
  [data-reveal-stagger].is-staggered > * { animation: none; }
}

/* ---------- Hero (dark, split) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 0; padding-top: calc(72px + 38px); /* nav + announce */
  background: var(--velvet); z-index: 2;
}
.hero__copy {
  padding: clamp(50px, 7vw, 110px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero__masthead {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 70px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,237,216,0.12);
}
.hero__masthead-left { display: flex; flex-direction: column; gap: 5px; }
.hero__masthead-right { text-align: right; display: flex; flex-direction: column; gap: 5px; }
.hero__masthead .plate-num { color: rgba(245,237,216,0.4); }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6.8vw, 108px);
  line-height: 0.94; letter-spacing: -0.028em; font-weight: 400;
  color: var(--ivory);
}
.hero__title em { color: var(--gold-lt); font-style: italic; }

.hero__sub {
  margin-top: 38px; max-width: 38ch;
  font-size: clamp(16px, 1.2vw, 18px); line-height: 1.6;
  color: rgba(245,237,216,0.72);
}
.hero__ctas { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ctas .btn--ghost { border-color: rgba(245,237,216,0.3); color: var(--ivory); }
.hero__ctas .btn--ghost:hover { background: rgba(245,237,216,0.1); }
.hero__meta {
  position: absolute; bottom: 40px;
  left: clamp(28px,5vw,80px); right: clamp(28px,5vw,80px);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,237,216,0.35);
  padding-top: 14px; border-top: 1px solid rgba(245,237,216,0.1);
}
.hero__image {
  position: relative; overflow: hidden; min-height: 100svh;
  background: var(--velvet-2);
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(201,164,91,0.12);
}
.hero__stage-art { width: 70%; max-width: 340px; opacity: 0.9; }
.hero__badge {
  position: absolute; top: 40px; right: 40px; z-index: 3;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(201,164,91,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); text-align: center;
  line-height: 1.6; animation: badgeSpin 40s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { min-height: 55vw; order: -1; }
  .hero__copy { padding: 40px 24px 80px; }
  .hero__meta { position: static; margin-top: 50px; }
}

/* ---------- Heritage bar (stats) ---------- */
.heritage { background: var(--gold); z-index: 2; position: relative; }
.heritage__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max); margin: 0 auto;
}
.heritage__cell {
  padding: 36px clamp(20px,3vw,48px);
  border-right: 1px solid rgba(26,22,18,0.15);
  text-align: center;
}
.heritage__cell:last-child { border-right: none; }
.heritage__cell .num {
  font-family: var(--serif); font-size: clamp(36px,4vw,62px);
  font-weight: 400; color: var(--velvet); line-height: 1;
}
.heritage__cell .num--aed {
  font-size: clamp(22px,2.4vw,34px); letter-spacing: 0.05em;
  font-family: var(--mono); font-weight: 500;
}
.heritage__cell .label {
  margin-top: 8px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(26,22,18,0.6);
}
@media (max-width: 720px) {
  .heritage__grid { grid-template-columns: repeat(2,1fr); }
  .heritage__cell:nth-child(2) { border-right: none; }
}

/* ---------- Story split ---------- */
.story-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 60px; align-items: start;
}
.story-split__image { position: relative; }
.img-fill {
  width: 100%; aspect-ratio: 3/4;
  background: var(--velvet-2); position: relative; overflow: hidden;
}
.img-fill--story {
  background: linear-gradient(145deg, var(--velvet) 0%, #2a1e0a 60%, #4a3010 100%);
}
.img-fill--story::after {
  content: "";
  position: absolute; inset: 20px;
  border: 1px solid rgba(201,164,91,0.2);
  pointer-events: none;
}
.story-split__image .cap {
  display: block; margin-top: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate);
}
.story-split__copy { padding-top: 8px; }
.story-split__copy .h-display em { color: var(--gold-deep); }

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .img-fill { aspect-ratio: 16/9; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--rule); padding: 14px 0; background: var(--sand-2); position: relative; z-index: 2; }
.marquee__track {
  display: flex; gap: 24px; white-space: nowrap;
  width: max-content; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate);
  animation: marq 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { color: var(--slate); }
.marquee__sep  { color: var(--gold-deep); }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Stage packages (designer card reuse) ---------- */
.designers {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--rule);
}
.designer-card {
  background: var(--sand); padding: 0 0 28px 0;
  display: flex; flex-direction: column; overflow: hidden;
}
.designer-card__thumb {
  width: 100%; aspect-ratio: 3/2; flex-shrink: 0;
}
/* Package placeholder gradients */
.pkg--royal    { background: linear-gradient(145deg, #0c0a08 0%, #2d1f08 50%, #c9a45b 100%); }
.pkg--tent     { background: linear-gradient(160deg, #0c0a08 0%, #1e1408 40%, #8a6a2a 100%); }
.pkg--majlis   { background: linear-gradient(120deg, #1a1208 0%, #3d2c10 60%, #c9a45b88 100%); }
.pkg--garden   { background: linear-gradient(150deg, #0e1208 0%, #1c2410 50%, #6a8a2a 100%); }
.pkg--ballroom { background: linear-gradient(140deg, #0c0a14 0%, #1e1a30 50%, #8a6a2a 100%); }
.pkg--corporate{ background: linear-gradient(130deg, #0c0a08 0%, #24201c 60%, #c9a45b66 100%); }

.designer-card__top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 22px 8px; gap: 8px;
}
.designer-card__name {
  font-family: var(--serif); font-size: 22px; line-height: 1.1;
  font-weight: 400; color: var(--ink);
}
.designer-card__origin {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); flex-shrink: 0;
}
.designer-card__sig  { padding: 0 22px; font-size: 14px; line-height: 1.55; color: var(--slate); flex: 1; }
.designer-card__price{ padding: 14px 22px 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gold-deep); }

@media (max-width: 980px) { .designers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .designers { grid-template-columns: 1fr; } }

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 3px;
}
.gallery-grid__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }
.gallery-grid__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 300ms ease;
}
.gallery-grid__item:hover::after { opacity: 1; }
.gallery-grid__tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,237,216,0.9);
  opacity: 0; transition: opacity 300ms ease;
}
.gallery-grid__item:hover .gallery-grid__tag { opacity: 1; }

/* Gallery placeholder gradients */
.g1 { background: linear-gradient(135deg, #0c0a08 0%, #2d1f08 40%, #4a3010 70%, #c9a45b 100%); }
.g2 { background: linear-gradient(160deg, #0c0a08 0%, #2a1e0a 60%, #8a6a2a 100%); }
.g3 { background: linear-gradient(120deg, #1a1208 0%, #3d2c0e 100%); }
.g4 { background: linear-gradient(155deg, #0c0a08 0%, #1e1608 50%, #5a3e10 90%, #c9a45b 100%); }
.g5 { background: linear-gradient(200deg, #1a1612 0%, #c9a45b22 100%); }
.g6 { background: linear-gradient(145deg, #0c0a08 0%, #1e160a 50%, #3d2c0e 80%, #c9a45b 100%); }
.g7 { background: linear-gradient(170deg, #141008 0%, #8a6a2a 100%); }
.g8 { background: linear-gradient(155deg, #0c0a08 0%, #c9a45b22 100%); }

/* Gallery placeholder inner glow */
.g1::before,.g4::before,.g6::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(201,164,91,0.18) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gallery-grid__item--tall { grid-row: span 1; }
  .gallery-grid__item--wide { grid-column: span 1; }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

/* ---------- Enquiry (dark tryon panel) ---------- */
.tryon {
  background: var(--velvet); color: var(--ivory);
  padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2;
}
.tryon__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.tryon__left h2 { color: var(--ivory); }
.tryon__left .h-section em { color: var(--gold-lt); }
.tryon__list {
  list-style: none; margin-top: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.tryon__list li { display: flex; gap: 14px; align-items: flex-start; }
.tryon__list .tag {
  flex-shrink: 0; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(201,164,91,0.15); color: var(--gold-lt);
  padding: 5px 10px; margin-top: 2px;
}
.tryon__list .text { font-size: 14px; line-height: 1.6; color: rgba(245,237,216,0.72); }
.contact__phones {
  margin-top: 40px; display: flex; flex-direction: column; gap: 14px;
}
.phone-link {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--serif); font-size: 24px; color: var(--ivory);
  letter-spacing: -0.01em; transition: color 200ms ease;
}
.phone-link:hover { color: var(--gold-lt); }
.phone-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,237,216,0.4);
}

.tryon__card {
  background: rgba(245,237,216,0.04); border: 1px solid rgba(245,237,216,0.12);
  padding: 36px;
}
.tryon__card h3 { font-family: var(--serif); font-size: 26px; color: var(--ivory); margin-bottom: 10px; }
.price-line { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 28px; }

.appt-form { display: flex; flex-direction: column; gap: 12px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(245,237,216,0.06); border: 1px solid rgba(245,237,216,0.15);
  color: var(--ivory); font-family: var(--sans); font-size: 14px;
  padding: 14px 16px; outline: none;
  transition: border-color 200ms ease;
  appearance: none;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(245,237,216,0.35); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row select { cursor: pointer; }
.form-row select option { background: var(--velvet); color: var(--ivory); }
.form-row textarea { resize: vertical; min-height: 90px; }

@media (max-width: 900px) {
  .tryon__grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--rule); margin-top: 0; }
.process__step { background: var(--sand); padding: 36px 28px; }
.process__num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold-deep); display: block; margin-bottom: 14px; }
.process__title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 12px; font-weight: 400; }
.process__desc { font-size: 14px; line-height: 1.65; color: var(--slate); }
@media (max-width: 800px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { padding: 28px 24px; border: 1px solid var(--rule); background: var(--sand); }
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; margin-bottom: 14px; }
.review__quote { font-family: var(--serif); font-size: 16px; line-height: 1.65; color: var(--ink); font-style: italic; }
.review__attr { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.review__attr span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.review__src { color: var(--gold-deep); }
@media (max-width: 800px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- Instagram strip ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 3px; }
.ig-tile { aspect-ratio: 1; overflow: hidden; display: block; }
.ig1 { background: linear-gradient(135deg, #0c0a08, #4a3010, #c9a45b); }
.ig2 { background: linear-gradient(160deg, #0c0a08, #2a1e0a, #8a6a2a); }
.ig3 { background: linear-gradient(120deg, #1a1208, #3d2c0e); }
.ig4 { background: linear-gradient(200deg, #1a1612, #2d1f08, #c9a45b44); }
.ig5 { background: linear-gradient(145deg, #0c0a08, #3d2c0e, #c9a45b); }
.ig6 { background: linear-gradient(170deg, #141008, #8a6a2a); }
@media (max-width: 600px) { .ig-strip { grid-template-columns: repeat(3,1fr); } }

/* ---------- Footer ---------- */
.footer { background: var(--velvet); color: rgba(245,237,216,0.75); padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2; }
.footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,237,216,0.1);
}
.footer__brand-block { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer__monogram {
  width: 44px; height: 44px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--velvet); flex-shrink: 0;
}
.footer__name { font-family: var(--serif); font-size: 18px; color: var(--ivory); line-height: 1.1; }
.footer__name-sub { font-family: var(--sans); font-size: 11px; color: rgba(245,237,216,0.5); margin-top: 2px; }
.footer__tagline { font-size: 13px; line-height: 1.55; color: rgba(245,237,216,0.55); max-width: 26ch; }

.footer__col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li { font-size: 13px; }
.footer__col a { color: rgba(245,237,216,0.65); transition: color 200ms ease; }
.footer__col a:hover { color: var(--gold-lt); }

.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,237,216,0.3);
}
.footer__bottom a { color: var(--gold-lt); }

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- RTL overrides ---------- */
[dir="rtl"] .hero__masthead { flex-direction: row-reverse; }
[dir="rtl"] .hero__masthead-right { text-align: left; }
[dir="rtl"] .hero__meta { flex-direction: row-reverse; }
[dir="rtl"] .section-head { flex-direction: row-reverse; }
[dir="rtl"] .section-head__right { text-align: left; }
[dir="rtl"] .story-split { direction: rtl; }
[dir="rtl"] .story-split__copy { text-align: right; }
[dir="rtl"] .story-split__copy .h-display,
[dir="rtl"] .story-split__copy .body,
[dir="rtl"] .story-split__copy .signoff { direction: rtl; }
[dir="rtl"] .body.dropcap::first-letter { float: right; margin: 4px 0 0 10px; }
[dir="rtl"] .marquee__track { animation-direction: reverse; }
[dir="rtl"] .footer__top { direction: rtl; }
[dir="rtl"] .footer__bottom { flex-direction: row-reverse; }
[dir="rtl"] .nav__brand { flex-direction: row-reverse; }
[dir="rtl"] .nav__links { flex-direction: row-reverse; }
[dir="rtl"] .nav__right { flex-direction: row-reverse; }
[dir="rtl"] .tryon__list li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .review__attr { flex-direction: row-reverse; }

/* ---------- Global mobile ---------- */
@media (max-width: 720px) {
  .announce { font-size: 9px; gap: 8px; padding: 8px var(--pad-x); }
  .announce .dot { display: none; }
}
@media (max-width: 480px) {
  .heritage__grid { grid-template-columns: repeat(2,1fr); }
  .ig-strip { grid-template-columns: repeat(3,1fr); }
}
