:root {
  color-scheme: light;
  --aubergine-900: #233829;
  --fig-800: #51455f;
  --lavender-700: #9580a8;
  --stone-100: #f3eee5;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sand: #e8deef;
  --ochre: #8f78aa;
  --terracotta: #6f5b8d;
  --ink: #262c27;
  --muted: #6f7068;
  --line: #e4d8c8;
  --shadow: 0 18px 45px rgb(35 56 41 / 14%);
  --radius: 8px;
  --container: 1180px;
  --font-body: "DM Sans", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--aubergine-900);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  background: rgb(251 247 239 / 94%);
  border-bottom: 1px solid rgb(221 214 201 / 80%);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--lavender-700);
  border-radius: 50%;
  background: var(--aubergine-900);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
}

.brand strong {
  display: block;
  color: var(--aubergine-900);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--aubergine-900);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--stone-100);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--aubergine-900);
  color: var(--cream);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--ochre);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--aubergine-900);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--aubergine-900);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(52 35 50 / 52%);
}

.hero-content {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 104px 0 72px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--aubergine-900);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--paper);
  font-size: 64px;
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 90%);
  font-size: 21px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--aubergine-900);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--ochre);
}

.button.secondary {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 52%);
  color: var(--paper);
}

.button.secondary:hover {
  background: var(--paper);
  color: var(--aubergine-900);
}

.button.light {
  background: var(--paper);
  color: var(--aubergine-900);
  border-color: var(--line);
}

.button.light:hover {
  border-color: var(--ochre);
  color: var(--paper);
}

.button.text {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--aubergine-900);
  border: 0;
  text-decoration: underline;
}

.button.text:hover {
  background: transparent;
  color: var(--ochre);
  transform: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgb(52 35 50 / 34%);
  color: rgb(255 255 255 / 90%);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  background: var(--aubergine-900);
  color: var(--paper);
}

.page-hero.scenic {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgb(52 35 50 / 82%), rgb(52 35 50 / 44%)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding-top: 82px;
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--paper);
  font-size: 52px;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: 20px;
}

.page-hero .eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 13px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: var(--aubergine-900);
  color: var(--paper);
}

.section.deep h2,
.section.deep h3 {
  color: var(--paper);
}

.section.deep p,
.section.deep li {
  color: rgb(255 255 255 / 80%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: 42px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section.deep .section-head p {
  color: rgb(255 255 255 / 78%);
}

.kicker {
  color: var(--ochre);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highlight-strip {
  background: var(--aubergine-900);
  color: var(--paper);
}

.facts {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 16%);
}

.fact {
  min-height: 112px;
  padding: 22px;
  background: var(--aubergine-900);
}

.fact strong {
  display: block;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 7px;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.split.reverse .media-grid,
.split.reverse .media-frame {
  order: -1;
}

.prose h2 {
  margin: 0 0 18px;
  font-size: 42px;
}

.prose h3 {
  margin: 28px 0 10px;
  font-size: 28px;
}

.prose p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.prose ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.prose li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: var(--muted);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ochre);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.media-grid img,
.media-frame img,
.stay-card img,
.activity-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-grid img {
  min-height: 210px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-grid img:first-child {
  grid-row: span 2;
  min-height: 444px;
}

.media-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.stay-card,
.story-card,
.activity-card,
.quote,
.price-card,
.contact-panel,
.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgb(52 35 50 / 8%);
}

.stay-card {
  overflow: hidden;
}

.story-card {
  overflow: hidden;
}

.stay-card figure,
.story-card figure,
.activity-card figure {
  margin: 0;
}

.stay-card .image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.story-card .image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.stay-card .body,
.story-card .body,
.activity-card .body {
  padding: 24px;
}

.stay-card h3,
.story-card h3,
.activity-card h3,
.price-card h3,
.contact-panel h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.stay-card p,
.story-card p,
.activity-card p,
.price-card p,
.contact-panel p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

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

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--fig-800);
  font-size: 13px;
  font-weight: 800;
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.spec-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgb(232 222 239 / 72%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgb(255 253 248 / 88%), rgb(251 247 239 / 72%)),
    linear-gradient(135deg, rgb(35 56 41 / 7%), rgb(149 128 168 / 11%));
}

.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--cypress-900, var(--aubergine-900));
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.16;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(149 128 168 / 34%);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgb(255 253 248 / 68%);
  color: var(--fig-800);
  font-size: 13px;
  font-weight: 800;
}

.feature {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

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

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

.quote {
  padding: 24px;
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--ochre);
  font-style: normal;
  font-weight: 900;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  overflow: hidden;
}

.activity-card .image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.activity-card .body {
  padding: 18px;
}

.activity-card h3 {
  font-size: 23px;
}

.cta-band {
  background: var(--aubergine-900);
  color: var(--paper);
}

.cta-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
}

.cta-inner h2 {
  margin: 0;
  color: var(--paper);
  font-size: 36px;
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 78%);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.price-grid,
.contact-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.contact-panel,
.step-card {
  padding: 24px;
}

.price-card .price {
  display: block;
  margin: 12px 0;
  color: var(--aubergine-900);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
}

.notice {
  border-left: 4px solid var(--ochre);
  background: var(--stone-100);
  padding: 18px 20px;
  color: var(--aubergine-900);
}

.notice p {
  margin: 0;
}

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

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.gallery-item::after {
  content: attr(aria-label);
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 6px;
  padding: 7px 9px;
  background: rgb(52 35 50 / 78%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(14 20 16 / 88%);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(100%, 1100px);
  margin: 0;
}

.lightbox img {
  max-height: 82svh;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--paper);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 10%);
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
}

.site-footer {
  background: #233829;
  color: rgb(255 255 255 / 78%);
  padding: 54px 0 28px;
}

.footer-grid {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0 0 8px;
}

.site-footer a {
  color: rgb(255 255 255 / 82%);
  text-decoration: none;
}

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

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 58%);
  font-size: 14px;
}

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

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero h1 {
    font-size: 52px;
  }

  .facts,
  .activity-grid,
  .story-card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-grid,
  .split.reverse .media-frame {
    order: 0;
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--container));
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

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

  .hero {
    min-height: 72svh;
  }

  .hero-content {
    width: min(100% - 24px, var(--container));
    padding: 86px 0 52px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 39px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 18px;
  }

  .page-hero .container {
    width: min(100% - 24px, var(--container));
    min-height: 320px;
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .section {
    padding: 62px 0;
  }

  .section.tight {
    padding: 42px 0;
  }

  .section-head h2,
  .prose h2 {
    font-size: 34px;
  }

  .facts,
  .card-grid,
  .feature-grid,
    .quotes,
    .activity-grid,
    .story-card-grid,
    .price-grid,
    .contact-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 90px;
  }

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

  .media-grid img,
  .media-grid img:first-child {
    min-height: 220px;
  }

  .cta-inner {
    width: min(100% - 24px, var(--container));
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 2026 experience refresh */
:root {
  --glass: rgb(255 248 239 / 74%);
  --glass-strong: rgb(255 255 255 / 88%);
  --shadow-soft: 0 18px 50px rgb(52 35 50 / 13%);
  --shadow-hover: 0 28px 78px rgb(52 35 50 / 22%);
  --ring: 0 0 0 1px rgb(255 255 255 / 42%) inset;
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgb(255 248 239) 0%, rgb(247 235 223) 46%, rgb(255 248 239) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgb(255 255 255 / 34%) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(90deg, rgb(52 35 50 / 3%) 0 1px, transparent 1px 118px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  min-height: 0;
  padding-top: 14px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow-soft), var(--ring);
  backdrop-filter: blur(22px) saturate(1.16);
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: var(--glass-strong);
  box-shadow: 0 12px 38px rgb(52 35 50 / 17%), var(--ring);
  transform: translateY(-4px);
}

.brand {
  min-width: 254px;
}

.brand-mark {
  width: 62px;
  height: 42px;
  border-color: rgb(52 35 50 / 18%);
  border-radius: 6px;
  background:
    url("../img/logo-le-jardin-provencal.png") center / 52px auto no-repeat,
    rgb(255 255 255 / 72%);
  color: transparent;
  text-indent: -999px;
  overflow: hidden;
}

.brand strong {
  font-size: 22px;
}

.site-nav a {
  position: relative;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  background: rgb(245 235 226 / 82%);
  box-shadow: 0 0 0 1px rgb(52 35 50 / 7%) inset;
}

.site-nav .nav-cta {
  box-shadow: 0 10px 24px rgb(52 35 50 / 18%);
}

.nav-toggle {
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 8px 22px rgb(52 35 50 / 10%);
}

.hero {
  min-height: 100svh;
  align-items: end;
  background-attachment: fixed;
  background-position: center 44%;
}

.hero::before {
  background:
    linear-gradient(90deg, rgb(45 31 45 / 86%) 0%, rgb(45 31 45 / 62%) 42%, rgb(45 31 45 / 18%) 100%),
    linear-gradient(0deg, rgb(45 31 45 / 56%) 0%, transparent 42%);
}

.hero-content {
  padding: 168px 0 128px;
}

.hero h1 {
  max-width: 780px;
  font-size: 82px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 690px;
  color: rgb(255 255 255 / 92%);
  font-size: 22px;
  text-wrap: pretty;
}

.eyebrow,
.kicker {
  letter-spacing: 0.16em;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  border-color: rgb(52 35 50 / 9%);
  box-shadow: 0 12px 28px rgb(52 35 50 / 14%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 22%), transparent);
  transition: transform 520ms ease;
}

