/* ============================================================
   ATRIUM · THE LUXURY CONCIERGE PLATFORM
   Signature colourway — charcoal ground, beige accent, cream contrast
   Brand: Bodoni Moda italic (mark/display) · Work Sans (labels) · Inter (body)
   ============================================================ */
:root {
  --charcoal-ink: #131312;
  --charcoal:     #1a1714;
  --charcoal-2:   #20201e;
  --charcoal-soft:#2a2a28;
  --ink:          #f4ede2;  /* cream */
  --muted:        #b3afa3;
  --mute2:        #847f73;
  --beige:        #e6d4bc;
  --beige-mute:   #b8a988;
  --gold:         #c9a972;
  --gold-2:       #dcc28b;
  --gold-soft:    #8a7a52;
  --line:         #34302a;
  --line-2:       #423d35;

  --serif: 'Bodoni Moda', Georgia, serif;
  --sans:  'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --body:  'Inter', -apple-system, system-ui, sans-serif;
  --display: 'Archivo Narrow', 'Work Sans', sans-serif;

  --accent: var(--beige);  /* swappable via tweak: beige | gold */
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 1100px 820px at 85% 6%, rgba(230,212,188,.085), transparent 55%),
    radial-gradient(ellipse 940px 720px at 10% 94%, rgba(184,153,104,.10), transparent 60%),
    linear-gradient(150deg, #17140f 0%, #0c0b0a 52%, #131210 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: rgba(201,169,114,.28); color: var(--ink); }

/* fine film grain over the whole page (brand: never flat) */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- shared type / utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 10.5px;
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold);
}
.eyebrow.beige { color: var(--accent); }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.gold-rule { width: 44px; height: 1px; background: var(--accent); }
h2.section-title {
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: clamp(36px, 4.8vw, 62px); line-height: 1.08;
  letter-spacing: 0; color: var(--ink); text-wrap: balance;
}
.lead {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7;
  color: var(--muted); max-width: 56ch; text-wrap: pretty;
}
.section { padding: clamp(96px, 13vh, 168px) 0; position: relative; z-index: 2; }
.section-head { display: flex; flex-direction: column; gap: 22px; max-width: 760px; }
.section-head .gold-rule { margin: 4px 0 2px; }

/* ---------- heading font modes (tweakable) ---------- */
[data-display="archivo"] .hero-title,
[data-display="archivo"] h2.section-title,
[data-display="archivo"] .cta h2,
[data-display="archivo"] .pillar h3,
[data-display="archivo"] .bc-item h4,
[data-display="archivo"] .stat .num { font-weight: 600; letter-spacing: .002em; }
[data-display="barlow"] .hero-title,
[data-display="barlow"] h2.section-title,
[data-display="barlow"] .cta h2,
[data-display="barlow"] .pillar h3,
[data-display="barlow"] .bc-item h4,
[data-display="barlow"] .stat .num { font-weight: 500; letter-spacing: .004em; }
[data-display="saira"] .hero-title,
[data-display="saira"] h2.section-title,
[data-display="saira"] .cta h2,
[data-display="saira"] .pillar h3,
[data-display="saira"] .bc-item h4,
[data-display="saira"] .stat .num { font-weight: 600; letter-spacing: 0; }
[data-display="oswald"] .hero-title,
[data-display="oswald"] h2.section-title,
[data-display="oswald"] .cta h2,
[data-display="oswald"] .pillar h3,
[data-display="oswald"] .bc-item h4,
[data-display="oswald"] .stat .num { font-weight: 500; letter-spacing: .008em; }
[data-display="fjalla"] .hero-title,
[data-display="fjalla"] h2.section-title,
[data-display="fjalla"] .cta h2,
[data-display="fjalla"] .pillar h3,
[data-display="fjalla"] .bc-item h4,
[data-display="fjalla"] .stat .num { font-weight: 400; letter-spacing: .004em; }
[data-display="worksans"] .hero-title,
[data-display="worksans"] h2.section-title,
[data-display="worksans"] .cta h2,
[data-display="worksans"] .stat .num { font-weight: 300; letter-spacing: -.018em; }
[data-display="worksans"] .pillar h3,
[data-display="worksans"] .bc-item h4 { font-weight: 300; letter-spacing: -.006em; }
[data-display="cormorant"] .hero-title,
[data-display="cormorant"] h2.section-title,
[data-display="cormorant"] .cta h2,
[data-display="cormorant"] .pillar h3,
[data-display="cormorant"] .bc-item h4,
[data-display="cormorant"] .stat .num { font-weight: 500; letter-spacing: 0; }

