@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap');

:root {
  --forest-950: #07100d;
  --forest-900: #0b1713;
  --forest-800: #10251e;
  --forest-700: #173a2e;
  --forest-600: #245341;
  --gold: #b99554;
  --gold-light: #d2b77c;
  --ivory: #f6f2e9;
  --cream: #fbf9f4;
  --paper: #fffdf8;
  --charcoal: #171b19;
  --muted: #626964;
  --line: #ddd8cc;
  --white: #ffffff;
  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 22px 55px rgba(10, 24, 19, .08);
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--charcoal); background: var(--cream); font-family: var(--sans); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-160%); background: var(--ivory); color: var(--forest-950); padding: .7rem 1rem; border: 1px solid var(--gold); }
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.narrow { max-width: 700px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.06rem; }
.eyebrow { margin: 0 0 14px; color: var(--forest-600); font-size: .74rem; line-height: 1.4; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--forest-950); }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; line-height: 1.06; }
h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
h3 { font-size: 1.1rem; line-height: 1.35; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 1px solid var(--gold); border-radius: 1px; background: var(--forest-800); color: var(--white); font-size: .86rem; font-weight: 700; letter-spacing: .035em; text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--forest-700); border-color: var(--gold-light); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(185,149,84,.38); outline-offset: 3px; }
.button-secondary { background: transparent; color: var(--forest-900); border-color: #a8a297; }
.button-secondary:hover { background: var(--white); color: var(--forest-900); border-color: var(--gold); }
.button-secondary-dark { background: transparent; color: var(--ivory); border-color: var(--gold); }
.button-secondary-dark:hover { background: var(--ivory); color: var(--forest-900); }
.button-light { background: var(--ivory); color: var(--forest-950); border-color: var(--gold-light); }
.button-light:hover { background: var(--white); color: var(--forest-950); }
.button-small { min-height: 42px; padding: 9px 17px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(7,16,13,.96); border-bottom: 1px solid rgba(185,149,84,.28); backdrop-filter: blur(12px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 176px; height: 68px; display: flex; align-items: center; overflow: hidden; text-decoration: none; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { position: relative; color: #e9e4d9; font-size: .84rem; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: var(--ivory); }

.hero { min-height: 720px; display: flex; align-items: center; overflow: hidden; position: relative; background: var(--ivory); border-bottom: 1px solid var(--line); }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 34%; height: 100%; background: var(--forest-900); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 78px; padding-block: 90px; }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { max-width: 760px; margin-bottom: 25px; }
.hero-lead { max-width: 690px; color: #4e5551; font-size: 1.12rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.tagline { margin-top: 32px; color: var(--forest-700); font-family: var(--serif); font-size: 1.15rem; font-style: italic; }
.hero-mark { position: relative; z-index: 2; }
.logo-frame { padding: 28px; background: #030504; border: 1px solid rgba(210,183,124,.65); box-shadow: 0 32px 70px rgba(0,0,0,.28); }
.logo-frame img { width: 100%; }

.value-section { background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-item { padding: 32px 28px 30px 0; }
.value-item + .value-item { padding-left: 28px; border-left: 1px solid var(--line); }
.value-number { display: block; margin-bottom: 30px; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.value-item h3 { margin-bottom: 10px; }
.value-item p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

.services-section { background: var(--forest-900); color: #dcded9; }
.services-section h2, .services-section h3 { color: var(--ivory); }
.services-section .eyebrow { color: var(--gold-light); }
.services-section .section-heading p:last-child { color: #aeb7b1; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(210,183,124,.22); border: 1px solid rgba(210,183,124,.22); }
.service-card { min-height: 390px; padding: 38px 34px; background: var(--forest-900); transition: background .2s ease; }
.service-card:hover { background: var(--forest-800); }
.service-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 38px; border: 1px solid var(--gold); color: var(--gold-light); font-family: var(--serif); font-size: 1.15rem; }
.service-card h3 { min-height: 50px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.service-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 5px 0 5px 16px; color: #bfc6c1; font-size: .9rem; }
.service-card li::before { content: ''; position: absolute; left: 0; top: 15px; width: 5px; height: 1px; background: var(--gold); }
.service-cta { margin-top: 50px; padding-top: 36px; border-top: 1px solid rgba(210,183,124,.25); display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.service-cta h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.service-cta p { margin-bottom: 0; color: #aeb7b1; }

.process-section { background: var(--ivory); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-step { position: relative; padding: 0 28px 0 0; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 20px; left: 52px; right: 12px; height: 1px; background: var(--gold); }
.step-marker { position: relative; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 30px; background: var(--ivory); border: 1px solid var(--gold); color: var(--forest-800); font-family: var(--serif); }
.process-step h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.process-step p { color: var(--muted); font-size: .94rem; }

.about-section { background: var(--paper); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-copy { padding-top: 36px; border-top: 1px solid var(--gold); color: #4d5550; font-size: 1.04rem; }
.about-copy p { margin-bottom: 24px; }

.ideal-section { background: #ece8df; }
.ideal-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; }
.ideal-list-wrap { padding: 38px 42px; background: var(--paper); border-top: 3px solid var(--forest-700); box-shadow: var(--shadow); }
.ideal-list-wrap > p { font-weight: 700; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: #4f5652; font-size: .92rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--forest-600); font-weight: 700; }

.cta-section { padding: 100px 0; background: var(--forest-800); color: #e8e8e2; text-align: center; border-top: 1px solid var(--gold); }
.cta-inner { max-width: 900px; }
.cta-section h2 { margin-bottom: 24px; color: var(--ivory); }
.cta-section p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; color: #c5ccc7; font-size: 1.05rem; }
.eyebrow-light { color: var(--gold-light); }
.cta-section small { display: block; margin-top: 18px; color: #9da8a1; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro > p:not(.eyebrow) { color: var(--muted); }
.contact-note { margin-top: 45px; padding: 25px 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--line); }
.contact-note strong { display: block; margin-bottom: 8px; color: var(--forest-800); }
.contact-note p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.project-form { padding: 42px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 20px; }
.two-col { grid-template-columns: 1fr 1fr; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--forest-950); font-size: .84rem; font-weight: 700; }
.optional { color: #858b87; font-size: .72rem; font-weight: 500; }
input, select, textarea { width: 100%; border: 1px solid #c9c6bd; border-radius: 0; background: #fff; color: var(--charcoal); padding: 12px 13px; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { min-height: 48px; }
textarea { min-height: 170px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #9f9a8f; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #9d342d; }
.field-error { display: block; min-height: 1em; margin-top: 5px; color: #8b2e29; font-size: .76rem; }
.field-help { display: block; margin-top: 7px; color: #777d79; font-size: .76rem; line-height: 1.5; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.submit-button { width: 100%; margin-top: 5px; }
.form-status { min-height: 1.5em; margin: 14px 0 0; font-size: .88rem; font-weight: 600; }
.form-status.success { color: #1f644b; }
.form-status.error { color: #8b2e29; }

.site-footer { padding: 65px 0 20px; background: var(--forest-950); color: #aeb7b1; border-top: 1px solid rgba(185,149,84,.4); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 70px; padding-bottom: 50px; }
.footer-brand img { width: 230px; margin-bottom: 12px; }
.footer-brand p { font-family: var(--serif); font-style: italic; color: #c7b992; }
.footer-heading { margin-bottom: 16px; color: var(--gold-light); font-family: var(--sans); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.footer-nav, .legal-links { display: flex; flex-direction: column; gap: 7px; }
.site-footer a { color: #c7cec9; text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: var(--gold-light); }
.legal-links { margin-top: 15px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #7f8982; font-size: .78rem; }

.legal-page { min-height: 65vh; padding: 100px 0; background: var(--cream); }
.legal-content { max-width: 820px; }
.legal-content h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.legal-content h2 { margin-top: 40px; font-size: 1.8rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-notice { margin: 28px 0; padding: 20px; border-left: 2px solid var(--gold); background: var(--ivory); }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: var(--forest-950); border-top: 1px solid rgba(185,149,84,.25); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav .button { margin-top: 14px; }
  .hero::before { width: 25%; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 35px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .value-item:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 45px 20px; }
  .process-step:nth-child(2)::after { display: none; }
  .about-grid, .ideal-grid { gap: 55px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .contact-intro { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-wrap { height: 72px; }
  .brand { width: 150px; height: 58px; }
  .site-nav { top: 72px; }
  .hero { min-height: auto; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 68px; }
  .hero-mark { order: -1; max-width: 310px; }
  .logo-frame { padding: 18px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item, .value-item + .value-item { padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .value-item:first-child { border-top: 0; }
  .value-number { margin-bottom: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-cta { flex-direction: column; align-items: stretch; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 0 0 35px; }
  .process-step:not(:last-child)::after { display: block; top: 40px; bottom: 0; left: 20px; right: auto; width: 1px; height: auto; }
  .step-marker { margin: 0; }
  .about-grid, .ideal-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-copy { padding-top: 25px; }
  .ideal-list-wrap { padding: 30px 24px; }
  .check-list { grid-template-columns: 1fr; }
  .cta-section { padding: 75px 0; }
  .project-form { padding: 28px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
