:root {
  --cream: #f4eddf;
  --ivory: #fbf7ef;
  --paper: #f8f1e5;
  --walnut: #38261f;
  --walnut-soft: #5a4035;
  --ink: #251d19;
  --brass: #a67c3f;
  --brass-light: #cfad72;
  --sand: #ddc9aa;
  --clay: #a8664f;
  --line: rgba(85, 57, 43, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(65, 40, 28, 0.13) 0 0.45px, transparent 0.7px 4px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}
::selection { color: var(--ivory); background: var(--walnut); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.02; }
h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 5vw, 4.8rem); letter-spacing: -0.035em; }
h3 { font-size: 1.85rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--walnut);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  width: var(--shell);
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}
.compact-header { position: relative; left: auto; transform: none; margin: 0 auto; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1;
}
.wordmark-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.wordmark-mark::after {
  position: absolute;
  right: -5px;
  bottom: 5px;
  width: 21px;
  height: 8px;
  content: "";
  border-top: 1px solid var(--brass);
  border-radius: 50%;
  transform: rotate(-15deg);
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { font-size: 0.84rem; font-weight: 400; letter-spacing: 0.05em; }
.main-nav > a:not(.button):hover { color: var(--brass); }
.menu-button { display: none; }
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-outline, .button-ghost { border-color: var(--brass); background: transparent; }
.button-outline:hover, .button-ghost:hover { color: var(--ivory); background: var(--walnut); border-color: var(--walnut); }
.button-solid { color: var(--ivory); background: var(--walnut); border-color: var(--walnut); }
.button-solid:hover { background: var(--brass); border-color: var(--brass); }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 155px max(24px, calc((100vw - 1180px) / 2)) 46px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(191, 142, 97, 0.28), transparent 27%),
    radial-gradient(circle at 25% 72%, rgba(215, 188, 145, 0.38), transparent 34%),
    linear-gradient(120deg, var(--ivory), #ede1cf);
}
.hero::after {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 1px;
  height: 58%;
  content: "";
  background: linear-gradient(transparent, var(--brass), transparent);
}
.hero-content { position: relative; z-index: 2; width: min(820px, 78%); }
.kicker {
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker::before { display: inline-block; width: 34px; height: 1px; margin: 0 12px 3px 0; content: ""; background: currentColor; }
.hero h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 8.6vw, 8rem);
  letter-spacing: -0.055em;
}
.hero-lead { max-width: 650px; margin-bottom: 34px; color: var(--walnut-soft); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.stats {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  z-index: 2;
  display: flex;
  margin: 0;
  gap: 38px;
}
.stats div { min-width: 95px; padding-left: 15px; border-left: 1px solid var(--brass); }
.stats dt { font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.stats dd { margin: 5px 0 0; font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(166, 124, 63, 0.3); border-radius: 50%; }
.orbit-one { top: 25%; right: -10%; width: 45vw; height: 45vw; }
.orbit-two { top: 36%; right: 2%; width: 24vw; height: 24vw; }

.keyword-band { padding: 24px; color: var(--cream); background: var(--walnut); }
.keyword-list { display: flex; max-width: 1350px; margin: auto; align-items: center; justify-content: space-around; gap: 20px; }
.keyword-list span { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem); font-style: italic; white-space: nowrap; }
.keyword-list i { width: 5px; height: 5px; flex: 0 0 auto; background: var(--brass-light); transform: rotate(45deg); }
.section-shell { width: var(--shell); margin: 0 auto; padding: 130px 0; }

.intro { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; gap: 90px; }
.intro-copy > p:not(.kicker) { max-width: 690px; color: var(--walnut-soft); }
.check-list { padding: 10px 0 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 1px; color: var(--brass); content: "◇"; }
.intro-panel {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 62px;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
  background: var(--walnut);
  overflow: hidden;
}
.intro-panel::after { position: absolute; right: -80px; bottom: -80px; width: 250px; height: 250px; content: ""; border: 1px solid var(--brass); border-radius: 50%; }
.panel-number { position: absolute; top: 28px; right: 32px; color: var(--brass-light); font-family: var(--serif); font-size: 1.4rem; }
.intro-panel p { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.08; }
.panel-signature { color: var(--brass-light); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

.process { padding-top: 25px; }
.section-heading { max-width: 800px; margin-bottom: 65px; }
.process-grid { display: grid; padding: 0; margin: 0; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--brass); }
.process-grid li { min-height: 330px; padding: 28px 30px; border-right: 1px solid var(--line); }
.process-grid li:first-child { border-left: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 82px; color: var(--brass); font-family: var(--serif); font-size: 1.3rem; }
.process-grid h3 { margin-bottom: 15px; }
.process-grid p { color: var(--walnut-soft); font-size: 0.92rem; }

.services { width: 100%; max-width: none; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--ivory); }
.section-heading-row { display: grid; max-width: none; grid-template-columns: 1.5fr 0.65fr; align-items: end; gap: 80px; }
.section-heading-row > p { padding-bottom: 17px; color: var(--walnut-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card { min-height: 420px; padding: 48px 38px; border: 1px solid var(--line); }
.service-card + .service-card { border-left: 0; }
.featured-card { color: var(--ivory); background: var(--walnut); transform: translateY(-14px); }
.service-icon { display: grid; width: 50px; height: 50px; margin-bottom: 65px; place-items: center; border: 1px solid var(--brass); border-radius: 50%; color: var(--brass-light); font-family: var(--serif); font-size: 1.4rem; }
.service-card h3 { font-size: 2.15rem; }
.service-card p { font-size: 0.93rem; }
.gold-rule { display: block; width: 100%; height: 1px; margin: 32px 0 20px; background: var(--brass); }
.service-note { color: var(--brass); font-size: 0.72rem !important; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.featured-card .service-note { color: var(--brass-light); }

.centered-heading { margin-right: auto; margin-left: auto; text-align: center; }
.centered-heading .kicker::before { display: none; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-panel { position: relative; min-height: 400px; padding: 55px; border: 1px solid var(--line); }
.comparison-panel::before { position: absolute; top: 0; left: 0; width: 34%; height: 4px; content: ""; background: var(--brass); }
.comparison-label { color: var(--brass); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.comparison-panel h3 { margin: 55px 0 25px; font-size: 2.5rem; }
.comparison-panel ul { padding: 0; margin: 0; list-style: none; }
.comparison-panel li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.before-panel { background: rgba(255,255,255,0.16); }
.after-panel { background: var(--paper); }
.after-panel::before { width: 100%; }

.testimonial { padding: 120px 24px; color: var(--ivory); background: var(--walnut); }
.testimonial-inner { max-width: 1040px; margin: auto; text-align: center; }
.light-kicker { color: var(--brass-light); }
.light-kicker::before { display: none; }
.testimonial blockquote { margin: 35px 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.08; }
.testimonial-author { color: var(--brass-light); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-author span { color: var(--sand); }

.contact { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; }
.contact-details > p:not(.kicker) { color: var(--walnut-soft); }
address { display: grid; margin-top: 55px; gap: 25px; font-style: normal; }
address div { padding-top: 18px; border-top: 1px solid var(--line); }
address span { color: var(--brass); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
address p { margin: 4px 0 0; }
address a { display: inline-block; margin-top: 4px; }
.form-wrap { padding: 50px; background: var(--ivory); border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
form label { display: block; margin-bottom: 22px; color: var(--walnut); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
input, textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 3px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-bottom-color: var(--brass); box-shadow: 0 1px 0 var(--brass); }
input::placeholder, textarea::placeholder { color: rgba(56, 38, 31, 0.48); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.73rem; font-weight: 300; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--walnut); }
.consent a { color: var(--brass); text-decoration: underline; }
.submit-button { width: 100%; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--walnut-soft); font-size: 0.82rem; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 70px max(24px, calc((100vw - 1180px) / 2)) 28px; color: var(--cream); background: #281c17; }
.footer-top { display: grid; padding-bottom: 60px; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 50px; }
.footer-top > p { max-width: 360px; color: var(--sand); }
.social-links { display: flex; justify-content: flex-end; gap: 22px; }
.social-links a, .footer-bottom a { color: var(--brass-light); font-size: 0.78rem; }
.social-links a:hover, .footer-bottom a:hover { color: var(--ivory); }
.footer-bottom { display: flex; padding-top: 25px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.16); }
.footer-bottom p { margin: 0; color: var(--sand); font-size: 0.74rem; }
.footer-bottom div { display: flex; gap: 24px; }

.legal-page { min-height: 70vh; }
.legal-heading { padding: 110px max(24px, calc((100vw - 900px) / 2)) 70px; background: linear-gradient(120deg, var(--ivory), #eadcc7); }
.legal-heading h1 { margin-bottom: 18px; font-size: clamp(3.6rem, 8vw, 7rem); letter-spacing: -0.05em; }
.legal-heading > p:last-child { color: var(--walnut-soft); }
.legal-content { width: min(800px, calc(100% - 48px)); margin: 80px auto 110px; }
.legal-content section { padding: 0 0 30px; margin-bottom: 35px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 14px; font-size: 2rem; letter-spacing: -0.02em; }
.legal-content a:not(.button) { color: var(--brass); text-decoration: underline; }
.legal-footer { padding-top: 28px; }

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { min-height: 80px; }
  .menu-button {
    position: relative;
    z-index: 12;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--brass);
    background: transparent;
    place-content: center;
    gap: 7px;
  }
  .menu-button span:not(.sr-only) { display: block; width: 19px; height: 1px; background: var(--walnut); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    padding: 110px 30px 45px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 10px 0; font-family: var(--serif); font-size: 2rem; text-align: center; }
  .nav-cta { margin-top: 15px; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 850px; align-items: flex-start; }
  .hero-content { width: 100%; margin-top: 90px; }
  .hero h1 { font-size: clamp(3.8rem, 12vw, 6.5rem); }
  .stats { right: 24px; left: 24px; justify-content: space-between; }
  .intro { grid-template-columns: 1fr; gap: 50px; }
  .intro-panel { min-height: 400px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(3) { border-left: 1px solid var(--line); }
  .step-number { margin-bottom: 40px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card + .service-card { border-top: 0; border-left: 1px solid var(--line); }
  .featured-card { transform: none; }
  .service-icon { margin-bottom: 35px; }
  .contact { grid-template-columns: 1fr; gap: 55px; }
  .footer-top { grid-template-columns: 1fr; }
  .social-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 30px); }
  body { font-size: 15px; }
  h2 { font-size: 2.75rem; }
  .wordmark { font-size: 1.24rem; }
  .hero { min-height: 900px; padding: 125px 18px 40px; }
  .hero-content { margin-top: 55px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5rem); line-height: 0.96; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .stats { bottom: 35px; gap: 8px; }
  .stats div { min-width: 0; padding-left: 9px; }
  .stats dt { font-size: 1.65rem; }
  .stats dd { font-size: 0.55rem; }
  .hero-orbit { display: none; }
  .keyword-band { padding: 21px 14px; }
  .keyword-list { flex-wrap: wrap; justify-content: center; gap: 8px 14px; }
  .keyword-list span { font-size: 1rem; }
  .section-shell { padding-top: 85px; padding-bottom: 85px; }
  .intro-panel { min-height: 390px; padding: 38px 30px; }
  .intro-panel p { font-size: 2.25rem; }
  .process { padding-top: 0; }
  .section-heading { margin-bottom: 42px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; padding: 28px 24px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .process-grid li:nth-child(3) { border-left: 1px solid var(--line); }
  .step-number { margin-bottom: 20px; }
  .services { padding-right: 15px; padding-left: 15px; }
  .service-card { padding: 36px 28px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-panel { min-height: 0; padding: 40px 27px; }
  .comparison-panel h3 { margin-top: 35px; font-size: 2.1rem; }
  .testimonial { padding: 85px 20px; }
  .testimonial blockquote { font-size: 2.45rem; }
  .form-wrap { padding: 34px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { padding-bottom: 38px; gap: 25px; }
  .social-links { flex-wrap: wrap; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-bottom div { flex-wrap: wrap; }
  .compact-header .button { padding: 10px 12px; font-size: 0.65rem; }
  .legal-heading { padding-top: 80px; }
  .legal-heading h1 { font-size: 3.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
