@charset "UTF-8";
:root {
  --container-max: 1200px;
  --space: 2rem;
  --radius: 8px;
  --radius-sm: 4px;
  --font-sans: system-ui, sans-serif;
  --color-bg: #f8f9fa;
  --color-text: #222;
  --color-muted: #666;
  --color-brand: #2a6;
  --color-dark: #0f172a;
  --color-white: #fff;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

blockquote {
  margin: 1rem auto;
  padding: 0 1rem;
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 70ch;
  text-align: center;
}

ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

main {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--color-white);
  /* removed top padding everywhere */
  padding: 0 1rem var(--space);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem var(--space);
}

.section {
  padding: 3rem 1rem; /* vertical + horizontal spacing */
}

.section--tight {
  padding: 1.5rem 1rem; /* reduced spacing option */
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}
.park-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.park-cards article {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
}
.park-cards article img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.park-cards article h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.park-cards article p {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.park-cards article .btn {
  margin-top: auto;
}
@media (max-width: 960px) {
  .park-cards {
    grid-template-columns: 1fr;
  }
}

.bhhpa-logo {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-brand);
  background: var(--color-brand);
  color: #fff;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.btn.secondary {
  background: #555;
  border-color: #444;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.hero .container {
  padding-top: var(--space);
}

.meta,
.note {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.rounded {
  border-radius: var(--radius);
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
}

.section-dark {
  background: var(--color-dark);
  color: #eaeaea;
}
.section-dark .note {
  color: #c9c9c9;
}
.section-dark .btn {
  border-color: #1e293b;
  background: #334155;
}

.center {
  text-align: center;
}

/* Accessibility */
a:focus,
button:focus,
[tabindex]:focus {
  outline: 3px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

/* Example future additions:
:root {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
} */
/* ==== Lifted, feature-style caravan cards ==== */
.caravan-card .card-inner {
  background: #f9f9f9;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.caravan-card .card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.caravan-card .gallery-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: #eaeaea;
  /* NEW: keep overlay clean + stop ribbon/badge shimmer */
  overflow: hidden;
  isolation: isolate;
  /* === Free Site Fees: diagonal corner ribbon (top-left) === */
  /* NEW: anchor wrapper in true corner (don’t change colors) */
  /* === Discount badge (top-right), hover-reveal === */
}
.caravan-card .gallery-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  /* helps avoid flicker on hover */
  position: relative;
  z-index: 1;
  will-change: transform;
}
.caravan-card .gallery-wrapper .ribbon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}
.caravan-card .gallery-wrapper .ribbon span {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #2ba26a;
  border-radius: 0.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.2px;
}
.caravan-card .gallery-wrapper .ribbon.ribbon--corner {
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  padding: 0;
  z-index: 3;
}
.caravan-card .gallery-wrapper .ribbon.ribbon--corner span {
  position: absolute;
  top: 24px;
  left: -62px;
  width: 200px; /* keep your original numbers */
  padding: 0.38rem 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #2ba26a;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transform: rotate(-45deg) translateZ(0);
  letter-spacing: 0.2px;
  pointer-events: none;
  backface-visibility: hidden; /* anti-flicker */
  will-change: transform;
}
.caravan-card .gallery-wrapper .ribbon.ribbon--corner span::before,
.caravan-card .gallery-wrapper .ribbon.ribbon--corner span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: inherit;
}
.caravan-card .gallery-wrapper .ribbon.ribbon--corner span::before {
  left: -8px;
}
.caravan-card .gallery-wrapper .ribbon.ribbon--corner span::after {
  right: -8px;
}
.caravan-card .gallery-wrapper .discount-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4; /* above image & ribbon */
  background: #2ba26a;
  color: #fff;
  border-radius: 0.4rem; /* tighter corners */
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  pointer-events: none;
  /* hover reveal only (no color changes) */
  opacity: 0;
  transform: translateY(-4px) translateZ(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backface-visibility: hidden; /* anti-flicker */
  will-change: transform;
}
.caravan-card .card-inner:hover .discount-badge {
  opacity: 1;
  transform: none;
}
@media (hover: none) {
  .caravan-card .discount-badge {
    opacity: 1;
    transform: none;
  }
}
.caravan-card .card-inner:hover .card-image {
  transform: scale(1.03);
}
.caravan-card .caravan-status-banner {
  display: block;
  width: 100%;
  background: #f1f5f9;
  color: #1f2a37;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
  border-radius: 0;
}
.caravan-card .card-body {
  background: #fff;
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}
.caravan-card .card-body .caravan-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: #222;
}
.caravan-card .card-body .caravan-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
}
.caravan-card .card-body .caravan-price {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  margin-bottom: 1rem;
}
.caravan-card .card-body .caravan-price .original-price {
  font-size: 0.95rem;
  color: #888;
  text-decoration: line-through;
}
.caravan-card .card-body .caravan-price .discount-price,
.caravan-card .card-body .caravan-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}
.caravan-card .card-body .btn.btn-primary.btn-block {
  width: auto;
  min-width: 240px;
  background: #2ba26a;
  border-color: #2ba26a;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
}
.caravan-card .card-body .btn.btn-primary.btn-block:hover {
  background: #238a59;
  border-color: #238a59;
  color: #fff;
}

