/* ==========================================================
   Ari Aesthetics — Editorial Luxury Spa Website
   ========================================================== */

:root {
  --ivory: #FDF8FC;
  --ivory-warm: #FBF2F0;
  --deep: #1A0050;
  --deep-80: rgba(26, 0, 80, 0.80);
  --deep-60: rgba(26, 0, 80, 0.60);
  --deep-40: rgba(26, 0, 80, 0.40);
  --deep-12: rgba(26, 0, 80, 0.12);
  --deep-06: rgba(26, 0, 80, 0.06);
  --signature: #4B2882;
  --gold: #C9A84C;
  --gold-soft: #D9BE78;
  --lavender: #C8A8E9;
  --lavender-soft: #E6D6F5;
  --blush: #F4C2C2;
  --blush-soft: #FAE0E0;
  --ink: #2C2C2C;
  --ink-70: rgba(44, 44, 44, 0.70);
  --ink-50: rgba(44, 44, 44, 0.50);

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Jost', 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --max: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--deep);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(52px, 8vw, 112px); font-weight: 400; }
h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 400; }
h3 { font-size: clamp(26px, 2.4vw, 34px); }
h4 { font-size: clamp(20px, 1.6vw, 24px); }

.serif-i { font-style: italic; color: var(--signature); }

p { color: var(--ink-70); font-size: 16px; line-height: 1.7; }

.lede { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.65; color: var(--ink-70); max-width: 60ch; }

.label {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--signature);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  transform: translateY(-1px);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-50);
}

/* ---- Layout helpers ---- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(28px, 3vw, 48px) 0; scroll-margin-top: 120px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(20px, 2vw, 32px);
}

.section-head h2 { max-width: 22ch; }
.section-head .head-right { max-width: 60ch; }

.rule {
  height: 1px;
  background: var(--lavender);
  opacity: 0.6;
  width: 100%;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 280ms ease, background 280ms ease, color 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--deep);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep-12);
}
.btn-ghost:hover {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

.btn .arrow {
  display: inline-block;
  transition: transform 300ms ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Scroll reveal ---- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 900ms cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

/* ---- Top announcement bar ---- */

.topbar {
  background: var(--deep);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.topbar .pills {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.topbar .pill svg { width: 14px; height: 14px; }
.topbar .scroller {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}

@media (max-width: 720px) {
  .topbar .scroller { display: none; }
}

/* ---- Nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(253, 248, 252, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease, background 300ms ease;
}
.nav.scrolled {
  border-bottom-color: var(--deep-12);
}
.nav .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 22px rgba(26,0,80,0.18);
  background: #fff;
  transition: transform .4s ease, box-shadow .4s ease;
}
.brand:hover img {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .wm-main {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.brand .wm-sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  margin-top: 8px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-80);
  position: relative;
  padding: 6px 0;
  transition: color 250ms ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 280ms ease, left 280ms ease;
}
.nav-links a:hover { color: var(--deep); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.burger { display: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav .inner { grid-template-columns: auto 1fr auto; }
  .burger {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border: 1px solid var(--deep-12);
    border-radius: 999px;
  }
  .burger span { width: 16px; height: 1.5px; background: var(--deep); position: relative; }
  .burger span::before, .burger span::after {
    content:''; position:absolute; left:0; width:16px; height:1.5px; background: var(--deep);
  }
  .burger span::before { top:-5px; }
  .burger span::after { top:5px; }
  .nav-cta .btn { display: none; }
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  scroll-margin-top: 120px;
}
.hero .hero-fade {
  position: absolute; inset: 0;
  background: #1a0050;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.1s linear;
}
.hero .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,168,233,0.6), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(244,194,194,0.5), transparent 60%),
    linear-gradient(180deg, #3c1e6a, #1a0050);
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Subtle right-side scrim only — keeps the video character visible on the left,
   softens background behind the text on the right. */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(26,0,80,0.72) 0%, rgba(26,0,80,0.45) 35%, rgba(26,0,80,0.05) 65%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 70%, rgba(26,0,80,0.35) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero .hero-inner { position: relative; z-index: 3; }

.hero .hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--gutter) clamp(40px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1.6fr min(520px, 100%);
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  justify-content: end;
  min-height: 92vh;
  gap: 24px 40px;
}

.hero .pre {
  grid-column: 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #fff;
  opacity: 0.9;
}
.hero .pre .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,168,76,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0.05); }
}

