/* ==========================================================================
   Troll Havn — static rebuild
   Brand tokens measured from the published Tilda site (2026-08-15 archive).
   ========================================================================== */

/* ---------- fonts (self-hosted, same faces as the original site) ---------- */
@font-face {
  font-family: 'Averia Libre';
  src: url('../fonts/AveriaLibre-Light.woff2') format('woff2'),
       url('../fonts/AveriaLibre-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Averia Libre';
  src: url('../fonts/AveriaLibre-Regular.woff2') format('woff2'),
       url('../fonts/AveriaLibre-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Averia Libre';
  src: url('../fonts/AveriaLibre-Bold.woff2') format('woff2'),
       url('../fonts/AveriaLibre-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neucha';
  src: url('../fonts/Neucha-Regular.woff2') format('woff2'),
       url('../fonts/Neucha-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --ink: #1f1e18;
  --ink-soft: #384143;
  --forest: #6b8b69;
  --forest-dark: #4a6449;
  --forest-tint: #eef1ed;
  --fjord: #3f7e80;
  --bark: #715436;
  --sand: #aeaa8c;
  --sand-tint: #e9e6da;
  --birch: #e5e3df;
  --snow: #f7f6f3;
  --white: #fff;
  --ember: #f95d51;

  --display: 'Averia Libre', 'Trebuchet MS', sans-serif;
  --hand: 'Neucha', 'Averia Libre', cursive;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(31, 30, 24, .10);
  --shadow-lg: 0 22px 60px rgba(31, 30, 24, .18);
  --header-h: 68px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--fjord); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest-dark); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--fjord);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(var(--wrap-narrow), 100% - var(--gutter) * 2); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--birch { background: var(--birch); }
.section--snow { background: var(--snow); }
.section--forest { background: var(--forest); color: var(--white); }

/* anchor targets clear the sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.eyebrow {
  font-family: var(--hand);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: .06em;
  color: var(--bark);
  margin: 0 0 .5rem;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 1.15rem + 3.1vw, 3.4rem);
  color: var(--forest-dark);
  letter-spacing: .01em;
}
.section-title--center { text-align: center; }
.section-title--upper { text-transform: uppercase; letter-spacing: .03em; }

.lede {
  font-weight: 300;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.lede--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--forest); color: var(--white); }
.btn--primary:hover { background: var(--forest-dark); color: var(--white); }

.btn--sand { background: var(--sand); color: var(--ink); }
.btn--sand:hover { background: var(--bark); color: var(--white); }

.btn--ghost { border-color: currentColor; color: var(--white); background: transparent; }
.btn--ghost:hover { background: var(--white); color: var(--ink); }

.btn--outline { border-color: var(--forest); color: var(--forest-dark); background: transparent; }
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn--sm { padding: .6rem 1.3rem; font-size: .85rem; }

/* ---------- snow edge (signature divider) ---------- */
.snow-edge {
  display: block;
  width: 100%;
  height: clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.snow-edge svg { display: block; width: 100%; height: 100%; }
.snow-edge--top { margin-bottom: -1px; }
.snow-edge--bottom { margin-top: -1px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(31, 30, 24, .16);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}
.header__logo { display: flex; align-items: center; flex: 0 0 auto; }
.header__logo img { height: 42px; width: auto; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  color: var(--white);
  text-decoration: none;
  font-size: .98rem;
  letter-spacing: .02em;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease, opacity .18s ease;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--white); border-bottom-color: var(--sand); }

.header__partner {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--white);
  border-radius: 10px;
  padding: .35rem .7rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .58rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .05em;
  flex: 0 0 auto;
}
.header__partner img { height: 26px; width: auto; }
.header__partner span { white-space: nowrap; }

.header__toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--white);
}
.header__toggle svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88svh, 780px);
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 30, 24, .55) 0%, rgba(31, 30, 24, .28) 45%, rgba(31, 30, 24, .62) 100%);
}
.hero__inner { text-align: center; }
.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 1.3rem + 5.4vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: .35em;
  text-shadow: 0 3px 26px rgba(31, 30, 24, .5);
}
.hero__tagline {
  font-weight: 300;
  font-size: clamp(1.05rem, 1rem + .55vw, 1.4rem);
  max-width: 34ch;
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  text-shadow: 0 2px 16px rgba(31, 30, 24, .55);
}

