:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-ridge: "Cinzel Decorative", "Cormorant Garamond", Georgia, serif;
  --page-bg: #f8f1e7;
  --page-text: #30271f;
  --soft-shadow: 0 24px 80px rgba(45, 34, 24, 0.12);
  --hairline: rgba(77, 57, 38, 0.16);
}

@font-face {
  font-family: "Isabella Regular";
  src: url("assets/fonts/isabella-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    var(--page-bg);
  background-size: 26px 26px, 26px 26px, auto;
  color: var(--page-text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

.section-label,
.brand-mark,
.hero__kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-intro--left {
  max-width: 980px;
  padding-inline: 24px;
  text-align: left;
}

.section-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.venue-section .section-intro h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.section-intro p {
  color: var(--muted, #6e6257);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin: 0;
}

.section-label {
  color: var(--accent-dark, #6b4e35);
  margin: 0 0 14px;
}

.venue-section .section-label {
  margin-bottom: 22px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 94vh);
  display: grid;
  align-items: end;
  padding: clamp(24px, 5vw, 70px);
  background: #1d241b;
  isolation: isolate;
  overflow: hidden;
}

.hero__media,
.hero__poster,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: center 46%;
  z-index: -3;
  transform: scale(1.02);
}

.hero__media--bunny {
  overflow: hidden;
}

.hero__media--bunny iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__poster {
  z-index: -2;
  background: #1d241b;
  transition: opacity 700ms ease;
}

.hero__poster picture,
.hero__poster img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__poster img {
  object-fit: cover;
  object-position: center 46%;
}

.hero__poster.is-hidden {
  opacity: 0;
}

@media (min-width: 861px) {
  .hero__media {
    transform: scale(1.28);
  }
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(10, 8, 6, 0.38), rgba(10, 8, 6, 0.1) 48%, rgba(10, 8, 6, 0.22)),
    rgba(10, 8, 6, 0.28);
}

.hero__content {
  width: min(760px, 100%);
  color: #f7f3ee;
  font-synthesis: none;
  padding-top: clamp(170px, 27vh, 250px);
  padding-bottom: clamp(36px, 7vh, 82px);
  text-shadow:
    0 2px 8px rgba(0,0,0,.35),
    0 4px 24px rgba(0,0,0,.25);
}

.brand-mark {
  margin: 0 0 28px;
  color: #f7f3ee;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.hero__kicker {
  margin: 0 0 12px;
  color: #d6bd84;
}

.hero h1 {
  max-width: 720px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 7.4vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  margin: 0;
  color: #f7f3ee;
}

.hero__location {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(247, 243, 238, 0.92);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__subhead {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 248, 237, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 248, 237, 0.62);
  color: #fff8ed;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 248, 237, 0.12);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, transform 220ms ease;
}

.hero__cta:hover {
  background: rgba(255, 248, 237, 0.2);
  transform: translateY(-2px);
}

/* Venue Toggle */
.venue-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 24px;
  transition: background 500ms ease, color 300ms ease;
}

.venue-section > * {
  position: relative;
  z-index: 1;
}

.venue-section[data-theme="ridge-rose"] {
  --bg: #f5f1e8;
  --card-bg: rgba(255, 250, 241, 0.86);
  --text: #283526;
  --muted: #657057;
  --accent: #8fa66a;
  --accent-dark: #3f5437;
  --button-bg: #3f5437;
  --button-text: #fffaf1;
  --border: #d4c59f;
  --glow: rgba(116, 145, 81, 0.28);
  --soft-shadow: 0 24px 70px rgba(47, 64, 40, 0.12);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, var(--glow), transparent 27%),
    radial-gradient(circle at 86% 8%, rgba(213, 193, 131, 0.32), transparent 21%),
    radial-gradient(circle at 20% 82%, rgba(87, 112, 72, 0.1), transparent 18%),
    linear-gradient(180deg, #fbf5e8 0%, #e7efd7 100%);
}

.venue-section[data-theme="ridge-rose"] h3 {
  font-family: var(--font-ridge);
  font-weight: 400;
}

.venue-section[data-theme="ridge-rose"] .venue-card {
  border-radius: 46px 30px 76px 34px;
  border-color: var(--border);
}

.venue-section[data-theme="ridge-rose"] .venue-image img {
  border-radius: 38px 26px 96px 30px;
}

.venue-section[data-theme="homestead"] {
  --bg: #fbf4e8;
  --card-bg: rgba(255, 252, 245, 0.9);
  --text: #36271d;
  --muted: #836d58;
  --accent: #c59051;
  --accent-dark: #72482c;
  --button-bg: #72482c;
  --button-text: #fffaf1;
  --border: #d9b17c;
  --glow: rgba(199, 145, 78, 0.2);
  --soft-shadow: 0 24px 64px rgba(83, 52, 30, 0.16);
  color: var(--accent-dark);
  background:
    radial-gradient(circle at 84% 15%, var(--glow), transparent 25%),
    repeating-linear-gradient(90deg, rgba(114, 72, 44, 0.03) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #fff7eb 0%, #f1dcc0 100%);
}

.venue-section[data-theme="homestead"] h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

.venue-section[data-theme="homestead"] .venue-card {
  border-width: 1.5px;
  border-radius: 12px;
  border-color: var(--border);
}

.venue-section[data-theme="homestead"] .venue-image img {
  border-radius: 6px;
}

.venue-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 44px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.venue-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 24px;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.venue-toggle button[data-venue="ridge-rose"] {
  font-family: var(--font-ridge);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.venue-toggle button[data-venue="homestead"] {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

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

.venue-toggle button.active {
  background: var(--accent-dark);
  color: var(--button-text);
}

@media (min-width: 861px) {
  .venue-toggle {
    width: min(760px, 72vw);
    margin-bottom: 52px;
    padding: 8px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  }

  .venue-toggle button {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 42px;
  }

  .venue-toggle button[data-venue="ridge-rose"] {
    font-size: 19px;
  }

  .venue-toggle button[data-venue="homestead"] {
    font-size: 19px;
  }

  .venue-section[data-theme="ridge-rose"] .eyebrow {
    font-size: 30px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-stats span,
  .venue-section[data-theme="homestead"] .venue-stats span {
    font-size: 17px;
    min-height: 42px;
    padding: 9px 22px;
  }

  .venue-section[data-theme="ridge-rose"] #best-for li {
    font-size: 19px;
  }

  .venue-section[data-theme="homestead"] #best-for li {
    font-size: 20px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-card::before {
    display: none;
  }
}

.venue-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(8px);
  transition: border-radius 400ms ease, border-color 400ms ease, background 400ms ease;
  overflow: hidden;
}

.venue-card > * {
  position: relative;
  z-index: 1;
}

.venue-card::before,
.venue-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.venue-section[data-theme="ridge-rose"] .venue-card::before {
  right: clamp(18px, 4vw, 42px);
  top: clamp(16px, 3vw, 30px);
  width: 190px;
  height: 84px;
  border-top: 1px solid rgba(63, 84, 55, 0.16);
  border-right: 1px solid rgba(63, 84, 55, 0.1);
  border-radius: 100% 38% 0 0;
  transform: rotate(2deg);
}

.venue-section[data-theme="ridge-rose"] .venue-card::after {
  right: clamp(36px, 6vw, 76px);
  top: clamp(32px, 5vw, 64px);
  width: 76px;
  height: 26px;
  background:
    radial-gradient(circle at 10% 52%, rgba(108, 132, 76, 0.25) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 28%, rgba(126, 67, 56, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 60%, rgba(108, 132, 76, 0.2) 0 4px, transparent 5px);
  opacity: 0.9;
}

.venue-section[data-theme="homestead"] .venue-card::before {
  display: none;
}

.venue-section[data-theme="homestead"] .venue-card::after {
  display: none;
}

.eyebrow {
  color: var(--accent-dark);
  margin: 0 0 14px;
}

.venue-copy h3 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 14px 0 20px;
}

.venue-section[data-theme="ridge-rose"] .venue-copy h3 {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(50px, 7.2vw, 96px);
}

.venue-section[data-theme="homestead"] .venue-copy h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

.venue-section[data-theme="ridge-rose"] .eyebrow {
  font-family: var(--font-ridge);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.venue-section[data-theme="homestead"] .eyebrow {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0.2em;
}

.venue-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.venue-copy.is-changing {
  opacity: 0.28;
  transform: translateY(6px);
}

.venue-visual.is-changing {
  opacity: 1;
  transform: none;
}

.venue-copy,
.venue-visual {
  transition: opacity 260ms ease, transform 260ms ease;
}

.venue-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.venue-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding: 11px 16px;
  text-align: center;
  text-transform: none;
}

.venue-section[data-theme="ridge-rose"] #best-for li {
  font-family: var(--font-ridge);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.venue-section[data-theme="ridge-rose"] .venue-stats span {
  padding: 13px 20px 11px;
}

.venue-section[data-theme="homestead"] .venue-stats span {
  min-height: 48px;
  padding: 13px 22px 11px;
}

.venue-section[data-theme="ridge-rose"] .venue-stats span,
.venue-section[data-theme="homestead"] .venue-stats span {
  color: var(--accent-dark);
}

.venue-section[data-theme="homestead"] #best-for li {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
}

#best-for {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#best-for li {
  position: relative;
  color: var(--text);
  font-size: 21px;
  font-weight: 500;
  padding-left: 24px;
}

#best-for li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.35;
}