/* remove the earlier duplicate .discount-badge (pill) block */
/* spacing grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Modal (vanilla) ===== */
/* (unchanged from your version) */
#caravanModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  padding: 4vh 1rem;
  /* Two-column extras */
}
#caravanModal .modal-content {
  background: #fff;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.25rem 1.75rem;
}
#caravanModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
#caravanModal .modal-header .modal-heading {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.2px;
}
#caravanModal .modal-header .modal-close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
#caravanModal .modal-header .modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}
#caravanModal .modal-header .modal-close:focus-visible {
  outline: 2px solid #2ba26a;
  outline-offset: 2px;
}
#caravanModal .modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
#caravanModal .modal-details-grid > div {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
  color: #1f2937;
}
#caravanModal .modal-details-grid > div .label {
  font-weight: 700;
  color: #374151;
  margin-right: 0.25rem;
}
@media (max-width: 640px) {
  #caravanModal .modal-details-grid {
    grid-template-columns: 1fr;
  }
}
#caravanModal .modal-details-grid > .price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
#caravanModal .modal-details-grid > .price-row .label {
  font-weight: 700;
  color: #374151;
  margin-right: 0.25rem;
}
#caravanModal .modal-details-grid > .price-row .modal-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
#caravanModal .modal-details-grid > .price-row .modal-price .price-discount {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2ba26a;
}
#caravanModal .modal-details-grid > .price-row .modal-price .price-original {
  font-size: 1.1rem;
  color: #888;
  text-decoration: line-through;
}
#caravanModal .modal-details-grid > .price-row .modal-price .price-regular {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}
#caravanModal .modal-details-grid > .price-row .modal-price .price-saving-sub {
  font-size: 0.85rem;
  color: #555;
}
#caravanModal .modal-gallery {
  margin-bottom: 1rem;
}
#caravanModal .tab-list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #e9edf3;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
#caravanModal .tab-list .tab-item button {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  font-weight: 700;
  color: #556070;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  border-radius: 0.25rem 0.25rem 0 0;
}
#caravanModal .tab-list .tab-item button:focus-visible {
  outline: 2px solid #2ba26a;
  outline-offset: 2px;
}
#caravanModal .tab-list .tab-item.is-active button {
  color: #1b2533;
  border-color: #2ba26a;
  background: #f7faf9;
}
#caravanModal .tab-panels {
  margin: 0;
  padding: 0;
  list-style: none;
}
#caravanModal .tab-panels .tab-panel {
  display: none;
}
#caravanModal .tab-panels .tab-panel.is-active {
  display: block;
}
#caravanModal .main-image-container {
  position: relative;
  background: #eef2f7;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
#caravanModal .modal-main-image {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
#caravanModal .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.55rem;
  font-size: 1.75rem;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
#caravanModal .gallery-arrow.left {
  left: 0.5rem;
}
#caravanModal .gallery-arrow.right {
  right: 0.5rem;
}
#caravanModal .gallery-arrow:hover {
  background: #fff;
}
#caravanModal .gallery-arrow:focus-visible {
  outline: 2px solid #2ba26a;
  outline-offset: 2px;
}
#caravanModal .thumbnail-row {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
#caravanModal .thumbnail-row .thumbnail {
  width: 90px;
  height: 62px;
  object-fit: cover;
  border-radius: 0.4rem;
  border: 2px solid transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#caravanModal .thumbnail-row .thumbnail.active {
  border-color: #2ba26a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