/* hero booking selector — replaces the old Tilda form */
.booking {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.9rem);
  max-width: 880px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
  color: var(--ink-soft);
  text-align: left;
}
.booking__label {
  font-family: var(--hand);
  font-size: 1.15rem;
  color: var(--bark);
  margin: 0 0 .9rem;
  text-align: center;
}
.booking__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .75rem;
}
.booking__option {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .95rem 1.1rem;
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  transition: background-color .18s ease, color .18s ease, transform .12s ease;
}
.booking__option:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.booking__option strong { font-size: 1rem; line-height: 1.25; }
.booking__option span { font-size: .85rem; opacity: .85; }

/* ---------- metrics ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}
.metric__icon { height: 74px; width: auto; margin: 0 auto 1rem; }
.metric__value {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  color: var(--bark);
  margin-bottom: .35rem;
}
.metric__text { font-weight: 300; font-size: .98rem; margin: 0; color: var(--ink-soft); }

/* ---------- prose / pull quote ---------- */
.prose { max-width: 68ch; margin-inline: auto; }
.pullquote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  color: var(--forest-dark);
  line-height: 1.3;
  text-align: center;
  margin: 0 0 1.8em;
  padding-inline: 1rem;
}

/* ---------- aurora band ---------- */
.band {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.band__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.band::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(20, 24, 30, .5);
}
.band__title {
  color: var(--white);
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 20ch;
  margin-inline: auto;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .45);
}

/* video facade — no iframe until the visitor asks for it */
.video {
  position: relative;
  width: min(920px, 100%);
  margin: clamp(1.8rem, 4vw, 2.8rem) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0d1117;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.video__btn img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: relative;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: grid; place-items: center;
  transition: transform .18s ease, background-color .18s ease;
}
.video__btn:hover .video__play { transform: scale(1.07); background: var(--white); }
.video__play::after {
  content: '';
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--forest-dark);
  margin-left: 6px;
}

