:root {
  --wine: #600b0b;
  --wine-deep: #3d0707;
  --wine-soft: #8a2a2a;
  --cream: #f6f1ea;
  --paper: #fffdf9;
  --ink: #1c1412;
  --muted: #5c534e;
  --line: rgba(96, 11, 11, 0.16);
  --gold: #b0894d;
  --radius: 14px;
  --font: "Segoe UI", system-ui, sans-serif;
  --font-display: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --max: 1080px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

@media (any-hover: hover) and (any-pointer: fine) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--wine) var(--cream);
  }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track {
    background: var(--cream);
    border-left: 1px solid var(--line);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--wine);
    border-radius: 999px;
    border: 2px solid var(--cream);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--wine-soft); }
  ::-webkit-scrollbar-corner { background: var(--cream); }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-underline-offset: 3px; }
a:hover { color: var(--wine-deep); }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--wine); color: #fff; padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--wine);
  line-height: 1.15;
  min-width: 0;
  flex: 1;
}
.brand-mark { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: .02em; }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--wine);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.site-nav ul {
  display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; align-items: center;
}
.site-nav a {
  display: block;
  padding: .45rem .75rem;
  text-decoration: none;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
}
.site-nav a:hover,
.site-nav a:active,
.site-nav a.active {
  background: var(--wine);
  color: #fff;
}
.site-nav .nav-cta { margin-left: .35rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 3rem; }
.hero {
  background: var(--wine-deep);
  color: #f8efe6;
  padding: 3.2rem 1.25rem 3.4rem;
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: #e3c9a0;
  margin: 0 0 .7rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 .8rem;
  font-weight: 700;
}
.hero-text { max-width: 40rem; color: #f0e2d4; margin: 0 0 1.4rem; }
.page-hero {
  background: var(--wine);
  color: #f8efe6;
  padding: 2.4rem 1.25rem 2.2rem;
  margin-bottom: 1.6rem;
}
.page-hero h1 {
  max-width: var(--max);
  margin: 0 auto .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.page-hero .lead {
  max-width: var(--max);
  margin: 0 auto;
  color: #f0e2d4;
}

.section { margin: 1.6rem 0; }
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.prose h2, .cta-band h2, .map-block h2 {
  font-family: var(--font-display);
  margin: 0 0 .7rem;
}
.prose p, .prose li { overflow-wrap: anywhere; }
.prose ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.prose li { margin: .25rem 0; }
.kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  color: var(--gold);
  margin: 0 0 .35rem;
  font-weight: 700;
}

.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-deep); color: #fff; }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.hero .btn-ghost { color: #f8efe6; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.fact strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--wine); margin-bottom: .25rem; }
.fact span { color: var(--muted); font-size: .95rem; }

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.photo-row img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--wine);
  color: #f8efe6;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.cta-band p { margin: 0; color: #f0e2d4; }
.cta-band .btn-primary { background: #fff; color: var(--wine); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--wine-deep); }

.guarantee { list-style: none; padding: 0; }
.guarantee li { padding: .45rem 0; border-bottom: 1px solid var(--line); }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
.quick-btn {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
}
.quick-btn strong { display: block; color: var(--wine); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.2rem; align-items: start; }
.form label { display: block; font-weight: 700; margin: 0 0 .35rem; }
.form input,
.form textarea {
  width: 100%;
  margin: 0 0 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }
.form .check { display: flex; gap: .65rem; align-items: flex-start; font-weight: 400; margin-bottom: 1rem; color: var(--muted); }
.form .check input { width: auto; margin: .2rem 0 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.turnstile-wrap { margin: 0 0 1rem; min-height: 65px; }
.form-note { font-size: .9rem; color: var(--muted); }
.alert { padding: 1rem; border-radius: 10px; margin-bottom: 1rem; }
.alert-ok { background: #e7f5ea; border: 1px solid #9dccaa; }
.alert-err { background: #fbeaea; border: 1px solid #d9a0a0; }

.map-frame {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.map-frame iframe { width: 100%; height: 320px; border: 0; }
.map-consent-box { padding: 1.4rem; }
.map-consent-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }

.site-footer {
  background: var(--wine-deep);
  color: #f0e2d4;
  padding: 2.2rem 1.25rem 1.4rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: .35rem; }
.footer-nav a, .site-footer a { color: #f0e2d4; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.footer-cols h3 { margin: 0 0 .5rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #e3c9a0; }
.footer-copy { margin: 1.6rem 0 0; font-size: .88rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.footer-sep { margin: 0 .4rem; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: .6rem 1.25rem 1rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
  }
  .site-nav .nav-cta { margin-left: 0; justify-content: center; }
  .site-nav a:not(.active):hover {
    background: transparent;
    color: var(--ink);
  }
  .facts, .photo-row, .split, .contact-grid, .quick-actions, .footer-grid, .footer-cols { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .photo-row img { height: 180px; }
  .panel { padding: 1.2rem 1.15rem; }
  .hero { padding: 2.4rem 1.15rem 2.6rem; }
  .page-hero { padding: 1.8rem 1.15rem 1.7rem; }
}

@media (max-width: 420px) {
  .brand-mark { font-size: 1.35rem; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  .hero .btn { width: 100%; justify-content: center; }
}