/* ---------- key mark ---------- */
.key-mark { color: var(--accent); display: block; }
.key-mark line, .key-mark circle, .key-mark path, .key-mark polyline {
  fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15,13,11,.82);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  padding: 15px 40px;
}
.nav-brand { display: flex; align-items: center; gap: 16px; cursor: pointer; }
.nav-brand .key-mark { height: 30px; width: auto; opacity: .9; }
.nav-brand .divider { width: 1px; height: 26px; background: var(--line-2); }
.nav-brand .word {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 23px; letter-spacing: .01em; color: var(--ink); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .2s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.btn {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 13px 26px; border: 1px solid var(--gold-soft); color: var(--ink);
  background: transparent; transition: all .25s ease; white-space: nowrap;
}
.btn:hover { border-color: var(--gold); color: #0c0b0a; background: var(--gold); }
.btn.solid { background: var(--gold); border-color: var(--gold); color: #0c0b0a; }
.btn.solid:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn.ghost { border-color: var(--line-2); color: var(--muted); }
.btn.ghost:hover { border-color: var(--gold); color: var(--ink); background: transparent; }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(3px); }
.nav .btn { padding: 11px 22px; }
@media (max-width: 940px) { .nav-links a:not(.btn) { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  overflow: hidden; padding: 0;
}
/* golden-hour interior backdrop shown behind the (swappable) photo slot */
.hero-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 30%, rgba(214,178,128,.30), transparent 60%),
    radial-gradient(ellipse 90% 70% at 30% 88%, rgba(40,32,24,.55), transparent 70%),
    linear-gradient(118deg, #241d15 0%, #1a1510 42%, #0e0c0a 100%);
}
.hero-backdrop::before {
  /* suggested architectural columns / window mullions */
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 13%, rgba(0,0,0,.16) 13% 13.4%, transparent 13.4% 26%),
    linear-gradient(0deg, rgba(0,0,0,.4), transparent 45%);
  mix-blend-mode: multiply; opacity: .7;
}
.hero-scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-key {
  position: absolute; z-index: 2; color: var(--accent); opacity: .14;
  pointer-events: none; mix-blend-mode: screen;
}
.hero-inner {
  position: relative; z-index: 3; width: 100%;
  display: flex; flex-direction: column;
}
.hero-eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: .4em; text-transform: uppercase; color: var(--beige);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-eyebrow .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero-title {
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: clamp(38px, 4.3vw, 68px); line-height: 1.08;
  letter-spacing: -.004em; color: var(--ink); text-wrap: pretty;
}
.hero-title em { color: var(--gold-2); font-style: normal; font-weight: 400; }
.hero-sub {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.72;
  color: var(--ink); opacity: .82; max-width: 52ch; text-wrap: pretty;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--sans); font-weight: 400; font-size: 10.5px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}