.button:hover {
  box-shadow: 0 18px 36px rgb(52 35 50 / 20%);
}

.button:hover::after {
  transform: translateX(120%) skewX(-16deg);
}

.button.secondary {
  background: rgb(255 255 255 / 14%);
  border-color: rgb(255 255 255 / 54%);
  box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
  backdrop-filter: blur(14px);
}

.button.light {
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 10px 26px rgb(52 35 50 / 10%);
}

.button.text {
  box-shadow: none;
}

.button.text::after {
  display: none;
}

.hero-meta {
  max-width: 780px;
}

.hero-meta li {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 13%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
  backdrop-filter: blur(14px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--aubergine-900);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgb(0 0 0 / 22%), transparent);
}

.page-hero.scenic {
  background-image:
    linear-gradient(90deg, rgb(52 35 50 / 88%) 0%, rgb(52 35 50 / 58%) 48%, rgb(52 35 50 / 20%) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  min-height: 500px;
  padding-top: 158px;
  padding-bottom: 82px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: 64px;
  text-wrap: balance;
}

.page-hero p {
  text-wrap: pretty;
}

.highlight-strip {
  position: relative;
  z-index: 5;
  margin-top: -72px;
  padding: 0 0 28px;
  background: linear-gradient(180deg, transparent 0 58px, var(--aubergine-900) 58px 100%);
}

.facts {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 14%);
  box-shadow: 0 26px 70px rgb(38 24 36 / 24%);
  backdrop-filter: blur(18px);
}

.fact {
  background: rgb(52 35 50 / 84%);
}

.photo-ribbon {
  overflow: hidden;
  padding: 0 0 58px;
  background: linear-gradient(180deg, var(--aubergine-900) 0 52%, transparent 52% 100%);
}

.photo-ribbon__track {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 1.05fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.photo-ribbon img {
  width: 100%;
  height: clamp(190px, 20vw, 315px);
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius);
  box-shadow: 0 26px 64px rgb(52 35 50 / 24%);
}

.photo-ribbon img:nth-child(2),
.photo-ribbon img:nth-child(4) {
  height: clamp(160px, 17vw, 260px);
  transform: translateY(28px);
}

.section {
  position: relative;
  padding: 108px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 88%));
}

.section.deep {
  background:
    linear-gradient(135deg, #2b1d2a, var(--aubergine-900) 58%, #6f4f68);
}

.section-head h2,
.prose h2 {
  text-wrap: balance;
}

.section-head p,
.prose p {
  text-wrap: pretty;
}

.split {
  gap: clamp(34px, 5vw, 72px);
}

.media-grid {
  perspective: 900px;
}

.media-grid img,
.media-frame,
.portrait-frame {
  border: 1px solid rgb(255 255 255 / 62%);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.media-grid img:first-child {
  transform: rotate(-1.2deg);
}

.media-grid img:nth-child(2) {
  transform: translateY(22px) rotate(1.1deg);
}

.media-grid img:nth-child(3) {
  transform: translateY(-8px) rotate(0.7deg);
}

.media-grid:hover img,
.media-frame:hover,
.portrait-frame:hover {
  box-shadow: var(--shadow-hover);
  filter: saturate(1.04);
}

.media-grid:hover img:first-child {
  transform: rotate(-0.4deg) translateY(-4px);
}

.media-grid:hover img:nth-child(2),
.media-grid:hover img:nth-child(3) {
  transform: translateY(0) rotate(0deg);
}

.stay-card,
.story-card,
.activity-card,
.quote,
.price-card,
.contact-panel,
.step-card,
.notice {
  border-color: rgb(255 255 255 / 58%);
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 12px 36px rgb(52 35 50 / 10%);
  backdrop-filter: blur(12px);
}

.stay-card,
.story-card,
.activity-card,
.price-card,
.contact-panel,
.step-card,
.quote {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stay-card:hover,
.story-card:hover,
.activity-card:hover,
.price-card:hover,
.contact-panel:hover,
.step-card:hover,
.quote:hover {
  transform: translateY(-6px);
  border-color: rgb(149 128 168 / 32%);
  box-shadow: var(--shadow-hover);
}

.stay-card .image img,
.story-card .image img,
.activity-card .image img,
.gallery-item img {
  transition: transform 420ms ease, filter 420ms ease;
}

.stay-card:hover .image img,
.story-card:hover .image img,
.activity-card:hover .image img,
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.feature {
  position: relative;
  padding: 28px 0 28px 18px;
  border-top: 1px solid rgb(52 35 50 / 12%);
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ochre), var(--sand));
}

.gallery-grid {
  gap: 14px;
}

.gallery-item {
  border: 1px solid rgb(255 255 255 / 60%);
  box-shadow: 0 12px 28px rgb(52 35 50 / 11%);
}

.gallery-item::after {
  border: 1px solid rgb(255 255 255 / 20%);
  background: rgb(52 35 50 / 78%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 22%);
  backdrop-filter: blur(10px);
}

.lightbox {
  z-index: 120;
  background: rgb(12 18 14 / 90%);
  backdrop-filter: blur(18px);
}

.lightbox figure {
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 30px 100px rgb(0 0 0 / 45%);
}

.lightbox img {
  width: auto;
  max-width: 100%;
}

.cta-band {
  background:
    linear-gradient(135deg, #2b1d2a, var(--aubergine-900) 58%, #6f5b8d);
}

.cta-inner {
  min-height: 190px;
}

.site-footer {
  background: #233829;
  background-image: none;
}

.floating-booking {
  position: fixed;
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: var(--radius);
  background: rgb(251 247 239 / 84%);
  box-shadow: 0 18px 48px rgb(52 35 50 / 22%), var(--ring);
  backdrop-filter: blur(20px) saturate(1.15);
}

.floating-booking__hint {
  max-width: 190px;
  padding: 0 8px;
  color: var(--aubergine-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.floating-booking a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--aubergine-900);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.floating-booking a:hover {
  transform: translateY(-1px);
  background: var(--stone-100);
}

.floating-booking .floating-booking__primary {
  background: var(--aubergine-900);
  color: var(--paper);
}

.floating-booking .floating-booking__primary:hover {
  background: var(--ochre);
  color: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .site-nav {
    top: calc(100% + 10px);
    border-color: rgb(255 255 255 / 56%);
    background: rgb(255 248 239 / 94%);
    box-shadow: 0 20px 54px rgb(52 35 50 / 18%);
    backdrop-filter: blur(18px);
  }

  .hero {
    background-attachment: scroll;
  }

  .hero-content {
    padding-top: 146px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .page-hero h1 {
    font-size: 54px;
  }

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

  .photo-ribbon img:nth-child(2),
  .photo-ribbon img:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 8px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 38px;
    background-size: 38px auto;
  }

  .brand strong {
    max-width: 190px;
    font-size: 18px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100% - 24px, var(--container));
    padding: 132px 0 118px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .section-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-meta li {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
  }

  .page-hero .container {
    min-height: 440px;
    padding-top: 126px;
    padding-bottom: 62px;
  }

  .highlight-strip {
    margin-top: -52px;
    padding-bottom: 18px;
    background: linear-gradient(180deg, transparent 0 42px, var(--aubergine-900) 42px 100%);
  }

  .photo-ribbon {
    padding-bottom: 42px;
  }

  .photo-ribbon__track {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 12px 12px;
    scroll-snap-type: x mandatory;
  }

  .photo-ribbon img {
    flex: 0 0 78%;
    height: 220px;
    scroll-snap-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .media-grid img:first-child,
  .media-grid img:nth-child(2),
  .media-grid img:nth-child(3) {
    transform: none;
  }

  .stay-card:hover,
  .story-card:hover,
  .activity-card:hover,
  .price-card:hover,
  .contact-panel:hover,
  .step-card:hover,
  .quote:hover {
    transform: none;
  }

  .floating-booking {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .floating-booking__hint {
    display: none;
  }

  .floating-booking a {
    flex: 1;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button::after {
    transition: none !important;
  }

  .media-grid img:first-child,
  .media-grid img:nth-child(2),
  .media-grid img:nth-child(3),
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Ambient video and stronger editorial motion */
.nav-shell {
  overflow: hidden;
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0 30%, rgb(255 255 255 / 42%) 48%, transparent 66%),
    linear-gradient(135deg, rgb(149 128 168 / 18%), transparent 32%, rgb(141 106 143 / 18%) 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-65%);
  transition: opacity 240ms ease, transform 760ms ease;
}

.site-header:hover .nav-shell::before,
.site-header.is-scrolled .nav-shell::before {
  opacity: 1;
  transform: translateX(65%);
}

.brand,
.site-nav,
.nav-toggle {
  position: relative;
  z-index: 1;
}

.brand-mark {
  box-shadow: 0 10px 28px rgb(52 35 50 / 12%);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-1deg) scale(1.03);
  box-shadow: 0 18px 40px rgb(52 35 50 / 18%);
  filter: saturate(1.06);
}

.site-nav a {
  overflow: hidden;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 6px;
  background: linear-gradient(135deg, rgb(149 128 168 / 18%), rgb(141 106 143 / 14%));
  opacity: 0;
  transform: scaleX(0.72) translateY(5px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ochre), var(--sand), var(--lavender-700));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 220ms ease;
}

.site-nav a:hover::before,
.site-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

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

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--aubergine-900), var(--fig-800) 58%, var(--terracotta));
  border: 1px solid rgb(255 255 255 / 18%);
}

.site-nav .nav-cta::before {
  background: linear-gradient(135deg, rgb(255 255 255 / 16%), transparent);
}

.site-nav .nav-cta::after {
  background: var(--sand);
}

.hero.has-ambient-video,
.page-hero.has-ambient-video,
.section.deep.has-ambient-video,
.cta-band.has-ambient-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ambient-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
  pointer-events: none;
}

