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

:root {
  --cream:      #f5f1ea;
  --linen:      #eee8db;
  --warm-100:   #e0d9cd;
  --warm-200:   #ccc4b5;
  --warm-300:   #b3a998;
  --warm-400:   #8e8070;
  --warm-500:   #6c5f51;
  --deep:       #09192F;
  --navy:       #0D2645;
  --navyMid:    #163560;
  --amber:      #F2A30F;
  --amberDark:  #C8860A;
  --amberPale:  #FDE68A;
  /* Almonry product accent */
  --brick:      #8b3a1e;
  --brickPale:  #c98c6e;
  --white:      #fdfaf6;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  /* Questionnaire aliases */
  --ink:        #09192F;
  --off:        #eee8db;
  --fog:        #e0d9cd;
  --mist:       #b3a998;
  --slate:      #6c5f51;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--deep);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

.btn-fill, .btn-outline, .btn-dark, .nav-cta, .f-btn, .nav-hamburger,
.mobile-menu a, .nav-links a {
  touch-action: manipulation;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,241,234,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,134,10,0.15);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(245,241,234,0.98); }

.nav-logo { text-decoration: none; }
.nav-logo-main {
  font-family: var(--serif);
  font-weight: 600; font-size: 1.15rem;
  color: var(--deep); letter-spacing: 0.02em; display: block;
}
.nav-logo-main span { color: var(--amber); }
.nav-logo-sub {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--warm-400);
  display: block; margin-top: 2px;
}

.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--warm-500);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--deep); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--deep) !important;
  padding: 0.6rem 1.6rem !important;
  font-weight: 600 !important;
  border-radius: 2px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amberDark) !important; color: var(--deep) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; z-index: 210;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--deep); transition: all 0.28s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--cream); padding: 7rem 2.5rem 3rem;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 500;
  color: var(--deep); text-decoration: none; padding: 0.8rem 0;
  border-bottom: 1px solid var(--warm-100);
  letter-spacing: -0.01em;
}
.mobile-menu a.cta {
  margin-top: 2rem; background: var(--amber);
  color: var(--deep); font-family: var(--sans);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 2rem; text-align: center; border: none;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  overflow: hidden;
}

.hero-left {
  padding: 11rem 5rem 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream); position: relative;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--amber);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1.04; color: var(--deep);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.22s both;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--amber); }

.hero-body {
  font-size: 1.02rem; font-weight: 300;
  color: var(--warm-500); max-width: 400px;
  line-height: 1.8; margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.34s both;
}

.hero-actions {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.46s both;
}

.btn-fill {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--amber); color: var(--deep);
  padding: 0.95rem 2.2rem; text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-fill:hover { background: var(--amberDark); transform: translateY(-1px); }

.btn-outline {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-500); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-outline::after { content: '→'; font-size: 0.9rem; transition: transform 0.2s; }
.btn-outline:hover { color: var(--deep); }
.btn-outline:hover::after { transform: translateX(3px); }

/* Hero right — decorative panel */
.hero-right {
  position: relative; overflow: hidden; background: var(--linen);
}

.data-slab {
  position: absolute; border-radius: 3px;
}
.data-slab-back {
  right: -20px; top: 80px;
  width: 300px; height: 420px;
  background: var(--warm-100);
  transform: rotate(-2deg);
}
.data-slab-mid {
  right: 40px; top: 120px;
  width: 260px; height: 380px;
  background: var(--warm-200);
  transform: rotate(1.5deg);
  animation: gentleFloat 6s ease-in-out infinite;
}
.data-slab-front {
  right: 80px; top: 160px;
  width: 220px; height: 340px;
  background: rgba(242,163,15,0.12);
  transform: rotate(-0.5deg);
  animation: gentleFloat2 6s 1s ease-in-out infinite;
  border: 1px solid rgba(242,163,15,0.25);
}
.slab-lines {
  position: absolute; inset: 0; border-radius: 3px;
  background: repeating-linear-gradient(
    180deg, transparent 0px, transparent 39px,
    rgba(0,0,0,0.04) 39px, rgba(0,0,0,0.04) 40px
  );
}
.slab-label {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--amber);
  font-family: var(--sans); font-weight: 600;
}

@keyframes gentleFloat {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50%       { transform: rotate(1.5deg) translateY(-10px); }
}
@keyframes gentleFloat2 {
  0%, 100% { transform: rotate(-0.5deg) translateY(0); }
  50%       { transform: rotate(-0.5deg) translateY(-10px); }
}

.hero-stats {
  position: absolute; bottom: 4rem; left: 3rem;
  display: flex; gap: 3rem;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-stat-n {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  color: var(--deep); line-height: 1; display: block;
}
.hero-stat-l {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--warm-400);
  display: block; margin-top: 3px;
}

.scroll-hint {
  position: absolute; bottom: 3rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-400);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--warm-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── INTRO BAND ───────────────────────────────────── */
.intro-band {
  background: var(--navy);
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6rem; align-items: center;
}
.intro-pull {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 400; font-style: italic;
  color: var(--amberPale); line-height: 1.25;
}
.intro-body {
  font-size: 1rem; font-weight: 300;
  color: rgba(253,250,246,0.65); line-height: 1.85;
  border-left: 1px solid rgba(242,163,15,0.2);
  padding-left: 3rem;
}
.intro-body strong { color: var(--amberPale); font-weight: 500; }

/* ── SECTION COMPONENTS ───────────────────────────── */
.sec-header {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.sec-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--amber); flex-shrink: 0;
}
.sec-rule { flex: 1; height: 1px; background: var(--warm-200); }

