:root {
  --forest: #173a30;
  --forest-2: #0f2b24;
  --forest-3: #234d40;
  --wood: #b77b45;
  --wood-dark: #8f5b30;
  --sand: #e5c79d;
  --cream: #f5f1e8;
  --paper: #fcfaf5;
  --ink: #1d2420;
  --muted: #69736d;
  --line: #d9ddd7;
  --white: #fff;
  --danger: #a43d30;
  --shadow: 0 24px 70px rgba(19, 48, 39, .14);
  --radius: 6px;
  --font: "Segoe UI", Arial, sans-serif;
  --display: "Segoe UI", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 16px/1.65 var(--font); overflow-x: hidden; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); letter-spacing: -.052em; line-height: 1.04; }
h1 em, h2 em { color: var(--wood); font-family: Georgia, serif; font-weight: 400; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: 12px; padding: 10px 16px; background: var(--white); transform: translateY(-160%); border: 2px solid var(--forest); }
.skip-link:focus { transform: none; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: var(--forest); font: 700 12px/1 var(--display); text-transform: uppercase; letter-spacing: .15em; }
.eyebrow > span { width: 31px; height: 2px; background: var(--wood); }
.eyebrow.light { color: var(--sand); }
.button { border: 0; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 0 24px; font: 700 14px/1 var(--display); cursor: pointer; transition: color .25s, background .25s, border-color .25s, transform .25s; border-radius: 2px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wood-dark); }
.button-primary:hover { background: var(--forest); }
.button-dark { color: var(--white); background: var(--forest); }
.button-dark:hover { background: var(--wood-dark); }
.button-sand { color: var(--forest-2); background: var(--sand); }
.button-sand:hover { color: var(--white); background: var(--wood-dark); }
.button-outline { border: 1px solid var(--forest); background: transparent; color: var(--forest); }
.button-outline:hover { color: var(--white); background: var(--forest); }
.button-small { min-height: 44px; padding-inline: 19px; gap: 14px; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 11px; border-bottom: 1px solid var(--ink); padding: 6px 0; font-weight: 700; font-size: 14px; }
.text-link span { font-size: 18px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(252, 250, 245, .96); border-bottom: 1px solid rgba(23, 58, 48, .09); backdrop-filter: blur(12px); }
.site-header.is-sticky { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 8px 30px rgba(23, 58, 48, .08); animation: slideHeader .32s ease; }
@keyframes slideHeader { from { transform: translateY(-100%); } }
.utility-bar { color: #e6e1d5; background: var(--forest-2); font-size: 12px; }
.utility-inner { min-height: 33px; display: flex; justify-content: space-between; align-items: center; }
.utility-links { display: flex; align-items: center; gap: 26px; }
.utility-links a:hover { color: var(--sand); }
.nav-wrap { height: 104px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; width: 120px; height: 100%; padding-block: 8px; align-items: center; position: relative; z-index: 2; }
.brand img { width: 104px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { position: relative; font: 600 14px/1 var(--display); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--wood); transition: right .25s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--forest); transition: .2s; }