#caravanModal .caravan-extra {
  margin-top: 1rem;
}
#caravanModal .caravan-extra.two-col {
  display: grid;
  grid-template-columns: 1fr; /* mobile: stack */
  gap: 1rem 1.25rem;
  margin-top: 1rem;
  align-items: stretch; /* make grid cells equal height */
}
@media (min-width: 900px) {
  #caravanModal .caravan-extra.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* desktop: side-by-side */
  }
}
#caravanModal .caravan-extra.two-col .extra-col {
  height: 100%; /* fill the grid cell */
  display: flex; /* nice vertical rhythm inside */
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.9rem 1rem;
}
#caravanModal .caravan-extra.two-col h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b2533;
}
#caravanModal .caravan-extra.two-col ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}
#caravanModal .caravan-extra.two-col li {
  margin: 0.3rem 0;
}

/* stop background scroll when modal open */
.no-scroll {
  overflow: hidden;
}

/* kill default <p> spacing inside the price block */
.caravan-card .card-body .caravan-price p {
  margin: 0;
  line-height: 1.2;
}

/* regular price should not be red */
.caravan-card .card-body .caravan-price .price {
  color: #222;
}

/* ===== Finance (Modal) ===== */
#caravanModal .finance-wrap {
  margin-top: 1.25rem;
  /* NEW: make the whole finance section a card */
  padding: 1rem 1.1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  /* Toggle button (scoped to finance) */
  /* Calculator card */
}
#caravanModal .finance-wrap h4 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2533;
}
#caravanModal .finance-wrap p {
  margin: 0.4rem 0;
  color: #4b5563;
  line-height: 1.5;
}
#caravanModal .finance-wrap a {
  color: #2ba26a;
  text-decoration: underline;
}
#caravanModal .finance-wrap .btn-primary {
  appearance: none;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 1px solid #2ba26a;
  background: #2ba26a;
  color: #fff;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease;
}
#caravanModal .finance-wrap .btn-primary:hover {
  filter: brightness(0.96);
}
#caravanModal .finance-wrap .btn-primary:active {
  transform: translateY(1px);
}
#caravanModal .finance-wrap .btn-primary:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
#caravanModal .finance-wrap .finance-card {
  margin-top: 0.8rem;
  padding: 1rem;
  background: #fff; /* keep inner card white for contrast */
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  /* Form layout */
}
#caravanModal .finance-wrap .finance-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b2533;
}
#caravanModal .finance-wrap .finance-card form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1rem;
}
@media (min-width: 640px) {
  #caravanModal .finance-wrap .finance-card form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#caravanModal .finance-wrap .finance-card .form-row {
  display: flex;
  flex-direction: column;
}
#caravanModal .finance-wrap .finance-card label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #374151;
}
#caravanModal .finance-wrap .finance-card input[type=number] {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: 0.45rem;
  background: #fff;
  color: #111827;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#caravanModal .finance-wrap .finance-card input[type=number]:focus {
  outline: none;
  border-color: #2ba26a;
  box-shadow: 0 0 0 3px rgba(43, 162, 106, 0.15);
}
#caravanModal .finance-wrap .finance-card input[type=number]::-webkit-outer-spin-button, #caravanModal .finance-wrap .finance-card input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#caravanModal .finance-wrap .finance-card .note {
  margin-top: 0.25rem;
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.8rem;
}
#caravanModal .finance-wrap .finance-card .result-box {
  grid-column: 1/-1;
  margin-top: 0.25rem;
  padding: 0.8rem 1rem;
  background: #f7faf9;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #2ba26a;
  border-radius: 0.5rem;
  color: #1f2937;
}
#caravanModal .finance-wrap .finance-card .result-box strong {
  font-weight: 800;
}

/* ===== Buyer's Guide CTA (unchanged) ===== */
#caravanModal .cta-box {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
#caravanModal .cta-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2533;
}
#caravanModal .cta-box p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}
#caravanModal .cta-box p a {
  color: #2ba26a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#caravanModal .cta-box p a:hover {
  text-decoration-thickness: 2px;
}
#caravanModal .cta-box p a:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
#caravanModal .cta-box a.cta-btn {
  display: inline-block;
  margin-top: 0.6rem;
  text-decoration: none;
  background: #2ba26a;
  color: #fff !important;
  border: 1px solid #2ba26a;
  border-radius: 0.55rem;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  transition: filter 0.15s ease, transform 0.05s ease;
}
#caravanModal .cta-box a.cta-btn:hover {
  filter: brightness(0.96);
}
#caravanModal .cta-box a.cta-btn:active {
  transform: translateY(1px);
}
#caravanModal .cta-box a.cta-btn:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
#caravanModal .cta-box {
  /* Base button */
  /* First button = solid primary (Arrange Viewing) */
  /* Second button = outline (Request Brochure) */
  /* Mobile: stack & full-width */
}
#caravanModal .cta-box .cta-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}
#caravanModal .cta-box .btn-toggle-form {
  appearance: none;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 0.55rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#caravanModal .cta-box .btn-toggle-form:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
