/* ============================================================
   Lac de Lumière — stylesheet (Bothy theme)
   Fonts: Playfair Display (display), Lato (body)
   Approach: fluid typography + spacing via clamp(), minimal breakpoints
   ============================================================ */

:root {
  /* Lac de Lumière — Design System v1 (canonical) */
  --lac-teal:        #0f4a4a;   /* logo teal — primary everything */
  --lac-teal-dark:   #082f2f;   /* hover, active, deep backgrounds */
  --lac-rust:        #a0501e;   /* primary CTAs only — booking, contact */
  --lac-rust-dark:   #7a3c14;   /* rust hover */
  --lac-cream:       #f5f0e6;   /* main page background */
  --lac-stone:       #e3dcc8;   /* alternating section background */
  --lac-ink:         #1f2a2a;   /* body text */
  --lac-ink-muted:   #5a6868;   /* subheadings, meta, captions */
  --lac-ink-inverse: #f5f0e6;   /* text on dark — cream, not pure white */
  --lac-rule:        rgba(15, 74, 74, 0.12);

  /* Legacy aliases — map old var names to the canonical tokens so existing
     selectors continue to resolve to the correct new colours. */
  --color-primary: var(--lac-teal);
  --color-accent:  var(--lac-rust);
  --color-bg:      var(--lac-cream);
  --color-page:    var(--lac-cream);
  --color-text:    var(--lac-ink);
  --color-muted:   var(--lac-ink-muted);
  --color-nav:     var(--lac-teal);
  --color-dark:    var(--lac-teal-dark);
  --color-paper:   var(--lac-ink-inverse);
  --color-cta:     var(--lac-teal);
  --color-rust:    var(--lac-rust);
  --color-bg-1:    var(--lac-cream);
  --color-bg-2:    var(--lac-stone);
  --color-bg-3:    var(--lac-cream);

  --gutter: 10px;              /* gap between boxed sections */
  --box-radius: 10px;
  --main-top: var(--gutter);   /* overridden on no-hero pages below */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Lato", system-ui, -apple-system, sans-serif;

  --content-max: 1200px;

  /* Fluid scales */
  --fs-h1:  clamp(2.25rem, 5.5vw + 0.5rem, 4.5rem);
  --fs-h2:  clamp(1.75rem, 3vw + 0.5rem, 3rem);
  --fs-h3:  clamp(1.2rem, 1.2vw + 0.7rem, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.7vw + 0.85rem, 1.4rem);
  --fs-body: clamp(1rem, 0.35vw + 0.85rem, 1.15rem);
  --fs-small: clamp(0.8rem, 0.2vw + 0.7rem, 0.9rem);

  --pad-section: clamp(2.5rem, 6vw, 6rem);
  --pad-gutter:  clamp(1.25rem, 4vw, 3rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-page);
}

/* Flat full-width sections — design system v1 replaces the boxed-partials approach */
main {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main > section { background: var(--lac-cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lac-teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--lac-teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--lac-teal);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1rem; }

/* Buttons — design system v1: two types only.
   .btn           = secondary (teal) — navigational CTAs
   .btn--primary  = primary  (rust)  — conversion CTAs only (booking, contact, package) */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--lac-teal);
  color: var(--lac-ink-inverse);
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 150ms ease;
}
.btn:hover { background: var(--lac-teal-dark); color: var(--lac-ink-inverse); }
.btn--primary { background: var(--lac-rust); }
.btn--primary:hover { background: var(--lac-rust-dark); }

/* Site header — burger LEFT, icon+wordmark CENTRE, language switcher RIGHT.
   Transparent on hero, solid+sticky after scroll. */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: calc(0.75rem + 10px) clamp(1rem, 2vw, 1.5rem) 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  transition: background 250ms ease, border-color 250ms ease;
}
.site-header--scrolled { border-bottom-color: rgba(0,0,0,0.06); }

/* Burger — left column */
.menu-toggle {
  grid-column: 1;
  justify-self: start;
  background: none; border: 0;
  width: 54px; height: 54px; padding: 11px;
  cursor: pointer;
  transition: opacity 320ms ease;
}
body.menu-open .menu-toggle { opacity: 0; pointer-events: none; }
.menu-toggle__bar {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background 250ms ease;
}
.site-header--scrolled .menu-toggle__bar { background: var(--color-text); }