/* Hero */
.hero { position: relative; padding: 74px 0 90px; min-height: 700px; background: var(--cream); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .055; pointer-events: none; background-image: repeating-radial-gradient(ellipse at 89% 49%, transparent 0 20px, var(--forest) 21px 22px, transparent 23px 43px); background-size: 640px 640px; background-repeat: no-repeat; background-position: 116% 51%; }
.hero::after { content: ""; position: absolute; width: 38%; height: 1px; background: rgba(23,58,48,.18); bottom: 45px; left: 0; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 74px; position: relative; z-index: 1; }
.hero-copy h1 { max-width: 680px; margin-bottom: 28px; font-size: clamp(49px, 5.1vw, 74px); }
.hero-copy h1 em { display: block; }
.hero-lead { max-width: 620px; margin-bottom: 35px; color: #4f5a54; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-bottom: 54px; }
.hero-benefits { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; border-top: 1px solid rgba(23,58,48,.18); }
.hero-benefits li { padding: 19px 14px 0 0; border-right: 1px solid rgba(23,58,48,.14); }
.hero-benefits li + li { padding-left: 18px; }
.hero-benefits li:last-child { border-right: 0; }
.hero-benefits strong, .hero-benefits span { display: block; }
.hero-benefits strong { color: var(--forest); font: 700 14px/1.3 var(--display); }
.hero-benefits span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; min-height: 520px; }
.hero-image-frame { position: absolute; width: 83%; height: 530px; right: 5%; top: 0; padding: 13px; background: var(--paper); box-shadow: var(--shadow); transform: rotate(1.4deg); }
.hero-image-frame::before { content: ""; position: absolute; z-index: -1; width: 57%; height: 62%; background: var(--sand); right: -37px; top: -30px; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.image-label { position: absolute; top: 32px; right: -27px; padding: 9px 15px; color: var(--white); background: var(--forest); font: 700 10px/1 var(--display); letter-spacing: .13em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right top; }
.hero-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 14px; left: -11px; bottom: 14px; width: 190px; padding: 19px 18px; color: var(--forest); background: var(--sand); box-shadow: 0 14px 40px rgba(30,30,20,.14); }
.hero-note svg { width: 26px; flex: 0 0 26px; fill: none; stroke: var(--forest); stroke-width: 1.5; }
.hero-note p { margin: 0; font-size: 13px; line-height: 1.5; }
.hero-note strong { font-family: var(--display); }
.hero-stamp { position: absolute; z-index: 2; bottom: 21px; right: max(24px, calc((100vw - 1180px)/2)); display: flex; align-items: center; gap: 10px; color: var(--forest); font: 600 10px/1 var(--display); text-transform: uppercase; letter-spacing: .12em; transform: rotate(-2deg); }
.hero-stamp strong { color: var(--wood); }

.intro-strip { color: var(--white); background: var(--wood-dark); }
.intro-strip-inner { min-height: 112px; display: flex; justify-content: space-between; align-items: center; }
.intro-strip-inner > div { display: flex; align-items: center; gap: 26px; }
.strip-number { color: var(--sand); font: 400 42px/1 Georgia,serif; font-style: italic; }
.intro-strip p { margin: 0; line-height: 1.45; }
.intro-strip a { min-width: 245px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.5); padding: 10px 3px; font-weight: 700; }

/* Registered company / brand identity */
.company-intro-section { padding: 82px 0; background: #efe7d9; border-bottom: 1px solid rgba(143,91,48,.13); }
.company-intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 100px; }
.company-intro-heading h2 { margin-bottom: 0; font-size: clamp(39px,4.2vw,58px); }
.company-intro-copy { position: relative; padding-left: 34px; border-left: 1px solid rgba(143,91,48,.3); color: #4f5a54; font-size: 17px; }
.company-intro-copy::before { content: ""; position: absolute; left: -4px; top: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--wood-dark); }
.company-intro-copy p { margin-bottom: 17px; }
.company-intro-copy strong { color: var(--forest); }
.company-intro-links { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 28px; }

/* Reusable heading */
.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: 1.5fr .72fr; gap: 70px; align-items: end; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(42px, 4.5vw, 64px); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }

