/* Cactus Frisør, Gjøvik. Bespoke single-page site.
   Warm paper, brand green, watercolour leaves from the salon's own poster,
   Fraunces for headings and Jost for text. Colours are OKLCH only. */

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --paper: oklch(97.3% 0.012 85);
  --paper-2: oklch(95.4% 0.016 82);
  --paper-3: oklch(92.6% 0.02 80);
  --paper-line: oklch(88% 0.022 80);
  --ink: oklch(24% 0.02 70);
  --ink-2: oklch(38% 0.022 70);
  --ink-3: oklch(46% 0.02 70);
  --color-brand-primary: oklch(49% 0.12 152);
  --green: var(--color-brand-primary);
  --green-deep: oklch(36% 0.085 152);
  --green-ink: oklch(30% 0.06 152);
  --green-soft: oklch(91% 0.045 150);
  --green-line: oklch(82% 0.06 150);
  --gold: oklch(72% 0.11 82);
  --gold-deep: oklch(58% 0.11 80);
  --on-brand: oklch(97.5% 0.012 85);
  --shadow-sm: 0 1px 2px oklch(24% 0.02 70 / 0.06), 0 2px 8px oklch(24% 0.02 70 / 0.05);
  --shadow-md: 0 8px 24px oklch(24% 0.03 70 / 0.10), 0 2px 6px oklch(24% 0.02 70 / 0.06);
  --shadow-lg: 0 24px 60px oklch(30% 0.05 120 / 0.18);
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 128px);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.08; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0; }
ul[role="list"] { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section); }
.section--surface { background: var(--paper-2); }
.section--brand { background: var(--color-brand-primary); color: var(--on-brand); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 10px 16px; background: var(--ink); color: var(--paper);
  border-radius: 8px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ── Type helpers ───────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 18px;
}
.eyebrow__icon { color: var(--green); }
.eyebrow--light { color: var(--on-brand); }
.eyebrow--light .eyebrow__icon { color: var(--on-brand); }

