:root {
  --bg: oklch(98.4% 0.006 80);
  --surface: oklch(99% 0.008 82);
  --surface-strong: oklch(94.5% 0.026 78);
  --ink: oklch(24% 0.018 72);
  --muted: oklch(48% 0.026 72);
  --soft: oklch(60% 0.024 72);
  --line: oklch(87% 0.026 76);
  --brand: oklch(45% 0.105 47);
  --brand-dark: oklch(34% 0.09 47);
  --brand-soft: oklch(91% 0.052 50);
  --accent: oklch(43% 0.065 176);
  --accent-soft: oklch(92% 0.035 170);
  --focus: oklch(55% 0.22 260);
  --shadow: 0 16px 38px rgba(61, 47, 32, 0.08);
  --shadow-soft: 0 8px 22px rgba(61, 47, 32, 0.06);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(3.25rem, 5.8vw, 5.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
iframe,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button,
summary,
input,
select,
textarea {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  font-weight: 700;
}

.hero-title {
  max-width: 17ch;
}

.hero-title span {
  display: block;
}

.hero-title-detail {
  margin-top: 0.18em;
  color: var(--brand-dark);
  font-size: 0.64em;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 213, 200, 0.78);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap,
.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1rem);
  font-size: 0.9rem;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--brand);
}

.nav-links a {
  border-radius: 999px;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.4rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  inset: 7% auto 8% 55%;
  width: min(46vw, 560px);
  min-width: 360px;
  content: "";
  background:
    radial-gradient(circle at 28% 24%, rgba(139, 63, 36, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(38, 95, 86, 0.18), rgba(244, 223, 212, 0.74));
  border-radius: 50% 0 0 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.74fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.42rem 0.72rem;
}

.lead {
  max-width: 66ch;
  margin-top: var(--space-md);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  background: var(--brand);
  color: var(--surface);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: var(--brand);
  color: var(--surface);
}

.button.primary:hover,
.button.secondary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button.secondary,
.button.ghost {
  background: var(--brand);
  color: var(--surface);
}

.button.ghost:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.hero-actions .button,
.cta-row .button {
  width: 210px;
}

.hero-card,
.card,
.offer-card,
.feature-card,
.contact-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.1rem, 3vw, 1.55rem);
}

.hero-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.fact-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.fact {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.dot {
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding-block: var(--space-3xl);
}

.section.alt {
  background: var(--surface-strong);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.offer-card,
.feature-card,
.contact-card {
  padding: clamp(1.05rem, 2.5vw, 1.45rem);
}

.card,
.feature-card {
  box-shadow: none;
}

.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: var(--space-md);
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.contact-card .fact-list .button {
  width: 100%;
}

.feature-card,
.card {
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.offer-card.featured {
  background: var(--ink);
  color: var(--surface);
}

.offer-card.featured p,
.offer-card.featured li,
.offer-card.featured .price span {
  color: rgba(255, 253, 248, 0.78);
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.clean-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.7);
}

.kicker {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.location-box {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-card.secondary img {
  min-height: 260px;
}

.faq {
  display: grid;
  gap: var(--space-sm);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: var(--space-sm) var(--space-lg);
}

.faq details[open] {
  border-color: color-mix(in srgb, var(--brand) 32%, var(--line));
  box-shadow: 0 12px 30px rgba(61, 47, 32, 0.07);
}

.faq summary {
  font-weight: 800;
}

.faq p {
  margin-top: var(--space-sm);
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-xl);
  align-items: center;
  padding: clamp(1.3rem, 3.5vw, 2.35rem);
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 223, 212, 0.95), transparent 36%),
    var(--surface);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.82);
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.site-footer strong,
.site-footer h2,
.site-footer h3 {
  color: var(--surface);
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.site-footer .footer-links a {
  color: rgba(255, 253, 248, 0.72);
}

.site-footer a {
  color: rgba(255, 253, 248, 0.86);
  text-underline-offset: 0.18em;
}

.copyright {
  margin-top: var(--space-xl);
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.9rem;
}

.copyright a {
  color: rgba(255, 253, 248, 0.74);
}

.form {
  display: grid;
  gap: var(--space-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 0.78rem 0.9rem;
}

input:hover,
select:hover,
textarea:hover {
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.12);
}

::placeholder {
  color: color-mix(in srgb, var(--muted) 68%, var(--surface));
}

textarea {
  resize: vertical;
}

.divider {
  margin: var(--space-lg) 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.hp {
  position: absolute;
  left: -5000px;
}

.turnstile-field {
  margin-top: var(--space-sm);
}

.cf-turnstile {
  min-height: 65px;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-md);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.form-feedback--ok {
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  background: var(--accent-soft);
  color: var(--ink);
}

.form-feedback--err {
  border: 1px solid color-mix(in srgb, var(--brand) 38%, var(--line));
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.form-feedback a {
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  padding: 0.65rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .section-head,
  .location-box,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: start;
  }

  .hero-card {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --space-3xl: clamp(2.5rem, 12vw, 3.75rem);
  }

  .nav-wrap,
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: var(--space-sm);
    row-gap: var(--space-sm);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: 0;
    max-width: 100%;
  }

  .brand span:last-child {
    white-space: nowrap;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.76rem;
  }

  .nav-links {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    gap: 0.45rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.05rem 0 0.35rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .nav-links a {
    min-height: 38px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.78);
    padding: 0.48rem 0.72rem;
    scroll-snap-align: start;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-block: clamp(2.4rem, 10vw, 4rem);
  }

  .hero::before {
    inset: auto -42vw 2% 18%;
    width: 95vw;
    min-width: 0;
    height: 52%;
    opacity: 0.72;
  }

  .hero-grid {
    gap: var(--space-xl);
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
  }

  h3 {
    font-size: 1.18rem;
  }

  .eyebrow {
    margin-bottom: var(--space-md);
    font-size: 0.78rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-card,
  .card,
  .offer-card,
  .feature-card,
  .contact-card,
  .cta-panel {
    border-radius: var(--radius-md);
  }

  .section-head {
    gap: var(--space-md);
  }

  .grid,
  .fact-list,
  .faq {
    gap: var(--space-md);
  }

  .map-frame {
    min-height: 260px;
  }

  .photo-card img,
  .photo-card.secondary img {
    min-height: 220px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta-row .button,
  .cta-panel .button {
    width: 100%;
  }
}
