:root {
  --paper: #f5efe4;
  --paper-strong: #fbf8f1;
  --sage: #879a61;
  --sage-dark: #66784a;
  --pine: #24362f;
  --moss: #53634c;
  --stone: #d9ccb8;
  --clay: #b88f67;
  --mist: #e7ebdf;
  --ink: #2d342c;
  --shadow: rgba(53, 42, 30, 0.14);
  --line: rgba(64, 78, 55, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 143, 103, 0.12), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(135, 154, 97, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7f3ea 0%, #f2ecdf 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.about-page {
  min-height: 100vh;
}

.booking-page {
  background: #ffffff;
}

.page-header,
main,
.page-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-header {
  padding: 1.4rem 0 1rem;
}

.page-nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.6rem;
}

.page-nav-drawer {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem 1.6rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
  color: var(--pine);
  z-index: 1;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.brand-mark {
  width: 4.9rem;
  flex: 0 0 auto;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.menu-toggle {
  display: none;
}

.page-nav {
  display: flex;
  width: clamp(15.5rem, 22vw, 18.75rem);
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 54, 47, 0.88);
}

.page-nav-left {
  justify-content: flex-start;
  justify-self: end;
  padding-left: 0;
  padding-right: clamp(1.45rem, 2.7vw, 2.35rem);
}

.page-nav-right {
  justify-content: flex-start;
  justify-self: start;
  padding-left: clamp(1.45rem, 2.7vw, 2.35rem);
  padding-right: 0;
}

.page-nav-left a:last-child {
  margin-left: auto;
  margin-right: clamp(1.25rem, 2vw, 2.1rem);
}

.page-nav-right a:first-child {
  margin-left: clamp(1.25rem, 2vw, 2.1rem);
  margin-right: auto;
}

.page-nav a {
  position: relative;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: rgba(102, 120, 74, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.page-nav a:hover::after,
.page-nav a:focus-visible::after {
  transform: scaleX(1);
}

.page-nav a:hover,
.page-nav a:focus-visible {
  color: var(--sage-dark);
  transform: translateY(-1px);
}

.page-nav a[aria-current="page"] {
  color: var(--sage-dark);
}

.page-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand-link:hover,
.brand-link:focus-visible {
  transform: translateY(-1px);
  opacity: 1;
}

.brand-link:hover .brand-mark,
.brand-link:focus-visible .brand-mark {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(36, 54, 47, 0.16));
}

main {
  padding-bottom: 4rem;
}

.intro-section {
  padding: 2.4rem 0 2rem;
}

.intro-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.intro-image {
  margin: 0;
  position: relative;
  z-index: 1;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: auto auto -1.5rem -1.25rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(184, 143, 103, 0.18);
  z-index: -1;
}

.intro-image img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 2rem 2rem 7rem 2rem;
  box-shadow: 0 28px 60px var(--shadow);
}

.intro-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 14rem),
    linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #f8f5ee;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(74, 86, 53, 0.24);
}

.intro-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-panel h1,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.intro-panel h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  max-width: 12ch;
}

.lead {
  margin-top: 1.35rem;
  font-size: 1.06rem;
}

.intro-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  max-width: 34rem;
  line-height: 1.75;
}

.intro-actions {
  position: relative;
  z-index: 1;
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (min-width: 981px) {
  .intro-shell {
    align-items: stretch;
  }

  .intro-image {
    display: flex;
    height: 100%;
  }

  .intro-image img {
    height: 100%;
  }

  .intro-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }
}

