:root {
  color-scheme: light;
  --aubergine-900: #342332;
  --fig-800: #5a3445;
  --lavender-700: #8d6a8f;
  --stone-100: #f5ebe2;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --sand: #ead0ad;
  --ochre: #c37546;
  --terracotta: #a44d3e;
  --ink: #2b2427;
  --muted: #766a67;
  --line: #ead7c4;
  --shadow: 0 18px 45px rgb(52 35 50 / 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;
}

.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: #2b1d2a;
  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);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--ochre), var(--sand), var(--lavender-700));
}

.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(184 117 54 / 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%, #7a4a53);
}

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

.site-footer {
  background:
    linear-gradient(135deg, #211720, #2b1d2a 52%, #342332);
}

.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) {
  .scroll-progress,
  .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(195 117 70 / 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(195 117 70 / 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(122 74 83 / 62%)),
    linear-gradient(90deg, rgb(255 248 239 / 8%), transparent 34%, rgb(234 208 173 / 12%));
  pointer-events: none;
}

.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(195 117 70 / 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;
  }
}