/* Brand (icon + wordmark) — centre column */
.site-header__brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  transition: color 250ms ease;
}
.site-header--scrolled .site-header__brand { color: var(--color-text); }

.site-header__icon {
  height: clamp(55px, 6.25vw, 78px);     /* +25% over the original */
  width: auto;
  display: block;
  transition: opacity 250ms ease;
}
.site-header__icon--colour { display: none; }
.site-header--scrolled .site-header__icon--white  { display: none; }
.site-header--scrolled .site-header__icon--colour { display: block; }

.site-header__wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.2vw + 0.7rem, 1.6rem);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.site-header--scrolled .site-header__wordmark { text-shadow: none; }

/* Language switcher — right column */
.site-header__langs {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  padding-right: 0.25rem;
}
.site-header__lang {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  opacity: 0.75;
  transition: color 200ms, opacity 200ms, background 200ms;
}
.site-header--scrolled .site-header__lang { color: var(--color-text); }
.site-header__lang:hover { opacity: 1; }
.site-header__lang--current {
  opacity: 1;
  background: rgba(255,255,255,0.18);
}
.site-header--scrolled .site-header__lang--current {
  background: rgba(0,0,0,0.06);
  color: var(--color-primary);
}

/* Collapse wordmark on narrow screens — icon only */
@media (max-width: 640px) {
  .site-header__wordmark { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header__brand { gap: 0; }
}

/* Menu overlay — fades in/out with a small lift on the nav */
.menu-overlay {
  position: fixed;
  top: var(--main-top);           /* matches main's top padding — same box alignment on every page */
  right: var(--gutter);
  bottom: var(--gutter);
  left: var(--gutter);
  border-radius: var(--box-radius);
  background: rgba(240, 244, 245, 0.85);   /* 85% opaque mist white — Lac palette */
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}
.menu-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms ease, visibility 0s linear 0s;
}
/* Override default [hidden] display:none so the fade can play both ways */
.menu-overlay[hidden] { display: flex; }

.menu-overlay__nav {
  transform: translateY(14px);
  opacity: 0;
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms, opacity 320ms ease 80ms;
}
.menu-overlay:not([hidden]) .menu-overlay__nav {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .menu-overlay, .menu-overlay__nav { transition: none; transform: none; }
}
.menu-overlay__close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: 0;
  font-size: 2.5rem; line-height: 1;
  cursor: pointer; color: var(--color-text);
}
.menu-overlay__nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.85rem;
  text-align: center;
}
/* CTA list — two buttons side-by-side, clearly separated from the main nav list
   by a generous gap and a subtle cream divider. Extra specificity (ul.x) to beat
   the base .menu-overlay__nav ul rule which sets flex-direction: column. */
