/* ============================================================
   Somayeh Beauty Salon | Ladies Salon JLT
   Shared stylesheet — brand tokens, type, components
   Palette/type sourced from research/brand-system.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFF7F5;
  --surface: #ffffff;
  --surface-2: #FBEEEA;
  --text: #2A2426;
  --muted: #786A6D;
  --primary: #B66A7A;     /* mauve */
  --primary-deep: #9C5365;
  --secondary: #2F3A35;   /* deep green */
  --secondary-2: #3C4A43;
  --accent: #D9B56F;      /* gold */
  --accent-deep: #C49A4E;
  --border: #EADDE0;
  --focus: #B66A7A;
  --photo-dark: #241212;

  --shadow-sm: 0 1px 2px rgba(42,36,38,.05), 0 2px 8px rgba(42,36,38,.04);
  --shadow-md: 0 6px 24px rgba(42,36,38,.08);
  --shadow-lg: 0 24px 60px rgba(36,18,18,.16);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--primary); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; margin: 0; line-height: 1.04; letter-spacing: -.01em; }

.display {
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: .98;
}

.h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.7; }

.serif-accent { font-family: var(--ff-display); font-style: italic; color: var(--primary); font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 130px); }

.section-head { max-width: 620px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold {
  background: var(--accent);
  color: #36240a;
  box-shadow: 0 6px 20px rgba(217,181,111,.35);
}
.btn-gold:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--secondary-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }

.link-arrow {
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  color: var(--primary); display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header.scrolled {
  background: rgba(255,247,245,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(42,36,38,.02);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand .brand-name {
  font-family: var(--ff-display); font-weight: 600; font-size: 1.32rem; line-height: 1; letter-spacing: .01em;
}
.brand .brand-sub {
  font-family: var(--ff-body); font-size: .56rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
/* light variant when over dark hero */
.site-header.over-hero:not(.scrolled) .nav-links a,
.site-header.over-hero:not(.scrolled) .brand-name { color: #fff; }
.site-header.over-hero:not(.scrolled) .brand-sub { color: rgba(255,255,255,.7); }
.site-header.over-hero:not(.scrolled) .menu-toggle span { background:#fff; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:1.5px; width:0; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--secondary); color: #fff;
  display: flex; flex-direction: column; padding: 28px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .45s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav .m-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .m-close { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-nav .brand-name { color: #fff; }
.mobile-nav .brand-sub { color: rgba(255,255,255,.6); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mobile-nav nav a {
  font-family: var(--ff-display); font-size: 2rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav nav a.active { color: var(--accent); }
.mobile-nav .m-actions { margin-top: auto; display: grid; gap: 12px; }
.mobile-nav .m-contact { margin-top: 26px; font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.8; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(36,18,18,.42) 0%, rgba(36,18,18,0) 30%, rgba(36,18,18,.18) 55%, rgba(36,18,18,.82) 100%),
    linear-gradient(90deg, rgba(36,18,18,.45) 0%, rgba(36,18,18,0) 55%);
}
.hero-inner { position: relative; z-index: 2; padding-block: 0 clamp(48px, 8vw, 96px); width: 100%; transform: translateY(50px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 46ch; margin-top: 22px; }
.hero-eyebrow { color: #fff; }
.hero-eyebrow::before { background: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-meta .mi { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .mi b { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.hero-meta .mi small { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(48px,8vw,96px); z-index:2;
  writing-mode: vertical-rl; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after { content:""; width:1px; height:54px; background: linear-gradient(rgba(255,255,255,.7), transparent); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { position: relative; padding-top: 76px; color: #fff; overflow: hidden; }
.page-banner .pb-media { position: absolute; inset: 0; }
.page-banner .pb-media img { width:100%; height:100%; object-fit: cover; }
.page-banner .pb-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(36,18,18,.55), rgba(36,18,18,.72)); }
.page-banner .pb-inner { position: relative; z-index:2; padding-block: clamp(56px, 9vw, 120px); }
.page-banner h1 { color:#fff; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.page-banner .lead { color: rgba(255,255,255,.85); max-width: 52ch; margin-top: 16px; }
.crumbs { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.72); margin-bottom: 20px; }
.crumbs a:hover { color: #fff; }

/* ---------- Cards / generic ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #e3cdd2; }

/* service cards */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(16px,2vw,26px); }
.svc-card { display: flex; flex-direction: column; }
.svc-card .svc-img { aspect-ratio: 4/3; overflow: hidden; }
.svc-card .svc-img img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-card .svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card h3 { font-size: 1.55rem; }
.svc-card .svc-list { list-style: none; margin: 6px 0 0; padding: 0; color: var(--muted); font-size: .92rem; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.svc-card .svc-list li { position: relative; padding-left: 14px; }
.svc-card .svc-list li::before { content:""; position:absolute; left:0; top:.62em; width:5px; height:5px; border-radius:50%; background: var(--accent); }
.svc-card .svc-foot { margin-top: auto; padding-top: 18px; }

/* number/tag */
.tag {
  display:inline-flex; align-items:center; gap:8px; font-size:.72rem; font-weight:600; letter-spacing:.16em;
  text-transform: uppercase; color: var(--primary); background: var(--surface-2); border:1px solid var(--border);
  padding: 6px 14px; border-radius: 999px;
}

/* ---------- Trust band ---------- */
.trust { background: var(--secondary); color: #fff; }
.trust .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.trust .ti { text-align: center; }
.trust .ti b { font-family: var(--ff-display); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 600; display:block; line-height:1; color: var(--accent); }
.trust .ti span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.74); margin-top: 10px; display:block; }
.trust .stars { color: var(--accent); letter-spacing: 3px; font-size: 1rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split .split-media { position: relative; }
.split .split-media img { width:100%; border-radius: 8px; box-shadow: var(--shadow-md); }
.split .split-media .stamp {
  position: absolute; background: var(--surface); border:1px solid var(--border); border-radius: 8px;
  padding: 18px 22px; box-shadow: var(--shadow-md); max-width: 230px;
}
.split .split-media .stamp.br { right: -10px; bottom: -22px; }
.split .split-media .stamp .st-num { font-family: var(--ff-display); font-size: 2.2rem; color: var(--primary); line-height:1; }
.split .split-media .stamp .st-lab { font-size: .78rem; color: var(--muted); margin-top: 4px; }

.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 4px; }
.feature-list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: 1px solid var(--border); }
.feature-list .fl-ic { color: var(--accent); flex: none; margin-top: 2px; }
.feature-list b { font-weight: 600; }
.feature-list p { margin: 2px 0 0; color: var(--muted); font-size: .94rem; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  font-family: var(--ff-body); font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  color: var(--muted); cursor: pointer; transition: .25s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }

.masonry { columns: 3; column-gap: 16px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: 8px; overflow: hidden; cursor: zoom-in; display:block; }
.masonry .g-item img { width: 100%; transition: transform .8s var(--ease); }
.masonry .g-item::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(36,18,18,.55));
  opacity: 0; transition: opacity .35s;
}
.masonry .g-item .g-cap {
  position: absolute; left: 16px; bottom: 14px; z-index:2; color:#fff; opacity:0; transform: translateY(8px);
  transition: .35s var(--ease); font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.masonry .g-item:hover img { transform: scale(1.05); }
.masonry .g-item:hover::after { opacity: 1; }
.masonry .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-item.hide { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(24,12,12,.92);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .35s; backdrop-filter: blur(4px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display:flex; align-items:center; justify-content:center;
  transition: background .25s;
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 4vw; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .85rem; letter-spacing: .1em; }

/* ---------- Review quote ---------- */
.quote-band { background: var(--surface-2); }
.quote-card { max-width: 860px; margin-inline: auto; text-align: center; }
.quote-card .qmark { font-family: var(--ff-display); font-size: 5rem; color: var(--accent); line-height: .6; height: 40px; }
.quote-card blockquote { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 500; font-style: italic; line-height: 1.3; margin: 0; }
.quote-card .qsrc { margin-top: 24px; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.cta-band .cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.8); }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-band .cb-arch {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 340px; height: 440px; border: 1px solid rgba(217,181,111,.25); border-radius: 200px 200px 0 0; pointer-events: none;
}

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.info-list { display: grid; gap: 4px; margin-top: 8px; }
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row:first-child { border-top: 1px solid var(--border); }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display:flex; align-items:center; justify-content:center; color: var(--primary); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.info-row .val { font-size: 1.06rem; font-weight: 500; margin-top: 3px; }
.info-row .val.num { font-variant-numeric: tabular-nums; letter-spacing: .02em; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 8px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  padding: 13px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(182,106,122,.14); background:#fff;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field .err { color: #c0392b; font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span { display: inline-block; padding: 9px 18px; border: 1px solid var(--border); border-radius: 999px; font-size: .86rem; font-weight: 500; cursor: pointer; transition: .2s; }
.radio-pill input:checked + span { background: var(--primary); border-color: var(--primary); color: #fff; }
.radio-pill input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 2px; }

.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .fs-ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--surface-2); display:flex; align-items:center; justify-content:center; color: var(--primary); }
.form-success h3 { font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); max-width: 36ch; margin: 0 auto; }

/* map */
.map-wrap { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(.15) saturate(.9); }
.map-note { font-size: .8rem; color: var(--muted); margin-top: 10px; }

/* hours-ish small print */
.note-strip { background: var(--surface-2); border: 1px dashed var(--border); border-radius: 10px; padding: 18px 22px; font-size: .9rem; color: var(--muted); }
.note-strip b { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--photo-dark); color: rgba(255,255,255,.74); padding-block: clamp(56px,7vw,90px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .f-brand .brand-name { color: #fff; }
.site-footer .f-brand .brand-sub { color: rgba(255,255,255,.55); }
.site-footer p { font-size: .92rem; line-height: 1.7; max-width: 34ch; }
.site-footer h4 { font-family: var(--ff-body); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.site-footer ul a, .site-footer .f-contact a { font-size: .94rem; color: rgba(255,255,255,.74); transition: color .2s; }
.site-footer ul a:hover, .site-footer .f-contact a:hover { color: #fff; }
.f-contact { display: grid; gap: 12px; font-size: .94rem; line-height: 1.6; }
.footer-bottom { margin-top: clamp(40px,5vw,64px); border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.disclaimer { font-size: .76rem; color: rgba(255,255,255,.4); max-width: 70ch; line-height: 1.6; margin-top: 4px; }

/* ---------- Mobile bottom action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3,1fr);
  background: rgba(255,247,245,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(42,36,38,.08);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px 12px;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: var(--text); text-transform: uppercase;
}
.mobile-bar a svg { width: 20px; height: 20px; color: var(--primary); }
.mobile-bar a + a { border-left: 1px solid var(--border); }
.mobile-bar a.primary { background: var(--accent); color: #36240a; }
.mobile-bar a.primary svg { color: #36240a; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .masonry { columns: 2; }
  .cta-band .cb-arch { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .split, .split.rev, .contact-grid, .cta-band .cta-inner { grid-template-columns: 1fr; }
  .split .split-media { order: -1; }
  .trust .trust-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  body { padding-bottom: 64px; }
  .mobile-bar { display: grid; }
  html { scroll-padding-top: 76px; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .masonry { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-meta { gap: 20px; }
  .hero-meta .mi b { font-size: 1.5rem; }
  .split .split-media .stamp.br { right: 10px; bottom: -16px; }
}

