@font-face {
  font-family: 'JetBrains Sans';
  src: url("../fonts/JetBrainsSans-Regular.f74025b271cc.woff2") format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url("../fonts/Lora-latin-ext.d551ed729291.woff2") format('woff2');
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Lora';
  src: url("../fonts/Lora-latin.662c56ecd8de.woff2") format('woff2');
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope-latin-ext.623714ac1d99.woff2") format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope-latin.101877a7a906.woff2") format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Material Symbols Rounded';
  src: url("../fonts/MaterialSymbolsRounded-subset.6194610852bb.woff2") format('woff2');
  font-style: normal;
  font-weight: 300 500;
  font-display: block;
}

:root {
  --font-body: 'Manrope', 'JetBrains Sans', 'Segoe UI', sans-serif;
  --font-display: 'Lora', Georgia, serif;
  --color-bg: #f7f4ee;
  --color-bg-alt: #dfd5c7;
  --color-surface: rgba(247, 242, 234, 0.9);
  --color-surface-strong: #f3ede4;
  --color-text: #19221d;
  --color-text-muted: #4c554d;
  --color-border: rgba(58, 65, 59, 0.18);
  --color-accent: #60412a;
  --color-accent-strong: #422a19;
  --color-accent-soft: #d9c1aa;
  --color-wood: #714b2f;
  --color-highlight: #b96721;
  --color-highlight-strong: #965018;
  --color-success: #9f5925;
  --color-shadow: 0 24px 60px rgba(38, 45, 40, 0.16);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 7.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.2rem;
  --radius-lg: 1.8rem;
  --radius-xl: 2.4rem;
  --header-height: 6.2rem;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(
    var(--header-height) + var(--space-4) - var(--space-10)
  );
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--color-text);
  font-family: var(--font-body);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.8),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(140, 106, 78, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #faf7f2 0%, var(--color-bg) 100%);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(228, 222, 212, 0.8);
  backdrop-filter: blur(10px);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    backdrop-filter 200ms ease,
    border-color 200ms ease;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-wood);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(239, 233, 224, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(42, 50, 44, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  text-decoration: none;
}

.brand-mark {
  width: 5.15rem;
  height: auto;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name,
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.58rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.94;
}

.footer-brand {
  text-transform: uppercase;
}

.brand-name {
  text-transform: uppercase;
  font-weight: 700;
  color: #4d311d;
}

.footer-brand {
  letter-spacing: 0.08em;
}

.brand-subtitle {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.45rem);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: clamp(0.82rem, 0.9vw, 1.05rem);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-accent);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current='true']::after {
  transform: scaleX(1);
}

.site-nav a[aria-current='true'] {
  color: var(--color-accent-strong);
  font-weight: 600;
}

.nav-cta {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--color-accent-strong);
  color: #fff !important;
  box-shadow: 0 16px 28px rgba(77, 49, 29, 0.16);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(243, 237, 228, 0.88);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: var(--color-text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.hero {
  position: relative;
  height: min(calc(100svh - var(--header-height)), 54rem);
  min-height: 38rem;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #19211d;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background: linear-gradient(
    96deg,
    rgba(54, 49, 45, 0.04) 0%,
    rgba(54, 49, 45, 0.08) 28%,
    rgba(54, 49, 45, 0.16) 48%,
    rgba(54, 49, 45, 0.42) 70%,
    rgba(48, 35, 23, 0.72) 100%
  );
}

.hero::after {
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(54, 49, 45, 0.14) 0%,
    rgba(48, 35, 23, 0.22) 46%,
    rgba(48, 35, 23, 0.62) 100%
  );
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background picture,
.introduction-visual picture,
.quality-visual picture,
.offer-hero-image picture,
.gallery-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background img {
  object-position: 34% 45%;
}

.hero-content {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 40rem);
  align-items: end;
  width: min(100% - 2rem, 1320px);
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.split-layout,
.contact-layout,
.footer-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.hero-copy {
  align-self: center;
  grid-column: 2;
  justify-self: end;
  max-width: 40rem;
  margin-right: 0;
  padding: 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.024em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 500;
  max-width: 11ch;
  text-shadow: 0 2px 10px rgba(28, 21, 15, 0.26);
}