.hero h1 {
  grid-column: 2;
  color: #fff;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  max-width: 12ch;
  text-align: right;
  justify-self: end;
}
.hero h1 .it {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero-bottom {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.hero-bottom .sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  max-width: 48ch;
  text-align: center;
  justify-self: center;
}
.hero-bottom .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.hero-trust {
  grid-column: 1 / -1;
  align-self: end;
  justify-self: center;
  margin-top: 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  background: rgba(26,0,80,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.hero-trust::-webkit-scrollbar { display: none; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.hero-bottom .trust {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-bottom .trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-bottom .trust svg { width: 14px; height: 14px; color: var(--gold); }

@media (max-width: 860px) {
  .hero .hero-inner { grid-template-columns: 1fr; }
  .hero .pre, .hero h1, .hero-bottom { grid-column: 1; }
  .hero h1 { max-width: 16ch; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(26,0,80,0.35) 0%, rgba(26,0,80,0.55) 60%, rgba(26,0,80,0.8) 100%);
  }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom .ctas { justify-content: flex-start; }
}

/* ---- Hero stats bar (overlaps hero bottom) ---- */

.stats {
  background: var(--ivory);
  border-top: 1px solid var(--deep-12);
  border-bottom: 1px solid var(--deep-12);
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stats .cell {
  padding: 44px 24px;
  border-left: 1px solid var(--deep-12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.stats .cell:first-child { border-left: none; }
.stats .cell .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--deep);
  line-height: 1;
}
.stats .cell .num .it { font-style: italic; color: var(--gold); }
.stats .cell .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-50);
}
@media (max-width: 720px) {
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .cell:nth-child(3) { border-left: none; }
  .stats .cell:nth-child(3), .stats .cell:nth-child(4) { border-top: 1px solid var(--deep-12); }
}

/* ---- About ---- */

.about { background: var(--ivory); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.about-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--deep-12);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img .placeholder-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deep-60);
  background: rgba(253,248,252,0.85);
  padding: 8px 12px;
  border-radius: 2px;
}
.about-img .float-card {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 40px;
  background: var(--ivory);
  border: 1px solid var(--deep-12);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 260px;
  box-shadow: 0 20px 60px -30px rgba(26,0,80,0.3);
}
.about-img .float-card .fc-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--deep);
  line-height: 1;
}
.about-img .float-card .fc-text {
  font-size: 12px;
  color: var(--ink-70);
  margin-top: 6px;
  line-height: 1.4;
}

.about-copy h2 { margin-bottom: 28px; max-width: 18ch; }
.about-copy p { margin-bottom: 18px; font-size: 16px; }
.about-copy p em { color: var(--signature); font-style: italic; font-family: var(--serif); font-size: 1.1em; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 6vw, 80px);
}
.pillar {
  border: 1px solid var(--deep-12);
  padding: 28px;
  background: var(--ivory);
  border-radius: 4px;
  transition: transform 300ms ease, border-color 300ms ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--gold); }
.pillar .sym {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.pillar h4 { margin-bottom: 10px; }
.pillar p { font-size: 14.5px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img .float-card { right: 20px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ---- Why Choose Us ---- */

.why {
  background: linear-gradient(180deg, var(--ivory) 0%, #F5EDF5 100%);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--deep-12);
  border: 1px solid var(--deep-12);
}
.why-card {
  background: var(--ivory);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 400ms ease;
  position: relative;
}
.why-card:hover { background: var(--ivory-warm); }
.why-card .num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.why-card h4 { max-width: 16ch; }
.why-card p { font-size: 15px; }
.why-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--deep-12);
  display: flex; align-items: center; justify-content: center;
  color: var(--signature);
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}
.why-card:hover .icon {
  background: var(--deep);
  color: var(--gold);
  border-color: var(--deep);
}
.why-card .icon svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Services ---- */

.services { background: var(--ivory); }

.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--deep-12);
  margin-bottom: 48px;
}
.service-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--deep-80);
  border: 1px solid var(--deep-12);
  transition: all 260ms ease;
  background: transparent;
}
.service-tab:hover { border-color: var(--deep); }
.service-tab.active {
  background: var(--deep);
  color: var(--ivory);
  border-color: var(--deep);
}