.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgb(52 35 50 / 90%) 0%, rgb(52 35 50 / 70%) 38%, rgb(52 35 50 / 28%) 100%),
    linear-gradient(0deg, rgb(32 22 31 / 58%) 0%, transparent 46%),
    linear-gradient(145deg, transparent 44%, rgb(234 208 173 / 14%) 100%);
  pointer-events: none;
}

.hero.has-ambient-video::after,
.page-hero.has-ambient-video .container::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: max(22px, calc((100vw - var(--container)) / 2));
  bottom: 72px;
  width: min(330px, 34vw);
  aspect-ratio: 1200 / 381;
  background: url("../img/logo-le-jardin-provencal.png") center / contain no-repeat;
  opacity: 0.12;
  filter: brightness(2.1) saturate(0.6);
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-hero.has-ambient-video .container::before {
  right: 0;
  bottom: 12px;
}

.hero-content,
.page-hero .container,
.section.deep > .container,
.cta-band .cta-inner {
  position: relative;
  z-index: 1;
}

.page-hero .container > * {
  position: relative;
  z-index: 1;
}

.section.deep.has-ambient-video::after,
.cta-band.has-ambient-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgb(43 29 42 / 88%), rgb(52 35 50 / 70%) 54%, rgb(111 91 141 / 62%)),
    linear-gradient(90deg, rgb(255 248 239 / 8%), transparent 34%, rgb(234 208 173 / 12%));
  pointer-events: none;
}

.section.deep.has-ambient-video > .container,
.cta-band.has-ambient-video .cta-inner {
  z-index: 2;
}

.section.deep .ambient-video,
.cta-band .ambient-video {
  opacity: 0.18;
  filter: saturate(0.8) contrast(1.1) brightness(0.62);
}

.section {
  overflow: hidden;
}

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

.section.alt::before,
.section.deep::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 0;
  height: 82px;
  background:
    linear-gradient(90deg, rgb(149 128 168 / 18%), rgb(234 208 173 / 22%), rgb(141 106 143 / 16%));
  clip-path: polygon(0 0, 100% 0, 100% 36%, 76% 88%, 48% 54%, 18% 100%, 0 58%);
  opacity: 0.86;
  pointer-events: none;
}

.section.deep::before {
  background:
    linear-gradient(90deg, rgb(255 248 239 / 16%), rgb(234 208 173 / 20%), rgb(141 106 143 / 22%));
  opacity: 0.48;
}

.section.alt::after {
  content: "";
  position: absolute;
  right: max(-72px, calc((100vw - var(--container)) / -2));
  bottom: 24px;
  width: min(360px, 42vw);
  aspect-ratio: 1200 / 381;
  background: url("../img/logo-le-jardin-provencal.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.highlight-strip::after,
.photo-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  z-index: 0;
  background: var(--cream);
  clip-path: polygon(0 58%, 24% 22%, 56% 72%, 82% 34%, 100% 64%, 100% 100%, 0 100%);
  pointer-events: none;
}

.highlight-strip,
.photo-ribbon {
  position: relative;
}

.facts,
.photo-ribbon__track {
  position: relative;
  z-index: 1;
}

.fact {
  transition: transform 260ms ease, background 260ms ease;
}

.fact:hover {
  transform: translateY(-4px);
  background: rgb(90 52 69 / 88%);
}

.floating-booking {
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.floating-booking:hover {
  transform: translateY(-4px);
  background: rgb(255 248 239 / 92%);
  box-shadow: 0 24px 62px rgb(52 35 50 / 28%), var(--ring);
}

@media (max-width: 1080px) {
  .hero.has-ambient-video::after,
  .page-hero.has-ambient-video .container::before {
    width: 250px;
    opacity: 0.09;
  }
}

@media (max-width: 760px) {
  .ambient-video {
    opacity: 0.22;
  }

  .hero.has-ambient-video::after,
  .page-hero.has-ambient-video .container::before,
  .section.alt::after {
    display: none;
  }

  .section.alt::before,
  .section.deep::before {
    height: 48px;
  }

  .site-nav a::after {
    left: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-video {
    display: none;
  }

  .nav-shell::before,
  .site-nav a::before,
  .site-nav a::after {
    transition: none !important;
  }
}

/* Provence green, lavender and luminous hero refinement */
:root {
  --cypress-900: #233829;
  --cypress-800: #2f4a36;
  --lavender-800: #51455f;
  --lavender-500: #9580a8;
  --warm-white: #fbf7ef;
  --light-wash: rgb(251 247 239 / 78%);
  --green-shadow: 0 24px 72px rgb(35 56 41 / 18%);
}

body {
  background:
    linear-gradient(180deg, var(--warm-white) 0%, #f3eee5 42%, var(--warm-white) 100%);
}

body::before {
  background:
    linear-gradient(118deg, rgb(255 255 255 / 36%) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(90deg, rgb(35 56 41 / 3%) 0 1px, transparent 1px 118px);
}

.nav-shell {
  border-color: rgb(255 255 255 / 54%);
  background: rgb(251 247 239 / 78%);
  box-shadow: var(--green-shadow), var(--ring);
}

.nav-shell::before {
  background:
    linear-gradient(115deg, transparent 0 28%, rgb(255 255 255 / 48%) 48%, transparent 68%),
    linear-gradient(135deg, rgb(35 56 41 / 18%), transparent 34%, rgb(149 128 168 / 20%) 100%);
}

.site-header.is-scrolled .nav-shell {
  background: rgb(251 247 239 / 92%);
  box-shadow: 0 18px 52px rgb(35 56 41 / 20%), var(--ring);
}

.site-nav a::before {
  background: linear-gradient(135deg, rgb(35 56 41 / 13%), rgb(149 128 168 / 17%));
}

.site-nav a::after {
  background: linear-gradient(90deg, var(--cypress-800), var(--lavender-500), var(--ochre));
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--cypress-900), var(--cypress-800) 48%, var(--lavender-800));
}

.ambient-video {
  z-index: 0;
  opacity: 0.22;
  filter: saturate(0.82) contrast(1.08) brightness(0.84);
}

.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  z-index: 1;
  background:
    linear-gradient(92deg, rgb(35 56 41 / 93%) 0%, rgb(35 56 41 / 82%) 34%, rgb(35 56 41 / 42%) 61%, rgb(35 56 41 / 4%) 100%),
    linear-gradient(0deg, rgb(27 34 29 / 58%) 0%, transparent 48%);
}

.hero.has-ambient-video::after,
.page-hero.has-ambient-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(104deg, transparent 0 52%, rgb(251 247 239 / 12%) 68%, rgb(234 208 173 / 32%) 82%, rgb(149 128 168 / 10%) 100%),
    linear-gradient(88deg, transparent 0 72%, rgb(255 255 255 / 18%) 86%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero.has-ambient-video .hero-content::after,
.page-hero.has-ambient-video .container::before,
.section.deep.has-ambient-video .container::after,
.cta-band.has-ambient-video .cta-inner::after,
.visual-carousel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(320px, 32vw);
  aspect-ratio: 1200 / 381;
  background: url("../img/logo-le-jardin-provencal.png") center / contain no-repeat;
  opacity: 0.11;
  filter: saturate(0.65) brightness(1.5);
  pointer-events: none;
}

.hero.has-ambient-video .hero-content::after {
  right: 0;
  bottom: -40px;
}

.page-hero.has-ambient-video .container::before {
  right: 0;
  bottom: 22px;
  z-index: 0;
  opacity: 0.12;
}

.page-hero .container > * {
  z-index: 2;
}

.section.deep.has-ambient-video::after,
.cta-band.has-ambient-video::after {
  z-index: 1;
  background:
    linear-gradient(92deg, rgb(35 56 41 / 91%) 0%, rgb(35 56 41 / 76%) 38%, rgb(35 56 41 / 34%) 68%, rgb(35 56 41 / 6%) 100%),
    linear-gradient(105deg, transparent 0 60%, rgb(251 247 239 / 13%) 76%, rgb(149 128 168 / 18%) 100%);
}

.section.deep.has-ambient-video .container::after {
  right: 0;
  bottom: -26px;
  opacity: 0.08;
  filter: brightness(2) saturate(0.4);
}

.cta-band.has-ambient-video .cta-inner::after {
  right: 0;
  bottom: 4px;
  opacity: 0.08;
  filter: brightness(2) saturate(0.4);
}

.section.alt {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 84%), rgb(255 253 248 / 92%));
}

