:root {
  --ivory: #F2EFE7;
  --ivory-soft: #EAE6DA;
  --ink: #17150F;
  --ink-soft: #4A4638;
  --gold: #8F7A35;
  --gold-bright: #B39A4D;
  --line: rgba(23, 21, 15, 0.12);
  --line-light: rgba(242, 239, 231, 0.14);
  --radius: 18px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(242, 239, 231, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 14.5px; font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ivory); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { background: var(--gold-bright); transform: translateY(-2px); }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.menu-toggle span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--ink); transition: all .3s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ---------- Home hero ---------- */
.hero { padding: 190px 0 110px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 26px 0 24px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead {
  font-size: 18px; color: var(--ink-soft); max-width: 520px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; justify-content: center; }
.arch {
  width: min(340px, 80%); aspect-ratio: 340 / 430;
  background: var(--ink);
  border-radius: 170px 170px var(--radius) var(--radius);
  position: relative; overflow: hidden;
}
.arch::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(179,154,77,.28), transparent 55%);
}
.arch svg { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); width: 62%; }
.arch-caption {
  position: absolute; bottom: 34px; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-size: 10.5px; letter-spacing: 0.42em;
  color: rgba(242,239,231,.75); text-transform: uppercase;
}
.hero-badge {
  position: absolute; bottom: -8px; left: 4%;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 22px; box-shadow: 0 18px 40px rgba(23,21,15,.10);
  font-size: 13.5px; color: var(--ink-soft);
}
.hero-badge strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15px; letter-spacing: -0.01em; }

/* ---------- Ticker strip ---------- */
.strip { background: var(--ink); color: var(--ivory); padding: 22px 0; overflow: hidden; }
.strip-track {
  display: flex; gap: 64px; white-space: nowrap; width: max-content;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
}
.strip-track span { display: inline-flex; align-items: center; gap: 64px; color: rgba(242,239,231,.85); }
.strip-track i { font-style: normal; color: var(--gold-bright); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 48px); margin-top: 22px; }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }

/* About */
.about { background: var(--ivory-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-grid h2 { font-size: clamp(30px, 3.8vw, 44px); margin-top: 22px; }
.about-copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 20px; }
.about-copy p strong { color: var(--ink); }
.about-facts { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 10px; }
.fact {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.fact .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.fact .label { font-size: 15px; color: var(--ink-soft); text-align: right; max-width: 300px; }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar {
  background: #FBF9F4; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 42px 38px; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(23,21,15,.09); border-color: rgba(143,122,53,.4); }
.pillar .index {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 26px;
}
.pillar h3 { font-size: 25px; margin-bottom: 14px; }
.pillar > p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; }
.pillar ul { list-style: none; display: grid; gap: 10px; }
.pillar ul li {
  font-size: 14.5px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.pillar ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.pillar .glyph {
  position: absolute; top: 34px; right: 34px; width: 46px; height: 46px;
  border-radius: 12px; background: var(--ink);
  display: grid; place-items: center;
}
.pillar .glyph svg { width: 22px; height: 22px; stroke: var(--gold-bright); fill: none; stroke-width: 1.6; }
.pillar-more {
  margin-top: auto; padding-top: 26px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s ease, color .2s ease;
}
.pillar-more:hover { color: var(--ink); gap: 14px; }

/* Approach */
.approach { background: var(--ink); color: var(--ivory); }
.approach .eyebrow { color: var(--gold-bright); }
.approach .eyebrow::before { background: var(--gold-bright); }
.approach .section-head p { color: rgba(242,239,231,.65); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.value {
  padding: 46px 38px 46px 0; border-bottom: 1px solid var(--line-light);
}
.value + .value { border-left: 1px solid var(--line-light); padding-left: 38px; }
.value .index { font-family: var(--font-display); font-size: 13px; letter-spacing: .3em; color: var(--gold-bright); display: block; margin-bottom: 22px; }
.value h3 { font-size: 21px; margin-bottom: 14px; color: var(--ivory); }
.value p { font-size: 15px; color: rgba(242,239,231,.62); }

/* CTA band */
.cta-band { padding: 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--gold) 0%, #6E5C25 100%);
  border-radius: 26px; padding: 84px 64px; color: var(--ivory);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ""; position: absolute; right: -60px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(242,239,231,.25);
}
.cta-inner::before {
  content: ""; position: absolute; right: 40px; top: -140px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(242,239,231,.18);
}
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 42px); max-width: 560px; }
.cta-inner p { margin-top: 14px; color: rgba(242,239,231,.85); max-width: 480px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; }
.contact-info h2 { font-size: clamp(30px, 3.8vw, 44px); margin-top: 22px; margin-bottom: 20px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 40px; max-width: 400px; }
.contact-rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-row { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.contact-row .k { font-family: var(--font-display); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.contact-row .v { font-size: 16px; color: var(--ink); }
.contact-row .v a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--gold); }

form.card {
  background: #FBF9F4; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 46px 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-display); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--ivory); border: 1px solid var(--line);
  border-radius: 10px; outline: none; transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }

/* Footer */
footer { background: var(--ink); color: var(--ivory); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-light); }
.footer-brand p { color: rgba(242,239,231,.6); font-size: 14.5px; max-width: 340px; margin-top: 18px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo .mark {
  width: 44px; height: 54px; background: var(--ivory);
  border-radius: 22px 22px 8px 8px; display: grid; place-items: center; flex-shrink: 0;
}
.footer-logo .mark svg { width: 26px; }
.footer-logo .name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.footer-logo .name i { font-style: normal; color: var(--gold-bright); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 22px; font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(242,239,231,.72); text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--ivory); }
.footer-col .plain { color: rgba(242,239,231,.72); font-size: 14.5px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 32px; flex-wrap: wrap;
  font-size: 13px; color: rgba(242,239,231,.5);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   Business-line subpages
   ================================================================ */

.page-hero { padding: 168px 0 0; }
.crumb {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: var(--ink-soft); margin-bottom: 34px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.crumb a { color: var(--ink-soft); text-decoration: none; transition: color .2s ease; }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--gold); }
.crumb .here { color: var(--ink); }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin: 24px 0 22px; max-width: 820px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin-bottom: 48px; }

