/* =============================================================================
   Rebalance — styles
   ========================================================================== */
:root {
  --forest: #8a6c55;      /* warm mocha (from hero fabric) — links, accents */
  --forest-d: #404041;    /* charcoal — headings, strong text */
  --moss: #9a7d64;        /* warm taupe — eyebrows/accents */
  --sage: #cbb8a6;        /* soft warm sand (from hero fabric) — fills */
  --sand: #efe7d6;        /* warm cream — chips */
  --cream: #fdf6eb;       /* warm cream (tanyabasse) — page base */
  --cream-2: #fffdf9;     /* near-white — panels */
  --ink: #404041;         /* charcoal text (tanyabasse) */
  --ink-soft: #6f6f6e;    /* muted charcoal */
  --sun: #404041;         /* solid buttons + footer — charcoal */
  --sun-d: #2b2b2c;       /* button hover */
  --line: rgba(64, 64, 65, 0.13);
  --shadow: 0 14px 40px rgba(64, 64, 65, 0.14);
  --shadow-sm: 0 6px 18px rgba(64, 64, 65, 0.09);
  --radius: 0;
  --radius-lg: 0;
  --wrap: 1140px;
  --font-head: "Montserrat", "Century Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Avenir, Helvetica, Arial, sans-serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", "Avenir Next", Avenir, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 300; line-height: 1.12; color: var(--forest-d); margin: 0 0 0.4em; }
p { margin: 0 0 1em; }

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }
.section { padding: 5.5rem 0; }
#moments { padding-top: calc(5.5rem - 40px); }
.section--tint { background: var(--cream-2); }
.section__head { max-width: 640px; margin-bottom: 2.6rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600; color: var(--moss); margin: 0 0 0.6rem; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.muted { color: var(--ink-soft); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.8rem 1.4rem; border-radius: 0; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--sun); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--sun-d); }
.btn--ghost { background: transparent; color: var(--forest-d); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(162, 172, 135, 0.14); }
.btn--light { background: #fff; color: var(--forest-d); }
.btn--light:hover { background: var(--cream); }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }

/* ---- header / nav — solid bar stuck to the top, square corners ----------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1px solid var(--line); }
.site-header.is-scrolled { box-shadow: 0 2px 14px rgba(64, 64, 65, 0.10); }
.nav { display: flex; align-items: center; justify-content: flex-start; gap: 1.4rem; padding: 0.9rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; font-family: var(--font-head); font-weight: 300; color: var(--forest-d); font-size: 1.2rem; }
.brand img { width: 38px; height: 38px; }
.brand__icon { width: 1.1em; height: 1.1em; flex: none; }
.nav-menu { order: 1; display: flex; align-items: center; gap: 1.8rem; }
.nav-menu a { color: var(--ink); font-family: var(--font-head); font-weight: 300; font-size: 1rem; letter-spacing: 0.03em; }
.nav-menu a:hover { color: var(--forest); }
.lang-switch { order: 2; display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 0; padding: 3px; background: rgba(255, 255, 255, 0.5); }
.lang-switch button { border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); padding: 0.28rem 0.55rem; border-radius: 0; line-height: 1; }
.lang-switch button:hover:not(.is-active) { color: var(--forest); }
.lang-switch button.is-active { background: var(--forest); color: #fff; }

/* paid / booked state + confirmation toast */
.btn--booked { background: var(--sage); color: var(--forest-d); cursor: default; pointer-events: none; }
.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 1rem); background: var(--forest-d); color: #fff; padding: 0.8rem 1.3rem; border-radius: 999px; box-shadow: var(--shadow); font-weight: 600; opacity: 0; transition: opacity .3s ease, transform .3s ease; z-index: 100; cursor: pointer; max-width: 90vw; text-align: center; }
.toast.is-in { opacity: 1; transform: translate(-50%, 0); }
.nav-toggle { order: 3; display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest-d); margin: 5px 0; border-radius: 2px; }