.section__title { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.2rem); margin-bottom: 20px; max-width: 18ch; }
.section__title--xl { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem); max-width: 16ch; margin-inline: auto; }
.section__lead { font-size: 1.1rem; color: var(--ink-2); max-width: 58ch; }
.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { text-align: center; }
.section__head--center .section__title, .section__head--center .section__lead, .section__head--center .eyebrow { margin-inline: auto; }
.section__head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section--brand .section__title, .section--brand .section__lead, .section--brand h3, .section--brand h4, .section--brand p { color: var(--on-brand); }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 500; font-size: 0.98rem; letter-spacing: 0.01em; text-decoration: none;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--green); color: var(--on-brand); box-shadow: 0 6px 18px oklch(49% 0.12 152 / 0.28); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 10px 24px oklch(49% 0.12 152 / 0.32); }
.btn--ghost { background: transparent; color: var(--green-deep); border-color: var(--green-line); }
.btn--ghost:hover { background: var(--green-soft); border-color: var(--green); transform: translateY(-2px); }
.btn--paper { background: var(--paper); color: var(--green-deep); }
.btn--paper:hover { background: var(--paper-2); transform: translateY(-2px); }
.section--brand .btn--ghost { color: var(--on-brand); border-color: oklch(97.5% 0.012 85 / 0.5); }

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97.3% 0.012 85 / 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav--scrolled { border-bottom-color: var(--paper-line); box-shadow: 0 6px 24px oklch(24% 0.02 70 / 0.06); }
.nav__progress { position: absolute; left: 0; top: 0; height: 2px; width: 0; background: var(--green); transition: width 0.1s linear; }
.nav__inner {
  width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__icon { width: 30px; height: auto; }
.nav__wordmark { width: 104px; height: auto; }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  padding: 8px 12px; border-radius: 999px; text-decoration: none; color: var(--ink-2);
  font-weight: 500; font-size: 0.95rem; transition: background-color 0.2s, color 0.2s;
}
.nav__links a:hover { background: var(--green-soft); color: var(--green-ink); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.btn--nav { padding: 10px 18px; font-size: 0.92rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1.5px solid var(--paper-line); border-radius: 12px;
  background: var(--paper); cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle-close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }

.mobile-menu {
  border-top: 1px solid var(--paper-line); background: var(--paper);
  padding: 18px var(--gutter) 24px;
}
.mobile-menu__links { display: grid; gap: 4px; margin-bottom: 18px; }
.mobile-menu__links a { padding: 12px 10px; text-decoration: none; color: var(--ink); font-weight: 500; border-radius: 10px; font-size: 1.05rem; }
.mobile-menu__links a:hover { background: var(--green-soft); }
.mobile-menu__langs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

/* Language switcher (4 languages: dropdown on desktop, pills on mobile) */
.lang-switcher { position: relative; }
.lang-switcher__toggle {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px;
  border: 1.5px solid var(--paper-line); border-radius: 999px; background: var(--paper);
  cursor: pointer; font-size: 0.88rem; font-weight: 500; color: var(--ink-2);
}
.lang-switcher__toggle:hover { border-color: var(--green-line); color: var(--green-ink); }
.lang-switcher__current { display: inline-flex; align-items: center; gap: 8px; }
.lang-switcher__current svg, .lang-switcher__btn svg.flag, .lang-switcher__btn > svg { width: 20px; height: 15px; border-radius: 3px; box-shadow: 0 0 0 1px oklch(24% 0.02 70 / 0.12); }
.lang-switcher__chev { transition: transform 0.2s; }
.lang-switcher__toggle[aria-expanded="true"] .lang-switcher__chev { transform: rotate(180deg); }
.lang-switcher__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px; margin: 0; padding: 6px; list-style: none;
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: 14px; box-shadow: var(--shadow-md); z-index: 20;
}
.lang-switcher__btn {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 12px;
  border: 1.5px solid transparent; border-radius: 10px; background: transparent; cursor: pointer;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2); text-align: left;
}
.lang-switcher__btn:hover { background: var(--green-soft); color: var(--green-ink); }
.lang-switcher__btn.is-active { background: var(--green-soft); color: var(--green-ink); border-color: var(--green-line); }
.mobile-menu__langs .lang-switcher__btn { width: auto; border-color: var(--paper-line); border-radius: 999px; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; background: var(--paper);
  padding: clamp(40px, 6vw, 84px) 0 clamp(56px, 7vw, 96px);
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
}
.hero__leaf { position: absolute; pointer-events: none; opacity: 0.9; }
.hero__leaf--tr { top: -40px; right: -60px; width: clamp(240px, 30vw, 460px); }
.hero__leaf--bl { bottom: -60px; left: -80px; width: clamp(220px, 26vw, 400px); opacity: 0.75; }
.hero__inner {
  position: relative; width: min(100% - 2 * var(--gutter), 1240px); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 88px); align-items: center;
}
.hero__title { font-size: clamp(2.7rem, 1.6rem + 5.2vw, 5.4rem); line-height: 1; letter-spacing: -0.02em; margin: 0 0 24px; }
.hero__line { display: block; }
.hero__line--accent { font-style: italic; font-weight: 400; color: var(--green); }
.hero__lead { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem); color: var(--ink-2); max-width: 50ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-3); font-size: 0.95rem; }
.hero__facts li { display: inline-flex; align-items: center; gap: 7px; }
.hero__facts svg { color: var(--green); }

.hero__media { position: relative; }
.hero__arch {
  border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden;
  aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-lg); background: var(--paper-3);
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__stamp { position: absolute; top: 6%; left: -34px; width: clamp(96px, 11vw, 150px); filter: drop-shadow(0 6px 14px oklch(24% 0.02 70 / 0.18)); }
.hero__card {
  position: absolute; right: -14px; bottom: 36px; max-width: 290px;
  display: flex; gap: 12px; padding: 16px 18px;
  background: var(--paper); border-radius: 14px; box-shadow: var(--shadow-md); border: 1px solid var(--paper-line);
}
.hero__card-icon { color: var(--green); flex: none; margin-top: 2px; }
.hero__card-label { font-family: var(--font-heading); font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; }
.hero__card-text { font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--paper-line);
  display: flex; align-items: center; justify-content: center; color: var(--green-deep); background: var(--paper);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ── Trust strip ────────────────────────────────────────────────────── */
