/* ==========================================================================
   La Petite — Saranda · V3 stylesheet (light total)
   ========================================================================== */

:root {
  /* Fonds */
  --cream:        #FBF6EA;
  --cream-deep:   #F4ECD8;
  --ivory:        #FFFDF7;
  --blue-wash:    #E8F0F7;

  /* Bleu cabana */
  --cabana:       #1B6BA8;
  --cabana-soft:  #2D88C9;
  --cabana-pale:  #D4E7F4;

  /* Accents chauds */
  --spritz:       #E27C50;
  --spritz-deep:  #C9633A;
  --gold:         #C9A961;

  /* Vert palmier */
  --palm:         #3D6E5C;

  /* Encre */
  --ink:          #0F2540;
  --ink-soft:     #4A5A6F;
  --ink-mute:     #8896A8;

  /* Lignes */
  --line:         rgba(15, 37, 64, 0.10);
  --line-strong:  rgba(15, 37, 64, 0.18);

  /* Layout */
  --container:    1280px;
  --nav-h:        72px;
  --nav-h-m:      60px;
  --radius:       2px;
  --radius-card:  12px;
  --radius-pill:  999px;

  /* Type */
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Pinyon Script', cursive;

  /* Espace */
  --section-pad:  clamp(3.5rem, 7vw, 7rem);
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--cabana); color: var(--ivory); }

/* ----- A11y ----- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--ivory);
  padding: 0.75rem 1rem; z-index: 1000; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--cabana); outline-offset: 3px; border-radius: 2px; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ----- Type system ----- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cabana);
}
.h1, h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h2, h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  color: var(--cabana);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.005em;
}
.h2-xl {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
}
.h3, h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--ink);
  line-height: 1.2;
}
.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--cabana);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--spritz);
  color: var(--ivory);
  box-shadow: 0 6px 18px -8px rgba(226, 124, 80, 0.55);
}
.btn-primary:hover { background: var(--spritz-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(226, 124, 80, 0.6); }
.btn-outline {
  border-color: var(--cabana);
  color: var(--cabana);
  background: transparent;
}
.btn-outline:hover { background: var(--cabana); color: var(--ivory); transform: translateY(-2px); }
.btn-ghost-light {
  border-color: rgba(255, 253, 247, 0.85);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost-light:hover { background: var(--ivory); color: var(--ink); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h-m);
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 200;
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--cabana);
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 210;
}
.nav__links { display: none; gap: 1.75rem; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.lang-switch button {
  padding: 0.3rem 0.45rem;
  border-radius: 4px;
  transition: background 200ms ease, color 200ms ease;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
}
@media (max-width: 480px) {
  .lang-switch { gap: 0.15rem; font-size: 0.72rem; }
  .lang-switch button { padding: 0.25rem 0.3rem; font-size: 0.7rem; letter-spacing: 0.02em; }
  .lang-switch span[aria-hidden="true"] { display: none; }
}
.lang-switch button[aria-pressed="true"] {
  background: var(--cabana);
  color: var(--ivory);
}
.lang-switch button:not([aria-pressed="true"]):hover { color: var(--cabana); }

.nav__cta { display: none; }
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--ink);
  position: relative;
  z-index: 210;
}
.nav__burger svg { width: 22px; height: 22px; }
.nav__burger .icon-x { display: none; }
.nav__burger[aria-expanded="true"] .icon-menu { display: none; }
.nav__burger[aria-expanded="true"] .icon-x { display: block; }

/* Mobile drawer — DRAWER INVISIBLE/INERTE PAR DÉFAUT */
.nav__drawer {
  display: none;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: var(--nav-h-m) 0 0 0;
  background: var(--ivory);
  z-index: 150;
  transition: opacity 240ms ease;
  flex-direction: column;
  padding: 2rem 1.5rem 3rem;
  gap: 1.5rem;
  overflow-y: auto;
}
.nav__drawer.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer .nav__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--cabana);
  padding: 0.5rem 0;
}
.nav__drawer .btn { align-self: flex-start; margin-top: 1rem; }
.nav__drawer-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

