/* ============================================================
   DOMAINE DE LA NOISERAIE — Design System
   Premium event venue in the Beaujolais vineyards
   ============================================================ */

/* Typographies système — aucune dépendance réseau requise */
/* Cormorant Garamond → Georgia (serif élégant natif) */
/* Inter → System UI (sans-serif natif premium) */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-dark:   #111D13;
  --green:        #1A2E1D;
  --green-mid:    #2A4430;
  --sage:         #6E9474;
  --champagne:    #BFA07A;
  --champagne-lt: #D4BA99;
  --stone:        #876F53;
  --cream:        #FAF8F4;
  --sand:         #EDE8DE;
  --sand-lt:      #F5F2EB;
  --text:         #1A1A1A;
  --muted:        #6A6360;
  --muted-lt:     #9A9694;
  --white:        #FFFFFF;
  --radius-sm:    3px;
  --radius:       6px;
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --transition:   0.32s var(--ease);
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow:       0 4px 28px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.13);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--green);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
p { line-height: 1.78; }

/* ── Utility ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.eyebrow--sage    { color: var(--sage); }
.eyebrow--white   { color: rgba(255,255,255,.6); }
.eyebrow--green   { color: var(--green-mid); }
.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }
.text-white, .text-white h2, .text-white h3, .text-white p { color: white; }
.text-white .section-lead { color: rgba(255,255,255,.7); }

/* ── Layout ─────────────────────────────────────────────────── */
.section        { padding: 6.5rem 0; }
.section--alt   { background: var(--sand-lt); }
.section--dark  { background: var(--green); }
.section--sand  { background: var(--sand); }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.container--narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.6rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 3.5rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 150px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}
.nav.scrolled .nav-logo img { filter: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { color: var(--green-mid); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone svg { width: 14px; height: 14px; stroke: currentColor; }
.nav.scrolled .nav-phone { color: var(--green); }
.nav-cta-btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  background: var(--champagne);
  color: white;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--stone);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  width: 32px; height: 32px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { display: flex; }
.mobile-menu.visible { opacity: 1; }
.mobile-menu a {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  padding: 1rem 0;
  transition: color var(--transition);
  text-align: center;
}
.mobile-menu a:hover { color: var(--champagne); }
.mobile-menu-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,.12);
  margin: 0.8rem 0;
}
.mobile-menu-phone {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.06em;
}
.mobile-menu-cta {
  margin-top: 1.5rem;
  padding: 0.9rem 2.4rem;
  background: var(--champagne);
  color: white !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--champagne);
  color: white;
}
.btn--primary:hover {
  background: var(--stone);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.9);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline-dark:hover {
  background: var(--green);
  color: white;
}
.btn--dark {
  background: var(--green);
  color: white;
}
.btn--dark:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--white {
  background: white;
  color: var(--green);
}
.btn--white:hover {
  background: var(--sand);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

/* ── Hero (homepage) ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,16,8,.18) 0%,
    rgba(8,16,8,.12) 35%,
    rgba(8,16,8,.55) 70%,
    rgba(8,16,8,.78) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
}
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero__title {
  color: white;
  max-width: 820px;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero__subtitle {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 2.8rem;
  line-height: 1.6;
}
.hero__ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,.8);
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; } 100% { top: 200%; }
}

/* ── Sous-pages : logo masqué dans la nav (réapparaît au scroll) ── */
.page-sub .nav-logo {
  display: none;
}
.page-sub .page-hero {
  height: 68vh;
  min-height: 420px;
  padding-bottom: 4rem;
}
/* Premier bloc juste sous le hero */
.page-sub .page-hero + .section {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}
/* Aligner le texte en haut, au même niveau que la photo */
.page-sub .page-hero + .section .intro {
  align-items: flex-start;
}
/* Espacement réduit pour les autres sections des sous-pages */
.page-sub .section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
/* Hero séminaires : titre long, un peu plus de hauteur */
body.page-sub .page-hero[aria-label*="minaire"] {
  height: 72vh;
  min-height: 460px;
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 80px;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,16,8,.25) 0%,
    rgba(8,16,8,.58) 75%,
    rgba(8,16,8,.75) 100%
  );
}
.page-hero__content { position: relative; z-index: 2; width: 100%; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.page-hero__breadcrumb a, .page-hero__breadcrumb span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,.8); }
.page-hero__title { color: white; max-width: 700px; }
.page-hero__lead {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,.78);
  margin-top: 1rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats {
  background: var(--green);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 3.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--green-mid); }