.hero h1 span {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-body);
  color: rgba(255, 252, 247, 0.82);
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 8px rgba(28, 21, 15, 0.22);
}

.lead,
.section-copy p,
.footer-copy,
.contact-cards p,
.form-note {
  color: var(--color-text-muted);
  line-height: 1.72;
}

.lead {
  max-width: 38rem;
  margin: 1.7rem 0 0;
  font-size: 1.12rem;
}

.hero .lead {
  color: rgba(255, 252, 247, 0.88);
  max-width: 33rem;
  text-shadow: 0 1px 3px rgba(28, 21, 15, 0.22);
}

.button,
.text-link,
.offer-card-links a,
.offer-download-button,
.footer-contact a,
.legal-block summary {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.offer-card-links a:hover,
.offer-card-links a:focus-visible,
.offer-download-button:hover,
.offer-download-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-accent-strong);
  color: #fff;
  box-shadow: 0 16px 28px rgba(77, 49, 29, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #3f2818;
}

.button-secondary {
  border-color: rgba(111, 75, 49, 0.18);
  background: rgba(243, 237, 228, 0.88);
  color: var(--color-text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(111, 75, 49, 0.32);
}

.location-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 0.95rem;
  background: var(--color-accent-strong);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 28px rgba(77, 49, 29, 0.18);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-scroll-link:hover,
.hero-scroll-link:focus-visible {
  transform: translateY(-1px);
  background: #3f2818;
}

.hero-scroll-link span {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.contact-cards article,
.form-panel,
.map-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--color-shadow);
}

.contact-cards span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.section {
  padding: var(--space-10) 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(239, 232, 222, 0.58),
    rgba(247, 244, 238, 0.15)
  );
}

.section-heading {
  max-width: 52rem;
  margin-bottom: var(--space-7);
}

.section-heading h2,
.section-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.section-heading .rich-text {
  margin-top: clamp(1.15rem, 2vw, 1.75rem);
}

.section-heading .rich-text > :first-child {
  margin-top: 0;
}

.section-copy p {
  margin: 1.2rem 0 0;
}

.section-copy > :first-child + h2 + p {
  margin-top: 1.4rem;
}

.introduction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.introduction-visual figure {
  width: 100%;
  margin: 0;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 56px rgba(34, 42, 36, 0.18);
}

.introduction-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.introduction-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 2.75vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.introduction-points {
  display: grid;
  gap: 1.35rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.introduction-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
}

.introduction-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #8b6240 0%, #5b3b24 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(91, 59, 36, 0.24);
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  display: block;
  line-height: 1;
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
}

.introduction-icon .material-symbols-rounded {
  font-size: 2.1rem;
}

.introduction-point h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.introduction-point p {
  margin: 0.55rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.72;
}

.quality-layout {
  align-items: center;
}

.quality-copy {
  max-width: 39rem;
}

.quality-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
}

.quality-copy > p:last-of-type {
  margin-top: 1.35rem;
}

.quality-points {
  margin-top: 2.1rem;
}

.quality-points .introduction-point {
  align-items: center;
}

.quality-point-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 4.4rem;
}

.quality-point-copy h3 {
  margin: 0;
}

.quality-point-copy p {
  margin-top: 0.35rem;
}

.quality-visual figure {
  width: 100%;
  margin: 0;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 56px rgba(34, 42, 36, 0.18);
}

.quality-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
}

.metrics-band {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(68, 45, 28, 0.86) 0%,
      rgba(52, 34, 20, 0.82) 100%
    ),
    #4d311d;
}

.metrics-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(91, 59, 37, 0.72) 0%,
      rgba(61, 38, 22, 0.78) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.04),
      transparent 42%
    ),
    linear-gradient(90deg, rgba(23, 14, 9, 0.16), rgba(23, 14, 9, 0.34));
  pointer-events: none;
}

.metrics-band .shell {
  position: relative;
  z-index: 1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2vw, 2rem);
}

.metric {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: 0.75rem;
  height: 100%;
  min-height: 14rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border: 0;
  background: none;
  box-shadow: none;
}

.metric strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 24px rgba(38, 24, 14, 0.22);
}

.metric-label {
  display: flex;
  align-items: flex-start;
  max-width: 16ch;
  color: rgba(255, 246, 237, 0.88);
  font-size: 1rem;
  line-height: 1.45;
  text-wrap: balance;
}