.menu-overlay__nav ul.menu-overlay__nav-ctas {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.menu-overlay__nav-ctas li { list-style: none; }
.menu-overlay__nav-ctas .menu-overlay__cta {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
/* Default: cream outline ghost (for "Send us a message") */
.menu-overlay__nav-ctas .menu-overlay__cta {
  background: transparent;
  color: var(--lac-ink-inverse);
  border: 1px solid rgba(245, 240, 230, 0.5);
}
.menu-overlay__nav-ctas .menu-overlay__cta:hover,
.menu-overlay__nav-ctas .menu-overlay__cta:focus-visible {
  border-color: var(--lac-ink-inverse);
  background: rgba(245, 240, 230, 0.08);
}
/* Primary modifier: rust fill (for "Book your stay") — wins against default */
.menu-overlay__nav-ctas .menu-overlay__cta--primary {
  background: var(--lac-rust);
  border-color: var(--lac-rust);
}
.menu-overlay__nav-ctas .menu-overlay__cta--primary:hover,
.menu-overlay__nav-ctas .menu-overlay__cta--primary:focus-visible {
  background: var(--lac-rust-dark);
  border-color: var(--lac-rust-dark);
}
.menu-overlay__nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-decoration: none;
  color: var(--color-text);
  transition: color 180ms ease;
}
.menu-overlay__nav a:hover,
.menu-overlay__nav a:focus-visible {
  color: var(--color-primary);
}
body.menu-open { overflow: hidden; }
body.no-hero { --main-top: clamp(72px, 10vh, 96px); }

/* Long-form article (blog post). Box fills the full section width; the text
   column inside is constrained to ~72 characters for readability. */
.post {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
}
.post__breadcrumb,
.post__header,
.post__body,
.post__outro {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}
.post__header { margin-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 1.25rem; }
.post__title { font-size: clamp(1.75rem, 3vw + 0.8rem, 2.75rem); margin: 0 0 0.5rem; }
.post__date {
  font-size: var(--fs-small);
  color: var(--color-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}
.post__body h2 { font-size: clamp(1.35rem, 1.5vw + 0.8rem, 1.8rem); margin: 2rem 0 0.75rem; }
.post__body h3 { font-size: clamp(1.1rem, 1vw + 0.7rem, 1.35rem); margin: 1.5rem 0 0.5rem; }
.post__body p { margin: 0 0 1rem; }
.post__body ul, .post__body ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.post__body li { margin-bottom: 0.35rem; }
.post__body a { color: var(--color-primary); }
.post__body a:hover { color: var(--color-accent); }
.post__body strong { font-weight: 700; }

.post__breadcrumb {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 150ms;
}
.post__breadcrumb:hover { color: var(--color-primary); }

.post__outro {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.post__outro-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.post__outro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
}
.btn--ghost:hover {
  background: var(--color-primary);
  color: #fff !important;
}

/* When menu is open, fade out the hero text behind it so nothing competes */
.hero__heading, .hero__subheading, .hero__scroll, .hero__post-date { transition: opacity 220ms ease; }
body.menu-open .hero__heading,
body.menu-open .hero__subheading,
body.menu-open .hero__scroll,
body.menu-open .hero__post-date { opacity: 0; }

/* Header solidifies to the accent (warm gold) on scroll — warmer than pure white. */
.site-header--scrolled { background: var(--color-accent); }

/* ============================================================
   Hero — full block, dead centre by default, scroll hint
   ============================================================ */
.hero {
  /* Full viewport minus the gutters above and below (2 × gutter) */
  min-height: clamp(590px, calc(100vh - calc(var(--gutter) * 2)), 1070px);
  min-height: clamp(590px, calc(100dvh - calc(var(--gutter) * 2)), 1070px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: clamp(5rem, 10vh, 8rem) var(--pad-gutter) clamp(4rem, 8vh, 6rem);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.65) 100%),
    rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 1;
}
/* Hero video — sits under the gradient, above the background-image poster.
   Hidden on mobile and for reduced-motion users (poster image takes over). */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__overlay {
  position: relative;
  max-width: min(90ch, 100%);
  z-index: 2;
}
.hero--align-center .hero__overlay { text-align: center; margin: 0 auto; }
.hero--align-left   .hero__overlay { text-align: left; margin-right: auto; }
.hero__heading {
  color: #fff;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1vw + 0.95rem, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Hero variant for blog post top — shorter than the homepage full-viewport hero */
.hero--post {
  min-height: clamp(510px, 82.5vh, 780px);
  min-height: clamp(510px, 82.5dvh, 780px);
}
.hero__post-date {
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 1.25rem 0 0;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Scroll hint — animated "mouse with dot" at hero bottom */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 200ms;
  z-index: 3;
}
.hero__scroll:hover { opacity: 1; color: #fff; }
.hero__scroll-mouse {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.hero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: hero-scroll 1.8s ease-in-out infinite;
}
@keyframes hero-scroll {
  0%   { opacity: 1; transform: translate(-50%, 0); }
  50%  { opacity: 0.3; transform: translate(-50%, 10px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Half — full-bleed 50/50, image flush, text pushed toward image
   ============================================================ */
.half {
  display: grid;
  gap: 0;
  align-items: stretch;
  padding: 0;
  height: clamp(420px, 60vh, 640px);      /* fixed height per viewport — all halves match */
  overflow: hidden;                         /* clip any content that exceeds the block */
  background: var(--color-bg);
}
.half--image-left  { grid-template-areas: "image content"; grid-template-columns: 1fr 1fr; }
.half--image-right { grid-template-areas: "content image"; grid-template-columns: 1fr 1fr; }

.half__image {
  grid-area: image;
  position: relative;
  overflow: hidden;
  min-height: 0;           /* allow grid child to shrink */
  min-width: 0;
}
.half__image img {
  position: absolute;       /* take out of flow — image never forces block height */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.half__content {
  grid-area: content;
  align-self: center;
  justify-self: center;                    /* centred in its half, equal L/R breathing room */
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 2.5rem);
  max-width: 60ch;                          /* ~66% of a 50vw half on desktop */
  width: 100%;
}
/* Text reads toward the image: left-align when image is left, right-align when image is right */
.half--image-left  .half__content { text-align: left; }
.half--image-right .half__content { text-align: right; }
/* Body/bullets pointed sensibly even when text-align: right */
.half__heading { margin-bottom: 0.3em; }
.half__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.half__body ul, .half__body ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.half__body p { margin: 0 0 1rem; }

/* Stack below 720px — single column, image on top, auto height (content drives) */
@media (max-width: 720px) {
  .half {
    grid-template-areas: "image" "content" !important;
    grid-template-columns: 1fr !important;
    height: auto;
    overflow: visible;
  }
  .half__image {
    height: clamp(220px, 50vw, 340px);
  }
  .half__content {
    padding: clamp(1.75rem, 6vw, 2.5rem) var(--pad-gutter);
    justify-self: stretch !important;
    max-width: none;
  }
}

/* ============================================================
   Map / Testimonials / Blog grid / Gallery / Lightbox
   ============================================================ */
/* Accommodation — content column + pricing sidebar (stacked on narrow viewports) */
.accommodation {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
}
.accommodation__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 380px);
  align-items: start;
}
@media (max-width: 860px) {
  .accommodation__inner { grid-template-columns: 1fr; }
}
.accommodation__content > * + * { margin-top: 1rem; }
.accommodation__heading {
  font-size: clamp(1.4rem, 1.5vw + 0.8rem, 1.85rem);
  margin: 3rem 0 0.3em;
}
.accommodation__content > :first-child { margin-top: 0; }
.accommodation__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-muted);
  margin: 0 0 1rem;
}
.accommodation__body p { margin: 0 0 1rem; }
.accommodation__body ul, .accommodation__body ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.accommodation__body li { margin-bottom: 0.35rem; }
.accommodation__body strong { font-weight: 700; }
.accommodation__body a { color: var(--color-primary); }
.accommodation__pricing { position: sticky; top: clamp(90px, 12vh, 110px); }
.accommodation__pricing .pricing__card { max-width: none; margin: 0; }
/* Lake Bait — supplier sign-off at the bottom of the page */
.bait-supplier {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lac-rule);
}
.bait-supplier__logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1rem;
  display: inline-block;
  border-radius: 4px;
}
.bait-supplier__note {
  font-style: italic;
  color: var(--lac-ink-muted);
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 860px) {
  .accommodation__pricing { position: static; }
}