.trust-strip { border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); background: var(--paper-2); }
.trust-strip__list {
  width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-strip__item { padding: 22px 16px; text-align: center; display: grid; gap: 2px; border-left: 1px solid var(--paper-line); }
.trust-strip__item:first-child { border-left: 0; }
.trust-strip__value { font-family: var(--font-heading); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); font-weight: 500; color: var(--green-deep); line-height: 1.1; }
.trust-strip__label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }

/* ── About ──────────────────────────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.about__media { position: relative; padding: 0 40px 60px 0; }
.about__photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about__photo--main { aspect-ratio: 3 / 4; }
.about__photo--main img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--small {
  position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 3 / 4;
  border: 6px solid var(--paper); box-shadow: var(--shadow-lg);
}
.about__photo--small img { width: 100%; height: 100%; object-fit: cover; }
.about__sprig { position: absolute; left: -46px; top: -30px; width: 120px; transform: rotate(-12deg); pointer-events: none; }
.about__p { color: var(--ink-2); margin-bottom: 16px; }
.about__highlights { display: grid; gap: 16px; margin-top: 30px; }
.highlight { display: flex; gap: 16px; align-items: flex-start; }
.highlight__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--green-deep);
}
.highlight__title { font-size: 1.15rem; margin-bottom: 4px; }
.highlight__text { color: var(--ink-2); font-size: 0.97rem; }

/* ── Divider ────────────────────────────────────────────────────────── */
.divider { display: flex; align-items: center; gap: 18px; width: min(100% - 2 * var(--gutter), 520px); margin: 0 auto; padding: 8px 0; }
.divider__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--green-line), transparent); }
.divider__icon { color: var(--green); transform: rotate(-90deg); }
.divider__icon--flip { transform: rotate(90deg); }

/* ── Services ───────────────────────────────────────────────────────── */
.services { overflow: hidden; }
.services__leaf { position: absolute; right: -40px; bottom: -40px; width: clamp(220px, 26vw, 420px); opacity: 0.22; pointer-events: none; mix-blend-mode: luminosity; }
.services .container { position: relative; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; margin-bottom: clamp(40px, 6vw, 64px); }
.price-card { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.price-card__title { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--paper-line); color: var(--ink); }
.price-card__icon { color: var(--green); }
.price-list__row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; }
.price-list__name { color: var(--ink); }
.price-list__dots { flex: 1; border-bottom: 1px dotted var(--paper-line); min-width: 24px; transform: translateY(-5px); }
.price-list__price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--green-deep); white-space: nowrap; }
.price-list__from { font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.04em; }
.section--brand .price-card p, .section--brand .price-card h3 { color: var(--ink); }

.extras__head { text-align: center; margin-bottom: 28px; }
.extras__title { font-size: 1.9rem; margin-bottom: 8px; }
.extras__lead { font-size: 1rem; }
.extras__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); }
.extra {
  padding: 22px 20px; border-radius: var(--radius-sm); border: 1px solid oklch(97.5% 0.012 85 / 0.28);
  background: oklch(36% 0.085 152 / 0.35);
}
.extra__icon { display: inline-flex; color: var(--on-brand); margin-bottom: 12px; }
.extra__title { font-size: 1.12rem; margin-bottom: 6px; }
.extra__text { font-size: 0.92rem; line-height: 1.55; }

.offer {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 22px 26px; border-radius: var(--radius); background: var(--green-deep);
  border: 1px solid oklch(97.5% 0.012 85 / 0.22);
}
.offer__icon { flex: none; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--paper); color: var(--green-deep); }
.offer__body { flex: 1; min-width: 240px; }
.offer__title { font-size: 1.3rem; margin-bottom: 4px; }
.offer__text { font-size: 0.97rem; }