@media (min-width: 1200px) {
  .venue-section[data-theme="ridge-rose"] .venue-stats span,
  .venue-section[data-theme="homestead"] .venue-stats span {
    font-size: 18px;
    min-height: 46px;
    padding: 10px 24px;
  }

}

.venue-section[data-theme="ridge-rose"] #best-for li::before {
  content: "✽";
  color: #4f673d;
}

.venue-section[data-theme="homestead"] #best-for li::before {
  content: "✦";
  color: #b6803e;
}

.venue-visual {
  display: grid;
  gap: 16px;
}

.venue-image {
  position: relative;
  overflow: hidden;
  background: rgba(255, 252, 244, 0.82);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.venue-section[data-theme="ridge-rose"] .venue-image {
  border-radius: 38px 26px 96px 30px;
}

.venue-section[data-theme="ridge-rose"] .venue-image:hover {
  box-shadow: 0 18px 42px rgba(48, 64, 39, 0.16);
  transform: translateY(-2px);
}

.venue-section[data-theme="homestead"] .venue-image {
  border-radius: 6px;
}

.venue-image img {
  display: block;
  width: 100%;
  height: clamp(420px, 50vw, 620px);
  object-fit: cover;
  transition: opacity 260ms ease, border-radius 400ms ease, transform 500ms ease;
}

.venue-section[data-theme="ridge-rose"] .venue-image img {
  border-radius: 0;
  object-position: var(--image-position, center 42%);
}

.venue-section[data-theme="homestead"] .venue-image img {
  border-radius: 0;
  object-position: var(--image-position, center 50%);
}

.venue-image img:hover {
  transform: scale(1.015);
}

.venue-section[data-theme="ridge-rose"] .venue-image img:hover {
  transform: none;
}

.image-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.image-picker button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.38);
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  text-align: center;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.venue-section.is-switching .image-picker button,
.venue-section.is-switching .image-picker img,
.venue-section.is-switching .image-picker span,
.venue-section.is-switching .venue-copy {
  transition: none;
}

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