.sec-title {
  font-family: var(--serif);
  font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--deep); line-height: 1.1; margin-bottom: 4rem;
}
.sec-title em { font-style: italic; font-weight: 300; color: var(--warm-400); }

/* ── PROBLEM ──────────────────────────────────────── */
.problem {
  padding: 7rem 4rem;
  background: var(--linen);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
}
.problem .sec-title { margin-bottom: 2rem; }
.problem-body {
  font-size: 0.95rem; font-weight: 300;
  color: var(--warm-500); line-height: 1.85; margin-bottom: 1.25rem;
}
.problem-body strong { color: var(--deep); font-weight: 500; }
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--warm-200);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 32px rgba(9,25,47,0.07);
}
.stat-cell {
  background: var(--white); padding: 2.5rem 2rem;
}
.stat-cell.accent { background: var(--amber); }
.stat-cell.accent .stat-n { color: var(--deep); }
.stat-cell.accent .stat-l { color: rgba(9,25,47,0.65); }
.stat-n {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 500;
  color: var(--amber); line-height: 1; display: block;
}
.stat-l {
  font-size: 0.8rem; font-weight: 400;
  color: var(--warm-500); line-height: 1.4; display: block; margin-top: 0.4rem;
}
.stat-footer {
  grid-column: 1 / -1; background: var(--linen);
  padding: 1.2rem 2rem; display: flex; align-items: center; gap: 0.8rem;
}
.stat-footer-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.stat-footer-text {
  font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--warm-400); line-height: 1.5;
}

/* ── SERVICES ─────────────────────────────────────── */
.services {
  padding: 7rem 4rem;
  background: var(--cream);
}

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--warm-200);
  border-radius: 2px; overflow: hidden;
}
.svc-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.svc-card:hover { background: var(--white); }
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.4s ease;
}
.svc-card:hover::after { width: 100%; }
.svc-num {
  font-family: var(--serif);
  font-size: 3.5rem; font-weight: 300;
  color: var(--warm-100); line-height: 1;
  margin-bottom: 1.5rem; display: block;
  transition: color 0.35s;
}
.svc-card:hover .svc-num { color: var(--linen); }
.svc-name {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 500;
  color: var(--deep); margin-bottom: 1rem; line-height: 1.2;
}
.svc-desc {
  font-size: 0.9rem; font-weight: 300;
  color: var(--warm-500); line-height: 1.75;
}
.svc-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid rgba(242,163,15,0.4); padding-bottom: 1px;
}

/* ── PROCESS ──────────────────────────────────────── */
.process {
  background: var(--linen);
  padding: 7rem 4rem;
}
.process .sec-title { margin-bottom: 2rem; }
.process-sub {
  font-size: 0.95rem; font-weight: 300;
  color: var(--warm-500); line-height: 1.75;
  margin-bottom: 3.5rem; max-width: 480px;
}
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 5%; right: 5%;
  height: 1px; background: var(--warm-200); z-index: 0;
}
.p-step { padding: 0 2rem; position: relative; z-index: 1; }
.p-dot {
  width: 32px; height: 32px;
  border-radius: 50%; background: var(--linen);
  border: 1px solid var(--warm-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.p-step:hover .p-dot {
  background: var(--amber);
  border-color: var(--amber);
}
.p-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  transition: background 0.3s;
}
.p-step:hover .p-inner { background: var(--deep); }
.p-num {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--warm-400); margin-bottom: 0.5rem;
  font-family: var(--serif);
}
.p-title {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--deep); margin-bottom: 0.8rem;
}
.p-desc { font-size: 0.85rem; font-weight: 300; color: var(--warm-500); line-height: 1.7; }