#caravanModal .cta-box .btn-toggle-form:active {
  transform: translateY(1px);
}
#caravanModal .cta-box .btn-toggle-form[disabled], #caravanModal .cta-box .btn-toggle-form.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#caravanModal .cta-box .cta-buttons .btn-toggle-form:first-child {
  background: #2ba26a;
  border: 1px solid #2ba26a;
  color: #fff;
}
#caravanModal .cta-box .cta-buttons .btn-toggle-form:first-child:hover {
  filter: brightness(0.96);
}
#caravanModal .cta-box .cta-buttons .btn-toggle-form:last-child {
  background: transparent;
  border: 2px solid #2ba26a;
  color: #2ba26a;
}
#caravanModal .cta-box .cta-buttons .btn-toggle-form:last-child:hover {
  background: #e8f6ef;
}
@media (max-width: 520px) {
  #caravanModal .cta-box .cta-buttons {
    flex-direction: column;
  }
  #caravanModal .cta-box .btn-toggle-form {
    width: 100%;
    text-align: center;
  }
}

.site-footer {
  font-size: 0.85rem;
  background: #f9f9f9;
  color: #6c6d74;
  text-align: center;
}

#footer-map {
  height: 200px;
  width: 100%;
}

.footer-main {
  background: #303033;
  color: white;
  padding: 1rem 0 0.5rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logos img {
  max-height: 60px;
  height: auto;
}

.footer-tagline {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer-policy {
  padding: 1rem 0 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin: 0.5rem 0;
}
.footer-socials a {
  color: #6c6d74;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: #ce4580;
}

.footer-dev-credit {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.footer-dev-credit a {
  color: #ccc;
  text-decoration: none;
}
.footer-dev-credit a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .footer-logos img {
    max-height: 50px;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .footer-policy .container {
    flex-direction: column;
  }
  .footer-links {
    margin-bottom: 0;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.site-nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.site-nav .logo img {
  max-height: 80px;
  width: auto;
  display: block;
}
.site-nav .nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.site-nav .nav-item {
  position: relative;
  margin-left: 1.5rem;
}
.site-nav .nav-item a {
  color: #6c6d74;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.2s;
}
.site-nav .nav-item a:hover, .nav-item.active > .site-nav .nav-item a {
  color: #ce4580;
}
.site-nav .nav-item.has-submenu > .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.site-nav .nav-item.has-submenu > .submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #4a4a4a;
  font-size: 0.85rem;
}
.site-nav .nav-item.has-submenu > .submenu li a:hover {
  background: #f5f5f5;
}
.site-nav .nav-item.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

#mobile-header {
  display: none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1001;
  border-bottom: 1px solid #e5e5e5;
}
#mobile-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
#mobile-header .logo img {
  max-height: 80px;
  width: auto;
}

#mobile-icon {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}
#mobile-icon span,
#mobile-icon span::before,
#mobile-icon span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.2s;
}
#mobile-icon span {
  top: 50%;
  transform: translateY(-50%);
}
#mobile-icon span::before {
  top: -6px;
}
#mobile-icon span::after {
  top: 6px;
}

#mobile-navigation {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #242427;
  padding-top: 3rem;
  transition: left 0.3s ease;
  z-index: 1002;
}
#mobile-navigation.active {
  left: 0;
}
#mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobile-navigation li a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
#mobile-navigation li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
#mobile-navigation .has-submenu > a::after {
  content: "▾";
  float: right;
}
#mobile-navigation .has-submenu ul {
  display: none;
  padding-left: 1rem;
}
#mobile-navigation .has-submenu.active > ul {
  display: block;
}

#mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1001;
}
#mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .site-nav {
    display: none;
  }
  #mobile-header {
    display: block;
  }
}
@media (max-width: 576px) {
  .site-nav .logo img,
  #mobile-header .logo img {
    max-height: 50px;
  }
}
.gower-section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}
.gower-section .section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 0;
}
.gower-section .hero-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.gower-section .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gower-section .lead {
  font-size: 1.25rem;
  max-width: 65ch;
  margin: 0 auto 3rem;
  text-align: center;
  color: #444;
}
.gower-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.gower-section .feature-card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.gower-section .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.gower-section .feature-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gower-section .feature-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gower-section .feature-card .card-content {
  padding: 1.25rem;
  text-align: center;
}
.gower-section .feature-card .card-content h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #222;
}
.gower-section .feature-card .card-content h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #222;
}
.gower-section .feature-card .card-content p {
  font-size: 0.95rem;
  color: #555;
}
.gower-section .feature-card .card-content .btn {
  margin-top: 1rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .gower-section .section-title {
    font-size: 1.75rem;
  }
  .gower-section .lead {
    font-size: 1.1rem;
  }
  .gower-section .feature-card .card-content h2 {
    font-size: 1.1rem;
  }
}
.gower-section .hero-feature {
  margin-bottom: 3rem;
  text-align: center;
}
.gower-section .hero-feature .lead {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}
.gower-section .hero-feature .hero-btn {
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}
.gower-section .hero-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
}
.gower-section .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-layout {
  display: flex;
  flex-direction: column;
}
.blog-layout .blog-hero {
  margin-bottom: 2rem;
}
.blog-layout .blog-hero .hero-media {
  position: relative;
  aspect-ratio: 16/6;
  overflow: hidden;
}
.blog-layout .blog-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-layout .blog-hero .hero-media .hero-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 80%;
}
.blog-layout .blog-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (max-width: 900px) {
  .blog-layout .blog-columns {
    grid-template-columns: 1fr;
  }
}
.blog-layout .blog-article {
  padding-bottom: 3rem;
}
.blog-layout .blog-article .lead {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2.5rem;
}
.blog-layout .blog-article .lead p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.blog-layout .blog-article .blog-section {
  margin-bottom: 3rem;
}
.blog-layout .blog-article .blog-section .blog-subheading {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  color: #222;
}
.blog-layout .blog-article .blog-section .blog-block {
  margin-bottom: 1.5rem;
}
.blog-layout .blog-article .blog-section .blog-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.blog-layout .blog-article .blog-section .blog-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.blog-layout .blog-article .blog-cta {
  background: #f9f9f9;
  padding: 2rem;
  border-left: 4px solid #ccc;
  margin-bottom: 3rem;
}
.blog-layout .blog-article .blog-cta p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.blog-layout .blog-sidebar {
  background: #f9f9f9;
  border-left: 1px solid #e0e0e0;
  padding: 2rem 1rem;
}
.blog-layout .blog-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}
.blog-layout .blog-sidebar ul, .blog-layout .blog-sidebar .blog-menu {
  list-style: none;
  padding: 0;
}
.blog-layout .blog-sidebar ul li, .blog-layout .blog-sidebar .blog-menu li {
  margin-bottom: 0.75rem;
}
.blog-layout .blog-sidebar ul li a, .blog-layout .blog-sidebar .blog-menu li a {
  color: #0056a5;
  text-decoration: none;
}
.blog-layout .blog-sidebar ul li a:hover, .blog-layout .blog-sidebar .blog-menu li a:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .blog-layout .blog-sidebar {
    position: sticky;
    top: 2rem;
  }
}