/* ── Gallery ────────────────────────────────────────────────────────── */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gallery__cell--1 { grid-column: span 2; grid-row: span 2; }
.gallery__cell--4 { grid-row: span 2; }
.gallery__cell--9 { grid-column: span 2; }
.gallery__cell--12 { grid-column: span 2; grid-row: span 1; }
.gallery__item {
  position: relative; width: 100%; height: 100%; padding: 0; border: 0; cursor: zoom-in;
  border-radius: 14px; overflow: hidden; background: var(--paper-3); display: block;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__caption {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 12px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  background: oklch(97.3% 0.012 85 / 0.92); color: var(--ink);
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s var(--ease);
}
.gallery__item:hover .gallery__caption, .gallery__item:focus-visible .gallery__caption { opacity: 1; transform: none; }
.gallery__caption svg { color: var(--green); }

/* ── Team ───────────────────────────────────────────────────────────── */
.team { overflow: hidden; }
.team__sprig { position: absolute; right: 4%; top: 30px; width: 110px; transform: rotate(14deg); pointer-events: none; opacity: 0.9; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 980px; margin-inline: auto; }
.member { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-line); display: grid; grid-template-columns: 42% 1fr; }
.member__photo { margin: 0; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.member__body { padding: clamp(22px, 3vw, 34px); }
.member__name { font-size: 1.45rem; margin-bottom: 4px; }
.member__role { color: var(--green-deep); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.member__text { color: var(--ink-2); font-size: 0.97rem; }

/* ── Reviews ────────────────────────────────────────────────────────── */
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review { padding: 28px 30px; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--paper-line); position: relative; }
.review__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }
.review__star--empty { color: var(--paper-line); }
.review__quote { margin: 0 0 16px; font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.45; color: var(--ink); }
.review__meta { font-size: 0.9rem; color: var(--ink-3); }
.review__meta strong { color: var(--ink); font-weight: 600; }