.stat__number {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat__label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ── Intro section ──────────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro__image {
  position: relative;
}
.intro__img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.intro__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--champagne);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.intro__badge-number {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
}
.intro__badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 0.2rem;
  line-height: 1.3;
}
.intro__bullets {
  list-style: none;
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.intro__bullets li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text);
}
.intro__bullets li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px; min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BFA07A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Offer cards ────────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.offer-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.offer-card__img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s var(--ease); }
.offer-card:hover .offer-card__img { transform: scale(1.04); }
.offer-card__img-wrap { overflow: hidden; height: 260px; }
.offer-card__body { padding: 2rem 2rem 2.2rem; display: flex; flex-direction: column; flex: 1; }
.offer-card__tag {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 0.8rem;
}
.offer-card__title { font-size: 1.75rem; color: var(--green); margin-bottom: 0.75rem; }
.offer-card__text {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.6rem; flex: 1;
}
.offer-card__link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--champagne);
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap var(--transition), color var(--transition);
}
.offer-card__link svg { width: 14px; height: 14px; stroke: currentColor; }
.offer-card:hover .offer-card__link { gap: 0.9rem; color: var(--stone); }

/* ── Full-bleed split ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: stretch;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 5rem;
  background: var(--cream);
}
.split--alt .split__content { background: var(--sand-lt); }
.split--dark .split__content { background: var(--green); }
.split--dark .split__content h2,
.split--dark .split__content h3,
.split--dark .split__content h4 { color: white; }
.split--dark .split__content p,
.split--dark .split__content .section-lead { color: rgba(255,255,255,.72); }
.split__list {
  list-style: none;
  margin: 2rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.55;
}
.split--dark .split__list li { color: rgba(255,255,255,.8); }
.split__list li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BFA07A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 0.6rem;
}
.gallery__item { overflow: hidden; border-radius: 2px; cursor: pointer; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide  { grid-column: span 8; }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--sm    { grid-column: span 4; }
.gallery__item--med   { grid-column: span 6; }

/* ── Process steps ──────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  counter-reset: steps;
}
.step { counter-increment: steps; }
.step__num {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}
.step__num::before { content: counter(steps, decimal-leading-zero); }
.step__title { font-size: 1.35rem; color: var(--green); margin-bottom: 0.5rem; }
.step__text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── Uses grid ──────────────────────────────────────────────── */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.use-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.use-card:hover { border-color: var(--champagne); box-shadow: var(--shadow); }
.use-card__icon {
  width: 44px; height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.use-card__icon svg { width: 20px; height: 20px; stroke: var(--champagne); }
.use-card__title { font-size: 1.4rem; color: var(--green); margin-bottom: 0.6rem; }
.use-card__text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── Google Reviews Band ────────────────────────────────────── */
.google-band {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.google-band__score {
  text-align: center;
  padding-right: 2.5rem;
  border-right: 1px solid var(--sand);
}
.google-band__score svg { display: inline-block; margin-bottom: .6rem; }
.google-band__number {
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: .3rem;
}
.google-band__stars { color: #F5A623; font-size: 1.35rem; letter-spacing: .05em; }
.google-band__count {
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
}
.google-band__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.g-review {
  padding: 1.3rem;
  background: var(--sand-lt);
  border-radius: var(--radius);
}
.g-review__stars { color: #F5A623; font-size: .9rem; margin-bottom: .5rem; }
.g-review__text {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: .88rem;
  color: var(--green);
  line-height: 1.65;
  margin-bottom: .6rem;
}
.g-review__author { font-size: .75rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

/* ── Compact Google badge (used on LP) ─────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
}
.google-badge__stars { color: #F5A623; font-size: 1.1rem; }
.google-badge__text { font-size: .9rem; color: var(--text); }
.google-badge__text strong { color: var(--green); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.7rem 0;
  text-align: left; cursor: pointer;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 1.25rem; color: var(--green);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--stone); }
.faq__icon {
  width: 26px; height: 26px; min-width: 26px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: rotate(45deg);
}
.faq__icon svg { width: 12px; height: 12px; stroke: var(--muted); }
.faq__question[aria-expanded="true"] .faq__icon svg { stroke: white; }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
  font-size: 0.93rem; color: var(--muted); line-height: 1.8;
}
.faq__answer.open {
  max-height: 400px;
  padding-bottom: 1.8rem;
}

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(110,148,116,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__title { color: white; margin-bottom: 1rem; }
.cta-band__text {
  font-size: 1.08rem; color: rgba(255,255,255,.68);
  max-width: 460px; margin: 0 auto 2.8rem;
  line-height: 1.8;
}
.cta-band__btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ── Contact form ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: start;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  font-size: 0.93rem; color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(191,160,122,.14);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }

/* Contact sidebar */
.contact-sidebar {}
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-info-card__img { width: 100%; height: 200px; object-fit: cover; }
.contact-info-card__body { padding: 2rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { width: 18px; height: 18px; stroke: var(--champagne); flex-shrink: 0; margin-top: 2px; }
.contact-info-item__content {}
.contact-info-item__label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-lt); margin-bottom: 0.2rem;
}
.contact-info-item__value {
  font-size: 0.95rem; color: var(--text);
  font-weight: 500; line-height: 1.5;
}
.contact-info-item__value a { color: var(--green); transition: color var(--transition); }
.contact-info-item__value a:hover { color: var(--champagne); }

/* ── Rooms grid ─────────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-card__img { width: 100%; height: 240px; object-fit: cover; }
.room-card__body { padding: 1.8rem 2rem; }
.room-card__name { font-size: 1.6rem; color: var(--green); margin-bottom: 0.4rem; }
.room-card__capacity {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--champagne); margin-bottom: 0.9rem;
}
.room-card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── Accommodation grid ─────────────────────────────────────── */
.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.accommodation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  cursor: pointer;
}
.accommodation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.accommodation-card:hover img { transform: scale(1.05); }
.accommodation-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,8,.8) 0%, rgba(8,16,8,.2) 50%, transparent 100%);
}
.accommodation-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.accommodation-card__title {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 1.8rem; color: white; margin-bottom: 0.3rem;
}
.accommodation-card__sub { font-size: 0.8rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── Reassurance band ───────────────────────────────────────── */
.reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.reassurance__item { text-align: center; }
.reassurance__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.reassurance__icon svg { width: 24px; height: 24px; stroke: var(--champagne); }
.reassurance__title { font-size: 1.1rem; color: var(--green); margin-bottom: 0.35rem; }
.reassurance__text { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.65);
  padding: 5.5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2.5rem;
}
.footer__brand-logo {
  height: auto;
  max-height: 110px;
  width: auto;
  max-width: 300px;
  filter: brightness(0) invert(1) opacity(.92);
  margin-bottom: 1.4rem;
}
.footer__tagline {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}
.footer__phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.05rem; font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.6rem;
}
.footer__phone svg { width: 16px; height: 16px; stroke: currentColor; }
.footer__email {
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
}
.footer__email a { transition: color var(--transition); }
.footer__email a:hover { color: var(--champagne); }
.footer__col-title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer__links a {
  font-size: 0.88rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--champagne); }