.section.deep {
  background:
    linear-gradient(135deg, #1e3024, var(--cypress-900) 54%, #51455f);
}

.section.alt::before,
.section.deep::before {
  background:
    linear-gradient(90deg, rgb(35 56 41 / 16%), rgb(251 247 239 / 34%), rgb(149 128 168 / 18%));
}

.section.alt::after {
  opacity: 0.045;
  filter: saturate(0.45);
}

.highlight-strip,
.photo-ribbon {
  background-color: var(--cypress-900);
}

.highlight-strip {
  background: linear-gradient(180deg, transparent 0 58px, var(--cypress-900) 58px 100%);
}

.photo-ribbon {
  background: linear-gradient(180deg, var(--cypress-900) 0 52%, transparent 52% 100%);
}

.fact {
  background: rgb(35 56 41 / 88%);
}

.fact:hover {
  background: rgb(81 69 95 / 88%);
}

.visual-carousel-section {
  padding-top: 88px;
  background:
    linear-gradient(180deg, var(--warm-white), #f4eee6 52%, var(--warm-white));
}

.visual-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 186px;
  gap: 16px;
  min-height: 580px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 56%), rgb(251 247 239 / 82%)),
    linear-gradient(135deg, rgb(35 56 41 / 9%), rgb(149 128 168 / 13%));
  box-shadow: 0 30px 82px rgb(35 56 41 / 18%);
  backdrop-filter: blur(18px);
}

.visual-carousel::before {
  right: 22px;
  bottom: 20px;
  z-index: 0;
  opacity: 0.06;
}

.visual-carousel__stage {
  position: relative;
  z-index: 1;
  min-height: 556px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cypress-900);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 24%);
}

.visual-carousel__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(35 56 41 / 64%) 0%, transparent 48%, rgb(251 247 239 / 12%) 100%),
    linear-gradient(0deg, rgb(20 27 22 / 52%) 0%, transparent 52%);
  pointer-events: none;
}

.visual-carousel__stage img {
  width: 100%;
  height: 100%;
  min-height: 556px;
  object-fit: cover;
  transform: scale(1.018);
  transition: opacity 360ms ease, transform 760ms ease, filter 760ms ease;
  filter: saturate(1.02) contrast(1.03);
}

.visual-carousel__stage img.is-changing {
  opacity: 0;
  transform: scale(1.055);
  filter: saturate(0.9) blur(2px);
}

.visual-carousel__stage figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 560px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 6px;
  background: rgb(251 247 239 / 78%);
  color: var(--cypress-900);
  font-weight: 900;
  box-shadow: 0 16px 38px rgb(20 27 22 / 20%);
  backdrop-filter: blur(14px);
}

.visual-carousel__rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-rows: 88px;
  gap: 8px;
  max-height: 556px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--lavender-500) transparent;
}

.visual-carousel__thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 6px;
  background: var(--stone-100);
  box-shadow: 0 10px 24px rgb(35 56 41 / 10%);
  opacity: 0.74;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.visual-carousel__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgb(149 128 168 / 18%));
  opacity: 0;
  transition: opacity 180ms ease;
}

.visual-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.visual-carousel__thumb:hover,
.visual-carousel__thumb.is-active {
  opacity: 1;
  transform: translateX(-4px);
  border-color: rgb(149 128 168 / 64%);
  box-shadow: 0 16px 34px rgb(35 56 41 / 16%);
}

.visual-carousel__thumb:hover img,
.visual-carousel__thumb.is-active img {
  transform: scale(1.06);
}

.visual-carousel__thumb.is-active::after {
  opacity: 1;
}

@media (max-width: 1080px) {
  .visual-carousel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visual-carousel__stage,
  .visual-carousel__stage img {
    min-height: 460px;
  }

  .visual-carousel__rail {
    grid-auto-flow: column;
    grid-auto-columns: 118px;
    grid-auto-rows: 82px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 0 0 8px;
  }

  .visual-carousel__thumb:hover,
  .visual-carousel__thumb.is-active {
    transform: translateY(-3px);
  }
}

@media (max-width: 760px) {
  .visual-carousel-section {
    padding-top: 70px;
  }

  .visual-carousel {
    padding: 8px;
  }

  .visual-carousel__stage,
  .visual-carousel__stage img {
    min-height: 360px;
  }

  .visual-carousel__stage figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 14px;
  }

  .visual-carousel__rail {
    grid-auto-columns: 96px;
    grid-auto-rows: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-carousel__stage img,
  .visual-carousel__thumb,
  .visual-carousel__thumb img {
    transition: none !important;
  }
}

/* Booking engine */
.booking-showcase {
  background:
    linear-gradient(180deg, var(--warm-white), #f3eee5 50%, var(--warm-white));
}

.booking-showcase.compact {
  padding-top: 76px;
}

.booking-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 62%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(251 247 239 / 88%), rgb(255 253 248 / 94%)),
    linear-gradient(120deg, rgb(35 56 41 / 10%), rgb(149 128 168 / 14%));
  box-shadow: 0 34px 90px rgb(35 56 41 / 18%);
}

.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(104deg, rgb(35 56 41 / 14%) 0%, transparent 38%, rgb(149 128 168 / 14%) 100%),
    linear-gradient(88deg, transparent 0 66%, rgb(251 247 239 / 58%) 78%, transparent 100%);
  pointer-events: none;
}

.booking-shell::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 28px;
  z-index: 0;
  width: min(320px, 32vw);
  aspect-ratio: 1200 / 381;
  background: url("../img/logo-le-jardin-provencal.png") center / contain no-repeat;
  opacity: 0.055;
  filter: saturate(0.4);
  pointer-events: none;
}

.booking-intro,
.booking-frame {
  position: relative;
  z-index: 1;
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgb(35 56 41 / 92%), rgb(35 56 41 / 76%) 54%, rgb(81 69 95 / 84%)),
    url("../img/gite-le-thor-repas-piscine.jpg") center / cover;
  color: var(--paper);
  overflow: hidden;
}

.booking-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgb(35 56 41 / 88%) 0%, rgb(35 56 41 / 54%) 58%, rgb(251 247 239 / 10%) 100%),
    linear-gradient(0deg, rgb(22 30 24 / 58%), transparent 60%);
}

.booking-intro::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 0;
  width: 210px;
  aspect-ratio: 1200 / 381;
  background: url("../img/logo-le-jardin-provencal.png") center / contain no-repeat;
  opacity: 0.13;
  filter: brightness(2) saturate(0.4);
}

.booking-intro > * {
  position: relative;
  z-index: 1;
}