.service-panel {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  min-height: 480px;
  align-items: start;
}
.service-meta .icon-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-soft), var(--blush-soft));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--deep);
}
.service-meta .icon-wrap svg { width: 36px; height: 36px; }
.service-meta h3 {
  font-size: clamp(40px, 4.5vw, 60px);
  margin-bottom: 18px;
}
.service-meta p { font-size: 15.5px; max-width: 34ch; margin-bottom: 28px; }
.service-meta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signature);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 260ms ease, border-color 260ms ease;
}
.service-meta .cta-link:hover { color: var(--gold); }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--deep-12);
  border-top: 1px solid var(--deep-12);
  border-bottom: 1px solid var(--deep-12);
}
.service-item {
  background: var(--ivory);
  padding: 28px 4px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: padding-left 300ms ease, background 300ms ease;
}
.service-item:hover {
  padding-left: 16px;
  background: var(--ivory-warm);
}
.service-item .s-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.service-item h4 { font-size: 22px; margin-bottom: 6px; color: var(--deep); }
.service-item p { font-size: 14.5px; max-width: 60ch; }
.service-item .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--deep-12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}
.service-item:hover .plus { background: var(--gold); color: var(--deep); transform: rotate(90deg); }

.service-cta-strip {
  margin-top: clamp(48px, 6vw, 80px);
  padding: 40px clamp(32px, 4vw, 56px);
  background: linear-gradient(110deg, var(--deep) 0%, var(--signature) 100%);
  color: var(--ivory);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.service-cta-strip::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.35), transparent 70%);
}
.service-cta-strip h3 { color: #fff; max-width: 22ch; font-weight: 300; }
.service-cta-strip p { color: rgba(255,255,255,0.75); margin-top: 8px; font-size: 15px; }

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-cta-strip { grid-template-columns: 1fr; }
}

/* ---- How it works ---- */

.how {
  background: var(--deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(200,168,233,0.18), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(201,168,76,0.12), transparent 50%);
  pointer-events: none;
}
.how .inner { position: relative; }
.how h2, .how h3, .how h4 { color: var(--ivory); }
.how .label { color: var(--lavender); }
.how .label::before { color: var(--gold); }
.how p { color: rgba(255,255,255,0.7); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: clamp(40px, 5vw, 72px);
  position: relative;
}
.how-step {
  padding: 32px 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.how-step:first-child { border-left: none; }
.how-step .step-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
}
.how-step h4 { font-size: 22px; font-weight: 400; }
.how-step p { font-size: 14.5px; line-height: 1.65; }
.how-step::before {
  content:'';
  position: absolute;
  top: 60px;
  left: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 400ms ease;
}
.how-step:first-child::before { opacity: 1; left: -4px; }

.how-cta {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.how-cta .bigline { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 34px); color: var(--ivory); max-width: 24ch; }

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); min-height: unset; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ---- Testimonials ---- */

.testimonials { background: var(--ivory-warm); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.t-card {
  background: var(--ivory);
  border: 1px solid var(--deep-12);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 300ms ease, border-color 300ms ease;
}
.t-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.t-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.t-card .quote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--deep);
  font-style: italic;
  flex: 1;
}
.t-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--deep-12);
}
.t-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.t-card .meta .name { color: var(--deep); font-weight: 500; font-size: 14px; }
.t-card .meta .loc { color: var(--ink-50); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }

.t-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--deep) 0%, var(--signature) 100%);
  color: #fff;
  border-color: var(--deep);
}
.t-card.featured .quote { color: #fff; font-size: 26px; }
.t-card.featured .meta .name { color: #fff; }
.t-card.featured .meta .loc { color: rgba(255,255,255,0.6); }
.t-card.featured .author { border-top-color: rgba(255,255,255,0.15); }

@media (max-width: 900px) {
  .t-grid { grid-template-columns: 1fr; }
  .t-card.featured { grid-column: span 1; }
}

/* ---- Gallery ---- */

.gallery { background: var(--ivory); }

.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.g-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--deep-12);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  cursor: pointer;
  transition: transform 400ms ease;
}
.g-item:hover { transform: scale(1.02); }
.g-item .tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deep-80);
  background: rgba(253,248,252,0.9);
  padding: 6px 10px;
  border-radius: 2px;
}
.g-item.w2 { grid-column: span 2; }
.g-item.h2 { grid-row: span 2; }

