:root {
  /* THE FUNNEL'S PALETTE, the same six values, so /about/, /estimate/ and
   * /privacy/ read as the same site as the front door. The variable NAMES are
   * the old ones on purpose: every rule below already reads them, so the theme
   * changes here and nowhere else. */
  --accent: #2f6b4f;
  --surface: #111614;
  --deep: #143b2a;

  --green: var(--accent);
  --green-strong: #3c8a66;
  --green-soft: var(--surface);
  --green-line: color-mix(in srgb, var(--accent) 40%, transparent);
  --ink: #f2f0ea;
  --ink-2: #9aa39e;
  --muted: #9aa39e;
  --line: color-mix(in srgb, var(--muted) 22%, transparent);
  --bg: #0b0f0d;
  --bg-alt: var(--surface);
  --danger: #f2a0a0;
  --danger-soft: color-mix(in srgb, #7f1d1d 40%, transparent);
  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 1120px;
  --shadow: 0 0 60px color-mix(in srgb, var(--deep) 60%, transparent);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* 12px body, the funnel's measured size. */
  font-size: 12px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-strong); text-underline-offset: 3px; }
a:hover { color: var(--green); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; color: var(--ink); }
/* 18px, 16px and 13px, matching the funnel. The hierarchy here is weight and
 * colour rather than size, which is what the reference page does too. */
h1 { font-size: 18px; font-weight: 800; color: var(--accent); }
h2 { font-size: 16px; font-weight: 800; color: var(--accent); }
h3 { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
@media (max-width: 720px) { h2 { font-size: 15px; } }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.section { padding: clamp(20px, 3vw, 34px) 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-strong); margin-bottom: 10px;
}
.lede { font-size: 12px; color: var(--ink-2); max-width: 408px; font-weight: 600; }
.section-head { margin-bottom: 18px; }
.section-head.center { text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

.skip {
  position: absolute; left: -9999px; top: 8px; background: var(--surface); color: var(--ink);
  padding: 8px 14px; border-radius: 8px; z-index: 100;
}
.skip:focus { left: 8px; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 650; font-size: 13px; line-height: 1.2;
  text-decoration: none; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--green-strong); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--green-strong); border-color: var(--green-line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-strong); background: var(--green-soft); }
.btn-sm { min-height: 36px; padding: 7px 14px; font-size: 12px; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(10px); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 14px; letter-spacing: -0.02em; }
.brand:hover { color: var(--ink); }
.brand img { width: 34px; height: 34px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-link { font-weight: 600; font-size: 0.95rem; color: var(--ink-2); text-decoration: none; white-space: nowrap; }
.header-link:hover { color: var(--green-strong); }
@media (max-width: 420px) {
  .brand span { display: none; }
  .header-actions { gap: 10px; }
}

/* Hero */
.hero { padding: clamp(20px, 3vw, 36px) 0 clamp(22px, 3vw, 40px); background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 70%); }
.hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.hero .lede { font-size: 12px; margin-bottom: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.text-link { font-weight: 650; }
/* 4:5 against a 1545x2000 source, so the crop is about three percent off the
 * top and bottom and never reaches the cabin. The photo is not stretched:
 * object-fit is cover at almost the source's own ratio. */
.hero-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; max-height: 460px; background: var(--surface); border: 1px solid var(--green-line); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Video */
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--green-line); box-shadow: var(--shadow);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-still {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; width: 100%; border: 0; background: transparent; font: inherit; color: var(--ink); text-align: center; padding: 20px;
}
button.video-still { cursor: pointer; }
.video-still img { width: clamp(56px, 11vw, 96px); height: auto; opacity: 0.9; }
.video-still .still-title { font-weight: 750; font-size: 13px; }
.video-still .still-sub { color: var(--muted); font-size: 12px; }
.play {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.35); transition: transform 0.15s, background 0.15s;
}
button.video-still:hover .play { transform: scale(1.06); background: var(--green-strong); }
.play svg { width: 28px; height: 28px; margin-left: 4px; fill: var(--bg); }

/* The video itself, the same file the funnel plays. vsl.js swaps the still for
 * a real player when config.vslVideoUrl is set. */
.video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: var(--surface); display: block;
}

/* Founder */
.founder { display: grid; gap: 28px; align-items: center; }
@media (min-width: 760px) { .founder { grid-template-columns: 240px 1fr; gap: 48px; } }
.headshot {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto;
  background: var(--surface);
  display: grid; place-items: center; color: var(--ink); font-weight: 800; font-size: 3.2rem; letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  /* the accent ring stays whether the circle holds initials or the portrait */
  border: 3px solid var(--accent);
}
@media (min-width: 760px) { .headshot { width: 240px; height: 240px; } }
.headshot img { width: 100%; height: 100%; object-fit: cover; }

/* Cards and grids */
.grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card p { color: var(--ink-2); margin: 0; font-size: 12px; }
.step-num {
  display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-strong); border: 1px solid var(--green-line);
  font-weight: 800; margin-bottom: 14px;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
@media (min-width: 760px) { .check-list { grid-template-columns: repeat(2, 1fr); gap: 14px 28px; } }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-2); }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / 13px no-repeat;
  border: 1px solid var(--green-line);
}
.statements { display: grid; gap: 14px; margin-top: 32px; }
@media (min-width: 640px) { .statements { grid-template-columns: repeat(2, 1fr); } }
.statement {
  border-left: 4px solid var(--green); background: var(--green-soft); padding: 18px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700; font-size: 13px; margin: 0;
}