.image-picker button.active {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--button-text);
}

.image-picker img {
  width: 52px;
  height: 48px;
  display: block;
  background: rgba(255, 252, 244, 0.7);
  object-fit: cover;
}

.venue-section[data-theme="ridge-rose"] .image-picker button {
  border-color: rgba(132, 153, 96, 0.38);
  border-radius: 22px 15px 34px 16px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.7), transparent 30%),
    rgba(255, 252, 244, 0.54);
  box-shadow: 0 6px 16px rgba(50, 68, 39, 0.07);
  font-family: var(--font-ridge);
  font-size: 13px;
  font-weight: 600;
}

.venue-section[data-theme="ridge-rose"] .image-picker img {
  border-radius: 14px 10px 22px 10px;
}

.venue-section[data-theme="ridge-rose"] .image-picker button.active {
  border-color: rgba(52, 75, 49, 0.62);
  background: #3c5736;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.18), 0 8px 18px rgba(52, 75, 49, 0.14);
}

.venue-section[data-theme="homestead"] .image-picker button,
.venue-section[data-theme="homestead"] .image-picker img {
  border-radius: 4px;
}

.venue-section[data-theme="homestead"] .image-picker button {
  border-color: rgba(114, 72, 44, 0.28);
  background: rgba(255, 253, 248, 0.58);
  box-shadow: none;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
}