.g-1 { background: linear-gradient(135deg, #F6DCE8, #E6D6F5); }
.g-2 { background: linear-gradient(160deg, #EFE2F7, #F9E2DA); }
.g-3 { background: linear-gradient(120deg, #F4D2D2, #F1E4EC); }
.g-4 { background: linear-gradient(140deg, #E2D1EF, #F7E8E8); }
.g-5 { background: linear-gradient(150deg, #F9ECD4, #F4D2D2); }
.g-6 { background: linear-gradient(170deg, #E6D6F5, #F9ECD4); }

.g-disclaim {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-50);
  font-style: italic;
  text-align: center;
}

@media (max-width: 900px) {
  .g-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 180px); }
  .g-item.h2 { grid-row: auto; }
  .g-item.w2 { grid-column: auto; }
}

/* ---- FAQ ---- */

.faq { background: linear-gradient(180deg, var(--ivory) 0%, #F9F1F6 100%); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.faq-side p { font-size: 15px; }
.faq-side .help-card {
  margin-top: 32px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--deep-12);
  border-radius: 4px;
}
.faq-side .help-card h4 { margin-bottom: 8px; }
.faq-side .help-card p { font-size: 14px; margin-bottom: 16px; }

.faq-list { border-top: 1px solid var(--deep-12); }
.faq-item {
  border-bottom: 1px solid var(--deep-12);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 24px);
  color: var(--deep);
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--deep-12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease;
  color: var(--deep);
}
.faq-item[open] .toggle {
  transform: rotate(45deg);
  background: var(--deep);
  color: var(--gold);
  border-color: var(--deep);
}
.faq-item .answer {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.7;
  padding-top: 16px;
  max-width: 62ch;
}

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

/* ---- Contact ---- */

.contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lede { margin-bottom: 40px; }
.info-rows { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.info-row .ic {
  width: 44px; height: 44px;
  border: 1px solid var(--deep-12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--signature);
}
.info-row .ic svg { width: 18px; height: 18px; }
.info-row .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-50);
  margin-bottom: 4px;
}
.info-row .val { color: var(--deep); font-size: 15.5px; line-height: 1.5; }
.info-row .val a { border-bottom: 1px solid var(--gold); transition: color 260ms; }
.info-row .val a:hover { color: var(--gold); }

.map-wrap {
  margin-top: 32px;
  height: 260px;
  border-radius: 4px;
  border: 1px solid var(--deep-12);
  overflow: hidden;
}

/* Form */
.form-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--ivory-warm);
  border-radius: 4px;
  border: 1px solid var(--deep-12);
}
.form-card h3 { margin-bottom: 6px; }
.form-card .lede { margin-bottom: 28px; font-size: 15px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-50);
}
.field input, .field select, .field textarea {
  font: inherit;
  background: var(--ivory);
  border: 1px solid var(--deep-12);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--deep);
  transition: border-color 260ms ease, background 260ms ease;
  font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.field .err {
  color: #B4365A;
  font-size: 11px;
  margin-top: 2px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.form-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-foot .note { font-size: 12px; color: var(--ink-50); font-style: italic; max-width: 32ch; }

.form-success {
  padding: 40px 16px;
  text-align: center;
  border: 1px dashed var(--gold);
  background: var(--ivory);
  border-radius: 4px;
}
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h4 { margin-bottom: 8px; }
.form-success p { font-size: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */

.footer {
  background: #0E0030;
  color: rgba(255,255,255,0.7);
  padding: clamp(64px, 8vw, 100px) 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(200,168,233,0.12), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(201,168,76,0.08), transparent 50%);
}
.footer .f-inner { position: relative; }
.footer .f-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .brand-block img {
  width: 64px; height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer .brand-block .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer .brand-block p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 34ch; }
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; transition: color 260ms ease; }
.footer a:hover { color: var(--gold); }
.footer .f-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer .f-bottom .disc { font-style: italic; max-width: 54ch; }

@media (max-width: 900px) {
  .footer .f-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer .f-top { grid-template-columns: 1fr; }
}

/* ---- Tweaks panel ---- */

.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 280px;
  background: var(--ivory);
  border: 1px solid var(--deep-12);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 20px 60px -20px rgba(26,0,80,0.35);
  z-index: 200;
  font-family: var(--sans);
}
.tweaks-panel h6 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signature);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-panel .tw-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.tweaks-panel .tw-row label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-50);
}
.tweaks-panel .swatches {
  display: flex;
  gap: 8px;
}
.tweaks-panel .sw {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease;
}
.tweaks-panel .sw:hover { transform: scale(1.1); }
.tweaks-panel .sw.active { border-color: var(--deep); }
.tweaks-panel .seg {
  display: flex;
  border: 1px solid var(--deep-12);
  border-radius: 4px;
  overflow: hidden;
}
.tweaks-panel .seg button {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--ink-70);
  transition: background 200ms ease, color 200ms ease;
}
.tweaks-panel .seg button.active {
  background: var(--deep);
  color: var(--ivory);
}

/* ==========================================================
   Mobile — 768px and below
   ========================================================== */

