:root {
  --ink: #17191c;
  --muted: #525861;
  --paper: #ffffff;
  --soft: #f5f2ec;
  --line: #d8d3c9;
  --accent: #8a4b16;
  --accent-dark: #5d300d;
  --focus: #005fcc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-dark); }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: 12px; top: -80px; z-index: 1000; padding: 10px 14px; background: #fff; }
.skip-link:focus { top: 12px; }
header { background: #111315; color: #fff; }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: #fff; text-decoration: none; font-size: 1.3rem; font-weight: 800; }
.nav-links { display: flex; flex-wrap: wrap; gap: 16px; }
.nav-links a { color: #fff; font-weight: 650; text-decoration: none; }
.hero { padding: clamp(54px, 8vw, 94px) 0; background: linear-gradient(120deg, #181b1f, #3b2b20); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(30px, 6vw, 72px); }
.eyebrow { margin: 0 0 10px; color: #f0bd85; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; }
h1 { margin: 0 0 20px; font-size: clamp(2.35rem, 6vw, 4.4rem); }
h2 { margin-top: 0; font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.hero p { max-width: 65ch; color: #f5f5f5; font-size: 1.12rem; }
.hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; background: #2b2d30; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 8px; padding: 11px 18px; background: #fff; color: #4a2609; font-weight: 800; text-decoration: none; }
.proof-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.proof-list li { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 7px 11px; }
main section { padding: clamp(44px, 7vw, 76px) 0; }
main section:nth-child(even) { background: var(--soft); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: #fff; }
.card p:last-child { margin-bottom: 0; }
.checklist { padding-left: 1.2rem; }
.checklist li { margin-block: .55rem; }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.gallery figcaption { padding: 14px 16px; color: var(--muted); }
.quote-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.quote-form { display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: #fff; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
label { font-weight: 700; }
input, select, textarea, button { font: inherit; }
input, select, textarea { width: 100%; margin-top: 5px; border: 1px solid #8a8f96; border-radius: 7px; padding: 11px 12px; background: #fff; color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
button[type="submit"] { min-height: 48px; border: 0; border-radius: 8px; padding: 11px 18px; background: var(--accent-dark); color: #fff; font-weight: 800; cursor: pointer; }
button[disabled] { opacity: .65; cursor: wait; }
.form-consent { color: var(--muted); font-size: .92rem; }
.form-consent label { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; font-weight: 500; }
.form-consent input { width: auto; margin-top: 5px; }
.phx-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
[data-form-status] { display: none; border-radius: 8px; padding: 12px; }
[data-form-status].success { display: block; background: #e7f6eb; color: #174f26; }
[data-form-status].error { display: block; background: #fdebec; color: #7b1520; }
.privacy-note { color: var(--muted); font-size: .92rem; }
footer { padding: 36px 0; background: #111315; color: #f2f2f2; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
footer a { color: #ffd3a8; }
@media (max-width: 760px) {
  .hero-grid, .grid-2, .grid-3, .quote-wrap, .gallery, .form-row { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .nav-links { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