/* ── WHY ──────────────────────────────────────────── */
.why {
  padding: 7rem 4rem;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.why-visual { position: relative; height: 480px; }
.cb { position: absolute; border-radius: 2px; }
.cb-1 { width: 200px; height: 280px; bottom: 40px; left: 50px; background: var(--warm-200); }
.cb-2 { width: 160px; height: 220px; bottom: 40px; right: 30px; background: rgba(242,163,15,0.15); border: 1px solid rgba(242,163,15,0.3); animation: riseUp 5s ease-in-out infinite alternate; }
.cb-3 { width: 100px; height: 160px; bottom: 40px; left: 140px; background: var(--warm-300); animation: riseUp 5s 1.2s ease-in-out infinite alternate; }
.cb-lines {
  position: absolute; inset: 0; border-radius: 2px;
  background: repeating-linear-gradient(180deg, transparent, transparent 24px, rgba(0,0,0,0.04) 24px, rgba(0,0,0,0.04) 25px);
}
.cb-label {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
.cb-shadow {
  position: absolute; bottom: 28px; left: 40px; right: 20px; height: 14px;
  background: rgba(9,25,47,0.06); border-radius: 50%; filter: blur(8px);
}
.ground-line {
  position: absolute; bottom: 36px; left: 0; right: 0;
  height: 1px; background: var(--warm-200);
}
@keyframes riseUp {
  0%   { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

.why-content .sec-title { margin-bottom: 1.5rem; }
.why-body {
  font-size: 0.95rem; font-weight: 300;
  color: var(--warm-500); line-height: 1.85;
  margin-bottom: 2.5rem;
}
.benefit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.benefit-card {
  background: var(--linen); border-radius: 4px;
  padding: 1.4rem 1.2rem;
  border-left: 2px solid var(--amber);
  transition: background 0.25s;
}
.benefit-card:hover { background: var(--white); }
.benefit-title {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 600;
  color: var(--deep); margin-bottom: 0.4rem;
}
.benefit-text {
  font-size: 0.8rem; font-weight: 300;
  color: var(--warm-400); line-height: 1.65;
}

/* ── ABOUT ────────────────────────────────────────── */
.about {
  background: var(--linen);
  padding: 7rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about .sec-title { margin-bottom: 1.25rem; }
.about-body {
  font-size: 0.95rem; font-weight: 300;
  color: var(--warm-500); line-height: 1.85; margin-bottom: 1.5rem;
}
.about-note {
  font-size: 0.68rem; letter-spacing: 0.02em;
  color: var(--warm-400); line-height: 1.6;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--warm-200);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 32px rgba(9,25,47,0.07);
}
.a-stat {
  background: var(--white); padding: 2.5rem 2rem;
}
.a-stat-n {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 500;
  color: var(--amber); line-height: 1; display: block;
}
.a-stat-l {
  font-size: 0.8rem; font-weight: 400;
  color: var(--warm-500); line-height: 1.4; display: block; margin-top: 0.4rem;
}
.a-location {
  grid-column: 1 / -1;
  background: var(--linen); padding: 1.4rem 2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.loc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.loc-text { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-400); }

/* ── CONTACT ──────────────────────────────────────── */
.contact {
  background: var(--deep);
  padding: 7rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
}
.contact .sec-eyebrow { color: var(--amberPale); }
.contact .sec-rule { background: rgba(242,163,15,0.15); }
.contact .sec-title { color: var(--white); margin-bottom: 1.2rem; }
.contact .sec-title em { color: var(--amberPale); }
.contact-sub {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(253,250,246,0.55); line-height: 1.8; margin-bottom: 2.5rem;
}
.c-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.c-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(242,163,15,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon svg { width: 13px; height: 13px; stroke: var(--amberPale); fill: none; stroke-width: 1.5; }
.c-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-400); margin-bottom: 0.15rem; }
.c-val { font-size: 0.9rem; color: rgba(253,250,246,0.75); }

.c-form { display: flex; flex-direction: column; gap: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-g { display: flex; flex-direction: column; gap: 0.35rem; }
.f-lbl { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-300); }
.f-inp, .f-sel, .f-ta {
  background: rgba(245,241,234,0.06);
  border: 1px solid rgba(242,163,15,0.2); border-radius: 2px;
  color: rgba(253,250,246,0.9);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  padding: 0.8rem 1rem; outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.f-inp::placeholder, .f-ta::placeholder { color: rgba(176,164,148,0.35); }
.f-inp:focus, .f-sel:focus, .f-ta:focus {
  border-color: rgba(242,163,15,0.5);
  background: rgba(245,241,234,0.09);
}
.f-sel {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23b0a494' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-color: rgba(245,241,234,0.06); cursor: pointer;
}
.f-sel option { background: #0D2645; color: #fdfaf6; }
.f-ta { resize: vertical; min-height: 110px; }
.f-btn {
  background: var(--amber); color: var(--deep);
  font-family: var(--sans); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  border: none; border-radius: 2px;
  padding: 1rem 2rem; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start; min-width: 180px;
}
.f-btn:hover { background: var(--amberDark); transform: translateY(-1px); }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: var(--amber);
  padding: 6rem 4rem;
  position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute; right: -2vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(160px, 28vw, 360px);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(200,134,10,0.2);
  line-height: 1; user-select: none; pointer-events: none;
}
.cta-inner { position: relative; max-width: 600px; }
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500; color: var(--deep);
  line-height: 1.05; margin-bottom: 1.2rem;
}
.cta-h2 em { font-style: italic; font-weight: 300; }
.cta-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--white); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 420px;
}
.btn-dark {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--deep); color: var(--amber);
  padding: 1rem 2.5rem; text-decoration: none;
  border-radius: 2px; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--navyMid); transform: translateY(-1px); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--deep); padding: 3rem 4rem;
  border-top: 1px solid rgba(242,163,15,0.1);
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.f-logo-main {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 500; color: rgba(253,250,246,0.8); display: block;
}
.f-logo-main span { color: var(--amber); }
.f-logo-sub {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-500); display: block; margin-top: 3px;
}
.f-copy { font-size: 0.75rem; color: var(--warm-500); }
.f-links { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
.f-links a {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-400); text-decoration: none; transition: color 0.2s;
}
.f-links a:hover { color: rgba(253,250,246,0.7); }
/* ── PRIVACY PAGE ─────────────────────────────────── */
#page-privacy, #page-products, #page-advisory { display: none; }
.privacy-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; padding-top: 72px; }
.sidebar {
  background: var(--linen); border-right: 1px solid var(--warm-200);
  padding: 3rem 1.5rem; position: sticky; top: 72px;
  height: calc(100vh - 72px); overflow-y: auto;
}
.sidebar-title {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem; font-weight: 600;
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-nav a {
  font-size: 0.78rem; color: var(--warm-400); text-decoration: none;
  padding: 0.4rem 0.6rem; border-left: 2px solid transparent;
  display: block; transition: all 0.2s; font-weight: 400;
  border-radius: 0 2px 2px 0;
}
.sidebar-nav a:hover { color: var(--deep); border-left-color: var(--warm-200); }
.sidebar-nav a.active { color: var(--amber); border-left-color: var(--amber); background: rgba(242,163,15,0.06); }
.privacy-content { padding: 4rem 4rem; max-width: 760px; }
.privacy-content section { padding-bottom: 3.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--warm-100); }
.privacy-content section:last-child { border-bottom: none; }
.section-num {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.5rem; display: block;
}
.privacy-content h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--deep); margin-bottom: 1.25rem; line-height: 1.2;
}
.privacy-content h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--deep); margin-top: 1.5rem; margin-bottom: 0.6rem;
}
.privacy-content p {
  font-size: 0.9rem; color: var(--warm-500); line-height: 1.8;
  font-weight: 300; margin-bottom: 0.9rem;
}
.privacy-content ul { margin: 0.5rem 0 1rem 1.2rem; }
.privacy-content ul li {
  font-size: 0.9rem; color: var(--warm-500); line-height: 1.75;
  font-weight: 300; margin-bottom: 0.35rem;
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--warm-200); margin: 1rem 0; }
.info-cell { background: var(--white); padding: 1.2rem 1.5rem; }
.info-cell dt { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-400); margin-bottom: 0.3rem; }
.info-cell dd { font-size: 0.9rem; color: var(--deep); font-weight: 400; }
.privacy-hero {
  background: var(--navy); padding: 5rem 4rem 3rem;
  border-bottom: 1px solid rgba(242,163,15,0.1);
}
.privacy-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem,4vw,3rem);
  font-weight: 500; color: var(--white); margin-bottom: 0.75rem;
}
.privacy-hero p { font-size: 0.9rem; color: rgba(253,250,246,0.55); font-weight: 300; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 9rem 2rem 4rem; }
  .hero-right { height: 280px; }
  .intro-band { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .intro-body { padding-left: 0; border-left: none; padding-top: 1.5rem; border-top: 1px solid rgba(242,163,15,0.15); }
  .problem { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 4rem; }
  .services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 5rem 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::after { display: none; }
  .why { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 4rem; }
  .why-visual { display: none; }
  .about { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .contact { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .cta-band { padding: 5rem 2rem; }
  .privacy-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .privacy-content { padding: 2.5rem 2rem; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .p-step { padding: 1.5rem 0; border-bottom: 1px solid var(--warm-100); }
  .p-step:last-child { border-bottom: none; }
  .process-steps::after { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  /* iOS Safari zoom prevention — inputs must be ≥16px */
  .f-inp, .f-sel, .f-ta { font-size: 16px; }
  /* Privacy hero — reduce horizontal padding on narrow screens */
  .privacy-hero { padding: 5rem 1.5rem 2.5rem; }
  .privacy-content { padding: 2rem 1.5rem; }
  /* Nav logo — hide subtitle on very small screens */
  .nav-logo-sub { display: none; }
  /* CTA band — reduce padding */
  .cta-band { padding: 4rem 1.5rem; }
}
/* ── QUESTIONNAIRE ─────────────────────────────────── */
.q-section { background: var(--cream); padding: 0; }
.q-wrapper { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }

.q-left {
  background: var(--navyMid); display: flex; flex-direction: column;
  justify-content: center; padding: 3rem 3.5rem; overflow: hidden;
}
.q-left-bg {
  position: absolute; right: -2rem; bottom: -3rem;
  font-family: var(--serif); font-size: clamp(180px,22vw,290px);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(242,163,15,.08);
  line-height: 1; pointer-events: none; user-select: none;
}
.q-eyebrow { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; }
.q-left-title { font-family: var(--serif); font-size: clamp(1.65rem,2.3vw,2.4rem); font-weight: 600; line-height: 1.15; margin-bottom: .9rem; color: var(--white); }
.q-left-title em { font-style: italic; color: var(--amber); }
.q-left-desc { font-size: .88rem; color: rgba(253,250,246,0.6); line-height: 1.75; font-weight: 300; max-width: 300px; }
.q-progress-track { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .5rem; }
.q-ps { display: flex; align-items: center; gap: .75rem; font-size: .74rem; color: rgba(253,250,246,0.5); transition: color .3s; }
.q-ps.active { color: var(--white); font-weight: 500; }
.q-ps.done { color: var(--amber); }
.q-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(253,250,246,0.3); background: transparent; transition: all .3s; }
.q-ps.active .q-dot, .q-ps.done .q-dot { background: var(--amber); border-color: var(--amber); }
.q-pline { width: 1px; height: 16px; background: rgba(253,250,246,0.1); margin-left: 3px; }
.q-time { margin-top: 1.75rem; display: flex; align-items: center; gap: .5rem; font-size: .74rem; color: rgba(253,250,246,0.4); }
.q-time::before { content: ''; display: block; width: 14px; height: 1px; background: rgba(253,250,246,0.3); }

.q-right { background: var(--linen); display: flex; align-items: stretch; }
.q-form-wrap { width: 100%; max-width: 560px; margin: 0 auto; padding: 3.5rem 2.75rem; display: flex; flex-direction: column; }
.q-progress-bar { width: 100%; height: 3px; background: var(--warm-200); margin-bottom: 2.25rem; border-radius: 2px; }
.q-progress-fill { height: 100%; background: var(--amber); transition: width .4s cubic-bezier(.4,0,.2,1); border-radius: 2px; }

.q-step { display: none; animation: qIn .4s cubic-bezier(.4,0,.2,1); }
.q-step.active { display: block; }
@keyframes qIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.q-step-label { display: inline-block; font-size: .63rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .65rem; }
.q-step-h { font-family: var(--serif); font-size: clamp(1.5rem,2vw,1.9rem); font-weight: 600; color: var(--deep); line-height: 1.15; margin-bottom: .4rem; }
.q-step-h em { font-style: italic; font-weight: 300; }
.q-step-sub { font-size: .85rem; color: var(--warm-500); margin-bottom: 1.6rem; font-weight: 300; line-height: 1.65; }

.q-field { margin-bottom: 1rem; }
.q-field label { display: block; font-size: .72rem; font-weight: 600; color: var(--deep); margin-bottom: .38rem; letter-spacing: .02em; }
.q-field input, .q-field select, .q-field textarea {
  width: 100%; padding: .72rem .95rem; background: var(--white); border: 1.5px solid var(--warm-200);
  color: var(--deep); font-family: var(--sans); font-size: 16px;
  outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; border-radius: 2px;
}
.q-field input:focus, .q-field select:focus, .q-field textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(242,163,15,.1); }
.q-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238e8070' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.3rem; background-color: var(--white); }
.q-field textarea { resize: vertical; min-height: 78px; }
.q-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

.q-options { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.25rem; }
.q-opt { display: flex; align-items: flex-start; gap: .75rem; padding: .85rem 1rem; background: var(--white); border: 1.5px solid var(--warm-200); cursor: pointer; transition: border-color .2s, background .2s, transform .1s; position: relative; border-radius: 2px; }
.q-opt:hover { border-color: var(--amber); background: rgba(242,163,15,.03); transform: translateX(2px); }
.q-opt.selected { border-color: var(--amber); background: rgba(242,163,15,.07); }
.q-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.q-check { flex-shrink: 0; width: 17px; height: 17px; border: 1.5px solid var(--warm-300); background: var(--white); display: flex; align-items: center; justify-content: center; transition: all .2s; margin-top: 1px; border-radius: 2px; }
.q-opt.selected .q-check { background: var(--amber); border-color: var(--amber); }
.q-check svg { display: none; width: 9px; height: 9px; }
.q-opt.selected .q-check svg { display: block; }
.q-opt-label { font-size: .84rem; font-weight: 500; color: var(--deep); display: block; }
.q-opt-hint { font-size: .74rem; color: var(--warm-400); margin-top: .1rem; }

.q-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .42rem; margin-bottom: 1.25rem; }
.q-chip { padding: .6rem .85rem; background: var(--white); border: 1.5px solid var(--warm-200); cursor: pointer; font-size: .76rem; font-weight: 500; color: var(--warm-400); transition: all .2s; text-align: center; position: relative; border-radius: 2px; }
.q-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.q-chip:hover { border-color: var(--amber); color: var(--deep); }
.q-chip.selected { border-color: var(--amber); background: rgba(242,163,15,.08); color: var(--deep); }

.q-qlabel { font-size: .76rem; font-weight: 600; color: var(--deep); margin-bottom: .5rem; margin-top: .15rem; }

.q-btn-row { display: flex; gap: .65rem; margin-top: 1.6rem; align-items: center; }
.q-btn-next { background: var(--deep); color: var(--amber); padding: .8rem 1.9rem; font-family: var(--sans); font-size: .86rem; font-weight: 600; border: none; cursor: pointer; letter-spacing: .02em; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: .4rem; border-radius: 2px; touch-action: manipulation; }
.q-btn-next:hover { background: var(--navyMid); transform: translateY(-1px); }
.q-btn-back { background: transparent; color: var(--warm-400); padding: .8rem 1rem; font-family: var(--sans); font-size: .81rem; font-weight: 500; border: 1.5px solid var(--warm-200); cursor: pointer; transition: border-color .2s, color .2s; border-radius: 2px; touch-action: manipulation; }
.q-btn-back:hover { border-color: var(--warm-400); color: var(--deep); }

.q-notice { display: flex; gap: .45rem; align-items: flex-start; padding: .75rem .95rem; background: rgba(242,163,15,.07); border-left: 3px solid var(--amber); margin-top: .7rem; border-radius: 0 2px 2px 0; }
.q-notice p { font-size: .71rem; color: var(--warm-500); line-height: 1.6; }

.q-result-top { text-align: center; padding: 1.4rem 0 1.6rem; }
.q-result-icon { width: 60px; height: 60px; background: var(--amber); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; border-radius: 2px; }
.q-result-h { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--deep); line-height: 1.2; margin-bottom: .6rem; }
.q-result-h em { font-style: italic; color: var(--amber); }
.q-result-sub { font-size: .85rem; color: var(--warm-500); line-height: 1.7; max-width: 380px; margin: 0 auto; }
.q-score-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--warm-200); margin: 1.4rem 0; border-radius: 2px; overflow: hidden; }
.q-score-item { background: var(--white); padding: 1rem; text-align: center; }
.q-score-n { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; color: var(--amber); line-height: 1; }
.q-score-l { font-size: .66rem; color: var(--warm-400); margin-top: .28rem; }
.q-rec { background: var(--deep); padding: 1.65rem; margin-bottom: 1.1rem; position: relative; overflow: hidden; border-radius: 2px; }
.q-rec::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); }
.q-rec-tag { font-size: .61rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .4rem; }
.q-rec-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.q-rec-desc { font-size: .8rem; color: rgba(253,250,246,0.65); line-height: 1.65; margin-bottom: .85rem; }
.q-rec-price { font-size: .92rem; font-weight: 600; color: var(--amber); }
.q-rec-time { font-size: .73rem; color: rgba(253,250,246,0.45); margin-top: .18rem; }
.q-btn-submit { background: var(--amber); color: var(--deep); width: 100%; padding: .9rem; font-family: var(--sans); font-size: .9rem; font-weight: 700; border: none; cursor: pointer; letter-spacing: .02em; transition: background .2s, transform .15s; border-radius: 2px; touch-action: manipulation; }
.q-btn-submit:hover { background: var(--amberDark); transform: translateY(-1px); }