.hero-meta .tick { width: 22px; height: 1px; background: var(--gold-soft); }
.hero-scrollcue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 9px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--mute2);
}
.hero-scrollcue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold-soft), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* --- Variant A · CENTRE --- */
.hero[data-hero="centre"] .hero-inner {
  margin: auto; align-items: center; text-align: center; max-width: 920px;
  padding: 120px 40px; gap: 30px;
}
.hero[data-hero="centre"] .hero-eyebrow,
.hero[data-hero="centre"] .hero-meta { justify-content: center; }
.hero[data-hero="centre"] .hero-key {
  top: 50%; left: 50%; transform: translate(-50%,-52%); height: 640px; width: auto; opacity: .10;
}
.hero[data-hero="centre"] .hero-scrim {
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(12,11,10,.30), rgba(12,11,10,.78) 92%),
    linear-gradient(0deg, rgba(12,11,10,.7), transparent 30%);
}

/* --- Variant B · COLUMN (left) --- */
.hero[data-hero="column"] .hero-inner {
  margin-top: auto; margin-bottom: 13vh; align-items: flex-start; text-align: left;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding: 0 40px; width: 100%;
}
.hero[data-hero="column"] .hero-col {
  max-width: 640px; display: flex; flex-direction: column; gap: 28px;
  padding-left: 30px; border-left: 1px solid var(--gold-soft);
}
.hero[data-hero="column"] .hero-key {
  top: 50%; right: 6%; transform: translateY(-50%); height: 580px; width: auto; opacity: .11;
}
.hero[data-hero="column"] .hero-scrim {
  background: linear-gradient(90deg, rgba(10,9,8,.86) 0%, rgba(10,9,8,.55) 42%, rgba(10,9,8,.18) 75%, transparent 100%);
}