.metric-icon {
  display: grid;
  place-items: center;
  align-self: end;
  width: 3.9rem;
  height: 3.9rem;
  margin-top: 0.1rem;
  color: #c97828;
}

.metric-icon .material-symbols-rounded {
  font-size: 3rem;
}

.offer-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 56px rgba(34, 42, 36, 0.14);
}

.offer-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.offer-card {
  padding: 1.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(243, 237, 228, 0.9);
  box-shadow: var(--color-shadow);
}

.offer-card-label {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.offer-card-meta {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-card-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(77, 84, 78, 0.08);
}

.offer-card-meta span {
  color: var(--color-text-muted);
}

.offer-card-meta strong {
  color: var(--color-text);
  font-size: 1.08rem;
}

.offer-card-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.offer-card-links-title {
  margin: 1.5rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.offer-card-links a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.15rem;
  border-radius: 0.95rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(77, 49, 29, 0.18);
}

.offer-card-links a:hover,
.offer-card-links a:focus-visible {
  background: var(--color-accent-strong);
}

.offer-card-links .material-symbols-rounded {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.offer-card-links span {
  line-height: 1.1;
}

.offer-download {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.quality-copy .offer-download {
  justify-content: flex-start;
  margin-top: 1.85rem;
}

.offer-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 3.8rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(77, 49, 29, 0.18);
}

.offer-download-button:hover,
.offer-download-button:focus-visible {
  background: var(--color-accent-strong);
}

.offer-download-button .material-symbols-rounded {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-layout {
  align-items: start;
}

.form-panel {
  padding: 1.5rem;
}

.text-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.reverse-layout {
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 18rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 56px rgba(34, 42, 36, 0.14);
}

.gallery-card-large {
  min-height: 24rem;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 36%,
    rgba(22, 28, 25, 0.58) 100%
  );
}

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-card-large img {
  aspect-ratio: 1.85 / 1;
}

.map-frame {
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  min-height: 36rem;
  border: 0;
}

.location-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.location-points li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--color-text-muted);
}

.location-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-highlight);
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.contact-cards {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
}

.contact-cards article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.form-panel {
  padding: 1.45rem;
}

.contact-cards span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-accent-strong);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.15;
}

.contact-cards p {
  display: none;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.5rem;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 0.7rem;
}