@media (max-width: 768px) {

  /* Typography scale-down */
  h1 { font-size: clamp(36px, 9vw, 56px); }
  h2 { font-size: clamp(26px, 6vw, 40px); }
  h3 { font-size: clamp(22px, 5vw, 30px); }
  h4 { font-size: clamp(17px, 4vw, 22px); }

  /* Nav */
  .brand img { width: 52px; height: 52px; }
  .brand .wm-main { font-size: 28px; }
  .brand .wm-sub { font-size: 10px; letter-spacing: 0.28em; margin-top: 5px; }
  .nav .inner { padding: 12px var(--gutter); }

  /* Hero */
  .hero .hero-inner {
    grid-template-columns: 1fr;
    padding: clamp(60px, 10vh, 100px) var(--gutter) clamp(32px, 5vh, 48px);
    min-height: 100svh;
    gap: 16px 0;
  }
  .hero .pre, .hero h1, .hero-bottom { grid-column: 1; justify-self: start; }
  .hero h1 { font-size: clamp(36px, 9vw, 60px); max-width: 100%; text-align: left; }
  .hero-bottom .sub { text-align: left; font-size: 15px; }
  .hero-bottom .ctas { justify-content: flex-start; }
  .hero-trust { gap: 14px; font-size: 10px; padding: 8px 14px; }

  /* Stats */
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .cell:nth-child(3) { border-left: none; }
  .stats .cell:nth-child(3), .stats .cell:nth-child(4) { border-top: 1px solid var(--deep-12); }
  .stats .cell { padding: 28px 16px; }
  .stats .cell .num { font-size: clamp(32px, 8vw, 48px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16 / 9; }
  .about-img .float-card { right: 12px; bottom: 12px; max-width: 200px; padding: 14px 16px; }
  .about-img .float-card .fc-num { font-size: 28px; }
  .pillars { grid-template-columns: 1fr; margin-top: clamp(32px, 5vw, 48px); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }

  /* Services */
  .service-panel { grid-template-columns: 1fr; min-height: unset; }
  .service-meta .icon-wrap { width: 64px; height: 64px; margin-bottom: 20px; }
  .service-meta .icon-wrap svg { width: 26px; height: 26px; }
  .service-meta h3 { font-size: clamp(28px, 7vw, 40px); }
  .service-cta-strip { grid-template-columns: 1fr; }
  .service-tabs { gap: 6px; padding-bottom: 20px; margin-bottom: 28px; }

  /* How */
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .how-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); min-height: unset; padding: 24px 20px; }
  .how-step:first-child { border-top: none; }
  .how-step .step-n { font-size: 48px; }
  .how-cta { flex-direction: column; align-items: flex-start; }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr; }
  .t-card.featured { grid-column: span 1; }
  .t-card.featured .quote { font-size: 20px; }

  /* Gallery */
  .g-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 160px);
  }
  .g-item.h2 { grid-row: auto; }
  .g-item.w2 { grid-column: auto; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: clamp(16px, 4vw, 20px); gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 200px; }

  /* Footer */
  .footer .f-top { grid-template-columns: 1fr 1fr; }
  .footer .f-bottom { flex-direction: column; gap: 8px; }

  /* Topbar */
  .topbar .pills { gap: 14px; }
  .topbar .inner { padding: 8px var(--gutter); }
}

/* ==========================================================
   Mobile — 480px and below
   ========================================================== */

@media (max-width: 480px) {

  :root { --gutter: 16px; }

  /* Nav */
  .brand img { width: 44px; height: 44px; }
  .brand .wm-main { font-size: 24px; }

  /* Hero */
  .hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-trust { flex-direction: column; align-items: flex-start; border-radius: 8px; gap: 8px; }
  .btn { padding: 13px 20px; font-size: 13px; }

  /* Stats */
  .stats .cell { padding: 20px 12px; }

  /* Gallery */
  .g-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .g-item { height: 180px; }
  .g-item.h2, .g-item.w2 { grid-row: auto; grid-column: auto; }

  /* Footer */
  .footer .f-top { grid-template-columns: 1fr; }

  /* Services */
  .service-item { padding: 20px 4px; gap: 14px; }
  .service-item h4 { font-size: 18px; }

  /* How */
  .how-step { padding: 20px 16px; }

  /* FAQ */
  .faq-item { padding: 18px 0; }
  .faq-item summary { font-size: 15px; }

  /* Contact */
  .form-card { padding: 20px 16px; }
  .info-rows { gap: 16px; }
}