/* --- Variant C · LOWER THIRD --- */
.hero[data-hero="lower"] .hero-inner {
  margin-top: auto; margin-bottom: 9vh; align-items: flex-start; text-align: left;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding: 0 40px; width: 100%; gap: 30px;
}
.hero[data-hero="lower"] .hero-title { font-size: clamp(44px, 6.4vw, 90px); }
.hero[data-hero="lower"] .hero-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; width: 100%;
}
.hero[data-hero="lower"] .hero-row .hero-sub { margin-bottom: 6px; }
.hero[data-hero="lower"] .hero-key { top: 12vh; right: 7%; height: 300px; width: auto; opacity: .16; }
.hero[data-hero="lower"] .hero-scrim {
  background: linear-gradient(0deg, rgba(10,9,8,.92) 0%, rgba(10,9,8,.55) 32%, rgba(10,9,8,.15) 60%, rgba(10,9,8,.4) 100%);
}
@media (max-width: 820px) {
  .hero[data-hero="lower"] .hero-row { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* the swappable photo slot — beige caption on dark */

/* ============================================================
   PILLARS — what residents get
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px;
  background: var(--line); border: 1px solid var(--line); }
.pillar {
  background: linear-gradient(160deg, rgba(32,28,22,.6), rgba(16,14,12,.6));
  padding: 44px 38px 48px; display: flex; flex-direction: column; gap: 18px;
  transition: background .3s ease;
}
.pillar:hover { background: linear-gradient(160deg, rgba(42,37,28,.7), rgba(20,17,14,.7)); }
.pillar .idx {
  font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: .16em; color: var(--gold);
}
.pillar .p-label {
  font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--beige-mute);
}
.pillar h3 {
  font-family: var(--display); font-style: normal; font-weight: 500; font-size: 24px;
  line-height: 1.2; letter-spacing: 0; color: var(--ink);
}
.pillar p { font-size: 14.5px; line-height: 1.68; color: var(--muted); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   WHATSAPP feature
   ============================================================ */
.wa-section { position: relative; }
.wa-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center;
}
.wa-copy { display: flex; flex-direction: column; gap: 26px; }
.wa-points { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.wa-point {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0;
  border-top: 1px solid var(--line);
}
.wa-point:last-child { border-bottom: 1px solid var(--line); }
.wa-point .wp-time {
  font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: .04em; color: var(--gold);
  white-space: nowrap; padding-top: 2px;
}
.wa-point .wp-body strong {
  display: block; font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px;
}
.wa-point .wp-body span { font-size: 14px; color: var(--muted); line-height: 1.6; }
.wa-replay {
  align-self: flex-start; margin-top: 6px;
  font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); background: none; border: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px; padding: 4px 0;
  transition: color .2s;
}
.wa-replay:hover { color: var(--gold-2); }
.wa-stage { display: flex; justify-content: center; }
@media (max-width: 940px) {
  .wa-grid { grid-template-columns: 1fr; gap: 56px; }
  .wa-stage { order: -1; }
}

/* phone */
.phone {
  width: 344px; height: 712px; background: #050505; border-radius: 46px; padding: 11px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.45),
              inset 0 0 0 2px #1a1a1a, 0 0 0 1px rgba(201,169,114,.12);
  position: relative; flex-shrink: 0;
}
.phone::before {
  content: ''; position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #050505; border-radius: 16px; z-index: 12;
}
.screen {
  width: 100%; height: 100%; background: #0b141a; border-radius: 36px; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
}
.wa-status {
  height: 42px; padding: 13px 26px 0; display: flex; justify-content: space-between;
  align-items: flex-start; font-size: 12px; font-weight: 600; color: #e9edef; z-index: 5;
}
.wa-status .right { display: flex; gap: 7px; align-items: center; color: #e9edef; }
.wa-status .wa-sig svg { width: 16px; height: 11px; display: block; }
.wa-status .wa-bat svg { width: 25px; height: 12px; display: block; }
.wa-top {
  background: #1f2c34; padding: 9px 12px 9px 6px; display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.wa-top .back { color: #aebac1; display: flex; align-items: center; }
.wa-top .back svg { width: 22px; height: 22px; }
.wa-top .av {
  width: 38px; height: 38px; border-radius: 50%; background: #0c0b0a;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,169,114,.35);
}
.wa-top .av .key-mark { height: 23px; width: auto; color: var(--beige); opacity: .85; }
.wa-top .nm { flex: 1; min-width: 0; }
.wa-top .nm .n { color: #e9edef; font-weight: 600; font-size: 13.5px; line-height: 1.2; }
.wa-top .nm .s { color: #8696a0; font-size: 10.5px; margin-top: 1px; }
.wa-top .ic { display: flex; gap: 19px; color: #aebac1; align-items: center; }
.wa-top .ic span { display: flex; align-items: center; }
.wa-top .ic svg { width: 21px; height: 21px; }
.wa-top .ic .dots svg { width: 19px; height: 19px; }
.wa-chat {
  flex: 1; overflow: hidden; padding: 12px 11px 10px; display: flex; flex-direction: column; gap: 6px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.022)'/></svg>"),
    #0b141a;
}
.wa-enc {
  align-self: center; display: flex; align-items: center; gap: 6px;
  background: rgba(31,44,52,.82); color: #93a0a8; font-size: 9px; line-height: 1.3;
  padding: 5px 11px; border-radius: 8px; margin: 4px 14px; text-align: center;
}
.wa-enc .lk { display: inline-flex; color: #c9a972; }
.wa-enc .lk svg { width: 11px; height: 11px; }
.day-pill {
  align-self: center; background: rgba(31,44,52,.9); color: #8696a0; font-size: 9.5px;
  padding: 5px 12px; border-radius: 9px; font-weight: 500; letter-spacing: .05em; margin: 2px 0 6px;
}
.bubble {
  max-width: 80%; padding: 8px 10px 6px; border-radius: 9px; font-size: 12.5px; line-height: 1.45;
  color: #e9edef; word-wrap: break-word; position: relative;
  opacity: 0; transform: translateY(8px) scale(.98); transform-origin: bottom;
  animation: pop .34s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }
.bubble.in  { background: #1f2c34; border-top-left-radius: 1px; align-self: flex-start; }
.bubble.out { background: #005c4b; border-top-right-radius: 1px; align-self: flex-end; }
.bubble.in::before { content: ''; position: absolute; top: 0; left: -7px; width: 8px; height: 13px; background: #1f2c34; clip-path: polygon(100% 0, 100% 100%, 0 0); }
.bubble.out::before { content: ''; position: absolute; top: 0; right: -7px; width: 8px; height: 13px; background: #005c4b; clip-path: polygon(0 0, 0 100%, 100% 0); }
.bubble.typing::before { display: none; }
.bubble .t { display: flex; align-items: center; justify-content: flex-end; gap: 4px; font-size: 9.5px; color: #8696a0; margin-top: 3px; }
.bubble.out .t { color: rgba(233,237,239,.55); }
.bubble .ck { display: inline-flex; color: #53bdeb; }
.bubble .ck svg { width: 15px; height: 10px; }
.bubble.typing { padding: 12px 14px; display: inline-flex; gap: 4px; align-items: center; }
.bubble.typing i {
  width: 6px; height: 6px; border-radius: 50%; background: #8696a0; display: inline-block;
  animation: blink 1.3s infinite ease-in-out;
}
.bubble.typing i:nth-child(2) { animation-delay: .18s; }
.bubble.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.wa-card {
  align-self: stretch; background: #050505; border: 1px solid rgba(201,169,114,.3);
  border-radius: 10px; padding: 22px 14px 18px; text-align: center; margin: 2px 0 4px;
  opacity: 0; animation: pop .4s ease forwards;
}
.wa-card .key-mark { height: 48px; width: auto; color: var(--beige); margin: 0 auto 12px; }
.wa-card .w {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 20px; color: #fff;
  letter-spacing: .01em;
}
.wa-card .sub {
  font-family: var(--sans); font-weight: 400; font-size: 8.5px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); margin-top: 7px;
}
.wa-card .acc { width: 30px; height: 1px; background: var(--gold); margin: 12px auto 0; }

/* service menu bubble (onboarding example) */
.bubble.wide { max-width: 94%; }
.opts { font-size: 11.5px; line-height: 1.5; }
.opts-head { font-weight: 600; font-size: 12px; color: #e9edef; margin-bottom: 8px; }
.opts-group {
  color: #dcc28b; font-size: 8px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  margin: 11px 0 5px; padding-bottom: 3px; border-bottom: 1px solid rgba(201,169,114,.2);
}
.opts-group:first-of-type { margin-top: 6px; }
.opts-row { display: flex; align-items: center; gap: 8px; padding: 2.5px 0; color: #e9edef; font-size: 11.5px; line-height: 1.3; }
.opts-box { width: 12px; height: 12px; border: 1.5px solid #8696a0; border-radius: 2px; flex-shrink: 0; }
.opts-em { color: #dcc28b; width: 13px; text-align: center; display: inline-block; font-size: 10.5px; flex-shrink: 0; }
.opts-fee { color: #8696a0; font-size: 9px; }
.wa-compose {
  padding: 8px 9px 11px; background: #0b141a; display: flex; align-items: center; gap: 7px;
}
.wa-compose .inp {
  flex: 1; background: #2a3942; border-radius: 22px; padding: 9px 12px; color: #8696a0;
  font-size: 13px; display: flex; align-items: center; gap: 10px; min-width: 0;
}
.wa-compose .inp .emo { display: inline-flex; color: #8696a0; }
.wa-compose .inp .emo svg { width: 21px; height: 21px; }
.wa-compose .inp .ph { flex: 1; }
.wa-compose .inp .ico { margin-left: auto; display: flex; gap: 15px; align-items: center; color: #8696a0; }
.wa-compose .inp .ico span { display: inline-flex; }
.wa-compose .inp .ico svg { width: 20px; height: 20px; }
.wa-compose .mic {
  width: 42px; height: 42px; border-radius: 50%; background: #00a884; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #0b141a;
}
.wa-compose .mic svg { width: 22px; height: 22px; }
.home-bar { height: 10px; }
.home-bar::after { content: ''; display: block; width: 120px; height: 4px; background: #fff; opacity: .5; border-radius: 4px; margin: 5px auto 0; }

/* ============================================================
   APPROVAL strip (human-in-the-loop teaser inside WA copy)
   ============================================================ */
.approval {
  display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px;
  border: 1px solid var(--line); background: rgba(20,18,14,.5); align-self: flex-start;
}
.approval .lab {
  font-family: var(--sans); font-weight: 500; font-size: 9.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mute2);
}
.approval .acts { display: flex; gap: 8px; }
.approval .a {
  font-family: var(--sans); font-weight: 500; font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--line-2); color: var(--muted);
}
.approval .a.ok { color: #0c0b0a; background: var(--gold); border-color: var(--gold); }

/* ============================================================
   CATALOGUE
   ============================================================ */
.cat-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,17,13,.5), rgba(12,11,10,.5)); }
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 56px;
  background: var(--line); border: 1px solid var(--line);
}
.cat-cell {
  background: var(--charcoal-ink); padding: 30px 26px; display: flex; flex-direction: column; gap: 16px;
  min-height: 158px; justify-content: space-between; transition: background .25s ease;
}
.cat-cell:hover { background: #1b1813; }
.cat-cell .gl {
  font-family: var(--sans); font-style: normal; font-weight: 400; font-size: 13px; letter-spacing: .08em; color: var(--gold);
  width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cat-cell .cn {
  font-family: var(--sans); font-weight: 400; font-size: 13px; letter-spacing: .04em;
  color: var(--ink); line-height: 1.35;
}
.cat-foot {
  margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.tier-badge {
  font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: #0c0b0a; background: var(--gold); padding: 6px 14px;
}
@media (max-width: 940px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NETWORK stats
   ============================================================ */
.net-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 64px;
  background: var(--line); border: 1px solid var(--line); }
.stat { background: linear-gradient(160deg, rgba(30,26,20,.5), rgba(14,12,10,.5));
  padding: 48px 40px; display: flex; flex-direction: column; gap: 14px; }
.stat .num {
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: clamp(48px, 5.4vw, 74px); line-height: .98; letter-spacing: 0; color: var(--ink);
}
.stat .num span { color: var(--gold); }
.stat .sl {
  font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--beige-mute);
}
.stat p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 820px) { .net-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FULL-BLEED INTERIOR QUOTE BAND
   ============================================================ */
.quote-band { position: relative; min-height: 64vh; display: flex; align-items: center;
  overflow: hidden;
  /* photo slot removed 2026-06-12 — quiet architectural backdrop instead */
  background:
    radial-gradient(at 82% 24%, rgba(201, 169, 114, 0.10), transparent 52%),
    radial-gradient(at 14% 80%, rgba(201, 169, 114, 0.05), transparent 46%),
    linear-gradient(180deg, #131110, #0b0a09);
}
.quote-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,9,8,.9) 0%, rgba(10,9,8,.6) 50%, rgba(10,9,8,.35) 100%); }
.quote-inner { position: relative; z-index: 2; max-width: 960px; }
.quote-inner .key-mark { height: 42px; width: auto; color: var(--gold); opacity: .85; margin-bottom: 26px; }
.quote-inner blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 50px); line-height: 1.18; color: var(--ink); text-wrap: balance;
}
.quote-inner cite {
  display: block; margin-top: 26px; font-family: var(--sans); font-style: normal;
  font-weight: 500; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   BRAND CONTROL
   ============================================================ */
.bc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 64px; }
.bc-item { display: flex; flex-direction: column; gap: 16px; padding-top: 26px; border-top: 1px solid var(--gold-soft); }
.bc-item .bc-n { font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: .16em; color: var(--gold); }
.bc-item h4 { font-family: var(--display); font-style: normal; font-weight: 500; font-size: 22px; color: var(--ink); line-height: 1.22; letter-spacing: 0; }
.bc-item p { font-size: 14px; color: var(--muted); line-height: 1.66; }
@media (max-width: 820px) { .bc-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta { text-align: center; }
.cta .wrap { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta .key-mark { height: 58px; width: auto; color: var(--accent); opacity: .85; }
.cta h2 {
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.06; letter-spacing: -.004em; color: var(--ink); text-wrap: balance;
}
.cta .lead { text-align: center; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.cta-contact {
  margin-top: 22px; font-family: var(--sans); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mute2);
}
.cta-contact a { color: var(--gold); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 48px 0 56px; position: relative; z-index: 2; }
.footer .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer .f-brand { display: flex; flex-direction: column; gap: 12px; }
.footer .f-word {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 26px; color: var(--ink);
  display: flex; align-items: center; gap: 14px;
}
.footer .f-word .key-mark { height: 30px; width: auto; color: var(--accent); }
.footer .f-tag {
  font-family: var(--sans); font-weight: 400; font-size: 9.5px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--mute2);
}
.footer .f-meta { text-align: right; font-family: var(--sans); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--mute2); line-height: 2; }

/* ============================================================
   MOBILE NAV (hamburger -> sheet)
   ============================================================ */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; z-index: 60;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-sheet {
  position: fixed; inset: 0; z-index: 55; background: rgba(10,9,8,.97);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.mobile-sheet.open { opacity: 1; pointer-events: auto; }
.mobile-sheet a {
  font-family: var(--sans); font-style: normal; font-weight: 300; font-size: 22px; letter-spacing: .01em; color: var(--ink);
  text-decoration: none;
}
.mobile-sheet a.btn {
  font-family: var(--sans); font-style: normal; font-size: 12px; margin-top: 10px;
}

/* ============================================================
   RESPONSIVE — tablet & mobile
   ============================================================ */
@media (max-width: 1040px) {
  :root { --maxw: 920px; }
  .wa-grid { gap: 56px; }
}
@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 13px 22px; }
  .nav-brand .word { font-size: 20px; }
  .section { padding: clamp(72px, 11vh, 110px) 0; }
  .section-head { gap: 16px; }
  .hero[data-hero="centre"] .hero-inner,
  .hero[data-hero="column"] .hero-inner,
  .hero[data-hero="lower"] .hero-inner { padding-left: 24px; padding-right: 24px; }
  .hero[data-hero="column"] .hero-col { padding-left: 20px; }
  .hero[data-hero="column"] .hero-inner { margin-bottom: 16vh; }
  .hero-sub { max-width: 100%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .hero-key { opacity: .08 !important; }
  .pillar { padding: 34px 26px 38px; }
  .pillars { margin-top: 44px; }
  .cat-grid, .net-grid { margin-top: 40px; }
  .stat { padding: 36px 28px; }
  .wa-point { grid-template-columns: 1fr; gap: 6px; }
  .wa-point .wp-time { font-size: 15px; }
  .quote-band { min-height: 56vh; }
  .quote-inner blockquote { font-size: clamp(24px, 6vw, 36px); }
  .bc-grid { margin-top: 44px; }
  .footer .wrap { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer .f-meta { text-align: left; }
  .approval { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 420px) {
  .phone { width: 300px; height: 632px; border-radius: 40px; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: .3em; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { width: 100%; }
}

/* ============================================================
   reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .bubble { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-scrollcue .line { animation: none; }
}

/* ============================================================
   SIGN-IN (nav trigger + modal)
   ============================================================ */
.nav-signin {
  font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink); background: none; border: none; cursor: pointer;
  padding: 4px 0; position: relative; transition: color .2s;
}
.nav-signin::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s ease;
}
.nav-signin:hover { color: var(--ink); }
.nav-signin:hover::after { width: 100%; }
.mobile-sheet .ms-signin {
  font-family: var(--sans); font-style: normal; font-weight: 300; font-size: 22px;
  letter-spacing: .01em; color: var(--ink); background: none; border: none; cursor: pointer;
}

.login-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8,7,6,.74); backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.login-overlay.open { opacity: 1; pointer-events: auto; }
.login-card {
  width: 100%; max-width: 416px; position: relative;
  background: linear-gradient(162deg, #1d1812, #121009 70%);
  border: 1px solid var(--line-2); padding: 40px 38px 34px;
  box-shadow: 0 44px 100px rgba(0,0,0,.62), inset 0 1px 0 rgba(230,212,188,.07);
  transform: translateY(16px) scale(.985); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.login-overlay.open .login-card { transform: none; }
.login-x {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--mute2); cursor: pointer; transition: color .2s;
}
.login-x:hover { color: var(--gold); }
.login-head {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.login-head .key-mark { height: 44px; width: auto; color: var(--accent); }
.login-word { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 27px; color: var(--ink); letter-spacing: .01em; }
.login-sub { font-family: var(--sans); font-weight: 400; font-size: 8.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--mute2); }
.login-tabs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-2); margin-bottom: 24px; }
.login-tabs button {
  font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 8px; background: transparent; border: none; color: var(--muted); cursor: pointer; transition: all .2s;
}
.login-tabs button + button { border-left: 1px solid var(--line-2); }
.login-tabs button.active { background: var(--gold); color: #0c0b0a; }
.login-tabs button:not(.active):hover { color: var(--ink); }
.login-form { display: flex; flex-direction: column; }
.login-form label {
  font-family: var(--sans); font-weight: 500; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--beige-mute); margin: 12px 0 7px;
}
.login-form label:first-child { margin-top: 0; }
.login-form input[type="text"], .login-form input[type="email"], .login-form input[type="password"] {
  background: #0e0c0a; border: 1px solid var(--line-2); padding: 12px 14px; color: var(--ink);
  font-family: var(--body); font-size: 14px; outline: none; transition: border-color .2s; width: 100%;
}
.login-form input:focus { border-color: var(--gold-soft); }
.login-form input::placeholder { color: var(--mute2); }
.login-submit { margin-top: 18px; width: 100%; justify-content: center; }
.login-row {
  display: flex; align-items: center; justify-content: space-between; margin-top: 12px;
  font-family: var(--sans); font-size: 11px; color: var(--muted);
}
.login-row .rem { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 11px; letter-spacing: .04em; text-transform: none; color: var(--muted); }
.login-row .rem input { accent-color: var(--gold); }
.login-row a { color: var(--gold); text-decoration: none; letter-spacing: .04em; }
.login-row a:hover { color: var(--gold-2); }
.login-note { margin-top: 18px; font-family: var(--body); font-size: 11.5px; line-height: 1.55; color: var(--mute2); text-align: center; }
.login-ok { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 12px 0 4px; text-align: center; }
.login-ok .key-mark { height: 36px; width: auto; color: var(--gold); }
.login-ok p { font-size: 13.5px; line-height: 1.55; color: var(--muted); max-width: 30ch; }
.login-ok .wa-replay { letter-spacing: .2em; }
@media (max-width: 460px) { .login-card { padding: 34px 24px 30px; } }


/* --- auth bridge additions (stitched 2026-06-12) ------------------------- */
.login-error {
  font-size: 13px; line-height: 1.5; color: #c46a5a;
  border: 1px solid rgba(196, 106, 90, 0.45);
  background: rgba(196, 106, 90, 0.07);
  padding: 10px 14px; margin: 0 0 4px;
}
.login-sso {
  background: none; border: 0; cursor: pointer; padding: 6px 0 0;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted, #9a958c); transition: color 150ms;
  align-self: center;
}
.login-sso:hover { color: var(--accent, #c9a972); }