/* ---------- feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.feature:last-child { margin-bottom: 0; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__title {
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.7rem);
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.feature__body { font-weight: 300; margin: 0; font-size: 1.03rem; max-width: 46ch; }

/* ---------- shamans ---------- */
.shamans {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}
.shamans__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.shamans::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(224, 233, 236, .55) 0%, rgba(224, 233, 236, .2) 40%, rgba(224, 233, 236, .75) 100%);
}
.shamans__title {
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: .03em;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .6);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.card__title {
  font-size: 1.15rem;
  color: var(--fjord);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card__text { font-weight: 300; font-size: .96rem; margin: 0; }

/* ---------- locations & programs ---------- */
.location {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.location__badge {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location__text { font-weight: 300; margin: 0; color: var(--forest-dark); }

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.programs:last-child { margin-bottom: 0; }
.programs--single { grid-template-columns: minmax(0, 400px); justify-content: center; }

.program {
  display: flex;
  flex-direction: column;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.program__icon { height: 56px; width: auto; margin: 0 auto 1.1rem; }
.program__title {
  color: var(--white);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: .035em;
  margin-bottom: .5rem;
}
.program__meta {
  font-family: var(--hand);
  font-size: 1.05rem;
  color: var(--sand-tint);
  margin: 0 0 1rem;
}
.program__text {
  font-weight: 300;
  font-size: .95rem;
  margin: 0 0 1.4rem;
  flex: 1 1 auto;
}
.program__price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  letter-spacing: .02em;
}
.program__actions { display: flex; flex-direction: column; gap: .55rem; align-items: center; }
.program__more {
  color: var(--sand-tint);
  font-size: .85rem;
  text-decoration: underline;
}
.program__more:hover { color: var(--white); }

/* ---------- spaces ---------- */
.spaces {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.spaces__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.spaces::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(247, 246, 243, .78);
}
.space {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.space img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.space__body { padding: clamp(1.1rem, 2.5vw, 1.6rem); text-align: center; }
.space__title {
  font-size: 1.1rem;
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.space__text { font-weight: 300; font-size: .95rem; margin: 0; }

/* ---------- partners ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.partners p {
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  font-size: 1.02rem;
}

/* ---------- map ---------- */
.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 210px;
  background: var(--sand-tint);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  place-items: center;
  gap: .6rem;
  border: 0;
  background: var(--sand-tint);
  cursor: pointer;
  font-family: var(--display);
  color: var(--ink);
  padding: 1.5rem;
}
.map__btn img { width: 46px; height: auto; }
.map__btn span { font-weight: 700; letter-spacing: .03em; font-size: 1.15rem; }
.map__btn small { font-weight: 300; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .9rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

/* ---------- gallery lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(24, 30, 23, .93);
}
.lightbox.is-open { display: flex; animation: lightbox-fade .22s ease; }
@keyframes lightbox-fade { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .lightbox.is-open { animation: none; }
}
.lightbox__figure {
  margin: 0;
  max-width: 100%;
  text-align: center;
}
.lightbox__figure img {
  max-width: min(1600px, 100%);
  max-height: calc(100vh - 6.5rem);
  max-height: calc(100dvh - 6.5rem);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .55);
}
.lightbox__figure figcaption {
  margin-top: .65rem;
  color: var(--sand-tint);
  font-weight: 300;
  font-size: .92rem;
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  z-index: 1;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  padding: .4rem .9rem;
  line-height: 1;
  opacity: .75;
  transition: opacity .15s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible { opacity: 1; }
.lightbox__close { top: .5rem; right: .7rem; font-size: 2.6rem; }
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.4rem;
}
.lightbox__nav--prev { left: .3rem; }
.lightbox__nav--next { right: .3rem; }
body.lightbox-open { overflow: hidden; }

/* ---------- environmental ---------- */
.env {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
}
.env__col h3 {
  font-size: 1.15rem;
  color: var(--forest-dark);
  margin-bottom: .8rem;
}
.env__col p { font-weight: 300; font-size: .97rem; }
.env__thanks {
  text-align: center;
  font-family: var(--hand);
  font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
  color: var(--bark);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
  font-family: var(--hand);
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.faq {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: .95rem 3rem .95rem 1.3rem;
  font-size: 1rem;
  position: relative;
  transition: background-color .18s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--forest-dark); }
.faq__q::after {
  content: '';
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(currentColor, currentColor) center/14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 14px no-repeat;
  transition: transform .22s ease;
}
.faq[open] .faq__q::after { transform: rotate(45deg); }
.faq[open] .faq__q { background: var(--forest-dark); }
.faq__a {
  padding: 1.1rem 1.3rem 1.3rem;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .97rem;
}
.faq__a p { margin-bottom: .7em; }

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.quote {
  background: var(--snow);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.quote__text { font-weight: 300; font-style: italic; margin-bottom: 1.1rem; }
.quote__name { font-weight: 700; color: var(--ink); margin: 0; }
.quote__role { font-family: var(--hand); color: var(--bark); margin: 0; font-size: .95rem; }

/* ---------- contacts ---------- */
.contacts {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.contacts__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.contacts::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20, 24, 30, .78) 0%, rgba(20, 24, 30, .45) 60%, rgba(20, 24, 30, .35) 100%);
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.contacts__title {
  color: var(--white);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contacts__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.contacts__list li { margin-bottom: .45rem; font-size: 1.05rem; }
.contacts__list a { color: var(--white); text-decoration: none; }
.contacts__list a:hover { color: var(--sand); text-decoration: underline; }
.contacts__meta { font-weight: 300; opacity: .9; font-size: .95rem; margin: 0; }

.contacts__aside { display: grid; justify-items: center; gap: 1.25rem; }
.contacts__runes { width: 190px; opacity: .95; }
.socials { display: flex; gap: .75rem; }
.socials a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: grid; place-items: center;
  transition: transform .18s ease, background-color .18s ease;
}
.socials a:hover { transform: translateY(-3px); background: var(--white); }
.socials img { width: 22px; height: 22px; }

/* ---------- blog ---------- */
.post {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
  background: var(--snow);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}
.post img { border-radius: var(--radius); width: 100%; }
.post__title { font-size: 1.25rem; color: var(--ink); margin-bottom: .5rem; }
.post__text { font-weight: 300; font-size: .97rem; margin-bottom: .8rem; }
.post__date { font-family: var(--hand); color: var(--bark); margin: 0; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding-block: 2rem;
  text-align: center;
  font-size: .9rem;
}
.footer a { color: rgba(255, 255, 255, .85); }

/* ---------- WhatsApp float ---------- */
.wa {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(31, 30, 24, .3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa:hover { transform: scale(1.06); box-shadow: 0 12px 30px rgba(31, 30, 24, .38); }
/* the badge steps aside while a booking popup is open */
.modal-open .wa { opacity: 0; visibility: hidden; transition: opacity .15s ease; }
.wa svg { width: 32px; height: 32px; fill: var(--white); }

/* ---------- reveal on scroll (transform/opacity only) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .location { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .location__badge { max-width: 200px; }
  .contacts__grid { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  .post img { max-width: 240px; margin-inline: auto; }
}

@media (max-width: 780px) {
  .header__partner { display: none; }
  .header__toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: var(--forest);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    box-shadow: 0 12px 24px rgba(31, 30, 24, .22);
  }
  .nav.is-open { max-height: 60vh; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .nav__link {
    display: block;
    padding: .85rem var(--gutter);
    border-bottom: 0;
  }
  .nav__link:hover { background: var(--forest-dark); border-bottom: 0; }
  .hero { min-height: auto; }
  .booking { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