@media (max-width: 900px) {
  .q-wrapper { grid-template-columns: 1fr; }
  .q-left { position: relative; top: 0; height: auto; padding: 2.25rem 2rem; }
  .q-left-bg { display: none; }
  .q-form-wrap { padding: 2rem 1.5rem; }
  .q-field-row { grid-template-columns: 1fr; }
  .q-chips { grid-template-columns: 1fr; }
  .q-progress-track { flex-direction: row; flex-wrap: wrap; gap: .4rem; }
  .q-pline { display: none; }
}

/* ── MARQUEE ────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; background: var(--amber);
  padding: 0.85rem 0;
  border-top: 1px solid var(--amberDark);
  border-bottom: 1px solid var(--amberDark);
}
.marquee { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem; font-size: 0.75rem; font-weight: 600;
  color: var(--deep); letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--amberDark); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FLOATING CTA ───────────────────────────────────── */
.float-cta {
  position: fixed; right: 2rem; bottom: 2.5rem; z-index: 80;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--amber); color: var(--deep);
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  text-decoration: none; font-family: var(--sans);
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em;
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(242,163,15,0.35), 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), background 0.2s;
  touch-action: manipulation;
}
.float-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta:hover { background: var(--amberDark); }
.float-cta-dot {
  width: 8px; height: 8px; background: var(--deep); border-radius: 50%;
  animation: ctaPulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}
