:root {
  --green-950: #18231b;
  --green-900: #223027;
  --green-800: #2d3a2b;
  --green-700: #384435;
  --gold-600: #9b7b4f;
  --gold-500: #ad8f62;
  --gold-300: #d1b68f;
  --ivory: #f4f2ed;
  --linen: #e9e3dc;
  --white: #fffdf9;
  --ink: #292c25;
  --muted: #65675f;
  --border: rgba(45, 58, 43, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 18px 60px rgba(25, 35, 27, .12);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--body); line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; transform: translateY(-180%); background: var(--white); padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-sm { padding: 3.5rem 0; }
.eyebrow { margin: 0 0 .9rem; color: var(--gold-600); font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--green-900); font-family: var(--serif); font-weight: 600; line-height: .98; text-wrap: balance; }
h1 { max-width: 14ch; font-size: clamp(3.35rem, 8vw, 7rem); letter-spacing: -.045em; }
h2 { max-width: 18ch; font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1.05; }
p { margin: 1rem 0 0; }
.lead { max-width: 650px; color: #4d5149; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.8rem); line-height: 1.35; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .55rem; padding: .8rem 1.25rem; border: 1px solid var(--green-800); border-radius: 999px; background: var(--green-800); color: white; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-950); box-shadow: 0 8px 24px rgba(24,35,27,.18); }
.button.light { border-color: rgba(255,255,255,.7); background: transparent; }
.button.light:hover { background: white; color: var(--green-900); }
.button.ghost { background: transparent; color: var(--green-900); }
.button.ghost:hover { background: var(--green-900); color: white; }

.announcement { padding: .55rem 1rem; background: var(--green-950); color: white; font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--ivory) 92%, transparent); backdrop-filter: blur(16px); }
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 44px; height: 49px; }
.brand-copy { display: grid; color: var(--green-900); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: .035em; line-height: 1; text-transform: uppercase; }
.brand-copy small { margin-top: .32rem; color: var(--gold-600); font-family: var(--body); font-size: .53rem; font-weight: 800; letter-spacing: .22em; }
.nav-links { display: flex; align-items: center; gap: 1.45rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.nav-links a:not(.button):hover { color: var(--gold-600); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; background: transparent; color: var(--green-900); }

.hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 9vw, 8.5rem) 0; background: radial-gradient(circle at 90% 15%, rgba(209,182,143,.4), transparent 32%), linear-gradient(135deg, var(--ivory), #ede4d8); }
.hero::after { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(173,143,98,.36); border-radius: 50%; content: ""; right: -190px; bottom: -235px; }
.hero-grid { display: grid; align-items: center; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 6rem); }
.hero-media { position: relative; min-height: 550px; }
.hero-collage { position: relative; width: 88%; height: 520px; margin-left: auto; }
.hero-collage img { position: absolute; border: 7px solid var(--ivory); box-shadow: var(--shadow); object-fit: cover; }
.hero-collage img:first-child { top: 0; right: 0; width: 78%; height: 70%; border-radius: 48% 48% 1rem 1rem; }
.hero-collage img:last-child { right: 38%; bottom: 0; width: 56%; height: 48%; border-radius: 1rem 1rem 45% 45%; }
.hero-badge { position: absolute; bottom: 0; left: 0; width: 220px; padding: 1.5rem; border: 6px solid var(--ivory); border-radius: 50%; background: var(--green-800); color: white; text-align: center; }
.hero-badge strong { display: block; color: var(--gold-300); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.hero-badge span { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip { border-block: 1px solid var(--border); background: var(--white); }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.5rem; border-right: 1px solid var(--border); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item span { display: block; color: var(--gold-600); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.trust-item strong { display: block; margin-top: .2rem; color: var(--green-900); font-family: var(--serif); font-size: 1.35rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head p { max-width: 520px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 390px; overflow: hidden; border-radius: var(--radius); background: var(--green-900); color: white; text-decoration: none; }
.service-card img { width: 100%; height: 100%; opacity: .55; object-fit: cover; transition: .5s ease; }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(18,30,21,.94)); content: ""; }
.service-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 2rem; }
.service-card h3 { color: white; }
.service-card p { max-width: 42ch; color: rgba(255,255,255,.8); }
.service-card .link { display: inline-block; margin-top: 1.25rem; color: var(--gold-300); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card:hover img { transform: scale(1.04); opacity: .68; }
.text-service-card { display: grid; min-height: 320px; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); color: var(--ink); text-decoration: none; transition: .25s ease; }
.text-service-card:nth-child(2), .text-service-card:nth-child(3) { background: var(--linen); }
.text-service-card:hover { transform: translateY(-5px); border-color: var(--gold-500); box-shadow: var(--shadow); }
.text-service-card .service-number { color: var(--gold-500); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.text-service-card-content { align-self: end; }
.text-service-card h3 { color: var(--green-900); }
.text-service-card p { color: var(--muted); }
.text-service-card .link { display: inline-block; margin-top: 1.25rem; color: var(--gold-600); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dark-section { overflow: hidden; background: var(--green-900); color: rgba(255,255,255,.82); }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section .eyebrow { color: var(--gold-300); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); }
.steps { display: grid; gap: 0; }
.step { display: grid; padding: 1.7rem 0; border-bottom: 1px solid rgba(255,255,255,.15); grid-template-columns: 54px 1fr; gap: 1rem; }
.step:first-child { padding-top: 0; }
.step-number { display: grid; width: 42px; height: 42px; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-300); place-items: center; }
.step p { margin-top: .45rem; color: rgba(255,255,255,.68); }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.proof-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--green-900); }
.comparison-panel { position: relative; min-width: 0; }
.comparison-panel img { width: 100%; height: 360px; object-fit: cover; }
.comparison-label { position: absolute; bottom: .8rem; left: .8rem; padding: .45rem .75rem; border-radius: 999px; background: rgba(24,35,27,.9); color: white; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.proof-card figcaption { padding: 1.25rem 1.4rem; }
.proof-card strong { color: var(--green-900); font-family: var(--serif); font-size: 1.4rem; }
.proof-card span { display: block; color: var(--muted); font-size: .85rem; }
.quote-band { background: var(--gold-300); }
.quote-grid { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 2rem; }

.page-hero { padding: clamp(4rem, 8vw, 7rem) 0; background: radial-gradient(circle at 80% 10%, rgba(209,182,143,.38), transparent 30%), var(--linen); }
.page-hero h1 { max-width: 16ch; font-size: clamp(3.1rem, 7vw, 6.4rem); }
.breadcrumbs { display: flex; gap: .45rem; margin-bottom: 2rem; color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.breadcrumbs a { color: var(--green-800); }
.content-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(2rem, 7vw, 6rem); }
.content h2 { margin-top: 3.2rem; font-size: clamp(2.3rem, 4vw, 3.6rem); }
.content h3 { margin-top: 2rem; font-size: 1.75rem; }
.content ul { padding-left: 1.25rem; }
.content li + li { margin-top: .55rem; }
.sidebar-card { position: sticky; top: 110px; padding: 2rem; border-radius: var(--radius); background: var(--green-900); color: white; box-shadow: var(--shadow); }
.sidebar-card h2 { color: white; font-size: 2.5rem; }
.sidebar-card p { color: rgba(255,255,255,.72); }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2rem; }
.feature { padding: 1.4rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--white); }
.feature strong { display: block; color: var(--green-900); font-family: var(--serif); font-size: 1.35rem; }
.faq { border-top: 1px solid var(--border); }
.faq details { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; color: var(--green-900); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.faq p { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 6rem); }
.contact-details { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-item { padding: 1.25rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--white); text-decoration: none; }
.contact-item small { display: block; color: var(--gold-600); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: .2rem; color: var(--green-900); font-family: var(--serif); font-size: 1.4rem; overflow-wrap: anywhere; }
.form { display: grid; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--green-900); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .8rem .9rem; border: 1px solid #b9b8ae; border-radius: .6rem; background: #fff; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .78rem; }

.site-footer { padding: 4.5rem 0 2rem; background: var(--green-950); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 3rem; }
.footer-brand .brand-copy { color: white; }
.footer-brand p { max-width: 42ch; }
.footer-title { color: var(--gold-300); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: .6rem; margin-top: 1rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: fixed; top: 108px; right: 1rem; left: 1rem; display: none; padding: 1.2rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links .button { width: 100%; }
  .hero-grid, .process-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 430px; }
  .hero-collage { height: 410px; }
  .trust-items { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .section-head { display: block; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .brand-copy { font-size: 1rem; }
  .cards, .proof-grid, .feature-list, .form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .service-card { min-height: 350px; }
  .quote-grid, .footer-grid, .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }
  .hero-collage { width: 95%; height: 350px; }
  .hero-badge { width: 165px; padding: 1rem; }
  .comparison-panel img { height: 260px; }
}

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