/* ---- hero ---------------------------------------------------------------- */
.hero { position: sticky; top: 0; z-index: 0; overflow: hidden; background: #404041 center / cover no-repeat url("../images/hero-bg.jpg"); color: #fff; min-height: 100vh; }
/* the rest of the page scrolls up and over the pinned hero */
.page-content { position: relative; z-index: 1; background: var(--cream); }

/* ---- parallax image band (fixed background, content scrolls over) -------- */
.parallax { position: relative; min-height: 120vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; text-align: center; background: #3a4a44 url("../images/parallax.jpg") center bottom / cover no-repeat fixed; }
.parallax::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(74, 62, 50, 0.34), rgba(74, 62, 50, 0.46)); }
.parallax__text { position: relative; z-index: 1; margin: 0; max-width: 20ch; font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.2; letter-spacing: 0.01em; color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
@media (max-width: 760px) { .parallax { background-attachment: scroll; min-height: 88vh; } }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.22) 100%); }
/* book button sits at the vertical centre; the line/dot/tagline flow below it */
.hero__inner { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); z-index: 2; display: flex; justify-content: center; }
/* tanyabasse-style book button: flat cream rectangle, charcoal text */
.btn--book { background: #fdf6eb; color: var(--ink); border-radius: 0; border: 0; padding: 0.9rem 2.6rem; font-weight: 400; font-size: 0.95rem; letter-spacing: 0.02em; text-transform: none; box-shadow: 0 6px 22px rgba(0,0,0,0.14); }
.btn--book:hover { background: #fff; color: var(--ink); }
/* vertical white line -> filled dot -> italic tagline (tanyabasse hero cue), below centre */
.hero__cue { position: absolute; top: calc(50% + 46px); left: 0; right: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero__line { width: 1px; height: clamp(90px, 20vh, 230px); background: rgba(255,255,255,0.85); }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; margin-top: 14px; }
.hero__tagline { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: 1.15rem; letter-spacing: 0.16em; color: #fff; margin: 1.2rem 0 0; }

/* ---- featured photo strip ------------------------------------------------ */
.featured__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.mosaic .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic .tile:nth-child(6) { grid-column: span 2; }
.tile { position: relative; padding: 0; border: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sage); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tile:hover img { transform: scale(1.05); }
.tile__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem 0.8rem; color: #fff; font-size: 0.9rem; text-align: left; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0)); opacity: 0; transition: opacity 0.2s ease; }
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { opacity: 1; }
/* video tiles: inline muted looping preview + small corner badge */
.tile__video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.tile:hover .tile__video { transform: scale(1.05); }
.tile__badge { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 1.5px solid rgba(255,255,255,0.85); pointer-events: none; transition: background 0.2s ease; }
.tile__badge::after { content: ""; position: absolute; top: 50%; left: 53%; transform: translate(-50%, -50%); border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent #fff; }
.tile--video:hover .tile__badge, .tile--video:focus-visible .tile__badge { background: rgba(0,0,0,0.7); }

/* full gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }

/* gallery folder tiles (album covers) */
.folder-tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sage); }
.folder-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.folder-tile:hover img { transform: scale(1.05); }
.folder-tile__bar { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.1rem 1rem; color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0)); }
.folder-tile__name { display: block; font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
.folder-tile__count { display: block; font-size: 0.85rem; opacity: 0.9; margin-top: 0.15rem; }

/* ---- trips --------------------------------------------------------------- */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.6rem; }
.card { background: var(--cream-2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__price { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.93); color: var(--forest-d); font-weight: 700; font-size: 0.82rem; padding: 0.4rem 0.75rem; border-radius: 10px; max-width: calc(100% - 24px); line-height: 1.45; backdrop-filter: blur(4px); }
.card__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.3rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 0.7rem; }
.meta-loc { color: inherit; text-decoration: none; }
.meta-loc:hover { text-decoration: underline; }
.card__blurb { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.card__actions { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.card__actions .btn { flex: 1; padding-inline: 0.8rem; }

/* session cards (no photo; lead with title + price) */
.card--session { border-top: 4px solid var(--moss); }
.card--session .card__body { padding-top: 1.5rem; }
.session__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.session__price { font-family: var(--font-head); font-weight: 600; color: var(--sun-d); white-space: nowrap; font-size: 1.05rem; }
.sessions-note { margin-top: 1.8rem; font-size: 0.85rem; max-width: 760px; padding-left: 1rem; border-left: 3px solid var(--sage); }
.sessions-why { margin-top: 3.2rem; max-width: 760px; }
.sessions-why__title { font-size: 1.4rem; font-weight: 300; color: var(--ink); margin: 0 0 0.9rem; }
.sessions-why__body p { margin: 0 0 0.9rem; line-height: 1.72; color: var(--ink); }
.sessions-why__body p:last-child { margin-bottom: 0; }

/* ---- horizontal session cards (image · details · BOOK) ------------------- */
.sessions-list { display: flex; flex-direction: column; gap: 1.5rem; }
.session-card { display: grid; grid-template-columns: 1fr auto; gap: 1.9rem; align-items: center; background: var(--cream-2); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 1.5rem; }
.session-card__media { overflow: hidden; background: var(--sage); aspect-ratio: 1 / 1; }
.session-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.session-card__body { min-width: 0; padding: 0.25rem 0; }
.session-card__title { font-size: 1.4rem; font-weight: 300; margin: 0 0 0.1rem; color: var(--ink); }
.session-card__meta { font-size: 1rem; color: var(--ink); margin: 0 0 1.1rem; }
.session-card__desc { font-size: 0.98rem; color: var(--ink); line-height: 1.6; }
.session-card__desc p { margin: 0 0 0.9rem; }
.session-card__desc p:last-child { margin-bottom: 0; }
.session-card__desc a { color: var(--forest); text-decoration: underline; }
.session-card__action { align-self: start; }
/* session book buttons: defined by a border instead of a drop shadow */
.session-card .btn--book { background: transparent; box-shadow: none; border: 1px solid var(--forest); }
.session-card .btn--book:hover { background: var(--forest); color: #fff; }
.session-card__toggle { display: none; background: none; border: 0; padding: 0.55rem 0 0; margin: 0; color: var(--forest); font: inherit; font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.btn--book-dark { background: #111; color: #fff; border: 0; border-radius: 0; padding: 0.75rem 1.6rem; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; box-shadow: none; }
.btn--book-dark:hover { background: #000; color: #fff; }
@media (max-width: 760px) {
  .session-card { grid-template-columns: 1fr; gap: 0.9rem; padding: 1.2rem; }
  .session-card__media { width: 100%; max-width: 300px; }
  .session-card__action { justify-self: start; }
  /* collapse description; expand via the toggle */
  .session-card__desc { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .session-card.is-open .session-card__desc { -webkit-line-clamp: unset; overflow: visible; }
  .session-card__toggle { display: inline-block; }
}

/* card links to the detail page */
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--forest); }
.card__media a { display: block; width: 100%; height: 100%; }
.card__more { display: inline-block; margin-top: 0.7rem; font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.card__more:hover { color: var(--moss); }
.detail__price { position: static; display: inline-block; margin: 0.5rem 0 0.6rem; font-size: 0.9rem; }

/* ---- event detail page --------------------------------------------------- */
.detail { max-width: 880px; }
.detail__back { display: inline-block; margin-bottom: 1.2rem; font-weight: 600; color: var(--moss); }
.detail__media { margin: 0.4rem 0 2rem; text-align: center; }
.detail__media img { display: block; max-width: 100%; max-height: 85vh; height: auto; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.detail__title { font-size: clamp(2rem, 5vw, 3rem); margin: 1.6rem 0 0.6rem; }
.detail__meta { font-size: 0.98rem; margin-bottom: 1.4rem; }
.detail__actions { max-width: 440px; margin-bottom: 2rem; }
.detail__desc p { font-size: 1.08rem; color: var(--ink); margin-bottom: 1.1rem; max-width: 70ch; }
.detail__desc h2, .detail__desc h3, .detail__desc h4 { font-family: var(--font-head); color: var(--forest-d); margin: 1.6rem 0 0.6rem; }
.detail__desc h2 { font-size: 1.5rem; }
.detail__desc h3 { font-size: 1.25rem; }
.detail__desc ul, .detail__desc ol { margin: 0 0 1.1rem 1.3rem; color: var(--ink); font-size: 1.05rem; max-width: 70ch; }
.detail__desc li { margin-bottom: 0.4rem; }
.detail__desc a { color: var(--forest); text-decoration: underline; }
.detail__desc blockquote { border-left: 3px solid var(--sage); padding-left: 1rem; margin: 0 0 1.1rem; color: var(--ink-soft); font-style: italic; }
.detail__itinerary { margin-top: 2.6rem; }
.detail__itinerary h2 { font-size: 1.7rem; margin-bottom: 1.4rem; }
.itin { display: grid; grid-template-columns: 130px 1fr; gap: 0.4rem 1.4rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.itin:last-child { border-bottom: 1px solid var(--line); }
.itin__day { font-family: var(--font-head); font-weight: 600; color: var(--moss); }
.itin__title { font-size: 1.15rem; margin: 0 0 0.3rem; }
.itin__body p { color: var(--ink-soft); margin: 0; }
.detail__empty { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
@media (max-width: 600px) { .itin { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---- about --------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
.about__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; position: sticky; top: 92px; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body p { margin: 0 0 1rem; line-height: 1.72; color: var(--ink); }
.about__body p:last-child { margin-bottom: 0; }
.about__subheading { font-size: 1.35rem; font-weight: 700; margin: 2.2rem 0 0.9rem; color: var(--ink); }
/* About (homepage): 3-paragraph intro + a Read more button to the About page */
.about__more { display: inline-block; margin: calc(0.6rem + 30px) 0 0; padding: 0.7rem 1.7rem; border: 1px solid var(--forest); color: var(--forest); font-weight: 600; text-decoration: none; transition: background .15s, color .15s; }
.about__more:hover { background: var(--forest); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.chip { background: var(--sand); color: var(--forest-d); border-radius: 999px; padding: 0.35rem 0.85rem; font-size: 0.85rem; font-weight: 500; }

/* ---- reviews ------------------------------------------------------------- */
.reviews__score { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 2rem; }
.reviews__score strong { font-family: var(--font-head); font-size: 3.2rem; color: var(--forest-d); line-height: 1; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.quote { position: relative; display: flex; flex-direction: column; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem 1.2rem; box-shadow: var(--shadow-sm); cursor: default; }
.quote.is-clamped { cursor: pointer; }
.quote__text { margin: 0; }
.quote__text p { font-family: var(--font-body); font-style: italic; font-size: 0.98rem; line-height: 1.55; color: var(--ink); margin: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.quote.is-clamped.is-open .quote__text p { display: block; overflow: visible; }
/* only clamped (truncated) quotes get the Read more toggle */
.quote.is-clamped .quote__text::after { content: "Read more ↓"; display: block; font-family: var(--font-body); font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); margin-top: 0.8rem; }
.quote.is-clamped.is-open .quote__text::after { content: "Show less ↑"; }
.quote__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 1rem; }
.quote__photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; display: flex; align-items: center; justify-content: center; background: var(--sage); box-shadow: 0 3px 12px rgba(64, 64, 65, 0.16); }
.quote__photo--mono { color: #fff; font-family: var(--font-body); font-style: italic; font-size: 1.35rem; }
.quote__byline { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.quote__name { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em; color: var(--ink); }
.quote__role { font-size: 0.8rem; line-height: 1.35; color: var(--ink-soft); }

/* ---- booking band -------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-d) 100%); color: #fff; border-radius: var(--radius-lg); padding: 3.2rem; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 520px; margin-inline: auto; }
.cta-band .btn { margin-top: 1.4rem; }

/* ---- footer -------------------------------------------------------------- */
.site-footer { background: rgb(148, 128, 115); color: rgba(255,255,255,0.92); padding: 3.2rem 0 2rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 300; font-size: 1.2rem; color: #fff; }
.footer-brand img { width: 34px; height: 34px; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 1rem; margin-top: 0.8rem; }
.footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--sage); margin: 0 0 0.7rem; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; font-size: 0.92rem; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; font-size: 0.84rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,0.6); }

/* ---- lightbox ------------------------------------------------------------ */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(15, 25, 18, 0.92); display: none; align-items: center; justify-content: center; padding: 4vmin; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox__video { max-width: 90vw; max-height: 82vh; width: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); background: #000; }
.lightbox__cap { position: absolute; bottom: 2vmin; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.92); font-size: 0.95rem; }
.lightbox__close { position: absolute; top: 2vmin; right: 3vmin; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }
.lightbox__nav { background: rgba(255,255,255,0.12); border: 0; color: #fff; font-size: 2.4rem; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); transition: background 0.2s; }
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav--prev { left: 3vmin; }
.lightbox__nav--next { right: 3vmin; }

/* ---- modal --------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 90; background: rgba(15, 25, 18, 0.7); display: none; align-items: center; justify-content: center; padding: 4vmin; }
.modal.is-open { display: flex; }
.modal__panel { position: relative; background: var(--cream-2); border-radius: var(--radius-lg); width: min(640px, 96vw); max-height: 90vh; overflow: hidden; box-shadow: var(--shadow); }
.modal__close { position: absolute; top: 8px; right: 12px; z-index: 2; background: rgba(255,255,255,0.85); border: 0; width: 38px; height: 38px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--forest-d); }
.modal__frame { width: 100%; height: 78vh; border: 0; display: block; }
.modal__body { min-height: 120px; }
/* booking calendar: wider modal + tall embed so the calendar fits without scrolling */
.modal--wide .modal__panel { width: min(1024px, 96vw); max-height: 94vh; }
.cal-embed { width: 100%; height: min(760px, 90vh); overflow: auto; }
.modal__msg { padding: 2.6rem; text-align: center; }
.modal__msg p { font-size: 1.05rem; line-height: 1.6; color: var(--ink); margin: 0 auto; max-width: 34ch; }
.booking__sign { margin-top: 1.1rem !important; font-family: var(--font-head); color: var(--ink-soft); }
.modal__msg .btn { margin: 0.6rem 0 1.4rem; }
.modal__contacts { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.4rem; }

/* our own group-session booking flow */
.booking { padding: 2rem 2.2rem 2.4rem; max-height: 86vh; overflow-y: auto; }
.booking__title { font-size: 1.35rem; font-weight: 700; margin: 0 0 1.2rem; color: var(--ink); }
.booking__loading { padding: 1rem 0; color: var(--ink-soft); }
.booking__slots { display: flex; flex-direction: column; gap: 0.6rem; }
.booking__slot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; text-align: left; background: var(--cream); border: 1px solid var(--line); padding: 0.95rem 1.1rem; cursor: pointer; font: inherit; color: var(--ink); transition: border-color .15s, background .15s; }
.booking__slot:hover { border-color: var(--moss); background: #fff; }
.booking__slot-when { font-weight: 600; }
.booking__slot-left { font-size: 0.82rem; color: var(--ink-soft); white-space: nowrap; }
.booking__back { background: none; border: 0; color: var(--forest); font: inherit; cursor: pointer; padding: 0; margin: 0 0 0.8rem; }
.booking__chosen { font-family: var(--font-head); font-style: italic; font-size: 1.1rem; color: var(--ink); margin: 0 0 1.2rem; }
.booking__form { display: flex; flex-direction: column; gap: 0.9rem; }
.booking__field { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; color: var(--ink-soft); }
.booking__field input, .booking__field textarea { font: inherit; color: var(--ink); padding: 0.7rem 0.8rem; border: 1px solid var(--line); background: #fff; }
.booking__field textarea { resize: vertical; min-height: 90px; }
.booking__field input:focus, .booking__field textarea:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
.booking__row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.booking__row .booking__field { flex: 1 1 44%; }
.booking__error { color: #b3261e; font-size: 0.88rem; margin: 0; display: none; }
.booking__error.is-show { display: block; }
.booking__form .btn { margin-top: 0.4rem; align-self: flex-start; }
.booking__contact { margin-top: 0.6rem; }
.booking__contact-intro { color: var(--ink); margin: 0 0 1rem; }
.booking__contact-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ---- reveal animation ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { position: static; order: -1; max-width: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .quotes { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 0.4rem 1.5rem 1rem; box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .nav-menu a:last-child { border-bottom: 0; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic .tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .mosaic .tile:nth-child(6) { grid-column: span 1; }
  .cta-band { padding: 2.2rem 1.4rem; }
  .hero { min-height: 80vh; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .card__actions { flex-direction: column; }
  .nav { gap: 0.7rem; }
  .brand { font-size: 1.05rem; }
  .lang-switch button { padding: 0.24rem 0.42rem; font-size: 0.72rem; }
}

/* extra breathing room on the last section before the footer */
#about { padding-bottom: calc(2.5rem + 30px); }
#reviews { padding-top: 2.5rem; }

.site-footer { position: relative; }

/* footer columns: vinatur-ish sage headings + hovers */
.footer-cols h4 { color: var(--moss); }
.site-footer a:hover { color: var(--moss); }

/* ---- footer contact blob (vinatur "Har du spørgsmål?") ---- */
.footer-contact { display: flex; align-items: center; justify-content: center; margin: 0.5rem 0 3.4rem; }
.footer-contact__photo { flex: 0 0 auto; position: relative; z-index: 2; }
.footer-contact__photo img { display: block; width: 300px; height: 350px; object-fit: cover; border-radius: 63% 37% 56% 44% / 58% 53% 47% 42%; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25); }
.footer-contact__bubble { background: #fff; color: #2a2a2a; border-radius: 47% 53% 62% 38% / 60% 49% 51% 40%; padding: 3rem 4.5rem 3rem 5.5rem; margin-left: -70px; max-width: 600px; }
.footer-contact__bubble h3 { color: var(--forest-d); font-family: var(--font-head); font-size: 1.7rem; margin: 0 0 0.7rem; }
.footer-contact__bubble p { color: #3a3a3a; margin: 0 0 0.6rem; }
.footer-contact__line { font-weight: 500; }
.footer-contact__bubble a[data-brand-email] { color: var(--forest); font-weight: 600; }
.footer-contact__bubble .btn { margin-top: 1.1rem; }

/* ---- about page (vinatur "Hvem er ViNatur?") ---- */
.about-page__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.about-page__text h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.about-page__photo img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 58% 42% 54% 46% / 56% 48% 52% 44%; box-shadow: var(--shadow); }
@media (max-width: 900px) {
  .about-page__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-page__photo { order: -1; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .footer-contact { flex-direction: column; margin-bottom: 2.4rem; }
  .footer-contact__bubble { margin-left: 0; margin-top: -50px; padding: 3rem 2rem 2rem; text-align: center; }
  .footer-contact__photo img { width: 220px; height: 250px; }
}

/* footer: vinatur layout — Kontakt + Links columns (left), contact blob (right) */
.footer-inner { display: grid; grid-template-columns: 1fr 1.15fr; column-gap: 3rem; align-items: center; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--moss); margin: 0 0 0.7rem; }
.footer-col a, .footer-col .footer-line { color: rgba(255, 255, 255, 0.86); font-size: 0.95rem; }
.footer-col a:hover { color: var(--moss); }
.footer-contact { margin: 0; justify-content: flex-start; }
.footer-contact__photo img { width: 235px; height: 285px; }
.footer-contact__bubble { max-width: 430px; padding: 2.3rem 2.6rem 2.3rem 3.8rem; margin-left: -55px; }
.footer-contact__bubble h3 { font-size: 1.45rem; }
.footer-bottom { margin-top: 2.6rem; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; row-gap: 2.6rem; justify-items: center; text-align: center; }
  .footer-cols { justify-content: center; }
  .footer-contact { justify-content: center; }
}

/* organic clip-path frames for the footer photo + bubble (vinatur look) */
.footer-inner { grid-template-columns: 0.85fr 1.2fr; }
.footer-contact__photo { filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.30)); }
.footer-contact__photo img { width: 250px; height: 300px; border-radius: 0; box-shadow: none; -webkit-clip-path: url(#fcPhoto); clip-path: url(#fcPhoto); }
.footer-contact__bubble { max-width: 460px; border-radius: 0; padding: 2.6rem 3rem 2.8rem 4.6rem; margin-left: -64px; -webkit-clip-path: url(#fcBubble); clip-path: url(#fcBubble); }
.footer-contact__bubble .fc-val { color: var(--forest); font-weight: 600; }
.footer-contact__more { display: inline-block; margin-top: 1rem; color: var(--forest); font-weight: 600; }
.footer-contact__more:hover { color: var(--forest-d); }

/* footer: lead block + link columns, big lotus watermark (contact blob removed) */
.site-footer { position: relative; overflow: hidden; padding-top: 4rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2.6rem 4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-lead { max-width: 360px; display: flex; flex-direction: column; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 300; font-size: 1.7rem; color: #fff; }
.footer-brand__icon { color: #fff; flex: none; }
.footer-tag { color: rgba(255, 255, 255, 0.82); font-size: 1.02rem; line-height: 1.65; margin: 0; }
.footer-cta { align-self: flex-start; margin-top: 0.2rem; }
.site-footer a.footer-cta, .site-footer a.footer-cta:hover { color: var(--ink); }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col__loc { color: rgba(255, 255, 255, 0.86); font-size: 0.95rem; margin: 0.4rem 0 0; }
/* footer headings: light warm tone so they read on the taupe footer */
.footer-cols h4, .footer-col h4 { color: #ecdccc; }
.site-footer a:hover { color: #ecdccc; }
.footer-bottom { position: relative; z-index: 1; }
.footer-flower { position: absolute; left: 50%; transform: translateX(-50%); bottom: -140px; width: 820px; max-width: 128%; color: #fff; opacity: 0.12; pointer-events: none; z-index: 0; }
.footer-flower svg { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .footer-flower { width: 560px; bottom: -90px; opacity: 0.1; } }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .footer-contact__photo img { width: 210px; height: 250px; }
  .footer-contact__bubble { margin-left: -40px; padding: 2.4rem 1.8rem 2.4rem 2.8rem; max-width: 90vw; }
}




/* ---------- Service entry cards (home) ------------------------------------ */
.services { padding-block: 5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.14); }
.service-card__photo { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); transition: transform 0.4s ease; display: block; }
.service-card:hover .service-card__photo img { transform: scale(1.04); }
.service-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--forest-d);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.service-card__body { padding: 1.5rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 0.55rem; line-height: 1.25; }
.service-card__desc { font-size: 0.875rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1.2rem; flex: 1; }
.service-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.service-card:hover .service-card__cta { color: var(--forest-d); }

@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; }
}