/* ── Hours + find ───────────────────────────────────────────────────── */
.hours__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.hours__card { background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); }
.hours__table { width: 100%; margin: 6px 0 18px; }
.hours__table th, .hours__table td { padding: 10px 4px; border-bottom: 1px solid var(--paper-line); text-align: left; font-weight: 400; color: var(--ink); }
.hours__table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours__table tr.is-closed td, .hours__table tr.is-closed th { color: var(--ink-3); }
.hours__table tr.is-today th { font-weight: 600; color: var(--green-deep); }
.hours__table tr.is-today td { font-weight: 600; color: var(--green-deep); }
.hours__note { color: var(--ink-2); font-size: 0.97rem; margin-bottom: 22px; }
.hours__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.find__title { font-size: 1.8rem; margin-bottom: 12px; }
.find__text { color: var(--ink-2); margin-bottom: 12px; }
.find__parking { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 0.95rem; margin-bottom: 20px; }
.find__parking svg { color: var(--green); flex: none; margin-top: 3px; }
.find__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--paper-line); aspect-ratio: 16 / 10; background: var(--paper-3); }
.find__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85); }
.find__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 500; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__cactus { margin-top: 24px; width: 100px; opacity: 0.9; }
.faq__list { display: grid; gap: 10px; }
.faq__item { background: var(--paper); border: 1px solid var(--paper-line); border-radius: 14px; padding: 0 22px; transition: border-color 0.2s; }
.faq__item[open] { border-color: var(--green-line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none; font-family: var(--font-heading); font-size: 1.18rem; color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { flex: none; color: var(--green); transition: transform 0.3s var(--ease); }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__a { padding: 0 0 20px; color: var(--ink-2); max-width: 62ch; }

/* ── Contact ────────────────────────────────────────────────────────── */
.contact { overflow: hidden; text-align: center; }
.contact__leaf { position: absolute; pointer-events: none; opacity: 0.85; }
.contact__leaf--l { left: -70px; bottom: -50px; width: clamp(220px, 26vw, 400px); }
.contact__leaf--r { right: -70px; top: -50px; width: clamp(220px, 28vw, 440px); }
.contact__inner { position: relative; max-width: 860px; }
.contact__logo { width: clamp(150px, 18vw, 220px); margin: 0 auto 26px; }
.contact .section__lead { margin-inline: auto; margin-bottom: 30px; }
.contact__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.contact__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact__card { display: grid; justify-items: center; gap: 6px; padding: 22px 14px; border-radius: 14px; background: var(--paper-2); border: 1px solid var(--paper-line); }
.contact__card-icon { color: var(--green); }
.contact__card-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.contact__card-value { font-family: var(--font-heading); font-size: 1.12rem; color: var(--ink); text-decoration: none; }
.contact__card-value:hover { color: var(--green-deep); text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--green-ink); color: var(--on-brand); padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid oklch(97.5% 0.012 85 / 0.16); }
.footer__logo { width: 150px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__tagline { color: var(--on-brand); max-width: 34ch; font-size: 0.97rem; }
.footer__heading { font-size: 1.05rem; color: var(--on-brand); margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__address { font-style: normal; color: var(--on-brand); line-height: 1.8; }
.footer__address a, .footer__social a { color: var(--on-brand); }
.footer__muted { color: var(--on-brand); font-size: 0.9rem; }
.footer__text { color: var(--on-brand); }
.footer__social { display: grid; gap: 8px; }
.footer__social a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.footer__social a:hover { text-decoration: underline; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; padding-top: 22px; font-size: 0.86rem; }
.footer__legal { color: var(--on-brand); }
.footer__credit { margin-left: auto; }
.footer__top {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid oklch(97.5% 0.012 85 / 0.35);
  display: inline-flex; align-items: center; justify-content: center; color: var(--on-brand);
}
.footer__top:hover { background: var(--green); }

/* ── Lightbox ───────────────────────────────────────────────────────── */
/* display: flex / grid on an overlay would beat the UA [hidden] rule, so restate it. */
[hidden] { display: none !important; }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: oklch(20% 0.02 70 / 0.94); padding: 24px;
}
.lightbox__figure { margin: 0; max-width: min(92vw, 1100px); max-height: 100%; display: grid; gap: 12px; justify-items: center; }
.lightbox__img { max-height: 80vh; max-width: 100%; border-radius: 12px; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox__caption { color: var(--paper); font-family: var(--font-heading); font-size: 1.05rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid oklch(97.5% 0.012 85 / 0.3);
  background: oklch(24% 0.02 70 / 0.6); color: var(--paper); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: var(--paper); font-size: 0.9rem; letter-spacing: 0.08em; }
body.has-lightbox { overflow: hidden; }

/* ── Reveal on scroll (only when app.js is running) ─────────────────── */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js .reveal--up { transform: translateY(40px); }
.js .reveal--clip { clip-path: inset(6% 0 6% 0 round 18px); transform: translateY(16px) scale(0.985); transition: opacity 0.9s var(--ease), transform 1.1s var(--ease), clip-path 1.1s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round 0); }
.js .reveal--stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.js .reveal--stagger.is-visible > * { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .btn--nav { display: none; }
  .extras__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__card { right: 0; }
  .hero__scroll { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .hours__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .faq__cactus { display: none; }
  .team__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__cell--12 { grid-column: span 2; }
}
@media (max-width: 700px) {
  :root { --nav-h: 66px; }
  .nav__wordmark { width: 92px; }
  .lang-switcher { display: none; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .hero__actions .btn { width: 100%; }
  .hero__stamp { left: -10px; width: 88px; }
  .trust-strip__list { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: 0; }
  .trust-strip__item:nth-child(-n + 2) { border-bottom: 1px solid var(--paper-line); }
  .price-grid { grid-template-columns: 1fr; }
  .extras__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .member { grid-template-columns: 1fr; }
  .member__photo img { max-height: 340px; }
  .contact__cards { grid-template-columns: 1fr; }
  .contact__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__credit { margin-left: 0; }
  .section__head--split .btn { width: 100%; }
}
@media (max-width: 480px) {
  .extras__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 150px; gap: 10px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal--up, .js .reveal--clip, .js .reveal--stagger > * {
    opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important;
  }
  .hero__scroll { animation: none !important; }
  .btn, .gallery__item img, .lang-switcher__chev, .faq__plus, .nav__progress { transition: none !important; }
  .btn:hover, .btn--primary:hover, .btn--ghost:hover, .btn--paper:hover { transform: none !important; }
  .gallery__item:hover img { transform: none !important; }
  [data-parallax] { transform: none !important; }
}
