:root {
  --color-primary: #185446;
  --color-primary-dark: #194641;
  --color-secondary: #d8e1cc;
  --color-bg: #f6f4f1;
  --color-surface: #ffffff;
  --color-text: #39524f;
  --color-text-muted: #6f7e7b;
  --color-accent: #f4714b;
  --color-accent-soft: #f6c7b8;
  --color-border: #e6e1d8;
  --shadow-soft: 0 14px 36px rgba(12, 58, 49, 0.06);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 241, 0.97);
  border-bottom: 1px solid rgba(25, 70, 65, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 70px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: var(--color-primary-dark);
  color: #fff;
  font-family: "Cormorant", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  color: var(--color-primary-dark);
  font-family: "Cormorant", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 0.95;
}

.brand-text small {
  color: var(--color-text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--color-primary-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-accent);
}

.main-nav a[aria-current="page"] {
  color: var(--color-accent);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.55rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-solid {
  background: var(--color-primary);
  color: #fff;
  box-shadow: none;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--color-primary-dark);
}

.button-outline {
  border-color: var(--color-border);
  background: rgba(255, 253, 248, 0.82);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.hero {
  padding: 0;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(25, 70, 65, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 70px);
  max-height: 820px;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.page-hero {
  padding: 3.4rem 0 2.25rem;
}

.page-hero-grid,
.two-column,
.info-grid,
.cta-band,
.cta-actions {
  display: grid;
}

.page-hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 12ch;
}

.page-hero-media {
  min-height: 420px;
}

.page-intro {
  padding: 3rem 0 1rem;
}

.page-intro-compact {
  padding-bottom: 0;
}

.narrow-intro {
  max-width: 760px;
}

.page-intro h1 {
  font-size: clamp(2.55rem, 4.4vw, 4.5rem);
  max-width: 13ch;
}

.page-intro-compact h1 {
  font-size: clamp(2.4rem, 4vw, 3.65rem);
}

.narrow-intro h1 {
  max-width: 12ch;
}

.content-page {
  padding-top: 0;
}

.content-page .section {
  padding: 1.8rem 0;
}

.page-title {
  max-width: 760px;
  margin-bottom: 0.75rem;
}

.content-page > .page-title {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.page-title h1 {
  font-size: clamp(3.8rem, 6.2vw, 6rem);
  max-width: 12ch;
  line-height: 0.96;
}

.page-title p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: 520px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(25, 70, 65, 0.1);
}

.inner-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.8rem clamp(2rem, 3.8vw, 4.5rem);
}

.inner-hero-copy h1 {
  max-width: 9.8ch;
  font-size: clamp(3.8rem, 6.2vw, 6rem);
  line-height: 0.96;
}

.inner-hero-copy p:not(.section-kicker) {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.inner-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #eeeae3;
}

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 70, 65, 0) 50%, rgba(25, 70, 65, 0.16) 100%);
  pointer-events: none;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-list,
.simple-image-band,
.simple-image-pair {
  display: grid;
}

.simple-image-band .photo-card {
  min-height: 420px;
}

.simple-image-pair {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.simple-image-pair .photo-card {
  min-height: 360px;
}

.booking-form {
  padding: 1.8rem;
}

.contact-simple {
  max-width: 820px;
}

.content-page > .page-title + .section {
  padding-top: 0;
}

.booking-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(216, 221, 210, 0.9);
  color: var(--color-text-muted);
}

.booking-notes p {
  margin: 0;
}

.booking-notes strong {
  color: var(--color-primary-dark);
}

.booking-notes a {
  color: var(--color-primary-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}

.detail-list li + li {
  margin-top: 0.45rem;
}

.experience-list {
  gap: 0.9rem;
}

.experience-row {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(252, 251, 248, 0.64);
  border: 1px solid rgba(216, 221, 210, 0.75);
  border-left: 4px solid rgba(217, 164, 65, 0.8);
}

.experience-row p {
  margin: 0;
  color: var(--color-text-muted);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-primary-dark);
}

h1 {
  font-size: clamp(4rem, 8.1vw, 7.35rem);
  max-width: 9.4ch;
}

h2 {
  font-size: clamp(2.25rem, 3.9vw, 4.1rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  line-height: 1.7;
}

strong,
.button,
.section-kicker,
.eyebrow,
.feature-number,
.photo-label,
.gallery-card span,
.tag-group span {
  letter-spacing: -0.01em;
}

.hero-lead,
.section-heading p,
.split-copy p,
.intro-grid p,
.contact-grid p,
.page-copy p,
.page-hero-copy p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 4.8rem clamp(2rem, 3.8vw, 4.5rem);
  background: var(--color-bg);
}