/* Info — full-width text section with a readable centered column (for accommodation pages) */
.info {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
}
.info__inner {
  max-width: 72ch;
  margin: 0 auto;
}
.info__heading {
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.25rem);
  margin: 0 0 0.3em;
}
.info__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}
.info__body p { margin: 0 0 1rem; }
.info__body ul, .info__body ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.info__body li { margin-bottom: 0.35rem; }
.info__body strong { font-weight: 700; }
.info__body a { color: var(--color-primary); }
.info__body a:hover { color: var(--color-accent); }
/* Restore white text on .btn inside info blocks (otherwise the generic a-rule wins on specificity) */
.info__body a.btn,
.info__body a.btn:hover { color: #fff; }

/* Pricing — centered card with headline price, CTA, and extras list */
.pricing {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
}
.pricing__card {
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  text-align: center;
}
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.4rem);
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font-weight: 600;
}
.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
  color: var(--color-text);
}
.pricing__note {
  font-size: var(--fs-small);
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}
.pricing__cta {
  margin-bottom: 1.75rem;
}
.pricing__extras {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.pricing__extras-heading {
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.pricing__extras-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: var(--fs-small);
  color: var(--color-text);
}
.pricing__extras-list li { margin-bottom: 0.3rem; }
.pricing__footnote {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Map — rendered as a half block: iframe in the image half, text in the content half */
.map .half__image { background: #e8e6dd; }
.map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  border: 0;
}
/* Click-to-activate placeholder — keeps Lighthouse perf clean until user taps */
.map__activate {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(107, 126, 94, 0.10), rgba(166, 124, 82, 0.10)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 40px),
    #ece9df;
  border: 0;
  color: var(--color-primary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: background-color 200ms;
}
.map__activate:hover { color: var(--color-accent); }
.map__activate-pin {
  display: inline-flex;
  color: var(--color-primary);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform 220ms;
}
.map__activate:hover .map__activate-pin { transform: translateY(-4px); }
.map__activate-label {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--fs-small);
  font-weight: 600;
}
.map__placeholder {
  padding: 3rem 1rem;
  text-align: center;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  color: var(--color-muted);
  font-style: italic;
}

.testimonials { padding: var(--pad-section) var(--pad-gutter); }
.testimonials__inner { max-width: var(--content-max); margin: 0 auto; }
.testimonials__heading { text-align: center; margin-bottom: 2.5rem; }
.testimonials__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;               /* uniform card height across a row */
}
/* Grid (non-masonry, non-stacked) — clamp long quotes to 8 lines so cards match heights */
.testimonials--grid .testimonial__quote {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonials__more {
  text-align: center;
  margin: 2rem 0 0;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.testimonials__more a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
}
.testimonials__more a:hover { color: var(--color-accent); }
/* Stacked variant — single-column full-width blocks (for a dedicated reviews page) */
.testimonials--stacked .testimonials__grid {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  gap: 1.25rem;
}
.testimonials--stacked .testimonial {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3rem);
}
.testimonials--stacked .testimonial__quote {
  font-size: clamp(1.1rem, 0.7vw + 0.95rem, 1.3rem);
  line-height: 1.55;
}
.testimonials--stacked .testimonial__name {
  margin-top: 0.75rem;
  font-size: var(--fs-small);
}