.button {
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button-solid {
  background: var(--paper-strong);
  color: var(--sage-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 248, 237, 0.34);
  color: #f8f5ee;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(75, 62, 48, 0.12);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 248, 237, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-row {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  padding: 1.3rem 1.4rem 1.5rem;
  border-top: 1px solid rgba(102, 120, 74, 0.22);
  background: rgba(251, 248, 241, 0.7);
  border-radius: 1.4rem;
  box-shadow: 0 12px 30px rgba(75, 62, 48, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.highlight-card span {
  display: block;
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: var(--pine);
}

.highlight-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(45, 52, 44, 0.82);
}

.highlight-card:hover,
.highlight-card:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 36px rgba(75, 62, 48, 0.1);
}

.content-section {
  padding: 4.5rem 0 0;
}

.section-heading {
  width: min(48rem, 100%);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.narrow {
  width: min(42rem, 100%);
}

.section-kicker {
  color: var(--sage-dark);
}

.section-heading h2 {
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  color: var(--sage);
}

.section-heading p {
  margin: 1rem 0 0;
  line-height: 1.8;
  color: rgba(45, 52, 44, 0.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: 0 22px 50px rgba(75, 62, 48, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.feature-card img {
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  transition: transform 520ms ease;
}

.feature-copy {
  padding: 1.45rem;
}

.feature-copy h3 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.feature-copy p {
  margin: 0;
  line-height: 1.72;
}

.warm-card {
  background: linear-gradient(180deg, #faf4ea 0%, #f2e7d7 100%);
}

.light-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4efe6 100%);
}

.sage-card {
  background: linear-gradient(180deg, #eef1e6 0%, #e1e8d5 100%);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(75, 62, 48, 0.14);
}

.feature-card:hover img,
.feature-card:focus-within img {
  transform: scale(1.03);
}

.gallery-section {
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 3.5rem 0 auto;
  height: calc(100% - 3.5rem);
  background: rgba(255, 255, 255, 0.36);
  border-radius: 2rem;
  z-index: -1;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(75, 62, 48, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 560ms ease;
}

.gallery-item figcaption {
  padding: 1rem 1rem 1.1rem;
  line-height: 1.55;
  color: rgba(45, 52, 44, 0.78);
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(75, 62, 48, 0.12);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.04);
}

.item-wide {
  grid-column: span 6;
}

.item-wide img {
  aspect-ratio: 1.3 / 1;
}

.item-tall {
  grid-column: span 6;
}

.item-tall img {
  aspect-ratio: 1.3 / 1;
}

.item-small {
  grid-column: span 4;
}

.item-small img {
  aspect-ratio: 1 / 1;
}

.item-medium {
  grid-column: span 4;
}

.item-medium img {
  aspect-ratio: 1 / 1;
}

.testimonials-section {
  padding-bottom: 2rem;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.quote-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  height: 100%;
  padding: 1.6rem 1.55rem 1.5rem;
  border-radius: 1.45rem;
  background: rgba(252, 250, 245, 0.88);
  box-shadow: 0 20px 46px rgba(75, 62, 48, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.quote-offset-top {
  margin-top: 0;
}

.quote-offset-top-large {
  margin-top: 0;
}

.quote-accent {
  grid-column: span 2;
  background: rgba(252, 250, 245, 0.88);
}

.quote-mark {
  display: inline-block;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.quote-card p {
  margin: 0.25rem 0 1.2rem;
  line-height: 1.8;
  color: rgba(45, 52, 44, 0.82);
}

.quote-card strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--sage-dark);
}

.quote-card:hover,
.quote-card:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 24px 50px rgba(75, 62, 48, 0.12);
}

.quotes-grid .quote-card:nth-child(4),
.quotes-grid .quote-card:nth-child(5) {
  grid-column: span 3;
}

.page-footer {
  padding: 0 0 2.5rem;
  color: rgba(45, 52, 44, 0.82);
}

.page-footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(64, 78, 55, 0.12);
}

.footer-home-link,
.footer-legal a {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine);
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.footer-copy {
  margin: 0;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
}

.footer-legal a[aria-current="page"] {
  color: var(--sage-dark);
}

.footer-home-link:hover,
.footer-home-link:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--sage-dark);
  transform: translateY(-1px);
}

.booking-main {
  width: min(1280px, calc(100% - 2rem));
  padding: 1.5rem 0 3rem;
}

.contact-main {
  width: min(760px, calc(100% - 2rem));
  min-height: calc(100vh - 8.5rem);
  display: grid;
  align-items: center;
  padding: 2rem 0 4rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.contact-map {
  min-height: 31rem;
  overflow: hidden;
  border-radius: 2.1rem;
  box-shadow: 0 24px 55px rgba(75, 62, 48, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: #ffffff;
}

.contact-block {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 2.1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(135, 154, 97, 0.18) 0%, rgba(184, 143, 103, 0.18) 100%),
    rgba(251, 248, 241, 0.82);
  box-shadow: 0 24px 55px rgba(75, 62, 48, 0.1);
  text-align: center;
}

.contact-block h1 {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  color: var(--pine);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(64, 78, 55, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.contact-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
}

.contact-item:hover,
.contact-item:focus-within {
  transform: translateY(-3px);
  border-color: rgba(102, 120, 74, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(75, 62, 48, 0.08);
}

.booking-shell {
  min-height: calc(100vh - 8.5rem);
  background: #ffffff;
}

.embed-consent {
  display: grid;
  place-items: center;
}

.embed-consent-body {
  width: min(34rem, calc(100% - 2rem));
  text-align: center;
}

.embed-consent h1,
.embed-consent h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--pine);
}

.embed-consent h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.embed-consent h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.embed-consent p {
  margin: 0;
  line-height: 1.8;
  color: rgba(45, 52, 44, 0.82);
}

.embed-consent .button {
  margin-top: 1.5rem;
}

.embed-consent-hint {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.embed-consent-hint a,
.embed-noscript a,
.legal-link {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 0.14rem;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.embed-noscript {
  width: min(30rem, calc(100% - 2rem));
  margin: 1rem auto 0;
  text-align: center;
}

.embed-consent iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.booking-embed {
  display: block;
  width: 100%;
  min-height: 500px;
  height: auto;
  aspect-ratio: 1280 / 1000;
  border: 0;
  background: #fff;
}

.legal-main {
  width: min(940px, calc(100% - 2rem));
  padding: 2rem 0 4rem;
}

.legal-hero {
  margin-bottom: 1.5rem;
  padding: clamp(1.9rem, 4vw, 2.8rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(135, 154, 97, 0.22) 0%, rgba(184, 143, 103, 0.2) 100%),
    rgba(251, 248, 241, 0.88);
  box-shadow: 0 22px 50px rgba(75, 62, 48, 0.08);
}

.legal-hero h1,
.legal-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--pine);
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
}

.legal-hero p {
  margin: 1rem 0 0;
  line-height: 1.8;
  color: rgba(45, 52, 44, 0.8);
}

.legal-shell {
  display: grid;
  gap: 1rem;
}

.legal-section {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(75, 62, 48, 0.06);
}

.legal-section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.legal-section p,
.legal-section li,
.legal-section dd {
  line-height: 1.78;
  color: rgba(45, 52, 44, 0.82);
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section dl:last-child {
  margin-bottom: 0;
}

.legal-definition {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
}

.legal-definition div {
  display: grid;
  grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
  gap: 0.45rem 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(64, 78, 55, 0.09);
}

.legal-definition div:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-definition dt {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.legal-definition dd {
  margin: 0;
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.legal-note {
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(102, 120, 74, 0.4);
  background: rgba(245, 239, 228, 0.7);
  border-radius: 0 1rem 1rem 0;
}

.placeholder {
  color: #7c5b3d;
  font-style: italic;
}

@media (max-width: 1024px) {
  .page-header,
  main,
  .page-footer {
    width: calc(100% - 1.6rem);
  }

  .page-header {
    padding-top: 1.1rem;
  }

  .page-nav-shell {
    gap: 0.9rem 1.1rem;
  }

  .page-nav-drawer {
    gap: 0.9rem 1.1rem;
  }

  .brand-mark {
    width: 4.4rem;
  }

  .page-nav {
    width: clamp(13.4rem, 24vw, 16.2rem);
    font-size: 0.84rem;
    letter-spacing: 0.11em;
  }

  .page-nav-left a:last-child {
    margin-right: clamp(1rem, 1.7vw, 1.65rem);
  }

  .page-nav-right a:first-child {
    margin-left: clamp(1rem, 1.7vw, 1.65rem);
  }

  .page-nav-left {
    padding-right: clamp(1rem, 2vw, 1.7rem);
  }

  .page-nav-right {
    padding-left: clamp(1rem, 2vw, 1.7rem);
  }

  .intro-section {
    padding-top: 1.8rem;
  }

  .intro-shell {
    gap: 1.5rem;
  }

  .content-section {
    padding-top: 3.8rem;
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .booking-main,
  .legal-main,
  .contact-main {
    width: calc(100% - 1.6rem);
  }

  .contact-main {
    padding-top: 1.5rem;
  }

  .contact-map {
    min-height: 26rem;
  }
}

@media (max-width: 980px) {
  .intro-shell,
  .feature-grid,
  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel h1 {
    max-width: none;
  }

  .highlight-row {
    grid-template-columns: 1fr;
  }

  .warm-card,
  .sage-card,
  .quote-offset-top,
  .quote-offset-top-large {
    margin-top: 0;
  }

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

  .item-wide,
  .item-tall,
  .item-small,
  .item-medium {
    grid-column: span 1;
  }

  .quote-accent {
    grid-column: span 1;
  }

  .quotes-grid .quote-card:nth-child(4),
  .quotes-grid .quote-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 840px) {
  .page-header,
  main,
  .page-footer {
    width: calc(100% - 1.25rem);
  }

  .legal-main {
    width: calc(100% - 1.25rem);
    padding-top: 1.2rem;
    padding-bottom: 1.8rem;
  }

  .booking-main {
    width: calc(100% - 1.25rem);
    padding-top: 1rem;
    padding-bottom: 1.8rem;
  }

  .contact-main {
    width: calc(100% - 1.25rem);
    min-height: auto;
    padding-top: 1.2rem;
    padding-bottom: 1.8rem;
  }

  .contact-map,
  .contact-block {
    border-radius: 1.7rem;
  }

  .contact-map {
    min-height: 24rem;
  }

  .booking-shell {
    min-height: auto;
  }

  .booking-embed {
    min-height: 420px;
  }

  .page-header {
    padding-top: 0.9rem;
  }

  .page-nav-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "drawer";
    justify-items: stretch;
    gap: 0.8rem 0.9rem;
  }

  .page-nav-shell.menu-ready {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand toggle";
  }

  .page-nav-shell.menu-ready.is-open {
    grid-template-areas:
      "brand toggle"
      "drawer drawer";
    align-items: center;
  }

  .page-nav-drawer {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    grid-area: drawer;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(64, 78, 55, 0.1);
  }

  .page-nav-shell.menu-ready .page-nav-drawer {
    display: none;
  }

  .page-nav-shell.menu-ready.is-open .page-nav-drawer {
    display: grid;
  }

  .brand-link {
    grid-column: auto;
    grid-row: auto;
    grid-area: brand;
    justify-self: start;
  }

  .brand-mark {
    width: 3.9rem;
  }

  .menu-toggle {
    grid-area: toggle;
    display: none;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 0.7rem;
    padding: 0.72rem 0.92rem;
    border: 1px solid rgba(64, 78, 55, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--pine);
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease,
      box-shadow 220ms ease;
  }

  .page-nav-shell.menu-ready .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(102, 120, 74, 0.24);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(75, 62, 48, 0.08);
  }

  .menu-toggle-label {
    line-height: 1;
  }

  .menu-toggle-icon {
    display: grid;
    gap: 0.24rem;
  }

  .menu-toggle-icon span {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .page-nav-shell.menu-ready.is-open .menu-toggle-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .page-nav-shell.menu-ready.is-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .page-nav-shell.menu-ready.is-open .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .page-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.78rem;
    padding: 0.95rem 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 32px rgba(75, 62, 48, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .page-nav-left,
  .page-nav-right {
    justify-content: flex-start;
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .page-nav-left a:last-child,
  .page-nav-right a:first-child {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-section {
    padding-top: 1.1rem;
  }

  .intro-shell {
    gap: 1rem;
  }

  .intro-image img {
    aspect-ratio: 1 / 1.1;
    border-radius: 1.6rem;
  }

  .intro-panel {
    padding: 1.5rem;
    border-radius: 1.7rem;
  }

  .intro-panel h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .highlight-row {
    gap: 0.8rem;
  }

  .content-section {
    padding-top: 3rem;
  }

  .section-heading {
    margin-bottom: 1.45rem;
  }

  .section-heading h2 {
    font-size: clamp(1.95rem, 7vw, 3rem);
  }

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

  .feature-card,
  .gallery-item,
  .quote-card,
  .legal-section,
  .legal-hero,
  .contact-map,
  .contact-block {
    border-radius: 1.5rem;
  }

  .contact-map {
    min-height: 19rem;
  }

  .contact-list {
    gap: 0.85rem;
  }

  .contact-item {
    padding: 1rem 1.05rem;
  }

  .embed-consent-body {
    width: min(28rem, calc(100% - 1.4rem));
  }

  .page-footer {
    padding-bottom: 1.8rem;
  }

  .page-footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-copy,
  .footer-legal {
    justify-content: flex-start;
    text-align: left;
  }

  .legal-definition div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header,
  main,
  .page-footer,
  .booking-main,
  .contact-main,
  .legal-main {
    width: calc(100% - 1rem);
  }

  .page-nav {
    font-size: 0.75rem;
    gap: 0.62rem;
  }

  .brand-mark {
    width: 3.5rem;
  }

  .menu-toggle {
    gap: 0.55rem;
    padding: 0.68rem 0.82rem;
    font-size: 0.68rem;
  }

  .menu-toggle-label {
    letter-spacing: 0.12em;
  }

  .page-nav {
    padding: 0.85rem 0.92rem;
  }

  .intro-panel {
    padding: 1.25rem;
  }

  .highlight-card,
  .feature-copy,
  .quote-card,
  .contact-item,
  .legal-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-map {
    min-height: 16rem;
  }

  .booking-embed {
    min-height: 360px;
  }

  .footer-home-link,
  .footer-legal a {
    font-size: 0.78rem;
  }
}

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

  .page-nav a,
  .page-nav a::after,
  .brand-link,
  .brand-mark,
  .menu-toggle,
  .menu-toggle-icon span,
  .button,
  .highlight-card,
  .feature-card,
  .feature-card img,
  .gallery-item,
  .gallery-item img,
  .quote-card,
  .contact-item,
  .footer-home-link,
  .footer-legal a,
  .legal-link {
    transition: none;
  }
}