.footer__address { font-size: 0.88rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,.28);
}
.footer__legal a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}
.footer__social svg { width: 15px; height: 15px; stroke: currentColor; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Sticky phone bar (mobile) ──────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--green);
  padding: 0.9rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta__phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600;
  color: white; text-decoration: none;
}
.sticky-cta__phone svg { width: 16px; height: 16px; stroke: currentColor; }
.sticky-cta__btn {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  background: var(--champagne);
  color: white;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 2.5rem; }
  .container--narrow { padding: 0 2.5rem; }
  .nav { padding: 1.4rem 2.5rem; }
  .nav.scrolled { padding: 0.9rem 2.5rem; }
  .hero__content { padding: 0 2.5rem; }
  .page-hero__content { padding: 0 2.5rem; }
  .split__content { padding: 4rem 3.5rem; }
  .footer__grid { gap: 2.5rem; }
}

@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro__img { height: 380px; }
  .intro__badge { display: none; }
  .offer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .offer-grid .offer-card { display: grid; grid-template-columns: 320px 1fr; }
  .offer-card__img-wrap { height: 100%; min-height: 240px; }
  .offer-card__img { height: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__img { min-height: 360px; }
  .split__content { padding: 4rem 2.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reassurance { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-right { display: none !important; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .section { padding: 4.5rem 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .offer-grid .offer-card { grid-template-columns: 1fr; }
  .offer-card__img-wrap { height: 240px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--sm { grid-column: span 1; }
  .gallery__item--med { grid-column: span 2; }
  .google-band { grid-template-columns: 1fr; }
  .google-band__score { border-right: none; border-bottom: 1px solid var(--sand); padding: 0 0 1.5rem; }
  .google-band__cards { grid-template-columns: 1fr; gap: 1rem; }
  .uses-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .accommodation-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
  .reassurance { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.4rem; }
  .container--narrow { padding: 0 1.4rem; }
  .nav { padding: 1.1rem 1.4rem; }
  .nav.scrolled { padding: 0.8rem 1.4rem; }
  .hero__content { padding: 0 1.4rem; }
  .page-hero__content { padding: 0 1.4rem; }
  .hero { padding-bottom: 5rem; }
  .page-hero { padding-bottom: 3rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .cta-band__btns { flex-direction: column; padding: 0 1.4rem; }
  .cta-band__btns .btn { width: 100%; }
  .split__content { padding: 3rem 1.4rem; }
  .steps { grid-template-columns: 1fr; }
  .reassurance { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--sm, .gallery__item--med { grid-column: span 1; }
  .gallery__item--tall { grid-row: span 1; }
}
