:root {
  --ivory: #f5f0e6;
  --paper: #fbf8f1;
  --walnut: #352a24;
  --ink: #241d19;
  --clay: #b9856a;
  --sand: #dfcfb8;
  --brass: #a67b37;
  --muted: #786b61;
  --line: rgba(53, 42, 36, .18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--walnut); background: var(--ivory); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-noise { position: fixed; z-index: 20; inset: 0; pointer-events: none; opacity: .24; background-image: radial-gradient(rgba(53,42,36,.18) .5px, transparent .7px), radial-gradient(rgba(255,255,255,.6) .45px, transparent .6px); background-size: 7px 7px, 11px 11px; background-position: 0 0, 3px 5px; mix-blend-mode: soft-light; }

.site-header { height: 88px; display: flex; align-items: center; justify-content: space-between; max-width: 1280px; padding: 0 42px; margin: auto; position: absolute; inset: 0 0 auto; z-index: 5; color: var(--walnut); }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -.4px; }
.wordmark-mark { width: 15px; height: 20px; border: 1px solid var(--brass); display: inline-block; position: relative; }
.wordmark-mark::after { content: ''; position: absolute; width: 7px; height: 9px; border-left: 1px solid var(--brass); border-bottom: 1px solid var(--brass); right: -4px; bottom: -4px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; letter-spacing: .04em; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ''; position: absolute; height: 1px; width: 0; background: var(--brass); left: 0; bottom: -5px; transition: width .25s; }
.main-nav > a:not(.button):hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: none; color: var(--walnut); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 12px 21px; border: 1px solid var(--brass); font-size: 12px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; transition: background .25s, color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-solid { color: #fffaf1; background: var(--walnut); border-color: var(--walnut); }
.button-solid:hover { background: var(--brass); border-color: var(--brass); }
.button-outline { border-color: var(--walnut); }
.button-outline:hover { color: var(--paper); background: var(--walnut); }

.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: center; background: linear-gradient(125deg, #f4eddf 0%, #ecdcc7 48%, #d7b99e 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,240,.56), transparent 68%), linear-gradient(180deg, transparent 75%, rgba(72,48,33,.11)); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .53; }
.hero-orb-one { width: 48vw; height: 48vw; right: -14vw; top: 5vh; background: rgba(177,124,84,.36); }
.hero-orb-two { width: 30vw; height: 30vw; left: 38%; bottom: -19vw; background: rgba(248,237,212,.8); }
.hero-content { position: relative; padding-top: 118px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--brass); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: var(--brass); display: inline-block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; }
h1 { max-width: 810px; margin-bottom: 24px; color: var(--ink); font-size: clamp(60px, 8.4vw, 119px); line-height: .84; letter-spacing: -.055em; }
h1 em { color: #71513d; font-weight: 500; }
.hero-lead { max-width: 515px; font-size: 17px; line-height: 1.75; color: #514138; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--walnut); font-size: 13px; letter-spacing: .04em; }
.text-link span { color: var(--brass); margin-left: 8px; }
.stat-row { display: flex; gap: 48px; margin-top: clamp(48px, 8vh, 85px); }
.stat-row div { display: flex; flex-direction: column; padding-left: 14px; border-left: 1px solid var(--brass); }
.stat-row strong { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; }
.stat-row span { margin-top: 5px; font-size: 11px; letter-spacing: .04em; }
.hero-scroll { width: 1px; height: 66px; position: absolute; left: 50%; bottom: 0; background: rgba(53,42,36,.5); }
.hero-scroll span { display: block; width: 5px; height: 5px; border-radius: 50%; position: absolute; left: -2px; top: 9px; background: var(--brass); animation: travel 2s infinite; }
@keyframes travel { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(45px); opacity: 0; } }

.marquee { overflow: hidden; height: 67px; display: flex; align-items: center; border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass); background: var(--walnut); color: #e9d5b0; white-space: nowrap; }
.marquee-track { display: flex; align-items: center; gap: 27px; width: max-content; font-family: var(--serif); font-size: 21px; letter-spacing: .08em; animation: slide 28s linear infinite; }
.marquee i { color: var(--brass); font-size: 15px; font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

.section { padding: 125px 0; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.07fr .73fr; gap: 120px; align-items: center; }
.intro h2, .section-heading h2, .contact h2 { margin-bottom: 23px; color: var(--ink); font-size: clamp(43px, 5vw, 68px); line-height: .94; letter-spacing: -.045em; }
.intro-copy > p:not(.eyebrow) { max-width: 575px; color: #5d5047; font-size: 16px; }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.check-list span { color: var(--brass); font-weight: 600; }
.pull-panel { min-height: 465px; display: flex; flex-direction: column; justify-content: center; padding: 52px; color: #f6eddf; background: var(--walnut); position: relative; overflow: hidden; }
.pull-panel::before { content: ''; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(197,157,81,.4); border-radius: 50%; right: -160px; top: -155px; }
.pull-panel::after { content: ''; position: absolute; inset: 17px; border: 1px solid rgba(197,157,81,.32); pointer-events: none; }
.panel-number { color: #d5ae69; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.pull-panel blockquote { position: relative; z-index: 1; margin: 26px 0 25px; font-size: 38px; line-height: .99; letter-spacing: -.025em; }
.panel-line { width: 55px; height: 1px; background: var(--brass); margin-bottom: 19px; }
.pull-panel > p:last-child { position: relative; z-index: 1; margin: 0; color: #dccfc0; font-size: 13px; }

.process { background: #e8dbc8; }
.section-heading { max-width: 720px; margin-bottom: 60px; }
.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(53,42,36,.35); }
.process-list li { display: grid; grid-template-columns: 120px 1fr; gap: 27px; padding: 29px 0 31px; border-bottom: 1px solid rgba(53,42,36,.35); }
.process-number { color: var(--brass); font-family: var(--serif); font-size: 39px; line-height: 1; }
.process-list h3 { margin-bottom: 7px; color: var(--ink); font-size: 30px; line-height: 1; }
.process-list p { max-width: 560px; margin: 0; font-size: 15px; color: #5b4b40; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 365px; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); background: rgba(255,255,255,.18); transition: background .25s, transform .25s; }
.service-card:hover { transform: translateY(-5px); background: #f3eadc; }
.service-index { color: var(--brass); font-family: var(--serif); font-size: 18px; }
.service-card h3 { margin: 38px 0 14px; color: var(--ink); font-size: 33px; line-height: 1; }
.service-card > p:not(.service-index) { color: #64564d; font-size: 14px; }
.brass-rule { height: 1px; width: 100%; margin: auto 0 18px; background: var(--brass); opacity: .7; }
.service-card a { font-size: 11px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.service-card a span { margin-left: 8px; color: var(--brass); font-size: 16px; }

.comparison { background: var(--ivory); }
.centered { margin-right: auto; margin-left: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-panel { min-height: 355px; padding: 42px; border: 1px solid var(--line); }
.comparison-panel.after { border-color: var(--brass); background: #eee1ce; }
.comparison-label { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--brass); color: var(--brass); font-size: 10px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.comparison-panel h3 { margin: 40px 0 24px; color: var(--ink); font-size: 39px; line-height: .95; }
.comparison-panel ul { margin: 0; padding: 0; list-style: none; }
.comparison-panel li { padding: 7px 0 7px 20px; border-bottom: 1px solid var(--line); position: relative; font-size: 14px; }
.comparison-panel li::before { content: '—'; position: absolute; left: 0; color: var(--brass); }

.testimonial { padding: 110px 0; color: #f3e9d9; background: var(--walnut); }
.testimonial-inner { max-width: 830px; text-align: center; }
.quote-mark { display: block; height: 62px; color: var(--brass); font-family: var(--serif); font-size: 96px; line-height: 1; }
.testimonial blockquote { margin: 4px 0 34px; font-size: clamp(34px, 4.2vw, 53px); line-height: .99; letter-spacing: -.03em; }
.testimonial-author { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.testimonial-author > span { width: 31px; height: 1px; background: var(--brass); }
.testimonial-author p { margin: 0; color: #d8c9b9; font-size: 12px; line-height: 1.55; }
.testimonial-author strong { color: #f2eadf; font-weight: 500; }

.contact { background: #dfcdb6; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; }
.contact-copy > p:not(.eyebrow) { max-width: 410px; color: #5d4b40; }
.contact-details { margin-top: 38px; }
.contact-details a, .contact-details p { display: block; margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(53,42,36,.25); font-size: 14px; }
.contact-details span { display: block; margin-bottom: 2px; color: var(--brass); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.contact-form { padding: 38px; background: var(--paper); border: 1px solid rgba(53,42,36,.15); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.form-row input, .form-row textarea { width: 100%; padding: 8px 0; border: 0; border-bottom: 1px solid rgba(53,42,36,.37); border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; font-weight: 300; transition: border-color .2s; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--brass); }
.form-row textarea { resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #9b8e83; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 24px 0; font-size: 12px; line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--walnut); }
.consent a { border-bottom: 1px solid var(--brass); }
.form-status { min-height: 20px; margin: 14px 0 0; color: #685032; font-size: 13px; }

.site-footer { padding: 48px 0 24px; background: #241d19; color: #e8ddcd; }
.site-footer .wordmark { color: #f2e9dc; }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.social-links { display: flex; gap: 24px; color: #cebaa1; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.social-links a:hover, .footer-bottom a:hover { color: #d4a958; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(233,216,193,.18); color: #b8a996; font-size: 11px; }
.footer-bottom p { margin: 0; }

.privacy-page { min-height: 100vh; background: var(--paper); }
.privacy-header { position: static; background: var(--ivory); }
.privacy-content { max-width: 760px; padding: 130px 0; }
.privacy-content h1 { font-size: clamp(52px, 7vw, 82px); }
.privacy-content h2 { margin: 44px 0 13px; font-size: 34px; line-height: 1; }
.privacy-content p, .privacy-content li { color: #5b4d43; font-size: 15px; }
.privacy-content a { border-bottom: 1px solid var(--brass); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 600px); }
  .site-header { height: 72px; padding: 0 18px; }
  .wordmark { font-size: 21px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 18px; padding: 25px 22px; background: #f4eddf; border-top: 1px solid var(--line); box-shadow: 0 10px 20px rgba(53,42,36,.08); }
  .main-nav.open { display: flex; }
  .nav-cta { margin-top: 3px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 110px; }
  h1 { font-size: clamp(54px, 15vw, 76px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .stat-row { gap: 18px; margin-top: 54px; }
  .stat-row strong { font-size: 25px; }
  .stat-row span { font-size: 9px; }
  .section { padding: 78px 0; }
  .intro-grid, .contact-grid, .comparison-grid { grid-template-columns: 1fr; gap: 35px; }
  .intro-grid { gap: 42px; }
  .pull-panel { min-height: 360px; padding: 34px; }
  .pull-panel blockquote { font-size: 34px; }
  .process-list li { grid-template-columns: 61px 1fr; gap: 13px; }
  .process-number { font-size: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .comparison-panel { min-height: auto; padding: 30px; }
  .contact-grid { gap: 48px; }
  .contact-form { padding: 25px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 26px; }
  .footer-bottom { gap: 11px; margin-top: 30px; }
  .privacy-content { padding: 80px 0; }
}
