:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --ink: #2d251d;
  --muted: #6d6258;
  --brand: #8e4f2f;
  --brand-dark: #60351f;
  --gold: #d8b26e;
  --dark-gold: #B8860B;
  --accent: #d8b26e;
  --border: rgba(96, 53, 31, 0.18);
  --shadow: 0 24px 60px rgba(45, 37, 29, 0.12);
  --header-h: calc(2rem + clamp(3rem, 6vw, 3.9rem));
  --site-max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(216, 178, 110, 0.24), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/patterns/pattern.svg") repeat;
  background-size: 800px 800px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

main {
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 247, 239, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  height: clamp(3rem, 6vw, 3.9rem);
  width: auto;
  max-width: min(9rem, 38vw);
  object-fit: contain;
}

.site-header__end {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  gap: 1.25rem;
}

.site-header__cta {
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

.lang-switch {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.lang-switch:hover {
  color: var(--brand);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--brand);
}

.main-nav a.is-active,
.main-nav a[aria-current="location"] {
  color: var(--dark-gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 1.15rem;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-body {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--dark-gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brand-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 16ch;
  font-size: clamp(4rem, 10vw, 4.75rem);
}

h2 {
  font-size: clamp(2.45rem, 6vw, 3.6rem);
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--dark-gold) !important;
}

.hero p,
.section-heading p,
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.button-primary {
  background: var(--brand);
  color: #fffaf2;
  box-shadow: 0 14px 30px rgba(142, 79, 47, 0.26);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--brand-dark);
  background: rgba(255, 253, 248, 0.72);
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 46rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(135deg, #d8b26e, #8e4f2f);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-media {
  position: relative;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(135deg, #d8b26e, #8e4f2f);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-media__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.feature-media__slide {
  display: none;
}

.feature-media__slide.is-active {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: feature-media-fade-in 0.2s ease;
}

@keyframes feature-media-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.feature-media__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.feature-media__slide.is-active img {
  cursor: zoom-in;
}

.feature-media__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--brand-dark);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-media__control:hover {
  background: var(--brand);
  border-color: transparent;
  color: #fffaf2;
}

.feature-media__control--prev {
  left: 1rem;
}

.feature-media__control--next {
  right: 1rem;
}

.feature-media__control svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-media__progress {
  display: none;
}

.hero-media__progress {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 3;
  width: 45px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.35);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-media__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 253, 248, 0.92);
  animation: hero-media-progress var(--hero-autoplay-ms, 6s) linear forwards;
}

@keyframes hero-media-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media__progress-bar {
    width: 100%;
    animation: none;
    opacity: 0.45;
  }
}

.feature-media-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
}

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

.feature-media__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(45, 37, 29, 0.08);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.feature-media__thumb:hover {
  border-color: rgba(142, 79, 47, 0.35);
}

.feature-media__thumb.is-active {
  border-color: var(--brand);
}

.feature-media__thumb:not(.is-active) {
  opacity: 0.72;
}

.feature-media__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(20, 16, 12, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.feature-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.feature-lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(1200px, 100%);
  margin: 0;
}

.feature-lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  border-radius: 1rem;
  object-fit: contain;
}

.feature-lightbox__caption {
  max-width: 42rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.95rem;
  text-align: center;
}

.feature-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: #fffaf2;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-lightbox__close:hover {
  background: var(--brand);
  border-color: transparent;
}

.feature-lightbox__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: #fffaf2;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-lightbox__control:hover {
  background: var(--brand);
  border-color: transparent;
}

.feature-lightbox__control--prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.feature-lightbox__control--next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

.feature-lightbox__control svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-media__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.hero-media .hero__slide {
  display: none;
}

.hero-media .hero__slide.is-active {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: hero-media-fade-in 0.2s ease;
}

@keyframes hero-media-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-media .hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-media img.is-hidden {
  display: none;
}

.hero-media figcaption {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
}

.hero-media__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--brand-dark);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-media__control:hover {
  background: var(--brand);
  border-color: transparent;
  color: #fffaf2;
}

.hero-media__control--prev {
  left: 1rem;
}

.hero-media__control--next {
  right: 1rem;
}