.booking-intro h2 {
  margin: 0;
  color: var(--paper);
  font-size: 44px;
}

.booking-intro p:not(.kicker) {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 18px;
}

.booking-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgb(35 56 41 / 10%);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 70%),
    0 20px 56px rgb(35 56 41 / 14%);
}

.booking-module {
  display: block;
  width: 100%;
  min-height: 520px;
  height: 620px;
  border: 0;
  background: var(--paper);
}

.home-booking {
  padding-top: 96px;
}

@media (max-width: 1080px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    min-height: 320px;
  }

  .booking-intro h2 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .booking-shell {
    padding: 8px;
  }

  .booking-intro {
    min-height: 280px;
    padding: 22px;
  }

  .booking-intro h2 {
    font-size: 34px;
  }

  .booking-frame,
  .booking-module {
    min-height: 560px;
  }
}

/* Final Provence polish */
.nav-shell {
  min-height: 74px;
  padding: 11px 14px;
  border-color: rgb(234 208 173 / 58%);
  background:
    linear-gradient(135deg, rgb(251 247 239 / 92%), rgb(255 253 248 / 82%)),
    linear-gradient(90deg, rgb(35 56 41 / 10%), rgb(149 128 168 / 12%));
  box-shadow:
    0 22px 68px rgb(35 56 41 / 18%),
    0 0 0 1px rgb(255 255 255 / 58%) inset;
}

.nav-shell::before {
  background:
    linear-gradient(112deg, transparent 0 28%, rgb(255 255 255 / 52%) 46%, transparent 64%),
    linear-gradient(90deg, rgb(234 208 173 / 20%), transparent 34%, rgb(149 128 168 / 18%) 100%);
}

.nav-shell::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(149 128 168 / 48%), rgb(149 128 168 / 42%), transparent);
  pointer-events: none;
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 72px;
  height: 46px;
  background-size: 62px auto;
  background-color: rgb(255 253 248 / 84%);
  border-color: rgb(234 208 173 / 56%);
}

.brand strong {
  color: var(--cypress-900);
}

.brand small {
  color: rgb(81 69 95 / 78%);
}

.site-nav {
  gap: 5px;
}

.site-nav a {
  min-height: 44px;
  padding: 9px 11px;
  color: var(--cypress-900);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-nav a::before {
  inset: 4px;
  background:
    linear-gradient(135deg, rgb(251 247 239 / 78%), rgb(234 208 173 / 32%)),
    linear-gradient(90deg, rgb(35 56 41 / 9%), rgb(149 128 168 / 12%));
  box-shadow: 0 7px 18px rgb(35 56 41 / 8%);
}

.site-nav a::after {
  left: 16px;
  right: 16px;
  bottom: 7px;
  background: linear-gradient(90deg, var(--ochre), var(--lavender-500));
}

.site-nav .nav-cta {
  padding-inline: 15px;
  background: linear-gradient(135deg, #203525, var(--cypress-800) 52%, var(--lavender-800));
  color: var(--paper);
  box-shadow: 0 14px 34px rgb(35 56 41 / 24%);
}

.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(35 56 41 / 100%) 0%, rgb(35 56 41 / 100%) 28%, rgb(35 56 41 / 72%) 52%, rgb(35 56 41 / 34%) 78%, rgb(35 56 41 / 15%) 100%),
    linear-gradient(0deg, rgb(22 30 24 / 62%) 0%, transparent 52%);
}

.hero.has-ambient-video::after,
.page-hero.has-ambient-video::after {
  z-index: 2;
  background:
    linear-gradient(108deg, transparent 0 48%, rgb(251 247 239 / 10%) 60%, rgb(251 247 239 / 32%) 74%, rgb(234 208 173 / 44%) 86%, rgb(255 255 255 / 16%) 100%),
    linear-gradient(76deg, transparent 0 70%, rgb(255 255 255 / 20%) 78%, transparent 90%),
    linear-gradient(100deg, transparent 0 66%, rgb(149 128 168 / 12%) 100%);
}

.hero-content,
.page-hero .container {
  z-index: 4;
}

.hero-content {
  max-width: var(--container);
}

.hero-content > * {
  max-width: 720px;
}

.page-hero .container > div {
  max-width: 760px;
}

.ambient-video {
  opacity: 0.2;
  filter: saturate(0.88) contrast(1.08) brightness(0.92);
}

.section {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 82%), rgb(255 253 248 / 96%));
}

.section.alt {
  background:
    linear-gradient(135deg, rgb(243 238 229 / 94%), rgb(251 247 239 / 88%) 48%, rgb(235 229 238 / 82%)),
    linear-gradient(90deg, rgb(35 56 41 / 7%), transparent 52%, rgb(149 128 168 / 10%));
}

.section:not(.deep):not(.booking-showcase):not(.visual-carousel-section)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(149 128 168 / 28%), rgb(149 128 168 / 24%), transparent);
  pointer-events: none;
}

.section-head {
  padding-left: 18px;
  border-left: 3px solid rgb(149 128 168 / 58%);
}

.section-head.center {
  padding-left: 0;
  border-left: 0;
}

.stay-card,
.story-card,
.activity-card,
.quote,
.price-card,
.contact-panel,
.step-card {
  background:
    linear-gradient(180deg, rgb(255 253 248 / 92%), rgb(251 247 239 / 86%));
  border-color: rgb(234 208 173 / 54%);
  box-shadow: 0 18px 52px rgb(35 56 41 / 11%);
}

.stay-card::before,
.story-card::before,
.activity-card::before,
.quote::before,
.price-card::before,
.contact-panel::before,
.step-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--cypress-800), var(--lavender-500), var(--ochre));
}

.stay-card .image::before,
.story-card .image::before,
.activity-card .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgb(35 56 41 / 20%), transparent 48%);
  pointer-events: none;
}

.stay-card .image,
.story-card .image,
.activity-card .image {
  position: relative;
}

.feature {
  padding: 30px 22px;
  border: 1px solid rgb(234 208 173 / 40%);
  border-radius: var(--radius);
  background: rgb(255 253 248 / 62%);
  box-shadow: 0 12px 34px rgb(35 56 41 / 7%);
}

.feature::before {
  left: 0;
  top: 20px;
  bottom: 20px;
  background: linear-gradient(180deg, var(--cypress-800), var(--lavender-500));
}

.booking-shell {
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: 14px;
  background:
    linear-gradient(135deg, rgb(251 247 239 / 94%), rgb(255 253 248 / 96%)),
    linear-gradient(100deg, rgb(35 56 41 / 16%), rgb(149 128 168 / 18%));
  box-shadow: 0 36px 100px rgb(35 56 41 / 20%);
}

.booking-intro {
  justify-content: space-between;
  background:
    linear-gradient(100deg, rgb(35 56 41 / 96%) 0%, rgb(35 56 41 / 86%) 56%, rgb(35 56 41 / 42%) 100%),
    linear-gradient(96deg, transparent 0 64%, rgb(251 247 239 / 18%) 86%, rgb(234 208 173 / 26%) 100%),
    url("../img/gite-le-thor-repas-piscine.jpg") center / cover;
}

.booking-guide {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.booking-guide li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 6px;
  background: rgb(251 247 239 / 12%);
  color: rgb(255 255 255 / 86%);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.booking-guide span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border-radius: 5px;
  background: rgb(251 247 239 / 88%);
  color: var(--cypress-900);
  font-size: 12px;
}

.booking-frame {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  background:
    linear-gradient(180deg, rgb(255 253 248), rgb(251 247 239));
}

.booking-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgb(35 56 41 / 10%);
  background:
    linear-gradient(90deg, rgb(251 247 239), rgb(243 238 229));
}