/* Masonry variant — CSS columns pack cards tight without gaps (for reviews page) */
.testimonials--masonry .testimonials__grid {
  display: block;
  columns: 3 280px;
  column-gap: 2rem;
}
.testimonials--masonry .testimonial {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;   /* Safari */
  page-break-inside: avoid;              /* older */
  margin: 0 0 2rem;
  display: block;                        /* override flex so column layout can compute height */
}
.testimonial {
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.testimonial__rating { color: var(--color-accent); font-size: 1.1rem; }
.testimonial__rating .star { color: rgba(0,0,0,0.15); }
.testimonial__rating .star--on { color: var(--color-accent); }
.testimonial__quote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text);
}
.testimonial__name {
  font-size: var(--fs-small);
  color: var(--color-muted);
  margin-top: auto;
}

.blog-grid { padding: var(--pad-section) var(--pad-gutter); }
.blog-grid__inner { max-width: var(--content-max); margin: 0 auto; }
.blog-grid__heading { text-align: center; margin-bottom: 2.5rem; }
.blog-grid__cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 200ms, box-shadow 200ms;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  color: var(--color-text);
}
.blog-card__image img {
  width: 100%; aspect-ratio: 3 / 2;
  object-fit: cover; height: auto;
}
.blog-card__body { padding: clamp(1.25rem, 2vw, 1.75rem); }
.blog-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}
.blog-card__excerpt {
  color: var(--color-muted);
  font-size: var(--fs-body);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.blog-card__date {
  font-size: var(--fs-small);
  color: var(--color-muted);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-gutter);
}
.gallery__heading { text-align: center; margin-bottom: 2rem; }
.gallery__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery__item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #000;
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms, opacity 200ms;
}
.gallery__item:hover img { transform: scale(1.04); opacity: 0.9; }
.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: var(--fs-small);
  font-style: italic;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: 0;
  font-size: 2.5rem; line-height: 1;
  cursor: pointer; color: #fff;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 4px;
}
.lightbox__caption {
  color: #fff;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin: 0;
}