.hero-media__control svg {
  width: 1.25rem;
  height: 1.25rem;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

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

.cards--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.card,
.contact-card,
.directions,
.map-card,
.town-services {
  background: var(--surface);
  border: none;
  border: 2px solid var(--accent);
  border-radius: 1rem;
  box-shadow: none;
}

.card {
  overflow: hidden;
}

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

.card-body {
  padding: 1.5rem;
}

.card-body p {
  color: var(--muted);
}

.structure-feature {
  margin-top: 0.5rem;
  padding: 0 0 0 clamp(1.5rem, 4vw, 2.5rem);
  border: none;
  border-left: 3px solid #d8b26e;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.structure-feature+.structure-feature {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.structure-feature__content h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.structure-feature__content p {
  color: var(--muted);
}

.feature-media__thumbs--scroll {
  display: flex;
  gap: 0.65rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.feature-media__thumbs--scroll .feature-media__thumb {
  flex: 0 0 clamp(4.5rem, 8vw, 6.5rem);
}

.services {
  margin-top: 1.25rem;
}

.rooms+.services {
  margin-top: 2.25rem;
}

.rooms {
  margin-top: 1.25rem;
}

.rooms-section__title {
  margin: 1rem 0 0.65rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rooms .services__heading+.rooms-section__title {
  margin-top: 0.75rem;
}

.rooms-section__title+.services-list {
  margin-bottom: 0;
}

.services__heading {
  margin: 0 0 0.75rem;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
}

.services-list__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--dark-gold);
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-dark) !important;
  font-weight: 800;
}

.highlight__icon {
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  color: var(--dark-gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-section>* {
  min-width: 0;
}

.structure-feature.split-section {
  background: transparent;
}

.feature-media {
  min-height: 28rem;
  width: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 30rem;
  border: 0;
}

.map-card a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  color: var(--dark-gold) !important;
  font-weight: 800;
  text-decoration: none;
}

.map-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.map-card a:hover {
  color: var(--brand);
}

.directions {
  padding: 1.5rem;
}

.directions h3 {
  margin-bottom: 1.25rem;
}

.directions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.directions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.directions-list__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.15rem;
  color: var(--dark-gold);
}

.directions-list p {
  margin: 0;
  color: var(--muted);
}

.directions-list strong {
  color: var(--brand-dark);
}

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

.town-services {
  margin-top: 1rem;
  padding: 1.5rem;
}

.town-services h3 {
  margin-bottom: 1.25rem;
}

.town-services .services-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.town-services .services-list li {
  font-size: 1.15rem;
}

.town-services .services-list__icon {
  width: 2rem;
  height: 2rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  text-align: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.contact-section__inner {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 22rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto clamp(1rem, 3vw, 2rem);
  padding: 1.5rem;
}

.contact-label {
  margin: 0.25rem 0 0.4rem;
  color: var(--brand) !important;
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.contact-placeholder {
  opacity: 0.72;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.availability {
  margin: 1rem 0 1.5rem;
}

.full-width {
  width: 100%;
}

.site-footer {
  width: 100%;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 247, 239, 0.9);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
}

.site-footer__end {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  gap: 1.25rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__end {
    gap: 0.65rem;
  }

  .site-header__cta {
    min-height: 2.6rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    width: auto;
  }

  .brand img {
    max-width: min(8rem, 36vw);
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 9;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem clamp(1rem, 4vw, 4rem) 1.25rem;
    background: rgba(251, 247, 239, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer__end {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-top,
  .split-section,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-top {
    display: contents;
  }

  .hero-intro {
    order: 1;
    width: auto;
  }

  .hero-media {
    order: 2;
    height: 32rem;
  }

  .hero-body {
    order: 3;
  }

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

  .feature-media {
    min-height: 24rem;
  }
}

@media (min-width: 1025px) {
  .hero-intro {
    width: 430px;
  }

  .split-section {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.25rem 1rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  .button {
    width: 100%;
  }

  .town-services .services-list {
    grid-template-columns: 1fr;
  }

  .site-header__cta {
    min-height: 2.5rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    width: auto;
  }

  .hero-media {
    height: 26rem;
    border-radius: 1.2rem;
  }

  .feature-media {
    min-height: 19rem;
    border-radius: 1.2rem;
  }

  .map-card iframe {
    min-height: 22rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.85rem;
  }
}

.policy-page {
  width: min(720px, 100%);
  margin-inline: auto;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.policy-page h1 {
  max-width: none;
  margin-bottom: 0.75rem;
}

.policy-page h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--dark-gold);
  margin-top: 2.5rem;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  font-size: 1.06rem;
}

.policy-page ul {
  padding-left: 1.25rem;
}

.policy-page a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.policy-page a:hover {
  color: var(--brand-dark);
}

.policy-page code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
  background: rgba(96, 53, 31, 0.08);
}

.policy-meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a[aria-current="page"] {
  color: var(--brand);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 200;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(45, 37, 29, 0.1);
  backdrop-filter: blur(18px);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
}

.cookie-banner__text {
  flex: 1 1 16rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-banner__accept {
  flex-shrink: 0;
  width: auto;
}

.summary-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255, 253, 248, 0.72);
}

.summary-box__title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
}

.summary-box__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.summary-box__list li + li {
  margin-top: 0.35rem;
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.faq-section .section-heading {
  width: 100%;
  max-width: 54rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 54rem;
  margin-inline: auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(255, 253, 248, 0.72);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-phone,
.contact-phone-hours {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.contact-phone a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}