@media (max-width: 600px) { .float-cta { display: none; } }

/* ── MOBILE STICKY CTA BAR ──────────────────────────── */
.mobile-cta-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--deep); border-top: 2px solid var(--amber);
  padding: 0.75rem 1.25rem; gap: 0.65rem;
  align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(9,25,47,0.25);
}
.mobile-cta-bar span {
  font-size: 0.75rem; color: var(--warm-300); font-weight: 300; flex: 1; line-height: 1.3;
}
.mobile-cta-bar span strong { color: var(--amber); display: block; font-weight: 600; }
.mobile-cta-bar a {
  background: var(--amber); color: var(--deep);
  padding: 0.65rem 1.1rem; font-family: var(--sans);
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  min-height: 44px; display: flex; align-items: center; border-radius: 2px;
  touch-action: manipulation;
}
@media (max-width: 600px) {
  .mobile-cta-bar { display: flex; }
  #page-advisory { padding-bottom: 72px; }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
body.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s, transform 0.65s; }
body.js .reveal.visible { opacity: 1; transform: none; }

/* ── SERVICE ICONS + RULE + LINK ────────────────────── */
.svc-icon-wrap {
  width: 48px; height: 48px; background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; flex-shrink: 0; border-radius: 2px;
  transition: background 0.3s;
}
.svc-card:hover .svc-icon-wrap { background: var(--amberDark); }
.svc-rule { width: 28px; height: 2px; background: var(--amber); margin: 0.75rem 0 1rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; font-size: 0.72rem; font-weight: 600;
  color: var(--amber); letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: gap 0.2s;
}
.svc-link::after { content: '→'; transition: transform 0.2s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ── WHY SECTION ICON BOXES ─────────────────────────── */
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(242,163,15,0.35);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}