.hero-copy h1 {
  margin-right: 0;
}

.hero-copy .hero-lead {
  max-width: 410px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-text-muted);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(242, 109, 79, 0.12);
}

.hero-media,
.hero-stack,
.mosaic,
.gallery-grid,
.feature-grid,
.experience-grid,
.contact-grid,
.intro-grid,
.split-layout {
  display: grid;
}

.hero-media {
  display: block;
  gap: 0;
  padding: 0;
  background: #eeeae3;
}

.hero-stack {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-card,
.gallery-card,
.feature-card,
.experience-card,
.contact-card {
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(221, 216, 205, 0.95);
  box-shadow: var(--shadow-soft);
}

.photo-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(47, 107, 61, 0.06), rgba(31, 77, 43, 0.34)),
    linear-gradient(135deg, #d6e5d4 0%, #afc7a9 45%, #6c9673 100%);
}

.photo-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 43, 24, 0.02) 18%, rgba(19, 43, 24, 0.42) 100%);
}

.photo-card.alt {
  background:
    linear-gradient(180deg, rgba(47, 107, 61, 0.08), rgba(31, 77, 43, 0.3)),
    linear-gradient(135deg, #eef1df 0%, #ceddad 48%, #90aa71 100%);
}

.photo-main {
  min-height: 540px;
  height: 100%;
  max-height: none;
}

.hero .photo-card {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero .photo-card::after {
  background: linear-gradient(180deg, rgba(25, 70, 65, 0) 50%, rgba(25, 70, 65, 0.16) 100%);
}

.hero .photo-label {
  display: none;
}

.photo-small {
  min-height: 180px;
}

.tall {
  min-height: 360px;
}

.photo-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.88);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-card img,
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-strip,
.section {
  padding: 2.5rem 0;
}

.home-purpose {
  padding-top: 2.8rem;
  padding-bottom: 1.2rem;
}

.home-purpose + .section {
  padding-top: 1.2rem;
}

.image-break {
  position: relative;
  height: min(56vw, 620px);
  min-height: 420px;
  overflow: hidden;
  background: #eeeae3;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 70, 65, 0) 45%, rgba(25, 70, 65, 0.18) 100%);
}

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

.two-column {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.page-copy > :first-child {
  margin-top: 0;
}

.intro-grid {
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(221, 216, 205, 0.95);
}

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

.section-heading.narrow {
  max-width: 560px;
}

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

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

.feature-card,
.experience-card,
.info-card {
  padding: 1.6rem;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card p,
.experience-card p,
.info-card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.info-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(221, 216, 205, 0.95);
}

.soft-section {
  background: #ece8df;
}

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

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.tag-group span {
  padding: 0.7rem 1rem;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(221, 216, 205, 0.95);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.mosaic .tall {
  grid-row: span 2;
}

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

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

.gallery-grid-expanded .gallery-card {
  min-height: 255px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(47, 107, 61, 0.04), rgba(31, 77, 43, 0.22)),
    linear-gradient(135deg, #f1f2e9 0%, #cfdbc4 52%, #9fbc98 100%);
}

.gallery-card span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.55rem 0.75rem;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.88);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.contact-section {
  padding-bottom: 4.5rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  padding: 1.4rem;
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--color-text);
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(47, 107, 61, 0.18);
  border-color: var(--color-primary);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.section-actions.left {
  justify-content: flex-start;
}

.cta-band {
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-accent);
  border: 1px solid rgba(242, 109, 79, 0.28);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band p:not(.section-kicker) {
  max-width: 620px;
}

.cta-band .button-solid {
  background: var(--color-primary-dark);
}

.cta-band .button-outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: #fff;
}

.cta-actions {
  grid-auto-flow: column;
  gap: 0.85rem;
  align-items: center;
}

.single-column {
  grid-template-columns: 1fr;
}

.site-footer {
  padding: 0 0 1rem;
  background: #f6f4f1;
  border-top: 1px solid rgba(221, 216, 205, 0.95);
}

.site-footer > .container {
  width: 100%;
  max-width: none;
}

.footer-grid,
.footer-links,
.footer-bottom {
  display: grid;
}

.footer-grid {
  grid-template-columns: 1.45fr 0.72fr 0.82fr 1.08fr;
  gap: 0;
  align-items: start;
  border-left: 1px solid rgba(221, 216, 205, 0.95);
  border-bottom: 1px solid rgba(221, 216, 205, 0.95);
}

.footer-grid > div {
  min-height: 275px;
  padding: clamp(1.7rem, 2.7vw, 2.45rem);
  border-right: 1px solid rgba(221, 216, 205, 0.95);
}

.footer-brand-block {
  background: var(--color-surface);
}

.footer-brand {
  margin-bottom: 1.35rem;
}

.footer-grid h3 {
  margin-bottom: 1.1rem;
  color: var(--color-primary-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1;
}

.footer-links {
  gap: 0.82rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--color-primary-dark);
}

.footer-copy {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-meta {
  margin: 1rem 0 0;
  max-width: 330px;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-cta {
  margin-top: 1.35rem;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0;
  padding: 1rem clamp(1rem, 3.5vw, 3rem) 0;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .inner-hero,
  .page-hero-grid,
  .simple-image-pair,
  .two-column,
  .split-layout,
  .contact-grid,
  .intro-grid,
  .feature-grid,
  .experience-grid,
  .gallery-grid,
  .footer-grid,
  .info-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .photo-main {
    min-height: 360px;
  }

  .hero-grid {
    min-height: auto;
    max-height: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 4rem 0 2.5rem;
  }

  .hero-copy h1 {
    margin-right: 0;
  }

  .hero-media {
    padding: 0 0 3rem;
  }

  .inner-hero {
    min-height: auto;
  }

  .inner-hero-copy {
    padding: 4rem clamp(1.5rem, 6vw, 3rem) 2.5rem;
  }

  .inner-hero-copy h1 {
    max-width: none;
  }

  .inner-hero-media {
    min-height: 420px;
  }

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

}

@media (max-width: 760px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
    min-height: auto;
    padding: 0.75rem 0 0.7rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    order: initial;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.65rem 0.95rem;
    font-size: 0.58rem;
    overflow: visible;
    padding: 0.25rem 0 0;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 40px;
    padding: 0.7rem 0.9rem;
    font-size: 0.56rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: 0;
    background: linear-gradient(90deg, var(--color-bg) 0 42%, #eeeae3 42% 100%);
  }

  .hero .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-copy {
    padding-top: 2.3rem;
    padding-bottom: 1.75rem;
  }

  .inner-hero-copy {
    padding: 2.25rem 0 1.6rem;
  }

  .inner-hero-media {
    min-height: 280px;
  }

  .photo-main {
    height: 300px;
    min-height: 300px;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.35rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-lead,
  .section-heading p,
  .split-copy p,
  .intro-grid p,
  .contact-grid p,
  .page-copy p,
  .page-hero-copy p {
    font-size: 0.92rem;
  }

  .hero-actions {
    margin: 1.35rem 0 0;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .section {
    padding: 1.85rem 0;
  }

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

  .feature-card,
  .experience-card,
  .info-card {
    padding: 1.2rem;
  }

  .feature-number {
    margin-bottom: 0.65rem;
  }

  .image-break {
    min-height: 300px;
    height: 300px;
  }

  .tag-group {
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .tag-group span {
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
  }

  .cta-band {
    padding: 1.4rem;
  }

  .hero-stack,
  .gallery-grid,
  .mosaic,
  .footer-bottom,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-items: start;
  }

  .footer-grid {
    border-left: 0;
    border-top: 1px solid rgba(221, 216, 205, 0.95);
    border-bottom: 0;
  }

  .footer-grid > div {
    min-height: auto;
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(221, 216, 205, 0.95);
  }

  .footer-brand-block {
    background: transparent;
  }

  .footer-brand {
    margin-bottom: 0.85rem;
  }

  .footer-grid h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
  }

  .footer-links {
    gap: 0.55rem;
    font-size: 0.7rem;
  }

  .footer-copy {
    font-size: 0.84rem;
  }

  .footer-meta {
    margin-top: 0.75rem;
    font-size: 0.66rem;
  }

  .footer-contact {
    font-size: 0.72rem;
  }

  .footer-cta {
    width: 100%;
    margin-top: 1rem;
  }

  .cta-actions {
    grid-auto-flow: row;
  }

  .booking-form {
    order: -1;
  }

  .booking-notes {
    grid-template-columns: 1fr;
  }

  .gallery-grid-expanded .gallery-card {
    min-height: 240px;
  }

  .mosaic .tall {
    grid-row: auto;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }
}