.venue-section[data-theme="homestead"] .image-picker button.active {
  border-color: #72482c;
  background: #72482c;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.22);
}

.image-picker span {
  min-width: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.venue-section[data-theme="ridge-rose"] .image-picker span {
  font-size: 16px;
}

.venue-section[data-theme="homestead"] .image-picker span {
  font-size: 15px;
  font-weight: 400;
}

/* Testimonials */
.testimonials {
  padding: clamp(72px, 9vw, 116px) 0;
  background:
    linear-gradient(180deg, #f4eadc 0%, #fbf5eb 100%);
}

.testimonials h2 {
  color: #8a6539;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 20px;
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonial-drift 56s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(390px, 82vw);
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 210px;
  border: 1px solid rgba(103, 77, 48, 0.16);
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 18px 44px rgba(66, 45, 27, 0.09);
}

.testimonial-card img {
  width: 142px;
  height: 100%;
  min-height: 210px;
  display: block;
  background: #eadfce;
  object-fit: cover;
}

.testimonial-card img.testimonial-card__image--chloe {
  object-fit: cover;
  object-position: 85% center;
}

.testimonial-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.testimonial-card span {
  align-self: flex-start;
  border: 1px solid rgba(106, 75, 40, 0.22);
  color: #6d4d2d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.testimonial-card p {
  color: #4b3b2d;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 16px 0;
}

.testimonial-card h3 {
  color: #2f271f;
  font-size: 15px;
  margin: 0;
}

@keyframes testimonial-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

/* Typeform */
.typeform-section {
  padding: clamp(68px, 8.5vw, 117px) 24px clamp(72px, 10vw, 130px);
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 151, 87, 0.22), transparent 22%),
    linear-gradient(180deg, #fbf6ed 0%, #efe0ce 100%);
}

.typeform-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.typeform-shell h2 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.typeform-shell p {
  max-width: 670px;
  color: #6d5b49;
  font-size: clamp(17px, 2vw, 21px);
  margin: 0 auto 28px;
}

.typeform-embed {
  min-height: 380px;
  border: 1px solid rgba(99, 69, 38, 0.16);
  background: rgba(255, 252, 247, 0.6);
  box-shadow: 0 20px 60px rgba(63, 41, 22, 0.1);
}

.typeform-embed > div,
.typeform-embed [data-tf-widget],
.typeform-embed .tf-v1-widget,
.typeform-embed iframe {
  min-height: 380px;
  height: 380px !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(34px, 4vw, 58px) 24px 24px;
  border-top: 1px solid var(--hairline);
  background: #2d261f;
  color: rgba(255, 248, 237, 0.76);
  font-size: 13px;
}

.site-footer__details {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  min-width: 0;
}

.site-footer__brand {
  min-width: max-content;
}

.site-footer__address {
  position: relative;
  margin: 0;
  padding-left: clamp(22px, 3vw, 40px);
  border-left: 1px solid rgba(214, 189, 132, 0.48);
  color: rgba(255, 248, 237, 0.72);
  font-style: normal;
  line-height: 1.55;
}

.site-footer__logo {
  width: clamp(88px, 9vw, 132px);
  height: auto;
  flex: 0 0 auto;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.site-footer p {
  color: #fff8ed;
  font-family: var(--font-heading);
  font-size: 22px;
}

@media (max-width: 860px) {
  .hero {
    min-height: 88vh;
    align-items: end;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(10, 8, 6, 0.44), rgba(10, 8, 6, 0.12) 56%, rgba(10, 8, 6, 0.24)),
      rgba(10, 8, 6, 0.3);
  }

  .hero__content {
    padding-top: clamp(138px, 24vh, 190px);
    padding-bottom: clamp(42px, 9vh, 84px);
  }

  .venue-card {
    grid-template-columns: 1fr;
  }

  .venue-image {
    order: -1;
  }

  .venue-visual {
    order: -1;
  }

  .venue-image img {
    height: 420px;
  }

  .venue-toggle {
    width: 100%;
    justify-content: center;
  }

  .venue-toggle button {
    flex: 1;
    min-width: 0;
    padding-inline: 14px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-copy h3 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .venue-section[data-theme="ridge-rose"] .eyebrow {
    font-size: 17px;
  }

  .venue-section[data-theme="ridge-rose"] #best-for li {
    font-size: 14px;
  }

  .venue-section[data-theme="homestead"] #best-for li {
    font-size: 14px;
  }

  .venue-stats span {
    font-size: 13px;
    min-height: 0;
    padding: 9px 13px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-stats span {
    font-size: 14px;
    min-height: 0;
    padding: 9px 13px;
  }

  .venue-section[data-theme="homestead"] .venue-stats span {
    font-size: 14px;
    min-height: 0;
    padding: 9px 13px;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  .venue-section[data-theme="ridge-rose"] .eyebrow {
    font-size: 18px;
  }

  .venue-section[data-theme="ridge-rose"] .image-picker span {
    font-size: 14px;
    line-height: 1.08;
  }

  .venue-section[data-theme="ridge-rose"] #best-for li,
  .venue-section[data-theme="homestead"] #best-for li {
    font-size: 16px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-stats span,
  .venue-section[data-theme="homestead"] .venue-stats span {
    font-size: 16px;
    padding: 11px 17px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 22px;
  }

  .hero__media--bunny iframe {
    width: max(100vw, 56.25vh);
    height: max(177.78vw, 100vh);
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 60px);
  }

  .hero__location {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .hero__subhead {
    font-size: 17px;
  }

  .section-intro--left {
    padding-inline: 18px;
  }

  .venue-section {
    padding-inline: 16px;
  }

  .venue-card {
    padding: 16px;
    border-radius: 20px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-card,
  .venue-section[data-theme="homestead"] .venue-card {
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .venue-section[data-theme="ridge-rose"] .venue-image img,
  .venue-section[data-theme="homestead"] .venue-image img {
    clip-path: none;
  }

  .venue-section[data-theme="ridge-rose"] .venue-image,
  .venue-section[data-theme="homestead"] .venue-image {
    border-radius: 16px;
  }

  .venue-section[data-theme="ridge-rose"] .venue-copy h3,
  .venue-section[data-theme="homestead"] .venue-copy h3 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .venue-section[data-theme="homestead"] .venue-copy h3 {
    font-size: clamp(48px, 13.5vw, 58px);
  }

  .venue-section[data-theme="ridge-rose"] .venue-copy h3 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .venue-image img {
    height: 340px;
  }

  .image-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .image-picker button {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    padding: 9px 7px 10px;
    text-align: center;
  }

  .image-picker img {
    width: 100%;
    height: 46px;
  }

  .image-picker span {
    max-width: 100%;
    font-size: 15px;
    letter-spacing: 0.005em;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .venue-section[data-theme="ridge-rose"] .image-picker span {
    font-size: 11px;
  }

  .venue-section[data-theme="homestead"] .image-picker span {
    font-size: 13px;
  }

  .venue-stats span {
    width: 100%;
    text-align: center;
  }

  .testimonial-card {
    grid-template-columns: 118px 1fr;
    min-height: 230px;
  }

  .testimonial-card img {
    width: 118px;
    min-height: 230px;
  }

  .testimonial-card__copy {
    padding: 16px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .typeform-section {
    padding-inline: 14px;
  }

  .typeform-embed,
  .typeform-embed > div,
  .typeform-embed [data-tf-widget],
  .typeform-embed .tf-v1-widget,
  .typeform-embed iframe {
    min-height: 640px;
    height: 640px !important;
  }

  .site-footer {
    flex-direction: column;
    gap: 18px;
    padding: 28px 22px;
    text-align: center;
  }

  .site-footer__details {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__brand {
    min-width: 0;
  }

  .site-footer__address {
    padding: 14px 0 0;
    border-top: 1px solid rgba(214, 189, 132, 0.4);
    border-left: 0;
    line-height: 1.5;
  }

  .site-footer__logo {
    width: 86px;
  }
}

@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;
  }
}