/* ── FOOTER UPGRADE ─────────────────────────────────── */
.footer-amber-line { width: 100%; height: 3px; background: var(--amber); }
footer {
  background: var(--deep);
  border-top: none;
  padding: 0;
  display: block;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; padding: 3.5rem 4rem 3rem;
}
.footer-brand {}
.footer-logo-main {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: rgba(253,250,246,0.9); display: block; margin-bottom: 0.75rem;
}
.footer-logo-main span { color: var(--amber); }
.footer-tagline {
  font-size: 0.82rem; color: var(--warm-400); line-height: 1.65;
  font-weight: 300; max-width: 240px;
}
.footer-col h4 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.82rem; color: var(--warm-400); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: rgba(253,250,246,0.7); }
.footer-bottom {
  padding: 1.25rem 4rem; border-top: 1px solid rgba(253,250,246,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.72rem; color: var(--warm-500); font-weight: 300; }
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 2rem 2rem; }
  .footer-bottom { padding: 1.25rem 2rem; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── PILLARS — "Two ways we work" ───────────────────── */
.pillars { background: var(--cream); padding: 7rem 4rem; }
.pillars .sec-title { margin-bottom: 1rem; }
.pillars-sub {
  font-size: 0.95rem; font-weight: 300; color: var(--warm-500);
  line-height: 1.75; max-width: 520px; margin-bottom: 3.5rem;
}
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--warm-200); border-radius: 2px; overflow: hidden; }
.pillar {
  background: var(--cream); padding: 3rem 2.75rem;
  display: flex; flex-direction: column;
  position: relative; transition: background 0.35s;
}
.pillar:hover { background: var(--white); }
.pillar-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.4rem;
}
.pillar-tag .dot { width: 7px; height: 7px; border-radius: 50%; }
.pillar-advisory .pillar-tag { color: var(--amberDark); }
.pillar-advisory .pillar-tag .dot { background: var(--amber); }
.pillar-products .pillar-tag { color: var(--brick); }
.pillar-products .pillar-tag .dot { background: var(--brick); }
.pillar-name {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 500;
  color: var(--deep); line-height: 1.15; margin-bottom: 0.85rem;
}
.pillar-desc {
  font-size: 0.9rem; font-weight: 300; color: var(--warm-500);
  line-height: 1.75; margin-bottom: 1.6rem;
}
.pillar-list { list-style: none; margin-bottom: 2rem; }
.pillar-list li {
  font-size: 0.85rem; color: var(--warm-500); font-weight: 300;
  padding: 0.55rem 0; border-top: 1px solid var(--warm-100);
  display: flex; align-items: center; gap: 0.7rem;
}
.pillar-list li::before {
  content: ''; width: 14px; height: 1px; background: var(--warm-300); flex-shrink: 0;
}
.pillar-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  transition: gap 0.2s;
}
.pillar-link::after { content: '→'; transition: transform 0.2s; }
.pillar:hover .pillar-link::after { transform: translateX(4px); }
.pillar-advisory .pillar-link { color: var(--amberDark); }
.pillar-products .pillar-link { color: var(--brick); }