@media (min-width: 1024px) {
  .nav { height: var(--nav-h); }
  .nav__inner { padding: 0 2rem; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__drawer { display: none !important; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  margin-top: var(--nav-h-m);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}
@media (min-width: 1024px) {
  .hero { height: 88vh; margin-top: var(--nav-h); }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(1) saturate(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 37, 64, 0.20) 0%,
    rgba(15, 37, 64, 0.05) 40%,
    rgba(15, 37, 64, 0.25) 100%);
  z-index: -1;
}
.hero__content {
  padding: 0 1.25rem clamp(2rem, 6vh, 4rem);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .hero__content { padding-left: 2rem; padding-right: 2rem; } }
.hero__eyebrow {
  color: rgba(255, 253, 247, 0.85);
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(15, 37, 64, 0.25);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 253, 247, 0.92);
  max-width: 50ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(15, 37, 64, 0.25);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__cta-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 253, 247, 0.7);
  color: var(--ivory);
}
.hero__cta-secondary:hover {
  background: rgba(255, 253, 247, 0.15);
  border-color: var(--ivory);
}

/* ----- Marquee sticky ----- */
.marquee {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.marquee__inner {
  white-space: nowrap;
  display: flex;
  gap: 3rem;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__inner span { display: inline-flex; align-items: center; gap: 0.5rem; }
.marquee__inner .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__inner { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
}

/* ----- Sections base ----- */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}
.section--alt { background: var(--cream-deep); }
.section--blue { background: var(--blue-wash); }
.section__head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 56ch; }
.section__head .eyebrow { margin-bottom: 0.85rem; }
.section__head .h2 { margin-bottom: 1rem; }
.section__head .lead { color: var(--ink-soft); }

/* Palm pattern SVG decorative */
.palm-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  color: var(--palm);
}
.palm-bg--tl { top: 2rem; left: 2rem; width: 140px; transform: rotate(-12deg); }
.palm-bg--br { bottom: 2rem; right: 2rem; width: 180px; transform: rotate(10deg); }

/* ----- Story (#place) ----- */
.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; }
}
.story-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.story-media .figure-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(15, 37, 64, 0.4);
  aspect-ratio: 4 / 5;
}
.story-media .figure-main img { width: 100%; height: 100%; object-fit: cover; }
.story-media .figure-inset {
  display: none;
}
@media (min-width: 1024px) {
  .story-media .figure-inset {
    display: block;
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 220px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 24px 60px -25px rgba(15, 37, 64, 0.45);
    border: 6px solid var(--cream);
  }
  .story-media .figure-inset img { width: 100%; height: 100%; object-fit: cover; }
}
.story-body p + p { margin-top: 1.1rem; }
.story-signature {
  margin-top: 2rem;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--cabana);
  line-height: 1;
}

/* ----- Brazier ----- */
.brazier {
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.brazier-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .brazier-grid { grid-template-columns: 0.95fr 1.05fr; gap: 4rem; }
}
.brazier__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px -28px rgba(15, 37, 64, 0.4);
}
.brazier__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.brazier__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.brazier__item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.brazier__item .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cabana);
  font-weight: 600;
  font-size: 1.15rem;
  min-width: 1.75rem;
}
.brazier__item .name { font-weight: 500; color: var(--ink); }
.brazier__item .tag { margin-left: auto; font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.05em; text-transform: uppercase; }