.guarantee-body { white-space: pre-line; background: var(--surface); border: 1px solid var(--green-line); border-radius: var(--radius); padding: 24px; color: var(--ink-2); }

.platforms { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.platforms li { padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-weight: 700; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq details[open] { border-color: var(--green-line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; font-weight: 650; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 16px; font-weight: 400; color: var(--green-strong); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 20px 18px; color: var(--ink-2); }
.faq .answer p:last-child { margin-bottom: 0; }

/* Booking */
.calendly-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.calendly-inline-widget { min-width: 280px; height: 720px; }
@media (max-width: 640px) { .calendly-inline-widget { height: 1000px; } }
.calendly-loading { display: grid; place-items: center; height: 100%; color: var(--muted); padding: 24px; text-align: center; }
.book-fallback { text-align: center; margin-top: 18px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--surface); color: var(--muted); border-top: 1px solid var(--line); padding: 28px 0 22px; font-size: 12px; }
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; gap: 20px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1fr auto; align-items: end; } }
.footer-name { color: var(--ink); font-weight: 800; font-size: 13px; margin-bottom: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

/* Forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(16px, 3vw, 22px); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid .half { grid-column: span 1; } .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label, .field legend { display: block; font-weight: 650; margin-bottom: 5px; font-size: 12px; padding: 0; }
.field .opt { color: var(--muted); font-weight: 500; }
.field .hint { color: var(--muted); font-size: 12px; margin: 6px 0 0; }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  width: 100%; font-family: inherit; font-size: 12px; color: var(--ink); background: var(--surface);
  border: 1.5px solid color-mix(in srgb, var(--muted) 40%, transparent);
  border-radius: var(--radius-sm); padding: 9px 12px; min-height: 38px;
}
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }

/* THE TWO DROPDOWNS. The browser's own arrow is replaced by an accent chevron
 * drawn in the background, which is why appearance is cleared first; the SVG is
 * inline so it costs no request and inherits nothing that could restyle it. */
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  padding-right: 34px; cursor: pointer;
}
.select-wrap::after {
  content: ""; position: absolute; right: 12px; top: 50%; width: 11px; height: 7px;
  transform: translateY(-50%); pointer-events: none;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 7'><path d='M1 1l4.5 4.5L10 1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 7'><path d='M1 1l4.5 4.5L10 1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.select-wrap select option { background: var(--surface); color: var(--ink); }

/* The small line icons beside the Bedrooms and Bathrooms labels. */
.field-icon {
  width: 14px; height: 14px; color: var(--accent);
  vertical-align: -2px; margin-right: 6px; display: inline-block;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 35%, transparent); }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 12px; margin: 6px 0 0; font-weight: 600; }
.field-error:empty { display: none; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px; margin: 0; font-weight: 550; font-size: 12px;
  border: 1.5px solid color-mix(in srgb, var(--muted) 40%, transparent);
  border-radius: 999px; padding: 8px 14px; cursor: pointer; min-height: 36px;
}
.radio-row input { accent-color: var(--green); width: 18px; height: 18px; margin: 0; }
.radio-row label:has(input:checked) { border-color: var(--green); background: var(--green-soft); }
.file-drop {
  display: block; border: 2px dashed color-mix(in srgb, var(--muted) 40%, transparent);
  border-radius: var(--radius-sm); padding: 14px; text-align: center;
  background: var(--surface);
}
.file-drop input[type="file"] { width: 100%; font: inherit; font-size: 12px; }
.file-list { list-style: none; margin: 10px 0 0; padding: 0; font-size: 12px; color: var(--ink-2); display: grid; gap: 4px; }
.counter { float: right; color: var(--muted); font-weight: 500; font-size: 12px; }
/* CONSENT. Required, and its wording sits in the DOM so the submission can
 * carry the exact sentence that was agreed to. The note beneath is 11px and
 * muted, deliberately quieter than the label it explains. */
.consent-field { margin-top: 4px; }
.consent {
  display: flex; align-items: flex-start; gap: 9px; margin: 0;
  font-size: 12px; font-weight: 600; color: var(--ink); cursor: pointer;
}
.consent input[type="checkbox"] {
  width: 16px; height: 16px; margin: 1px 0 0; flex: 0 0 auto;
  accent-color: var(--accent); cursor: pointer;
}
.consent-note { font-size: 11px; color: var(--muted); margin: 6px 0 0 25px; font-weight: 500; line-height: 1.5; }
.consent-note a { color: var(--muted); }

.hp { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 0; font-weight: 600;
}
.form-status.error { background: var(--danger-soft); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 45%, transparent); }
.form-status.info { background: var(--green-soft); color: var(--green-strong); border: 1px solid var(--green-line); }
.form-status:empty { display: none; }
.submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid color-mix(in srgb, var(--bg) 45%, transparent); border-top-color: var(--bg);
  animation: spin 0.8s linear infinite; display: none;
}
.btn.is-busy .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.success { text-align: center; padding: clamp(20px, 4vw, 32px) 12px; }
.success h2 { margin-bottom: 18px; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.success-icon svg { width: 30px; height: 30px; stroke: var(--green-strong); }
.page-hero { padding: clamp(18px, 3vw, 30px) 0 10px; background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 70%); }

/* Prose (privacy) */
.prose h2 { font-size: 15px; margin-top: 2em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose p, .prose li { color: var(--ink-2); }
.muted { color: var(--muted); }
.plain-list { list-style: none; padding: 0; margin: 0; }
.center-note { text-align: center; margin-top: 28px; }