.field-head {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.field-head .material-symbols-rounded {
  font-size: 1.45rem;
  flex-shrink: 0;
  color: var(--color-accent-strong);
}

.field-head > span {
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(111, 75, 49, 0.15);
  border-radius: 2rem;
  background: rgba(248, 243, 235, 0.9);
  color: var(--color-text);
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(95, 101, 114, 0.54);
}

.contact-form textarea {
  min-height: 11.5rem;
  resize: vertical;
  border-radius: 1.9rem;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.button:focus-visible,
.hero-scroll-link:focus-visible,
.offer-download-button:focus-visible,
.offer-card-links a:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.gallery-card:focus-visible,
.lightbox-close:focus-visible,
.footer-nav a:focus-visible,
.footer-contact a:focus-visible,
.legal-block summary:focus-visible,
.brand:focus-visible,
.cookie-actions button:focus-visible,
.mobile-cta-bar a:focus-visible {
  outline: 3px solid rgba(201, 120, 40, 0.24);
  outline-offset: 3px;
}

.contact-form input[aria-invalid='true'],
.contact-form textarea[aria-invalid='true'] {
  border-color: #8c4a4a;
}

.field-error {
  min-height: 1rem;
  margin-top: -0.15rem;
  font-size: 0.82rem;
  color: #8c4a4a;
}

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

.consent {
  display: flex !important;
  align-items: start;
  gap: 0.75rem !important;
  padding: 0;
}

.consent input {
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.28rem;
}

.consent span {
  color: var(--color-text-muted);
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
}

.optional-consent {
  margin-top: -0.05rem;
}

.consent-error {
  min-height: 0.7rem;
  margin-top: -0.4rem;
}

.form-note,
.form-success {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-success {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(185, 107, 45, 0.12);
  color: var(--color-success);
}

.site-footer {
  padding: 2.1rem 0 5.8rem;
  border-top: 1px solid rgba(196, 160, 123, 0.16);
  background: linear-gradient(
    180deg,
    rgba(48, 31, 20, 0.96),
    rgba(31, 21, 14, 0.98)
  );
}

.site-footer .footer-brand,
.site-footer .footer-copy,
.site-footer .footer-contact-label,
.site-footer .legal-block summary {
  color: #fff7ee;
}

.footer-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.7fr) minmax(
      13rem,
      0.9fr
    );
  gap: 1.35rem 2rem;
  align-items: start;
}

.footer-copy {
  max-width: 28rem;
  margin: 0.55rem 0 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-nav a {
  color: rgba(255, 247, 238, 0.76);
  font-size: 0.96rem;
  text-decoration: none;
}

.footer-note,
.footer-contact p {
  margin: 0.6rem 0 0;
  color: rgba(255, 247, 238, 0.64);
  font-size: 0.92rem;
  line-height: 1.58;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.footer-contact-label {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  color: #d89a59;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-block {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.75rem;
}

.legal-block details {
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(196, 160, 123, 0.14);
  border-radius: 1rem;
  background: rgba(255, 247, 238, 0.06);
}

.legal-block summary {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-block p {
  margin: 0.6rem 0 0;
  color: rgba(255, 247, 238, 0.64);
  font-size: 0.92rem;
  line-height: 1.58;
}

.mobile-cta-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(111, 75, 49, 0.14);
  border-radius: 1.2rem;
  background: rgba(243, 237, 228, 0.94);
  box-shadow: 0 18px 32px rgba(34, 42, 36, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-cta-bar a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}

.mobile-cta-bar a:first-child {
  background: var(--color-accent);
  color: #fff;
}

.mobile-cta-bar a:last-child {
  background: rgba(111, 75, 49, 0.08);
  color: var(--color-text);
}

.lightbox {
  width: min(92vw, 1100px);
  padding: 1rem;
  border: 0;
  border-radius: var(--radius-xl);
  background: rgba(243, 237, 228, 0.98);
  box-shadow: 0 30px 70px rgba(22, 28, 24, 0.28);
}

.lightbox::backdrop {
  background: rgba(26, 30, 27, 0.72);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  max-height: 85vh;
  width: 100%;
  object-fit: contain;
  border-radius: 1.2rem;
}

.lightbox-close {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  margin-bottom: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(111, 75, 49, 0.12);
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  max-width: 28rem;
  padding: 1rem;
  border: 1px solid rgba(111, 75, 49, 0.16);
  border-radius: 1.2rem;
  background: rgba(243, 237, 228, 0.96);
  box-shadow: 0 24px 44px rgba(34, 42, 36, 0.16);
}

.cookie-banner p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enhanced [data-reveal][data-reveal-image] {
  transform: translateY(18px) scale(1.02);
}

.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1120px) {
  .hero-content,
  .introduction-layout,
  .split-layout,
  .contact-layout,
  .footer-layout,
  .metrics-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .introduction-layout,
  .split-layout,
  .contact-layout {
    gap: var(--space-7);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 36rem);
  }

  .introduction-visual figure {
    aspect-ratio: 3 / 2;
  }

  .quality-visual figure {
    aspect-ratio: 3 / 2;
  }

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

  .map-frame iframe {
    min-height: 28rem;
  }

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

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

  .gallery-card-large {
    min-height: 21rem;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 5.3rem;
    --space-10: 5rem;
  }

  .shell {
    width: min(100% - 2rem, 1320px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    gap: 0.85rem;
  }

  .brand-mark {
    width: 4.2rem;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .brand-subtitle {
    font-size: 0.9rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    border: 1px solid rgba(111, 75, 49, 0.1);
    border-radius: 1.3rem;
    background: rgba(243, 237, 228, 0.98);
    box-shadow: 0 18px 34px rgba(34, 42, 36, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    color: var(--color-text);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current='true'] {
    background: rgba(111, 75, 49, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    height: 36rem;
    min-height: 36rem;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(18, 24, 21, 0.18) 0%,
      rgba(18, 24, 21, 0.32) 42%,
      rgba(18, 24, 21, 0.72) 100%
    );
  }

  .hero-background img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
  }

  .hero-content {
    width: min(100% - 2rem, 1320px);
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: 1;
    justify-self: start;
    padding-top: 1.5rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero h1 span {
    white-space: normal;
  }

  .introduction-visual figure {
    aspect-ratio: 7 / 5;
  }

  .introduction-content h2 {
    font-size: clamp(1.7rem, 6.6vw, 2.2rem);
  }

  .quality-copy h2 {
    font-size: clamp(1.8rem, 6.1vw, 2.35rem);
  }

  .introduction-point {
    gap: 0.9rem 1rem;
  }

  .introduction-icon {
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
  }

  .metrics-band {
    padding: 3.25rem 0;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.9rem 1rem;
  }

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

  .offer-card {
    padding: 1.65rem;
  }

  .metric {
    min-height: 12.5rem;
  }

  .metric-label {
    max-width: 15ch;
    font-size: 0.95rem;
  }

  .metric-icon {
    width: 3.45rem;
    height: 3.45rem;
  }

  .footer-layout {
    gap: 2rem;
  }

  .mobile-cta-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 1.75rem, 1320px);
  }

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

  .cookie-actions {
    flex-direction: column;
  }

  .introduction-visual figure {
    aspect-ratio: 4 / 3;
  }

  .quality-visual figure {
    aspect-ratio: 4 / 3;
  }

  .introduction-point {
    grid-template-columns: 1fr;
  }

  .button,
  .cookie-actions button {
    width: 100%;
  }

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

  .offer-card-meta li {
    align-items: start;
    flex-direction: column;
  }

  .metric {
    min-height: auto;
    gap: 0.65rem;
  }

  .metric strong {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

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

  .gallery-card,
  .gallery-card-large {
    min-height: 15rem;
  }

  .contact-cards strong {
    font-size: 1.35rem;
  }

  .mobile-cta-bar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enhanced [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Dynamic Wagtail content layered onto the visual system from the approved mock. */
@media (min-width: 961px) {
  .hero-copy {
    width: 33rem;
  }
}
.brand > picture {
  display: block;
  flex: 0 0 5.15rem;
  width: 5.15rem;
}

.brand > picture .brand-mark {
  width: 100%;
}

.hero-without-image {
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 98, 64, 0.34), transparent 35%),
    #19211d;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

.introduction-content .rich-text {
  margin-top: 1.35rem;
}

.metrics-background,
.metrics-background picture,
.metrics-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.metrics-background {
  z-index: 0;
}

.metrics-background img {
  object-fit: cover;
}

.metrics-band::before {
  z-index: 1;
}

.metrics-band .shell {
  z-index: 2;
}

.site-plan-section {
  background: var(--color-surface-strong);
}

.site-plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(18rem, 1fr);
  align-items: stretch;
  max-width: 110rem;
  margin-inline: auto;
  background: #e7ded1;
}

.site-plan-image {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #e2d4c2;
  overflow: hidden;
}

.site-plan-image img {
  display: block;
  max-width: none;
}

.site-plan-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-plan-copy {
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--color-surface-strong);
}

.site-plan-overview,
.site-plan-legend,
.site-plan-details {
  display: grid;
  gap: 1.35rem;
}

.site-plan-intro {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.site-plan-intro p {
  margin: 0;
}

.legend-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
}

.legend-item > span {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
  border: 2px solid var(--color-accent-strong);
  border-radius: 50%;
}

.legend-current > span {
  border-color: #d5302d;
}

.legend-planned > span {
  border-radius: 0.2rem;
  border-style: dashed;
}

.legend-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.legend-item p {
  margin: 0;
  color: var(--color-text-muted);
}

.site-plan-detail h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-plan-detail p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.site-plan-detail-current h3 {
  color: #d5302d;
}

.plan-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100% - 4rem, 110rem);
  margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 2.8rem) 0;
}