/* ----- Menu ----- */
.menu-foot {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.menu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(15, 37, 64, 0.1);
  transition: transform 280ms ease, box-shadow 280ms ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15, 37, 64, 0.18);
}
.menu-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.menu-card:hover .menu-card__media img { transform: scale(1.05); }
.menu-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.menu-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.menu-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cabana);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.menu-card__intro {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-style: italic;
}
.menu-card__list {
  font-size: 0.95rem;
  color: var(--ink);
  display: grid;
  gap: 0.4rem;
}
.menu-card__list li {
  padding-left: 1rem;
  position: relative;
}
.menu-card__list li::before {
  content: '·';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ----- Beach (#beach) full-bleed cinemagraph ----- */
.beach-cinema {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}
.beach-cinema video,
.beach-cinema img.fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.beach-cinema::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,37,64,0.15), rgba(15,37,64,0.3));
  z-index: -1;
}
.beach-cinema__content { max-width: 28ch; padding: 0 1.5rem; }
.beach-cinema h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 2px 24px rgba(15, 37, 64, 0.3);
}
.beach-cinema .eyebrow { color: rgba(255, 253, 247, 0.9); margin-bottom: 0.85rem; }

/* ----- Daybeds ----- */
.daybeds-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .daybeds-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.daybeds-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px -25px rgba(15, 37, 64, 0.4);
  position: relative;
}
.daybeds-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.daybeds-disclaimer {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin-top: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.daybeds-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ----- Gallery masonry ----- */
.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 600px) { .gallery-grid { columns: 2; column-gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; column-gap: 1.5rem; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: var(--ivory);
  cursor: pointer;
  display: block;
}
@media (min-width: 600px) { .gallery-item { margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .gallery-item { margin-bottom: 1.5rem; } }
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 600ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(15, 37, 64, 0.78));
  color: var(--ivory);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 280ms ease;
}
.gallery-item:hover .gallery-item__cap,
.gallery-item:focus .gallery-item__cap { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(15, 37, 64, 0.85);
  z-index: 500;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--ivory);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close svg { width: 22px; height: 22px; }

/* ----- Showreel ----- */
.showreel {
  position: relative;
  height: clamp(360px, 60vh, 600px);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.showreel video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
}
.showreel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,37,64,0.25), rgba(15,37,64,0.45));
  z-index: -1;
}
.showreel blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 500;
  max-width: 22ch;
  color: var(--ivory);
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(15, 37, 64, 0.3);
  padding: 0 1.5rem;
}

/* ----- Reviews ----- */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15, 37, 64, 0.18);
}
.review-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
}
.review-card__author {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.review-card__author strong { color: var(--ink); font-weight: 600; }
.reviews-meta {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reviews-meta a { color: var(--cabana); font-weight: 600; }
.reviews-meta a:hover { color: var(--cabana-soft); text-decoration: underline; }

/* ----- Butrint ----- */
.butrint-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .butrint-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.butrint-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.butrint-media img {
  border-radius: var(--radius-card);
  aspect-ratio: 4/5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px -25px rgba(15, 37, 64, 0.4);
}
.butrint-media img:first-child { transform: translateY(-1.5rem); }
.butrint-media img:last-child { transform: translateY(1.5rem); }
.butrint-body p + p { margin-top: 1rem; }

/* ----- Find Us ----- */
.find-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .find-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: stretch; } }
.find-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(15, 37, 64, 0.35);
  min-height: 360px;
  background: var(--cabana-pale);
}
.find-map iframe { width: 100%; height: 100%; border: 0; min-height: 360px; display: block; }
.find-infos {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.find-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.find-row svg {
  width: 20px; height: 20px;
  color: var(--cabana);
  flex-shrink: 0;
  margin-top: 2px;
}
.find-row__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.find-row__value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.find-row__value a:hover { color: var(--cabana); }
.cash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--spritz);
  color: var(--ivory);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ----- Footer ----- */
.footer {
  background: var(--cream-deep);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--cabana);
  margin-bottom: 0.5rem;
  display: block;
}
.footer__sig {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 0.9;
  margin-bottom: 0.5rem;
}
.footer__baseline {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 30ch;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.6rem; font-size: 0.95rem; color: var(--ink); }
.footer__col a:hover { color: var(--cabana); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cabana);
  transition: background 200ms ease, color 200ms ease;
}
.footer__social a:hover { background: var(--cabana); color: var(--ivory); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: center;
}
.footer__bottom a:hover { color: var(--cabana); }

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.6,.2,1), transform 700ms cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Helpers ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