.contact-page {
  /* 🔹 Form base styles */
  /* 🔹 Honeypot fields */
  /* 🔹 Email reveal chip + row */
  /* 🔹 Card body padding (form + info cards) */
  /* 🔹 Contact cards (Talk to us + Helpful links) */
  /* 🔹 Form sections */
  /* Special handling inside viewing-section */
  /* Brochure address layout */
  /* Consent box (Step 4) */
}
.contact-page .simple-form {
  /* 🔹 Checkboxes + radios */
}
.contact-page .simple-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-page .simple-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text, #222);
  line-height: 1.2;
}
.contact-page .simple-form input:not([type=checkbox]):not([type=radio]),
.contact-page .simple-form select,
.contact-page .simple-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border, #dcdcdc);
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-page .simple-form textarea {
  min-height: 132px;
  resize: vertical;
}
.contact-page .simple-form input:not([type=checkbox]):not([type=radio]):focus,
.contact-page .simple-form select:focus,
.contact-page .simple-form textarea:focus {
  outline: none;
  border-color: var(--color-primary, #006ab6);
  box-shadow: 0 0 0 2px rgba(0, 106, 182, 0.15);
}
.contact-page .simple-form .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.contact-page .simple-form input[type=checkbox],
.contact-page .simple-form input[type=radio] {
  width: auto;
  margin: 0 0.25rem 0 0;
}
.contact-page .simple-form .help-text {
  font-size: 0.9rem;
  color: var(--color-text-muted, #666);
}
.contact-page .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.contact-page #email-output {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-page #email-output .email-chip {
  display: inline-block;
  max-width: 100%;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 6px;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-decoration: none;
}
.contact-page #email-output .email-chip:hover {
  background: #f6f6f6;
}
.contact-page #email-output a {
  font-weight: 600;
  word-break: break-word;
}
.contact-page .card__body {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .contact-page .card__body {
    padding: 1.75rem;
  }
}
.contact-page .card__body > .h4 {
  margin-bottom: 0.5rem;
}
.contact-page .contact-cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-page .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-page .contact-cards .contact-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.contact-page .contact-cards .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-page .contact-cards .meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--color-text-muted, #666);
}
.contact-page .list--plain {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page .list--plain li + li {
  margin-top: 0.5rem;
}
.contact-page .form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .contact-page .form-section {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-page .form-section > .form-section {
  grid-column: 1/-1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 8px;
  background: #fafafa;
}
.contact-page .form-section > .form-section h3 {
  margin-top: 0;
}
.contact-page .form-section > .form-section .help-text {
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.contact-page .form-section .form-field {
  grid-column: span 3;
}
@media (min-width: 768px) {
  .contact-page #viewing-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* force Park field full width */
  }
  .contact-page #viewing-section .form-field {
    grid-column: span 1;
  }
  .contact-page #viewing-section .form-field:has(#park) {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .contact-page #brochure-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-page #brochure-section .form-field {
    grid-column: span 2;
  }
  .contact-page #brochure-section #address_1, .contact-page #brochure-section #address_2, .contact-page #brochure-section #city {
    grid-column: span 2;
  }
  .contact-page #brochure-section #county, .contact-page #brochure-section #postcode {
    grid-column: span 1;
  }
}
.contact-page #step4 .consent-section {
  grid-column: 1/-1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 8px;
  background: #fafafa;
  margin-top: 1rem;
}
.contact-page #step4 .consent-section h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.contact-page .mt-l {
  margin-top: 2rem !important;
}

/* 🔹 Park cards */
.park-cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .park-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.park-cards article {
  align-self: stretch;
}
.park-cards .park-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 0.75rem;
}
.park-cards .park-logo img {
  max-height: 100%;
  width: auto;
  height: auto;
}

/* Utility */
.is-hidden {
  display: none !important;
}

/* 🔹 Wizard nav */
.nav-wizard {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  border-bottom: 2px solid #eee;
}

.nav-wizard .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  font-weight: 600;
  color: var(--color-text-muted, #666);
}