.plan-benefits article {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 0.95rem;
  align-items: center;
  min-width: 0;
  padding: 0 clamp(1.1rem, 2vw, 2.5rem);
}

.plan-benefits article + article {
  border-left: 1px solid rgba(77, 49, 29, 0.2);
}

.plan-benefit-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--color-text);
}

.plan-benefit-icon .material-symbols-rounded {
  font-size: 2.55rem;
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 32;
}

.plan-benefits strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.plan-benefits p {
  margin: 0.2rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer-card {
  min-width: 0;
  overflow: hidden;
}

.offer-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-card-status {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: #4d311d;
  background: #eadfce;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-available {
  color: #155e44;
  background: #d9f4e7;
}

.status-reserved {
  color: #7c4a08;
  background: #f8e9bd;
}

.status-sold,
.status-withdrawn {
  color: #744;
  background: #eadada;
}

.price-unavailable {
  color: var(--color-text-muted);
  font-size: clamp(1.6rem, 3vw, 2.3rem) !important;
}

.price-updated {
  margin: 1.15rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.additional-charges {
  margin-top: 1.4rem;
}

.additional-charges h4 {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.additional-charges ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.additional-charges li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text-muted);
}

.price-history {
  min-width: 0;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.price-history summary {
  font-weight: 700;
  cursor: pointer;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.price-history table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.price-history th,
.price-history td {
  padding: 0.65rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  white-space: nowrap;
}

.price-history small {
  white-space: normal;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

.visualization-notice,
.lightbox-visualization-notice {
  position: absolute;
  z-index: 2;
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  background: rgba(22, 28, 25, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.visualization-notice {
  top: 1rem;
  left: 1rem;
}

.lightbox figure {
  position: relative;
}

.lightbox-visualization-notice {
  right: 1rem;
  bottom: 1rem;
}

.map-frame {
  min-height: 36rem;
}

.map-consent > div {
  display: grid;
  min-height: 36rem;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72), transparent 44%),
    #d8d0c3;
}

.map-consent p {
  max-width: 30rem;
  margin: 0;
  color: var(--color-text-muted);
}

.map-pin {
  color: var(--color-accent);
  font-size: 4rem;
}

.contact-cards a {
  text-decoration: none;
}

.form-field {
  display: grid;
  gap: 0.7rem;
}

.contact-form select {
  width: 100%;
  min-height: 3.8rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(111, 75, 49, 0.15);
  border-radius: 2rem;
  color: var(--color-text);
  background: rgba(248, 243, 235, 0.9);
}

.contact-form select:focus-visible {
  outline: 3px solid rgba(201, 120, 40, 0.24);
  outline-offset: 3px;
}

.consent input {
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0.2rem;
  accent-color: var(--color-accent);
}

.checkboxes {
  display: grid;
  gap: 0.85rem;
}

.privacy-notice a {
  color: var(--color-accent-strong);
  font-weight: 700;
}

.submit-button {
  justify-self: start;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.error-summary {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #d49b9b;
  border-radius: 1rem;
  color: #7b1717;
  background: #fbeaea;
}

.error-summary h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.errorlist {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-block a,
.legal-block button {
  justify-self: start;
  padding: 0;
  border: 0;
  color: rgba(255, 247, 238, 0.8);
  background: none;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.mobile-cta-bar:has(a:only-child) {
  grid-template-columns: 1fr;
}

.mobile-cta-bar a:only-child {
  color: #fff;
  background: var(--color-accent-strong);
}

.simple-header {
  padding: 1.2rem 0;
  border-bottom: 4px solid var(--color-wood);
  background: rgba(239, 233, 224, 0.96);
}

.legal-main {
  min-height: 70vh;
  padding: 5rem 0;
}

.prose {
  max-width: 54rem;
}

.prose h1,
.prose h2,
.prose h3 {
  font-family: var(--font-display);
}

.prose h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

@media (max-width: 960px) {
  .brand > picture {
    flex-basis: 4.2rem;
    width: 4.2rem;
  }

  .site-plan-layout {
    grid-template-columns: 1fr;
  }

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

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

  .plan-benefits article:nth-child(odd) {
    padding-left: 0;
  }

  .plan-benefits article:nth-child(3) {
    border-left: 0;
  }

  .plan-benefits article:nth-child(n + 3) {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 38, 34, 0.24);
  }

  .map-frame,
  .map-consent > div {
    min-height: 28rem;
  }
}

@media (max-width: 560px) {
  .site-plan-copy {
    grid-template-columns: 1fr;
  }

  .plan-benefits {
    grid-template-columns: 1fr;
    width: min(100% - 3.5rem, 32rem);
  }

  .plan-benefits article,
  .plan-benefits article + article,
  .plan-benefits article:nth-child(3) {
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(31, 38, 34, 0.24);
    border-left: 0;
  }

  .plan-benefits article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .submit-button {
    width: 100%;
  }
}