/* Footer — four-column grid of link lists / content blocks */
.site-footer {
  background: var(--color-primary);
  color: #e8ecee;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-gutter) 1.5rem;
  margin-top: 0;
}
.site-footer__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__col-heading {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.2vw + 0.8rem, 1.4rem);
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 600;
}
.site-footer__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.site-footer__links a {
  color: #ddd;
  text-decoration: none;
  font-size: var(--fs-body);
  transition: color 150ms;
}
.site-footer__links a:hover { color: #fff; }
/* Footer CTA uses an INVERTED palette — cream bg + dark green text — so it
   stays readable on the dark footer background where the regular .btn would fade. */
.site-footer__cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--color-bg);
  border-radius: 3px;
  color: var(--color-primary) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 150ms, color 150ms;
}
.site-footer__cta:hover {
  background: #fff;
  color: var(--color-primary) !important;
}
.site-footer__col-body {
  color: #ccc;
  font-size: var(--fs-body);
  line-height: 1.6;
}
.site-footer__col-body p { margin: 0 0 0.75rem; }
.site-footer__col-body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color 150ms;
}
.site-footer__col-body a:hover { text-decoration-color: #fff; }
.site-footer__tiny {
  max-width: var(--content-max);
  margin: 2.5rem auto 0;
  font-size: var(--fs-small);
  color: #888;
  text-align: center;
}
.site-footer__version {
  color: #666;
  letter-spacing: 0.05em;
}

/* ============================================================
   Weather widget — Open-Meteo live card (Lac-only)
   Temp background: sunrise over the lake, dark overlay for text contrast.
   ============================================================ */
.weather {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background-image:
    linear-gradient(rgba(24, 38, 48, 0.55), rgba(24, 38, 48, 0.55)),
    url('/assets/images/weather-bg.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.weather__card {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.weather__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.75rem;
}
.weather__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 0.75rem;
  min-height: 72px;
}
.weather__temp {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.5rem;
  color: #fff;
}
.weather__temp-unit { color: rgba(255, 255, 255, 0.7); font-weight: 400; font-size: 0.6em; }
.weather__updated {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   Design System v1 — canonical overrides (placed at end to win cascade)
   ============================================================ */

/* Body — cream page background */
body { background: var(--lac-cream); color: var(--lac-ink); }

/* Section backgrounds via explicit modifier classes (set from frontmatter).
   Default section bg = cream. */
main > section.section--bg-cream { background: var(--lac-cream); }
main > section.section--bg-stone { background: var(--lac-stone); }

/* Section vertical padding — design system spec: 96 desktop / 56 mobile */
main > section { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
/* Hero, testimonials, weather have their own padding treatment */
main > section.hero,
main > section.testimonials,
main > section.weather { padding-top: 0; padding-bottom: 0; }

/* Hero — image-only: clear only the background-colour, leave size/position intact */
main > section.hero { background-color: transparent; }

/* Italic subheadings — ink-muted + uniform 4px top / 20px bottom spacing (v1.1) */
.half__subheading, .info__subheading, .accommodation__subheading,
.map__subheading, .hero__subheading {
  color: var(--lac-ink-muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

/* Our Location — subtle divider between text column and map placeholder (v1.1 §3) */
.map .half__content { text-align: left; }
.map.half--image-right .half__content {
  padding-right: 48px;
  border-right: 1px solid var(--lac-rule);
}
.map.half--image-right .half__image {
  padding-left: 48px;
}
.map.half--image-left .half__image {
  padding-right: 48px;
  border-right: 1px solid var(--lac-rule);
}
.map.half--image-left .half__content {
  padding-left: 48px;
}
@media (max-width: 720px) {
  .map.half--image-right .half__content,
  .map.half--image-left .half__image { border-right: none; padding-right: 0; }
  .map.half--image-right .half__image,
  .map.half--image-left .half__content { padding-left: 0; }
}

/* Guestbook (testimonials) — teal-dark with cream text, white cards, teal stars */
main > section.testimonials {
  background: var(--lac-teal-dark);
  color: var(--lac-ink-inverse);
  padding: clamp(56px, 7vw, 96px) 0;
}
.testimonials .testimonials__heading,
.testimonials h2, .testimonials h3 { color: var(--lac-ink-inverse); }
.testimonials .testimonial {
  background: #ffffff;
  color: var(--lac-ink);
  border-radius: 4px;
}
.testimonials .testimonial p,
.testimonials .testimonial__body,
.testimonials .testimonial__quote { color: var(--lac-ink); }
.testimonials .testimonial__name { color: var(--lac-ink-muted); }
.testimonials .testimonial__rating,
.testimonials .star--on { color: var(--lac-teal); }
/* Read all reviews → (v1.1 §6) rust underline, cream on hover — deliberate accent on dark */
.testimonials__more a {
  color: var(--lac-ink-inverse);
  text-decoration: underline;
  text-decoration-color: var(--lac-rust);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: text-decoration-color 150ms ease;
}
.testimonials__more a:hover {
  color: var(--lac-ink-inverse);
  text-decoration-color: var(--lac-ink-inverse);
}

/* Weather strip — teal bg, cream text, no image */
main > section.weather {
  background: var(--lac-teal);
  background-image: none;
  color: var(--lac-ink-inverse);
  padding: clamp(56px, 7vw, 96px) clamp(1.25rem, 4vw, 3rem);
}
.weather__label { color: rgba(245, 240, 230, 0.85); }
.weather__temp { color: var(--lac-ink-inverse); }
.weather__temp-unit { color: rgba(245, 240, 230, 0.7); }
.weather__icon { color: var(--lac-ink-inverse); }
.weather__updated { color: rgba(245, 240, 230, 0.75); }

/* Sticky nav — transparent over hero, translucent teal + blur once scrolled */
.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 64px;
  transition: background-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}
.site-header--scrolled {
  background: rgba(15, 74, 74, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 720px) { .site-header { min-height: 56px; } }
/* Hero contrast layer — full-hero 3-stop gradient + base tint. Gives title/subtitle
   legibility over bright video frames AND keeps the nav readable at the top.
   Restored from pre-v1.1 (v1.1 spec's 140px-only overlay wasn't enough). */
.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.65) 100%),
    rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 1;
}
/* Fallback for browsers without backdrop-filter — raise opacity, drop the blur */
@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .site-header--scrolled { background: rgba(15, 74, 74, 0.95); }
}

/* Nav text + logo over teal nav — cream always */
.site-header__brand, .site-header__wordmark { color: var(--lac-ink-inverse); }
.menu-toggle__bar,
.site-header--scrolled .menu-toggle__bar { background: var(--lac-ink-inverse); }
/* White logo silhouette reads cleanly on teal — use it in both states */
.site-header__icon--white  { display: block; }
.site-header__icon--colour { display: none; }
.site-header--scrolled .site-header__icon--white  { display: block; }
.site-header--scrolled .site-header__icon--colour { display: none; }
/* Language switcher — current 100%, others 60% */
.site-header__lang { color: rgba(245, 240, 230, 0.6); }
.site-header__lang:hover { color: var(--lac-ink-inverse); }
.site-header__lang--current { color: var(--lac-ink-inverse); border-bottom-color: var(--lac-ink-inverse); }
.site-header--scrolled .site-header__lang { color: rgba(245, 240, 230, 0.6); }
.site-header--scrolled .site-header__lang:hover { color: var(--lac-ink-inverse); }
.site-header--scrolled .site-header__lang--current { color: var(--lac-ink-inverse); border-bottom-color: var(--lac-ink-inverse); }

/* Menu overlay — teal-dark with cream links */
.menu-overlay { background: rgba(8, 47, 47, 0.96); border-radius: 0; top: 0; left: 0; right: 0; bottom: 0; }
.menu-overlay__close,
.menu-overlay__nav a { color: var(--lac-ink-inverse); }
.menu-overlay__nav a:hover,
.menu-overlay__nav a:focus-visible { color: var(--lac-rust); }

/* Hero text on image — cream, not pure white */
.hero__heading {
  color: var(--lac-ink-inverse);
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 1.05;
}
.hero__subheading { color: rgba(245, 240, 230, 0.85); font-size: clamp(1.15rem, 1.4vw + 0.85rem, 1.75rem); }

/* Footer — teal-dark with cream text at 80%, 100% on hover (v1.1 §5 exact values) */
.site-footer { background: var(--lac-teal-dark); color: var(--lac-ink-inverse); }
.site-footer__col-heading {
  color: var(--lac-ink-inverse);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.8125rem;
  margin: 0 0 16px;
}
.site-footer__col-body,
.site-footer__links a { color: rgba(245, 240, 230, 0.8); text-decoration: none; }
.site-footer__col-body a,
.site-footer__links a:hover { color: var(--lac-ink-inverse); text-decoration: none; }
.site-footer__col-body a:hover,
.site-footer__links a:hover { text-decoration: underline; text-decoration-color: var(--lac-ink-inverse); }
.site-footer__tiny { color: rgba(245, 240, 230, 0.5); }