/* ── PRODUCTS — flagship Almonry showcase ───────────── */
.products { background: var(--deep); padding: 7rem 4rem; position: relative; overflow: hidden; }
.products .sec-eyebrow { color: var(--brickPale); }
.products .sec-rule { background: rgba(201,140,110,0.2); }
.products .sec-title { color: var(--white); margin-bottom: 1rem; }
.products .sec-title em { color: var(--brickPale); }
.products-sub {
  font-size: 0.95rem; font-weight: 300; color: rgba(253,250,246,0.55);
  line-height: 1.75; max-width: 520px; margin-bottom: 3.5rem;
}

.product-card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--navy); border: 1px solid rgba(201,140,110,0.18);
  border-radius: 3px; overflow: hidden;
}
.product-id {
  padding: 3rem 2.75rem; border-right: 1px solid rgba(201,140,110,0.14);
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(139,58,30,0.14), rgba(13,38,69,0));
}
.product-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--brickPale); margin-bottom: 1.5rem;
}
.product-status .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5bbf6e; box-shadow: 0 0 0 0 rgba(91,191,110,0.5);
  animation: livePulse 2.4s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(91,191,110,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(91,191,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,191,110,0); }
}
.product-name {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--white); line-height: 1; margin-bottom: 0.5rem;
}
.product-name span { color: var(--brickPale); }
.product-line {
  font-size: 0.82rem; color: rgba(253,250,246,0.6); font-weight: 300;
  line-height: 1.6; margin-bottom: 1.75rem;
}
.product-desc {
  font-size: 0.88rem; color: rgba(253,250,246,0.7); font-weight: 300;
  line-height: 1.8; margin-bottom: 1.75rem;
}
.product-meta { display: flex; gap: 2.25rem; margin-top: auto; }
.product-meta .pm-n {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: var(--brickPale); line-height: 1; display: block;
}
.product-meta .pm-l {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-400); display: block; margin-top: 4px;
}
.product-detail { padding: 3rem 2.75rem; display: flex; flex-direction: column; justify-content: center; }
.product-feature {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(253,250,246,0.06);
}
.product-feature:first-of-type { padding-top: 0; }
.pf-mark {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 2px;
  background: rgba(201,140,110,0.16);
  display: flex; align-items: center; justify-content: center;
}
.pf-mark svg { width: 12px; height: 12px; stroke: var(--brickPale); fill: none; stroke-width: 2.2; }
.pf-text { font-size: 0.83rem; color: rgba(253,250,246,0.72); font-weight: 300; line-height: 1.6; }
.pf-text strong { color: var(--white); font-weight: 500; }
.product-pricing {
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  background: rgba(139,58,30,0.16); border-left: 2px solid var(--brick);
  border-radius: 2px; font-size: 0.8rem; color: rgba(253,250,246,0.7);
  font-weight: 300; line-height: 1.65;
}
.product-pricing strong { color: var(--brickPale); font-weight: 600; }
.product-actions { margin-top: 1.5rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-brick {
  font-family: var(--sans); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--brickPale); color: var(--deep);
  padding: 0.9rem 1.9rem; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-brick:hover { background: #d99f82; transform: translateY(-1px); }
.product-link-sub {
  font-size: 0.74rem; color: rgba(253,250,246,0.5); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
}
.product-link-sub:hover { color: var(--brickPale); }

.product-soon {
  margin-top: 2px; background: var(--navy);
  border: 1px dashed rgba(201,140,110,0.25); border-radius: 3px;
  padding: 1.5rem 2.75rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.product-soon .ps-label {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brickPale); font-weight: 600; margin-bottom: 0.3rem;
}
.product-soon .ps-text { font-size: 0.85rem; color: rgba(253,250,246,0.55); font-weight: 300; }
.product-soon .ps-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .pillars { padding: 5rem 2rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .products { padding: 5rem 2rem; }
  .product-card { grid-template-columns: 1fr; }
  .product-id { border-right: none; border-bottom: 1px solid rgba(201,140,110,0.14); }
  .product-soon { padding: 1.5rem 2rem; }
}
@media (max-width: 640px) {
  .pillar, .product-id, .product-detail { padding-left: 1.6rem; padding-right: 1.6rem; }
  .product-meta { gap: 1.5rem; }
}

/* ── HOME HUB — two-door landing ─────────────────────── */
.hub {
  display: flex; flex-direction: column;
  padding: 7rem 4rem 5rem;
  background: var(--cream);
}
.hub-intro { max-width: 720px; margin-bottom: 3rem; animation: fadeUp 0.8s 0.1s both; }
.hub-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
}
.hub-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--amber); }
.hub-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.04;
  color: var(--deep); margin-bottom: 1.1rem;
}
.hub-title em { font-style: italic; font-weight: 300; color: var(--amber); }
.hub-lead {
  font-size: 1.05rem; font-weight: 300; color: var(--warm-500);
  line-height: 1.7; max-width: 470px;
}