.nav-wizard .nav-link.active {
  color: var(--color-primary, #006ab6);
  border-bottom: 2px solid var(--color-primary, #006ab6);
}

/* ============================================================
   Inline field errors + invalid styles
   ============================================================ */
.field-error {
  display: none;
  color: #c62828;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.was-validated .field-error {
  display: block;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid,
.is-invalid {
  border-color: #c62828 !important;
}

.was-validated input:invalid:focus,
.was-validated select:invalid:focus,
.was-validated textarea:invalid:focus,
.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(198, 40, 40, 0.25);
  outline: none;
}

.nav-wizard .nav-link.disabled {
  pointer-events: none;
  color: #aaa !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

/* _buyers-guide.scss */
/* Page scope */
.buyers-guide {
  /* containers */
  /* hero */
  /* content column */
  /* sidebar */
  /* modal */
  /* utilities within page scope */
  /* reduce motion nicety for this page */
}
.buyers-guide__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .buyers-guide__layout {
    grid-template-columns: 1fr 280px;
  }
}
.buyers-guide__hero .container {
  padding-top: var(--space);
  text-align: center;
}
.buyers-guide__hero .anchor {
  /* ensure heading anchor offset plays nicely with sticky nav */
  scroll-margin-top: 140px;
}
.buyers-guide__hero blockquote {
  max-width: 70ch;
  margin-inline: auto;
}
.buyers-guide__content {
  /* section anchors */
}
.buyers-guide__content .scroll-section,
.buyers-guide__content .anchor {
  scroll-margin-top: 140px;
}
.buyers-guide__content h2 {
  margin-top: 2rem;
}
.buyers-guide__content h3 {
  margin-top: 1.25rem;
}
.buyers-guide__sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.buyers-guide__sidebar nav {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.buyers-guide__sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.buyers-guide__sidebar li + li {
  margin-top: 0.25rem;
}
.buyers-guide__sidebar a {
  display: block;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-muted);
  transition: background 0.15s ease;
}
.buyers-guide__sidebar a:hover {
  background: rgba(0, 0, 0, 0.035);
}
.buyers-guide__sidebar a.active {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
}
.buyers-guide .modal {
  position: fixed;
  inset: 0;
  display: none;
}
.buyers-guide .modal.is-open {
  display: block;
}
.buyers-guide .modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.buyers-guide .modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(900px, 92vw);
  margin: 6vh auto;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  outline: 0; /* allow focus ring to show cleanly */
}
.buyers-guide .modal__close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
}
.buyers-guide .buyers-guide__list {
  /* optional visual breathing room for long lists */
}
.buyers-guide .buyers-guide__list li + li {
  margin-top: 0.35rem;
}
@media (prefers-reduced-motion: reduce) {
  .buyers-guide * {
    scroll-behavior: auto !important;
  }
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
}
section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.listing-section {
  background: #fff;
  padding: 4rem 1rem;
}
.listing-section .section-title {
  margin-bottom: 1.5rem;
}
.listing-section .lead {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: center;
  color: #555;
}

.benefits {
  background: #e8f4fa;
  padding: 4rem 1rem;
}
.benefits .section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.benefits .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.benefits .feature-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefits .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.benefits .feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.benefits .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.gower-pen-section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}
.gower-pen-section .section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.gower-pen-section .lead {
  font-size: 1.25rem;
  max-width: 65ch;
  margin: 0 auto 3rem;
  text-align: center;
  color: #444;
}
.gower-pen-section .sub-lead {
  margin-top: 2rem;
  text-align: center;
}
.gower-pen-section .sub-lead a {
  font-weight: 600;
  color: #0077b6;
}
.gower-pen-section .sub-lead a:hover {
  text-decoration: underline;
}
.gower-pen-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.gower-pen-section .feature-card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.gower-pen-section .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.gower-pen-section .feature-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gower-pen-section .feature-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gower-pen-section .feature-card .card-content {
  padding: 1.25rem;
  text-align: center;
}
.gower-pen-section .feature-card .card-content h2, .gower-pen-section .feature-card .card-content h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #222;
}
.gower-pen-section .feature-card .card-content p {
  font-size: 0.95rem;
  color: #555;
}
.gower-pen-section .feature-card .card-content .btn {
  margin-top: 1rem;
  display: inline-block;
}
.gower-pen-section.blue-bg {
  background: #d4edf7;
}
@media (max-width: 600px) {
  .gower-pen-section .section-title {
    font-size: 1.75rem;
  }
  .gower-pen-section .lead {
    font-size: 1.1rem;
  }
  .gower-pen-section .feature-card .card-content h2 {
    font-size: 1.1rem;
  }
}

.cta-ownership {
  background: #0077b6;
  color: #fff;
  padding: 4rem 1rem;
}
.cta-ownership .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-ownership .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.cta-ownership h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta-ownership p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.cta-ownership .cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 900px) {
  .cta-ownership .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cta-ownership .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cta-ownership .btn.btn-primary {
  background: #fff;
  color: #0077b6;
}
.cta-ownership .btn.btn-primary:hover {
  background: #f1f1f1;
}
.cta-ownership .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cta-ownership .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
}
.cta-ownership .cta-image img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notes {
  background: transparent;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}
.notes .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.notes ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  text-align: left;
}
.notes li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.listing-disclaimer {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666;
  text-align: center;
}
.listing-disclaimer p {
  margin: 0.5rem 0;
}
.listing-disclaimer strong {
  font-weight: 600;
  color: #444;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  padding-top: 0;
  height: 40vh;
  min-height: 280px;
  max-height: 480px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero .hero-bg,
.hero .hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .hero-overlay .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero .hero-overlay h1,
.hero .hero-overlay .subtitle,
.hero .hero-overlay p {
  color: #fff;
}
.hero .hero-overlay .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=main.css.map */