.booking-toolbar span {
  color: var(--cypress-900);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-toolbar a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 6px;
  background: var(--cypress-900);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.booking-toolbar a:hover {
  background: var(--lavender-800);
}

.booking-module {
  flex: 1;
  min-height: 590px;
  height: 720px;
}

@media (max-width: 1080px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .brand-mark {
    width: 46px;
    background-size: 40px auto;
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero.has-ambient-video::before,
  .page-hero.has-ambient-video::before {
    background:
      linear-gradient(90deg, rgb(35 56 41 / 100%) 0%, rgb(35 56 41 / 90%) 52%, rgb(35 56 41 / 28%) 100%),
      linear-gradient(0deg, rgb(22 30 24 / 64%) 0%, transparent 52%);
  }

  .hero-content > *,
  .page-hero .container > div {
    max-width: 100%;
  }

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

  .booking-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-toolbar a {
    justify-content: center;
  }
}

/* Logo visibility, hero balance and unframed conversion blocks */
.brand-mark {
  width: 54px;
  height: 48px;
  border-color: rgb(234 208 173 / 46%);
  background:
    url("../img/logo/carre 1.png") center / 42px auto no-repeat,
    linear-gradient(135deg, #203525, var(--cypress-900));
  box-shadow:
    0 14px 34px rgb(35 56 41 / 20%),
    0 0 0 1px rgb(255 255 255 / 18%) inset;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) scale(1.02);
}

.hero {
  min-height: 88svh;
  align-items: start;
}

.hero-content {
  padding-top: 128px;
  padding-bottom: 74px;
}

.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  background:
    linear-gradient(90deg, rgb(35 56 41 / 100%) 0%, rgb(35 56 41 / 100%) 32%, rgb(35 56 41 / 78%) 54%, rgb(35 56 41 / 36%) 78%, rgb(35 56 41 / 15%) 100%),
    linear-gradient(0deg, rgb(22 30 24 / 52%) 0%, transparent 54%);
}

.hero.has-ambient-video::after,
.page-hero.has-ambient-video::after {
  background:
    linear-gradient(105deg, transparent 0 54%, rgb(251 247 239 / 8%) 64%, rgb(251 247 239 / 30%) 78%, rgb(234 208 173 / 50%) 88%, rgb(255 255 255 / 18%) 100%),
    linear-gradient(74deg, transparent 0 70%, rgb(255 255 255 / 24%) 79%, transparent 92%);
}

.highlight-strip {
  margin-top: -38px;
  padding: 0 0 18px;
  background: transparent;
}

.highlight-strip::after {
  display: none;
}

.facts {
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.fact {
  min-height: 104px;
  border: 1px solid rgb(234 208 173 / 56%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgb(251 247 239 / 92%), rgb(255 253 248 / 82%)),
    linear-gradient(135deg, rgb(35 56 41 / 10%), rgb(149 128 168 / 10%));
  color: var(--ink);
  box-shadow: 0 18px 46px rgb(35 56 41 / 12%);
  backdrop-filter: blur(12px);
}

.fact:hover {
  background:
    linear-gradient(180deg, rgb(255 253 248 / 96%), rgb(251 247 239 / 88%)),
    linear-gradient(135deg, rgb(35 56 41 / 14%), rgb(149 128 168 / 16%));
}

.fact strong {
  color: var(--cypress-900);
}

.fact span {
  color: var(--muted);
}

.photo-ribbon {
  padding-top: 12px;
  background: linear-gradient(180deg, transparent 0%, var(--warm-white) 100%);
}

.photo-ribbon::after {
  display: none;
}

.visual-carousel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.visual-carousel::before {
  opacity: 0.035;
}

.visual-carousel__stage {
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.visual-carousel__stage::before {
  background:
    linear-gradient(90deg, rgb(35 56 41 / 54%) 0%, transparent 46%, rgb(251 247 239 / 10%) 100%),
    linear-gradient(0deg, rgb(20 27 22 / 44%) 0%, transparent 52%);
}

.visual-carousel__stage figcaption {
  border-color: rgb(234 208 173 / 42%);
  background: rgb(251 247 239 / 84%);
  box-shadow: 0 14px 34px rgb(35 56 41 / 16%);
}

.booking-shell {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-shell::before,
.booking-shell::after {
  display: none;
}

.booking-intro {
  border-radius: var(--radius);
  box-shadow: 0 22px 62px rgb(35 56 41 / 18%);
}

.booking-frame {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-toolbar {
  margin-bottom: 10px;
  border: 1px solid rgb(234 208 173 / 48%);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgb(251 247 239 / 94%), rgb(255 253 248 / 88%));
  box-shadow: 0 14px 36px rgb(35 56 41 / 9%);
}

.booking-module {
  border-radius: 0;
  background: transparent;
}

@media (max-width: 1080px) {
  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 64px;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    width: 50px;
    height: 40px;
    background-size: 36px auto;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .highlight-strip {
    margin-top: -18px;
  }

  .facts {
    gap: 8px;
  }

  .booking-toolbar {
    margin-bottom: 8px;
  }
}

/* Final responsive polish */
:root {
  --sand: #e8deef;
  --ochre: #8f78aa;
  --terracotta: #6f5b8d;
  --lavender-500: #b8a5cf;
  --lavender-800: #6f5b8d;
}

:focus-visible {
  outline-color: var(--lavender-500);
}

.brand-mark {
  width: 62px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: url("../img/logo/carre 1.png") center / contain no-repeat transparent !important;
  box-shadow: none;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  filter: drop-shadow(0 7px 12px rgb(35 56 41 / 12%));
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  filter: drop-shadow(0 9px 14px rgb(35 56 41 / 16%));
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgb(232 222 239 / 58%);
  color: var(--cypress-900, var(--aubergine-900));
}

.site-nav .nav-cta,
.button,
.booking-toolbar a,
.floating-booking .floating-booking__primary {
  background: linear-gradient(135deg, var(--cypress-900, var(--aubergine-900)), var(--lavender-800));
  color: var(--paper);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"],
.button:hover,
.booking-toolbar a:hover,
.floating-booking .floating-booking__primary:hover {
  background: linear-gradient(135deg, var(--lavender-800), var(--fig-800));
  color: var(--paper);
  border-color: rgb(149 128 168 / 58%);
}

.button.secondary {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 52%);
  color: var(--paper);
}

.button.secondary:hover,
.button.light:hover,
.floating-booking a:hover {
  background: rgb(232 222 239 / 94%);
  color: var(--cypress-900, var(--aubergine-900));
  border-color: rgb(149 128 168 / 56%);
}

.button.light {
  background: var(--paper);
  color: var(--cypress-900, var(--aubergine-900));
}

.button.text:hover {
  color: var(--lavender-800);
}

.hero {
  min-height: clamp(620px, 78svh, 820px);
  align-items: end;
}

.hero-content {
  padding-top: 118px;
  padding-bottom: 34px;
}

.hero-actions {
  margin-top: 20px;
}

.hero-meta {
  max-width: 780px;
  gap: 8px;
  margin-top: 18px;
}

.hero-meta li {
  background: rgb(35 56 41 / 46%);
  border-color: rgb(232 222 239 / 42%);
}

.highlight-strip {
  margin-top: 0;
  padding: 0 0 22px;
}

.facts {
  transform: translateY(-18px);
}

.fact {
  min-height: 96px;
  padding: 18px 20px;
}

.fact strong {
  color: var(--lavender-800);
}

.booking-toolbar a {
  border: 1px solid transparent;
}

.floating-booking {
  border-color: rgb(232 222 239 / 72%);
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 30px;
  }

  .facts {
    transform: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .nav-shell {
    width: min(100% - 20px, var(--container));
    padding: 8px 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 38px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .site-nav.is-open {
    max-height: min(72svh, 560px);
    overflow-y: auto;
  }

  .hero-content {
    padding-top: 102px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-meta {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-meta li {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .highlight-strip {
    padding-bottom: 14px;
  }

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

  .fact {
    min-height: 88px;
    padding: 14px;
  }

  .fact strong {
    font-size: 22px;
  }

  .floating-booking {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .floating-booking__hint {
    display: none;
  }

  .floating-booking a {
    min-height: 46px;
    padding: 8px 6px;
    font-size: 13px;
  }

  .booking-module {
    min-height: 620px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

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

  .floating-booking a {
    font-size: 12px;
  }
}

@media (max-width: 1080px) {
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .spec-grid div {
    min-height: 0;
    padding: 15px;
  }

  .equipment-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Clean header and hero reflections */
body::before {
  background: none !important;
}

.site-header .nav-shell {
  border-color: rgb(255 255 255 / 58%);
  background: rgb(251 247 239 / 48%);
  box-shadow:
    0 18px 50px rgb(35 56 41 / 12%),
    0 0 0 1px rgb(255 255 255 / 54%) inset;
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header.is-scrolled .nav-shell {
  background: rgb(251 247 239 / 92%);
  box-shadow:
    0 18px 52px rgb(35 56 41 / 18%),
    0 0 0 1px rgb(255 255 255 / 70%) inset;
}

.nav-shell::before,
.nav-shell::after {
  content: none !important;
  display: none !important;
}

.hero.has-ambient-video .hero-content::after {
  display: none !important;
}

.button::after {
  display: none !important;
}

.button:hover::after {
  transform: none !important;
}

.fact,
.fact:hover {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 92%), rgb(255 253 248 / 82%)),
    linear-gradient(135deg, rgb(35 56 41 / 10%), rgb(149 128 168 / 10%));
  transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

/* Client revision: softer hero overlay and native booking placement */
.hero::before,
.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  background:
    linear-gradient(90deg, rgb(35 56 41 / 68%) 0%, rgb(35 56 41 / 46%) 34%, rgb(35 56 41 / 20%) 66%, rgb(35 56 41 / 0%) 100%),
    linear-gradient(0deg, rgb(18 26 21 / 24%) 0%, rgb(18 26 21 / 0%) 46%) !important;
}

.page-hero.scenic {
  background-image:
    linear-gradient(90deg, rgb(35 56 41 / 62%) 0%, rgb(35 56 41 / 40%) 34%, rgb(35 56 41 / 16%) 66%, rgb(35 56 41 / 0%) 100%),
    var(--hero-image) !important;
}

.hero.has-ambient-video::after,
.page-hero.has-ambient-video::after,
.page-hero::after,
.page-hero.has-ambient-video .container::before {
  content: none !important;
  display: none !important;
}

.section.alt::before,
.section.deep::before {
  content: none !important;
  display: none !important;
}

.floating-booking.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

.home-booking {
  padding-top: 58px;
  padding-bottom: 70px;
  background:
    linear-gradient(180deg, rgb(251 247 239 / 82%), rgb(255 253 248 / 96%));
}

.home-booking + .photo-ribbon {
  padding-top: 0;
}

.home-booking .booking-shell {
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: 22px;
  align-items: center;
}

.home-booking .booking-intro {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgb(35 56 41 / 78%) 0%, rgb(35 56 41 / 46%) 56%, rgb(35 56 41 / 10%) 100%),
    linear-gradient(0deg, rgb(18 26 21 / 42%), rgb(18 26 21 / 4%) 58%),
    url("../img/gite-le-thor-repas-piscine.jpg") center / cover;
}

.home-booking .booking-intro::before {
  background:
    linear-gradient(90deg, rgb(35 56 41 / 54%) 0%, rgb(35 56 41 / 18%) 68%, rgb(35 56 41 / 0%) 100%);
}

.home-booking .booking-intro::after {
  display: none;
}

.home-booking .booking-frame {
  overflow: hidden;
  border: 1px solid rgb(234 208 173 / 40%);
  border-radius: var(--radius);
  background: rgb(255 253 248);
  box-shadow: 0 20px 54px rgb(35 56 41 / 10%);
}

.home-booking .booking-module {
  min-height: 640px;
  height: 720px;
  border-radius: var(--radius);
}

@media (max-width: 1080px) {
  .home-booking .booking-shell {
    grid-template-columns: 1fr;
  }

  .home-booking .booking-intro {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .hero::before,
  .hero.has-ambient-video::before,
  .page-hero.has-ambient-video::before {
    background:
      linear-gradient(90deg, rgb(35 56 41 / 76%) 0%, rgb(35 56 41 / 56%) 48%, rgb(35 56 41 / 18%) 100%),
      linear-gradient(0deg, rgb(18 26 21 / 28%) 0%, rgb(18 26 21 / 0%) 48%) !important;
  }

  .page-hero.scenic {
    background-image:
      linear-gradient(90deg, rgb(35 56 41 / 72%) 0%, rgb(35 56 41 / 50%) 48%, rgb(35 56 41 / 16%) 100%),
      var(--hero-image) !important;
  }

  .home-booking {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .home-booking .booking-intro {
    min-height: 280px;
  }

  .home-booking .booking-module {
    min-height: 620px;
  }
}

/* Keep the hero video while removing the pale reflection layer */
.hero.has-ambient-video,
.page-hero.has-ambient-video {
  background-color: var(--cypress-900, #233829);
  background-image: none !important;
}

.hero.has-ambient-video .ambient-video,
.page-hero.has-ambient-video .ambient-video {
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
  object-position: center 72%;
}

.hero::before,
.hero.has-ambient-video::before,
.page-hero.has-ambient-video::before {
  background: linear-gradient(90deg, rgb(35 56 41 / 76%) 0%, rgb(35 56 41 / 52%) 34%, rgb(35 56 41 / 24%) 66%, rgb(35 56 41 / 0%) 100%) !important;
}

@media (max-width: 760px) {
  .hero.has-ambient-video .ambient-video,
  .page-hero.has-ambient-video .ambient-video {
    opacity: 0.82;
    object-position: center 54%;
  }

  .hero::before,
  .hero.has-ambient-video::before,
  .page-hero.has-ambient-video::before {
    background: linear-gradient(90deg, rgb(35 56 41 / 78%) 0%, rgb(35 56 41 / 58%) 48%, rgb(35 56 41 / 18%) 100%) !important;
  }
}

/* Video gradient sections copied from the hero treatment */
.video-gradient-section.has-ambient-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cypress-900, #233829) !important;
  color: var(--paper);
}

.video-gradient-section.has-ambient-video::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(35 56 41 / 84%) 0%, rgb(35 56 41 / 62%) 34%, rgb(35 56 41 / 34%) 66%, rgb(35 56 41 / 0%) 100%) !important;
  pointer-events: none;
}

.video-gradient-section.has-ambient-video::after {
  content: none !important;
  display: none !important;
}

.video-gradient-section.has-ambient-video .ambient-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.66;
  filter: saturate(0.9) contrast(1.04) brightness(0.7);
  object-fit: cover;
  object-position: center 72%;
}

.video-gradient-section.has-ambient-video > .container {
  position: relative;
  z-index: 2;
}

.video-gradient-section.has-ambient-video > .container::before,
.video-gradient-section.has-ambient-video > .container::after {
  content: none !important;
  display: none !important;
}

.video-gradient-section.has-ambient-video::after,
.video-gradient-section.has-ambient-video > .container::before,
.video-gradient-section.has-ambient-video > .container::after,
.video-gradient-section.section.deep::before,
.video-gradient-section.section.alt::before {
  content: none !important;
  display: none !important;
  clip-path: none !important;
  background: none !important;
}

.video-gradient-section.has-ambient-video h2,
.video-gradient-section.has-ambient-video h3,
.video-gradient-section.has-ambient-video p,
.video-gradient-section.has-ambient-video li {
  color: var(--paper);
}

.video-gradient-section.has-ambient-video .kicker {
  color: var(--lavender-500);
}

.video-gradient-section.has-ambient-video .button.text {
  color: var(--paper);
}

.video-gradient-section.has-ambient-video .button.text:hover {
  color: var(--sand);
}

.video-gradient-section.has-ambient-video .media-grid img,
.video-gradient-section.has-ambient-video .media-frame img {
  border-color: rgb(255 255 255 / 24%);
  box-shadow: 0 24px 68px rgb(0 0 0 / 24%);
}

.inline-cta {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.inline-cta h3 {
  margin: 0;
  font-size: 30px;
}

.inline-cta p {
  margin: 12px 0 0;
  max-width: 560px;
}

@media (max-width: 760px) {
  .video-gradient-section.has-ambient-video::before {
    background: linear-gradient(90deg, rgb(35 56 41 / 88%) 0%, rgb(35 56 41 / 68%) 48%, rgb(35 56 41 / 28%) 100%) !important;
  }

  .video-gradient-section.has-ambient-video .ambient-video {
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0.58;
    object-position: center 54%;
  }

  .inline-cta h3 {
    font-size: 26px;
  }
}

/* Responsive audit fixes: tablet and mobile navigation/layout */
body.nav-is-open {
  overflow: hidden;
}

body.nav-is-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgb(10 16 12 / 52%);
  backdrop-filter: blur(4px);
}

.nav-drawer-video {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    z-index: 90;
    min-height: 70px;
  }

  .nav-shell {
    width: min(100% - 28px, var(--container));
    min-height: 70px;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand strong {
    font-size: clamp(18px, 2.4vw, 22px);
  }

  .brand small {
    font-size: 11px;
    white-space: nowrap;
  }

  .nav-toggle {
    position: relative;
    z-index: 130;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border-color: rgb(35 56 41 / 18%);
    background: rgb(255 253 248 / 94%);
    box-shadow: 0 10px 28px rgb(35 56 41 / 12%);
  }

  .nav-toggle span {
    width: 21px;
    height: 2px;
    margin: 0;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-is-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 120;
    width: min(88vw, 390px);
    height: 100svh;
    max-height: none !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    padding: max(86px, env(safe-area-inset-top) + 70px) 22px 28px;
    border-right: 1px solid rgb(255 255 255 / 18%);
    background: #233829;
    box-shadow: 24px 0 72px rgb(0 0 0 / 28%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-104%);
    transition: transform 240ms ease, opacity 200ms ease, visibility 0s linear 240ms;
    isolation: isolate;
  }

  .site-nav.is-open,
  .nav-is-open .site-nav,
  .nav-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 240ms ease, opacity 200ms ease;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgb(35 56 41 / 98%) 0%, rgb(35 56 41 / 88%) 48%, rgb(35 56 41 / 38%) 100%),
      linear-gradient(0deg, rgb(18 26 21 / 42%), rgb(18 26 21 / 0%) 56%);
    pointer-events: none;
  }

  .nav-drawer-video {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.68;
    filter: saturate(0.9) contrast(1.04) brightness(0.72);
    pointer-events: none;
  }

  .site-nav a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 13px 14px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: var(--radius);
    background: rgb(255 255 255 / 8%);
    color: var(--paper);
    font-size: 16px;
    white-space: normal;
    box-shadow: 0 12px 26px rgb(0 0 0 / 8%);
    backdrop-filter: blur(10px);
  }

  .site-nav a::before,
  .site-nav a::after {
    content: none !important;
    display: none !important;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgb(255 253 248 / 90%);
    color: var(--cypress-900, #233829);
  }

  .site-nav .nav-cta {
    margin: 10px 0 0;
    justify-content: center;
    border-color: rgb(255 255 255 / 26%);
    background: rgb(255 253 248 / 94%);
    color: var(--cypress-900, #233829);
  }

  .container,
  .hero-content,
  .page-hero .container {
    width: min(100% - 40px, var(--container));
  }

  .hero {
    min-height: clamp(560px, 78svh, 760px);
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 7vw, 58px);
  }

  .hero-lede,
  .page-hero p {
    max-width: 680px;
    font-size: clamp(17px, 2.3vw, 20px);
  }

  .page-hero .container {
    min-height: 420px;
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .prose h2 {
    font-size: clamp(34px, 5.4vw, 42px);
  }

  .split,
  .split.reverse,
  .page-grid,
  .booking-shell,
  .home-booking .booking-shell {
    grid-template-columns: 1fr !important;
  }

  .split,
  .split.reverse {
    gap: 38px;
  }

  .split.reverse .media-grid,
  .split.reverse .media-frame {
    order: 0;
  }

  .feature-grid,
  .quotes,
  .price-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-shell,
  .home-booking .booking-shell {
    gap: 18px;
    padding: 0;
  }

  .booking-intro,
  .home-booking .booking-intro {
    min-height: 320px;
    padding: 26px;
  }

  .booking-intro h2 {
    font-size: clamp(32px, 5vw, 42px);
  }

  .booking-frame,
  .home-booking .booking-frame {
    min-height: 620px;
  }

  .booking-module,
  .home-booking .booking-module {
    min-height: 640px;
    height: 680px;
  }

  .visual-carousel {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .visual-carousel__stage,
  .visual-carousel__stage img {
    min-height: clamp(360px, 58vw, 520px);
  }

  .visual-carousel__rail {
    grid-auto-flow: column;
    grid-auto-columns: 120px;
    grid-auto-rows: 80px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 0 0 8px;
    scroll-snap-type: x proximity;
  }

  .visual-carousel__thumb {
    scroll-snap-align: start;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 64px;
  }

  .nav-shell {
    width: min(100% - 20px, var(--container));
    min-height: 64px;
    padding: 6px 0;
  }

  .brand-mark {
    width: 44px;
    height: 38px;
  }

  .brand strong {
    max-width: min(220px, calc(100vw - 112px));
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    width: min(90vw, 350px);
    padding: max(78px, env(safe-area-inset-top) + 62px) 16px 22px;
  }

  .site-nav a {
    min-height: 50px;
    font-size: 15px;
  }

  .container,
  .hero-content,
  .page-hero .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    min-height: max(620px, 84svh);
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .hero-lede,
  .page-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .section-actions {
    gap: 9px;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 7px;
  }

  .hero-meta li {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 13px;
  }

  .page-hero .container {
    min-height: 340px;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .prose h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .prose h3,
  .inline-cta h3 {
    font-size: 24px;
  }

  .section-head p,
  .prose p {
    font-size: 16px;
  }

  .facts,
  .card-grid,
  .feature-grid,
  .quotes,
  .price-grid,
  .contact-grid,
  .steps-grid,
  .story-card-grid,
  .activity-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .facts {
    gap: 8px;
  }

  .fact {
    min-height: 82px;
    padding: 14px 16px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .media-grid img,
  .media-grid img:first-child {
    grid-row: auto;
    min-height: 220px;
    transform: none !important;
  }

  .media-frame {
    aspect-ratio: 4 / 3;
  }

  .photo-ribbon {
    padding-bottom: 38px;
  }

  .photo-ribbon__track {
    width: min(100% - 24px, var(--container));
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .photo-ribbon img,
  .photo-ribbon img:nth-child(2),
  .photo-ribbon img:nth-child(4) {
    flex: 0 0 74%;
    height: 190px;
    transform: none;
    scroll-snap-align: start;
  }

  .visual-carousel-section {
    padding-top: 54px;
  }

  .visual-carousel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .visual-carousel__stage,
  .visual-carousel__stage img {
    min-height: 300px;
  }

  .visual-carousel__stage figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .visual-carousel__rail {
    grid-auto-columns: 92px;
    grid-auto-rows: 66px;
  }

  .booking-showcase,
  .home-booking {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .booking-intro,
  .home-booking .booking-intro {
    min-height: 260px;
    padding: 22px;
  }

  .booking-intro h2 {
    font-size: 30px;
  }

  .booking-guide {
    grid-template-columns: 1fr !important;
  }

  .booking-frame,
  .home-booking .booking-frame {
    min-height: 620px;
    border-radius: var(--radius);
  }

  .booking-module,
  .home-booking .booking-module {
    min-height: 620px;
    height: 680px;
  }

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

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .footer-grid {
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  .site-footer {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .site-footer ul {
    display: grid;
    justify-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .floating-booking {
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 74;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .floating-booking__hint {
    display: none;
  }

  .floating-booking a {
    min-height: 44px;
    padding: 7px 4px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: calc(100vw - 104px);
    font-size: 17px;
  }

  .hero {
    min-height: max(600px, 82svh);
  }

  .hero-content {
    padding-top: 86px;
  }

  .photo-ribbon img,
  .photo-ribbon img:nth-child(2),
  .photo-ribbon img:nth-child(4) {
    flex-basis: 86%;
  }

  .visual-carousel__stage,
  .visual-carousel__stage img {
    min-height: 260px;
  }
}

/* Mobile drawer reliability fix: keep the left menu outside the clipped header shell. */
@media (max-width: 1080px) {
  body.nav-is-open .site-header {
    z-index: 1000;
    pointer-events: auto;
  }

  .site-header,
  .nav-shell {
    overflow: visible !important;
  }

  body.nav-is-open .nav-shell {
    transform: none !important;
    backdrop-filter: none !important;
  }

  .nav-shell::before {
    display: none;
  }

  .nav-toggle {
    z-index: 1030 !important;
  }

  .site-nav {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1020 !important;
    display: flex !important;
    width: 88vw !important;
    width: min(88vw, 390px) !important;
    height: 100vh !important;
    height: 100svh !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    max-height: none !important;
    padding: 88px 22px 28px !important;
    padding: max(88px, env(safe-area-inset-top) + 72px) 22px 28px !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid rgb(255 255 255 / 20%) !important;
    border-radius: 0 !important;
    background: #233829 !important;
    box-shadow: 28px 0 74px rgb(0 0 0 / 34%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(-104%, 0, 0) !important;
    transition: transform 260ms ease, opacity 200ms ease, visibility 0s linear 260ms !important;
    isolation: isolate;
  }

  .site-nav.is-open,
  .nav-is-open .site-nav,
  .nav-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    transition: transform 260ms ease, opacity 200ms ease !important;
  }

  .nav-drawer-video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.62 !important;
    filter: saturate(0.9) contrast(1.04) brightness(0.7) !important;
    pointer-events: none !important;
  }

  .site-nav::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(90deg, rgb(35 56 41 / 98%) 0%, rgb(35 56 41 / 82%) 46%, rgb(35 56 41 / 34%) 100%),
      linear-gradient(0deg, rgb(15 24 18 / 46%) 0%, rgb(15 24 18 / 0%) 62%) !important;
    pointer-events: none !important;
  }

  .site-nav a {
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: 90vw !important;
    width: min(90vw, 350px) !important;
    padding: 80px 16px 22px !important;
    padding: max(80px, env(safe-area-inset-top) + 64px) 16px 22px !important;
  }
}