.hero-banner {
  border-radius: 26px; overflow: hidden; position: relative;
  aspect-ratio: 21 / 9; background: var(--ink);
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner .tag {
  position: absolute; left: 26px; bottom: 22px;
  background: rgba(23,21,15,.78); color: var(--ivory);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px;
}

/* Split: text + image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.flip .split-media { order: -1; }
.split-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 22px; margin-bottom: 22px; }
.split-copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 18px; }
.split-copy p strong { color: var(--ink); }
.split-media { display: grid; gap: 20px; }
.split-media figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.split-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(23,21,15,.72));
  color: rgba(242,239,231,.92); font-size: 12.5px;
  padding: 34px 18px 12px;
}

/* Key points list inside split */
.keypoints { list-style: none; display: grid; gap: 14px; margin-top: 10px; }
.keypoints li { display: flex; gap: 14px; font-size: 15.5px; color: var(--ink-soft); }
.keypoints li::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.keypoints li strong { color: var(--ink); }

/* Offer grid (what we offer on subpages) */
.offers { background: var(--ivory-soft); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer {
  background: #FBF9F4; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.offer:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(23,21,15,.08); border-color: rgba(143,122,53,.4); }
.offer .num {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: .28em; color: var(--gold); display: block; margin-bottom: 18px;
}
.offer h3 { font-size: 18.5px; margin-bottom: 10px; }
.offer p { font-size: 14.5px; color: var(--ink-soft); }

/* Video */
.video-section .section-head { margin-bottom: 44px; }
.video-wrap {
  border-radius: 26px; overflow: hidden; aspect-ratio: 16 / 9; background: var(--ink);
  box-shadow: 0 28px 60px rgba(23,21,15,.14);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-note { font-size: 13px; color: var(--ink-soft); margin-top: 16px; text-align: center; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 40px 32px 40px 0; border-bottom: 1px solid var(--line); }
.step + .step { border-left: 1px solid var(--line); padding-left: 32px; }
.step .num {
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 16px; letter-spacing: -0.02em;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* Stat band on subpages */
.stat-band { background: var(--ink); color: var(--ivory); padding: 72px 0; }
.stat-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-item .big {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700;
  color: var(--gold-bright); letter-spacing: -0.02em; display: block; margin-bottom: 10px;
}
.stat-item p { font-size: 14.5px; color: rgba(242,239,231,.66); max-width: 280px; }

/* Prev / next page nav */
.page-nav { border-top: 1px solid var(--line); padding: 0; }
.page-nav-grid { display: grid; grid-template-columns: 1fr 1fr; }
.page-nav a {
  display: block; padding: 46px 28px; text-decoration: none; color: var(--ink);
  transition: background .25s ease;
}
.page-nav a:hover { background: var(--ivory-soft); }
.page-nav a + a { border-left: 1px solid var(--line); text-align: right; }
.page-nav .dir {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px;
}
.page-nav .title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .split { gap: 44px; }
  .split.flip .split-media { order: 0; }
  .hero-art { margin-top: 20px; }
  .approach-grid { grid-template-columns: 1fr; }
  .value, .value + .value { border-left: none; padding-left: 0; padding-right: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(odd) { border-left: none; padding-left: 0; }
  .step { padding-left: 32px; }
  .step:first-child { padding-left: 0; }
  .stat-band-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { padding: 56px 36px; }
  .hero-banner { aspect-ratio: 16 / 10; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 28px 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  section { padding: 80px 0; }
  .hero { padding: 140px 0 80px; }
  .page-hero { padding: 130px 0 0; }
  .form-row { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step, .step + .step { border-left: none; padding-left: 0; padding-right: 0; }
  .page-nav-grid { grid-template-columns: 1fr; }
  .page-nav a + a { border-left: none; border-top: 1px solid var(--line); text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
}