.hub-doors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  animation: fadeUp 0.8s 0.28s both;
}
.door {
  display: flex; flex-direction: column;
  padding: 2.5rem 2.5rem 2.25rem;
  text-decoration: none; border-radius: 3px;
  position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}
.door::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  transition: width 0.3s ease;
}
.door:hover { transform: translateY(-4px); }
.door:hover::before { width: 6px; }
.door-advisory { background: var(--linen); box-shadow: 0 4px 28px rgba(9,25,47,0.06); }
.door-advisory::before { background: var(--amber); }
.door-advisory:hover { box-shadow: 0 14px 40px rgba(9,25,47,0.12); }
.door-products { background: var(--deep); box-shadow: 0 4px 28px rgba(9,25,47,0.10); }
.door-products::before { background: var(--brick); }
.door-products:hover { box-shadow: 0 16px 44px rgba(9,25,47,0.30); }

.door-head {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.75rem;
}
.door-icon {
  width: 44px; height: 44px; border-radius: 3px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.door:hover .door-icon { transform: translateY(-2px); }
.door-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.8; }
.door-advisory .door-icon { background: var(--amber); }
.door-advisory .door-icon svg { stroke: var(--deep); }
.door-products .door-icon { background: rgba(201,140,110,0.16); }
.door-products .door-icon svg { stroke: var(--brickPale); }
.door-tag {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.door-advisory .door-tag { color: var(--amberDark); }
.door-products .door-tag { color: var(--brickPale); }
.door-arrow { margin-left: auto; font-size: 1.2rem; transition: transform 0.3s ease; }
.door-advisory .door-arrow { color: var(--warm-300); }
.door-products .door-arrow { color: var(--brickPale); }
.door:hover .door-arrow { transform: translateX(6px); }

.door-body { flex: 1; }
.door-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1; margin-bottom: 0.9rem;
}
.door-advisory .door-title { color: var(--deep); }
.door-products .door-title { color: var(--white); }
.door-desc {
  font-size: 0.92rem; font-weight: 300; line-height: 1.7;
  margin-bottom: 1.4rem; max-width: 380px;
}
.door-advisory .door-desc { color: var(--warm-500); }
.door-products .door-desc { color: rgba(253,250,246,0.6); }
.door-list { list-style: none; }
.door-list li {
  font-size: 0.85rem; font-weight: 300;
  padding: 0.5rem 0; display: flex; align-items: center; gap: 0.7rem;
}
.door-list li::before { content: ''; width: 14px; height: 1px; flex-shrink: 0; }
.door-advisory .door-list li { color: var(--warm-500); border-top: 1px solid var(--warm-200); }
.door-advisory .door-list li::before { background: var(--amber); }
.door-products .door-list li { color: rgba(253,250,246,0.62); border-top: 1px solid rgba(253,250,246,0.07); }
.door-products .door-list li::before { background: var(--brick); }

.door-enter {
  margin-top: 1.6rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.door-enter::after { content: '→'; transition: transform 0.2s; }
.door:hover .door-enter::after { transform: translateX(4px); }
.door-advisory .door-enter { color: var(--amberDark); }
.door-products .door-enter { color: var(--brickPale); }

@media (max-width: 1024px) {
  .hub { padding: 7rem 2rem 3rem; }
  .hub-doors { grid-template-columns: 1fr; min-height: 0; }
  .door { padding: 2.25rem 2rem; }
}
@media (max-width: 600px) {
  .hub { padding: 6.5rem 1.5rem 2.5rem; min-height: 0; }
  .hub-title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hub-intro { margin-bottom: 2rem; }
  .door { min-height: 0; }
}


/* ── FAQ ─────────────────────────────────────────────── */
.faq { padding: 6rem 4rem; background: var(--linen); }
.faq.faq-dark { background: var(--deep); }
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--warm-200); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--warm-200); }
.faq-q { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--deep); margin-bottom: .5rem; line-height: 1.3; }
.faq-a { font-size: .92rem; font-weight: 300; color: var(--warm-500); line-height: 1.75; }
.faq-dark .sec-title, .faq-dark .faq-q { color: var(--white); }
.faq-dark .faq-item { border-color: rgba(253,250,246,0.1); }
.faq-dark .faq-a { color: rgba(253,250,246,0.62); }
.faq-dark .sec-rule { background: rgba(253,250,246,0.15); }
@media (max-width: 1024px) { .faq { padding: 5rem 2rem; } }


/* ── Disclaimers ─────────────────────────────────────── */
.q-disclaimer { margin-top: 1.4rem; max-width: 300px; font-size: .72rem; font-style: italic; font-weight: 300; line-height: 1.65; color: rgba(253,250,246,0.42); }
.legal-note { background: var(--deep); padding: 2.75rem 4rem; border-top: 1px solid rgba(253,250,246,0.06); }
.legal-note p { max-width: 860px; font-size: .8rem; font-weight: 300; line-height: 1.75; color: rgba(253,250,246,0.5); }
@media (max-width: 1024px) { .legal-note { padding: 2.25rem 2rem; } }