/* Offer */
.offer-section { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.offer-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; background: var(--paper); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, color .3s, transform .3s; }
.offer-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid currentColor; opacity: .05; border-radius: 50%; right: -95px; bottom: -90px; box-shadow: 0 0 0 25px currentColor, 0 0 0 50px currentColor; }
.offer-card:hover { z-index: 2; color: var(--white); background: var(--forest); transform: translateY(-5px); }
.offer-card-featured { background: #f0e7d8; }
.offer-index { color: var(--muted); font: 600 11px/1 var(--display); letter-spacing: .12em; }
.offer-icon { width: 58px; height: 58px; margin: 29px 0 23px; color: var(--wood-dark); }
.offer-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.offer-card:hover .offer-index, .offer-card:hover p { color: rgba(255,255,255,.68); }
.offer-card:hover .offer-icon { color: var(--sand); }
.offer-card h3 { margin-bottom: 13px; font: 700 21px/1.2 var(--display); letter-spacing: -.025em; }
.offer-card p { margin-bottom: 28px; color: var(--muted); font-size: 14px; line-height: 1.65; transition: color .3s; }
.card-link { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 0 7px; margin-top: auto; color: inherit; border: 0; border-top: 1px solid currentColor; opacity: .9; background: transparent; cursor: pointer; text-align: left; font-weight: 700; font-size: 13px; }
.card-link span { font-size: 19px; transition: transform .25s; }
.card-link:hover span { transform: translateX(5px); }

/* Story */
.story-section { padding: 0; color: var(--white); background: var(--forest); overflow: hidden; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 850px; }
.story-visual { position: relative; margin-left: calc((var(--container) - 100vw)/2); overflow: hidden; }
.story-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(23,58,48,.45)); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; filter: saturate(.85); }
.vertical-caption { position: absolute; z-index: 2; left: 30px; bottom: 40px; color: rgba(255,255,255,.76); font: 600 10px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; transform: rotate(-90deg) translateY(100%); transform-origin: left bottom; }
.wood-ring { position: absolute; z-index: 2; right: 30px; top: 44px; width: 120px; height: 120px; border: 2px solid rgba(229,199,157,.65); border-radius: 50%; box-shadow: 0 0 0 9px transparent, 0 0 0 10px rgba(229,199,157,.34), 0 0 0 19px transparent, 0 0 0 20px rgba(229,199,157,.22), 0 0 0 29px transparent, 0 0 0 30px rgba(229,199,157,.12); }
.story-copy { padding: 115px 0 110px 90px; }
.story-copy h2 { margin-bottom: 31px; font-size: clamp(42px, 4.3vw, 61px); }
.story-copy h2 em { color: var(--sand); }
.story-lead { max-width: 590px; margin-bottom: 38px; color: rgba(255,255,255,.7); font-size: 17px; }
.feature-list { margin-bottom: 37px; }
.feature-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.14); }
.feature-list > div > span { color: var(--sand); font: italic 20px/1.2 Georgia,serif; }
.feature-list section h3 { margin: 0 0 6px; font: 700 16px/1.3 var(--display); }
.feature-list section p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }

/* Gallery */
.gallery-section { background: #f0ede5; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 356px 240px 350px; gap: 18px; }
.gallery-item { position: relative; display: block; overflow: hidden; padding: 0; border: 0; background: #ddd; cursor: zoom-in; text-align: left; }
.gallery-item::after { content: "↗"; position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--forest); background: rgba(255,255,255,.9); opacity: 0; transform: translateY(5px); transition: .3s; }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { object-position: center 46%; }
.gallery-item > span { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 22px; color: var(--white); font: 600 18px/1.25 var(--display); text-shadow: 0 2px 15px rgba(0,0,0,.5); }
.gallery-item > span b { display: block; margin-bottom: 6px; color: var(--sand); font: 700 10px/1 var(--display); letter-spacing: .13em; text-transform: uppercase; }
.gallery-item::before { content: ""; position: absolute; z-index: 1; inset: 48% 0 0; background: linear-gradient(transparent, rgba(8,20,16,.65)); }
.gallery-quote { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; color: var(--white); background: var(--wood-dark); }
.gallery-quote p { max-width: 420px; margin: 0; font: italic 26px/1.35 Georgia, serif; }
.gallery-quote span { font: 700 10px/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 37px; }
.gallery-footer p { max-width: 520px; margin: 0; color: var(--muted); }
.gallery-footer-actions { display: flex; gap: 10px; }

/* Process */
.process-section { color: var(--white); background: var(--forest-2); overflow: hidden; }
.process-section .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; }
.process-intro { position: relative; align-self: start; }
.process-intro::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(229,199,157,.08); border-radius: 50%; left: -170px; top: 270px; box-shadow: 0 0 0 40px rgba(229,199,157,.025), 0 0 0 80px rgba(229,199,157,.02); }
.process-intro h2 { font-size: clamp(42px, 4.4vw, 61px); }
.process-intro h2 em { color: var(--sand); }
.process-intro > p:last-child { max-width: 450px; color: rgba(255,255,255,.64); }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list li > span { color: var(--sand); font: italic 28px/1 Georgia,serif; }
.process-list h3 { margin-bottom: 8px; font: 700 20px/1.2 var(--display); }
.process-list p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }

/* Reviews */
.reviews-section { background: var(--sand); }
.reviews-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.reviews-copy h2 { font-size: clamp(42px, 4.3vw, 61px); }
.reviews-copy > p:not(.eyebrow) { max-width: 600px; color: #5d594f; font-size: 17px; }
.button-facebook { margin-top: 16px; color: #fff; background: #315b97; }
.button-facebook:hover { background: #234674; }
.button-facebook svg { width: 20px; height: 20px; fill: currentColor; }
.review-promise { position: relative; padding: 52px 48px 45px; background: var(--paper); box-shadow: 18px 18px 0 rgba(23,58,48,.09); }
.quote-mark { position: absolute; top: 22px; right: 32px; color: var(--wood); font: 90px/1 Georgia,serif; opacity: .28; }
.review-promise > p { position: relative; margin-bottom: 35px; font: italic 25px/1.48 Georgia,serif; }
.review-signature { display: flex; align-items: center; gap: 15px; padding-top: 22px; border-top: 1px solid var(--line); }
.review-signature img { width: 54px; height: 54px; object-fit: contain; }
.review-signature span { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; }
.review-signature strong { color: var(--forest); font: 700 14px/1.5 var(--display); }

/* Quote form */
.quote-section { background: var(--paper); }
.quote-header { max-width: 830px; margin: 0 auto 60px; text-align: center; }
.quote-header .eyebrow { justify-content: center; }
.quote-header h2 { margin-bottom: 20px; font-size: clamp(46px, 5vw, 68px); }
.quote-header > p:last-child { color: var(--muted); font-size: 17px; }
.quote-form { max-width: 1040px; margin: auto; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.form-step { padding: 43px 50px; border-bottom: 1px solid var(--line); }
.form-step[hidden] { display: none; }
.conditional-step { background: #f7f2e9; }
.step-heading { display: grid; grid-template-columns: 53px 1fr; gap: 14px; align-items: start; margin-bottom: 31px; }
.step-heading > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--forest); font: 700 12px/1 var(--display); }
.step-heading h3 { margin: 1px 0 5px; font: 700 23px/1.25 var(--display); letter-spacing: -.03em; }
.step-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.service-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0; border: 0; margin: 0; }
.service-options label { position: relative; min-height: 133px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 10px; padding: 17px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; transition: .22s; }
.service-options input { position: absolute; opacity: 0; }
.service-options label:has(input:checked) { color: var(--white); background: var(--forest); border-color: var(--forest); transform: translateY(-3px); }
.service-options label:focus-within { outline: 3px solid rgba(183,123,69,.3); outline-offset: 2px; }
.service-option-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--wood-dark); }
.service-option-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-options label:has(input:checked) .service-option-icon { color: var(--sand); }
.service-options label > span:nth-of-type(2) { font: 700 13px/1.25 var(--display); }
.service-options i { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; display: none; place-items: center; color: var(--forest); background: var(--sand); border-radius: 50%; font: normal 700 12px/1 var(--font); }
.service-options label:has(input:checked) i { display: grid; }
.field-error { margin: 8px 0 0; color: var(--danger); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 600; }
.field > span b, .consent b, .time-options b { color: var(--wood-dark); }
.field > span small { color: var(--muted); font-weight: 400; }
.field-full { grid-column: 1 / -1; }
.field input:not([type=file]), .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); border: 1px solid #cfd5ce; border-radius: 0; outline: 0; background: var(--white); transition: border .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--wood-dark); box-shadow: 0 0 0 3px rgba(183,123,69,.13); }
.field input[aria-invalid=true], .field select[aria-invalid=true], .consent input[aria-invalid=true] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(164,61,48,.1); }
.file-field { position: relative; }
.file-field > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop { min-height: 95px; display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--muted); border: 1px dashed #aab5ad; background: #f8f8f5; cursor: pointer; font-weight: 400; }
.file-drop b { color: var(--wood-dark); font-size: 24px; }
.file-drop em { color: var(--forest); font-style: normal; font-weight: 700; }
.file-list { color: var(--muted); font-size: 12px; font-weight: 400; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 29px; color: var(--muted); font-size: 12px; line-height: 1.55; cursor: pointer; }
.consent input { width: 17px; height: 17px; flex: 0 0 17px; margin: 1px 0 0; accent-color: var(--forest); }
.consent a { color: var(--forest); text-decoration: underline; }
.form-submit-row { min-height: 105px; display: flex; align-items: center; justify-content: flex-end; gap: 25px; padding: 24px 50px; background: #f5f5f0; }
.form-status { margin-right: auto; font-size: 13px; }
.form-status.success { color: #1b6b4a; }
.form-status.error { color: var(--danger); }
.button-submit { min-width: 230px; }
.button-submit[disabled] { opacity: .65; cursor: wait; }
.hp-field { position: absolute; left: -9999px; }

/* FAQ */
.faq-section { background: #efede6; }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 110px; }
.faq-intro h2 { font-size: clamp(42px, 4vw, 58px); }
.faq-intro p:last-child { color: var(--muted); }
.faq-intro a { color: var(--wood-dark); text-decoration: underline; }
.accordion { border-top: 1px solid #bdc4bd; }
.accordion details { border-bottom: 1px solid #bdc4bd; }
.accordion summary { list-style: none; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font: 700 16px/1.3 var(--display); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--wood-dark); font: 300 26px/1 var(--font); transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 780px; margin: -5px 45px 27px 0; color: var(--muted); font-size: 14px; }

/* Contact */
.contact-section { padding: 105px 0; color: var(--white); background: var(--wood-dark); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: center; }
.contact-copy h2 { margin-bottom: 23px; font-size: clamp(45px, 4.7vw, 65px); }
.contact-copy h2 em { color: var(--sand); }
.contact-copy > p:last-child { max-width: 520px; color: rgba(255,255,255,.7); }
.contact-links { border-top: 1px solid rgba(255,255,255,.25); }
.contact-links a, .contact-links button { width: 100%; min-height: 94px; display: grid; grid-template-columns: 110px 1fr 25px; align-items: center; gap: 20px; padding: 0 3px; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.25); background: transparent; text-align: left; cursor: pointer; }
.contact-links span { color: var(--sand); font: 700 10px/1 var(--display); text-transform: uppercase; letter-spacing: .12em; }
.contact-links strong { font: 600 17px/1.3 var(--display); }
.contact-links i { font: normal 22px/1 var(--font); transition: transform .2s; }
.contact-links a:hover i, .contact-links button:hover i { transform: translate(4px,-4px); }

/* Footer */
.site-footer { color: #dbe2dd; background: #0b201b; }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 65px; padding: 75px 0 58px; }
.footer-brand img { display: block; width: 126px; height: auto; margin-top: -24px; }
.footer-brand p { max-width: 290px; margin: 18px 0 0; color: #91a098; font-size: 13px; }
.footer-main h2 { margin-bottom: 23px; color: var(--sand); font: 700 11px/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-main a, .footer-main button { width: fit-content; padding: 0; color: #a8b4ad; border: 0; background: transparent; font-size: 13px; cursor: pointer; text-align: left; }
.footer-main a:hover, .footer-main button:hover { color: var(--white); }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); color: #77877f; font-size: 11px; }
.footer-bottom > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 25px; }
.footer-bottom button { padding: 0; color: inherit; border: 0; background: transparent; cursor: pointer; }
.footer-bottom a:hover, .footer-bottom button:hover { color: var(--white); }

/* Floating callback */
.callback-fab { position: fixed; z-index: 90; right: 25px; bottom: 24px; width: 66px; height: 66px; display: grid; place-items: center; padding: 0; color: var(--white); border: 0; border-radius: 50%; background: var(--wood-dark); box-shadow: 0 10px 30px rgba(64,36,13,.34); cursor: pointer; transition: .25s; }
.callback-fab:hover { transform: scale(1.06); background: var(--forest); }
.callback-fab svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.fab-rings, .fab-rings::before { position: absolute; inset: -8px; content: ""; border: 1px solid rgba(183,123,69,.55); border-radius: 50%; animation: fabPulse 2.6s infinite; }
.fab-rings::before { inset: -9px; animation-delay: 1.3s; }
@keyframes fabPulse { 0% { opacity: .75; transform: scale(.85); } 80%,100% { opacity: 0; transform: scale(1.36); } }
.fab-label { position: absolute; right: 77px; padding: 9px 12px; color: var(--forest); background: var(--white); box-shadow: 0 6px 20px rgba(23,58,48,.15); border-radius: 3px; font: 700 11px/1 var(--display); white-space: nowrap; }

/* Modals */
.modal { color: var(--ink); border: 0; padding: 0; max-width: min(92vw, 620px); max-height: 90vh; background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.34); }
.modal::backdrop { background: rgba(7,22,17,.76); backdrop-filter: blur(3px); }
.modal-close { position: absolute; z-index: 4; top: 14px; right: 14px; width: 39px; height: 39px; display: grid; place-items: center; border: 0; background: rgba(255,255,255,.88); font-size: 27px; cursor: pointer; }
.callback-modal { width: min(92vw, 580px); }
.callback-modal-head { display: flex; gap: 18px; padding: 36px 54px 27px 35px; color: var(--white); background: var(--forest); }
.callback-icon { width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center; background: var(--wood); border-radius: 50%; }
.callback-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.callback-modal-head p { margin: 0 0 4px; color: var(--sand); font: 700 10px/1 var(--display); text-transform: uppercase; letter-spacing: .13em; }
.callback-modal-head h2 { margin-bottom: 7px; font-size: 26px; letter-spacing: -.035em; }
.callback-modal-head div > span { color: rgba(255,255,255,.62); font-size: 12px; }
.callback-modal form { display: grid; gap: 18px; padding: 29px 35px 34px; }
.time-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; padding: 0; border: 0; }
.time-options legend { grid-column: 1/-1; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.time-options label { position: relative; }
.time-options input { position: absolute; opacity: 0; }
.time-options span { min-height: 42px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); font-size: 12px; cursor: pointer; }
.time-options input:checked + span { color: var(--white); background: var(--forest); border-color: var(--forest); }
.time-options label:focus-within span { outline: 3px solid rgba(183,123,69,.22); }
.consent.compact { margin: 0; }

.lightbox { width: min(94vw, 980px); max-width: 980px; height: 88vh; background: #071712; overflow: hidden; }
.lightbox figure { height: 100%; margin: 0; display: flex; flex-direction: column; }
.lightbox figure img { min-height: 0; width: 100%; flex: 1; object-fit: contain; }
.lightbox figcaption { padding: 13px 68px; color: var(--white); text-align: center; font-size: 13px; }
.lightbox-nav { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; border: 0; color: var(--forest); background: rgba(255,255,255,.9); cursor: pointer; }
.lightbox-nav.prev { left: 14px; }
.lightbox-nav.next { right: 14px; }

/* Cookies */
.cookie-banner { position: fixed; z-index: 200; left: 18px; right: 18px; bottom: 18px; max-width: 1160px; margin: auto; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 20px; padding: 22px 24px; background: var(--white); box-shadow: 0 20px 70px rgba(8,30,23,.25); border-top: 3px solid var(--wood); }
.cookie-banner[hidden] { display: none; }
.cookie-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; font-size: 25px; }
.cookie-banner h2 { margin-bottom: 4px; font-size: 16px; letter-spacing: -.02em; }
.cookie-banner p { max-width: 630px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.cookie-banner p a { text-decoration: underline; color: var(--forest); }
.cookie-actions { display: flex; align-items: center; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding-inline: 14px; font-size: 11px; }
.cookie-settings-link { padding: 8px; border: 0; background: transparent; color: var(--muted); text-decoration: underline; font-size: 11px; cursor: pointer; }
.cookie-modal { width: min(92vw, 590px); padding: 39px; }
.cookie-modal h2 { margin-bottom: 13px; font-size: 33px; }
.cookie-modal > p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.cookie-choice { min-height: 90px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-choice > div { display: flex; flex-direction: column; }
.cookie-choice strong { font: 700 14px/1.5 var(--display); }
.cookie-choice span { color: var(--muted); font-size: 11px; }
.always-on { flex: 0 0 auto; color: var(--forest) !important; font-weight: 700; }
.cookie-choice input { width: 42px; height: 23px; accent-color: var(--forest); }
.cookie-modal-actions { display: flex; gap: 10px; margin-top: 17px; }
.cookie-modal-actions .button { min-height: 45px; }

/* Reveal animation */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: .12s; }

/* Privacy page */
.legal-hero { padding: 84px 0 66px; color: var(--white); background: var(--forest); }
.legal-hero h1 { max-width: 900px; margin: 0; font-size: clamp(42px,5vw,68px); }
.legal-hero p { margin: 18px 0 0; color: rgba(255,255,255,.65); }
.legal-content { max-width: 850px; padding: 80px 0 100px; }
.legal-content h2 { margin: 48px 0 16px; font-size: 28px; letter-spacing: -.03em; }
.legal-content h3 { margin: 30px 0 10px; font: 700 18px/1.3 var(--display); }
.legal-content p, .legal-content li { color: #56615b; }
.legal-content a { color: var(--wood-dark); text-decoration: underline; }
.legal-notice { padding: 22px 24px; margin-bottom: 45px; color: #613f20; border-left: 4px solid var(--wood-dark); background: #f2e4cf; }
.legal-notice strong { font: 700 15px/1.3 var(--display); }
.legal-notice p { margin: 5px 0 0; color: #6c533b; font-size: 13px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13px; }
.legal-content th, .legal-content td { padding: 13px; text-align: left; border: 1px solid var(--line); vertical-align: top; }
.legal-content th { background: var(--cream); }

/* Guides on the homepage */
.home-guides-section { background: #efede6; }
.home-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.home-guide-card { min-height: 300px; display: flex; flex-direction: column; padding: 32px; color: var(--ink); border: 1px solid var(--line); background: var(--white); transition: transform .25s, color .25s, background .25s, box-shadow .25s; }
.home-guide-card:hover { color: var(--white); background: var(--forest); transform: translateY(-5px); box-shadow: var(--shadow); }
.home-guide-card > span { color: var(--wood-dark); font: 700 10px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.home-guide-card h3 { margin: 42px 0 13px; font: 700 24px/1.25 var(--display); letter-spacing: -.035em; }
.home-guide-card p { margin: 0; color: var(--muted); font-size: 14px; }
.home-guide-card:hover p, .home-guide-card:hover > span { color: rgba(255,255,255,.7); }
.home-guide-card i { margin-top: auto; align-self: flex-end; font: normal 24px/1 var(--font); }

@media (max-width: 1080px) {
  :root { --container: min(100% - 38px, 940px); }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 13px; }
  .nav-cta { display: none; }
  .hero { padding-top: 60px; }
  .hero-grid { gap: 35px; }
  .hero-image-frame { width: 90%; right: 0; }
  .offer-card { padding: 28px; }
  .story-copy { padding-left: 55px; }
  .process-section .container { gap: 55px; }
  .reviews-grid, .contact-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .service-options { grid-template-columns: repeat(4, 1fr); }
  .cookie-banner { grid-template-columns: 44px 1fr; }
  .cookie-actions { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --container: calc(100% - 36px); }
  html { scroll-padding-top: 90px; }
  .section { padding: 85px 0; }
  .utility-bar { display: none; }
  .site-header.is-sticky { position: fixed; }
  .nav-wrap { height: 88px; }
  .brand { width: 90px; height: 100%; padding-block: 8px; }
  .brand img { width: 82px; }
  .menu-toggle { display: block; position: relative; z-index: 2; margin-left: auto; cursor: pointer; }
  .menu-toggle[aria-expanded=true] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded=true] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded=true] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 1; inset: 88px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px 18px 28px; color: var(--white); background: var(--forest); box-shadow: 0 20px 40px rgba(0,0,0,.2); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .3s; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 16px 6px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
  .main-nav a::after { display: none; }
  .hero { padding: 58px 0 82px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 590px; margin-top: 25px; }
  .hero-image-frame { width: min(84%, 520px); height: 570px; right: 7%; }
  .hero-note { left: 7%; }
  .hero-stamp { display: none; }
  .hero::after { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading > p { max-width: 640px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .company-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-guides-grid { grid-template-columns: repeat(2, 1fr); }
  .story-visual { min-height: 650px; margin: 0 calc((var(--container) - 100vw)/2); }
  .story-copy { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 230px 320px; }
  .process-section .container { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-copy { max-width: 700px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro { max-width: 600px; }
  .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
  .service-options { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .home-guides-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 70px 0; }
  .hero { padding: 48px 0 66px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; margin-bottom: 40px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-benefits { grid-template-columns: 1fr 1fr; }
  .hero-benefits li:nth-child(2) { border-right: 0; }
  .hero-benefits li:nth-child(3) { display: none; }
  .hero-visual { min-height: 500px; }
  .hero-image-frame { width: 89%; height: 480px; right: 3%; }
  .hero-note { left: 0; bottom: 5px; }
  .image-label { display: none; }
  .intro-strip-inner { min-height: 144px; flex-direction: column; align-items: stretch; justify-content: center; gap: 16px; }
  .intro-strip a { min-width: 0; }
  .company-intro-section { padding: 64px 0; }
  .company-intro-copy { padding-left: 21px; }
  .company-intro-links { align-items: stretch; flex-direction: column; gap: 14px; }
  .company-intro-links .button { width: 100%; }
  .split-heading h2, .story-copy h2, .reviews-copy h2, .process-intro h2 { font-size: 39px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 335px; }
  .story-visual { min-height: 520px; }
  .story-copy { padding: 65px 0; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-item { height: 420px; }
  .gallery-wide { height: 360px; }
  .gallery-quote { min-height: 220px; }
  .gallery-footer { align-items: stretch; flex-direction: column; }
  .gallery-footer .button { width: 100%; }
  .gallery-footer-actions { align-items: stretch; flex-direction: column; }
  .process-list li { grid-template-columns: 52px 1fr; gap: 12px; }
  .review-promise { padding: 40px 29px 34px; }
  .review-promise > p { font-size: 21px; }
  .quote-header { text-align: left; }
  .quote-header .eyebrow { justify-content: flex-start; }
  .quote-header h2 { font-size: 42px; }
  .form-step { padding: 33px 20px; }
  .step-heading { grid-template-columns: 44px 1fr; }
  .step-heading > span { width: 36px; height: 36px; }
  .service-options { grid-template-columns: repeat(2, 1fr); }
  .service-options label { min-height: 117px; padding: 13px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-submit-row { flex-direction: column; align-items: stretch; padding: 22px 20px; }
  .button-submit { width: 100%; }
  .contact-links a, .contact-links button { grid-template-columns: 82px 1fr 20px; gap: 10px; }
  .contact-links strong { font-size: 14px; overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 25px 0; }
  .footer-bottom > div { flex-wrap: wrap; gap: 12px 20px; }
  .callback-fab { right: 17px; bottom: 17px; width: 60px; height: 60px; }
  .fab-label { display: none; }
  .callback-modal-head { padding: 30px 51px 24px 24px; }
  .callback-icon { display: none; }
  .callback-modal form { padding: 24px; }
  .time-options { grid-template-columns: 1fr; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; padding: 20px; }
  .cookie-icon { display: none; }
  .cookie-actions { grid-column: 1; display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-settings-link { grid-column: 1/-1; }
  .cookie-modal { padding: 32px 23px 25px; }
  .cookie-modal-actions { flex-direction: column; }
  .lightbox { height: 82vh; }
  .lightbox-nav { top: auto; bottom: 9px; }
  .lightbox figcaption { padding-inline: 58px; }
  .legal-content table { display: block; overflow-x: auto; }
}

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