/* ============================================================
   Hei Solvik — 2026 redesign
   Selvstendig stilark. Laster ikke Webflow-CSS.
   Palett "Fjordlys": fjord-teal, papir, fjordblågrønn, sommer-rav.
   ============================================================ */

:root {
  --ink: #0a2730;
  --ink-2: #14323c;
  --paper: #f5f6f3;
  --card: #ffffff;
  --shell: #ece7dc;
  --sea: #2e6f7c;
  --sun: #ee9f3c;
  --line: rgba(10, 39, 48, 0.12);
  --muted: #5c6a70;
  --nav-h: 76px;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, sans-serif;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --shadow-sm: 0 6px 20px -12px rgba(10, 39, 48, 0.35);
  --shadow: 0 22px 50px -28px rgba(10, 39, 48, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2.5px solid var(--sun); outline-offset: 3px; border-radius: 4px; }
section[id], [id].anchor { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* ---- Type scale ---- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.0;
  letter-spacing: 0em;
  color: var(--ink);
}
h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; font-size: clamp(22px, 2.6vw, 30px); }

/* ---- Eyebrow + waterline signature ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--sea), var(--sun));
  position: relative;
}
.eyebrow::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sun);
  margin-left: -8px;
  box-shadow: 0 0 0 3px rgba(238, 159, 60, 0.18);
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--shell { background: var(--shell); }
.section--ink { background: var(--ink); color: #eef1ee; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 360ms var(--ease), box-shadow 360ms var(--ease),
    border-color 360ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 360ms var(--ease);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  padding: 9px 13px;
  border-radius: 9px;
  position: relative;
  transition: color 240ms var(--ease), background-color 240ms var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 5px;
  height: 2px; border-radius: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 12px; margin-left: 6px; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  transition: all 240ms var(--ease);
}
.lang svg { width: 15px; height: 15px; }
.lang:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 11px;
  transition: transform 240ms var(--ease), background-color 240ms var(--ease),
    box-shadow 240ms var(--ease), color 240ms var(--ease);
  white-space: nowrap;
}
.btn--sun { background: var(--sun); color: #2a1a00; box-shadow: 0 10px 24px -12px rgba(238, 159, 60, 0.8); }
.btn--sun:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(238, 159, 60, 0.9); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

/* Solid state after scrolling past hero */
.nav--solid {
  background: rgba(245, 246, 243, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(10, 39, 48, 0.7);
}
.nav--solid .nav__logo { color: var(--ink); }
.nav--solid .nav__link { color: var(--ink); }
.nav--solid .nav__link:hover { background: rgba(10, 39, 48, 0.06); }
.nav--solid .lang { color: var(--ink); border-color: var(--line); }
.nav--solid .lang:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Hamburger */
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px; transition: transform 300ms var(--ease), opacity 200ms var(--ease), background-color 360ms var(--ease); }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav--solid .nav__burger span { background: var(--ink); }

/* Mobile drawer menu */
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(10,39,48,0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 360ms var(--ease), visibility 360ms var(--ease);
}
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 99;
  width: min(300px, 88vw);
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 400ms var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.mobile-menu__logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: #fff;
}
.mobile-menu__close {
  color: rgba(255,255,255,0.8); padding: 6px; border-radius: 8px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.mobile-menu__close:hover { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-menu__nav {
  display: flex; flex-direction: column;
  padding: 10px 0; flex: 1;
}
.mobile-menu__nav a {
  font-family: var(--font-display); font-weight: 500;
  font-size: 17px; color: rgba(255,255,255,0.88);
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 160ms var(--ease), background 160ms var(--ease), padding-left 200ms var(--ease);
}
.mobile-menu__nav a:hover { color: #fff; background: rgba(255,255,255,0.06); padding-left: 28px; }
.mobile-menu__foot {
  padding: 18px 22px 28px; display: flex;
  flex-direction: column; gap: 10px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__foot .lang { border-color: rgba(255,255,255,0.25); color: #fff; font-size: 14px; }
.mobile-menu__foot .lang:hover { background: rgba(255,255,255,0.1); color: #fff; }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../images/Malmoya-DJI_0525.jpg") center 40% / cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
  z-index: 0;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,39,48,0.36) 0%, rgba(10,39,48,0.05) 30%, rgba(10,39,48,0.20) 62%, rgba(10,39,48,0.82) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad) clamp(56px, 9vw, 110px); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--sun); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(72px, 15vw, 170px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(10,39,48,0.4);
}
.hero__tagline {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 300;
  font-style: italic;
  max-width: 34ch;
  color: rgba(255,255,255,0.96);
  line-height: 1.35;
}
.hero__meta {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 15px; color: rgba(255,255,255,0.86);
  font-weight: 500;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 17px; height: 17px; opacity: 0.85; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero__scroll i { width: 1px; height: 34px; background: rgba(255,255,255,0.6); animation: scrollPulse 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__text p { color: var(--ink); font-size: clamp(17px, 1.4vw, 19px); margin-top: 22px; max-width: 56ch; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--sun); color: #2a1a00;
  font-family: var(--font-display); font-weight: 600;
  padding: 14px 18px; border-radius: 12px; font-size: 14px; line-height: 1.3;
  box-shadow: var(--shadow-sm); max-width: 200px;
}

/* ---- Hours band ---- */
.hours {
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 30px) clamp(22px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}
.hours__label { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sea); }
.hours__rows { display: flex; flex-wrap: wrap; gap: 6px 40px; }
.hours__row { display: flex; gap: 14px; align-items: baseline; }
.hours__day { font-weight: 600; min-width: 132px; }
.hours__time { color: var(--muted); }
.hours__closed { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.hours__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }

/* ============================================================
   EVENTS (reuses events.js: #events-grid, .event-card, ...)
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 8px; }
.event-card {
  display: flex; gap: 16px; padding: 20px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 200ms var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.event-date-badge {
  flex-shrink: 0; width: 60px; height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; border-radius: 12px;
}
.event-month { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sun); }
.event-day { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; }
.event-card-body { min-width: 0; }
.event-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.event-meta { font-size: 14px; color: var(--sea); font-weight: 500; margin-bottom: 7px; }
.event-description { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.event-link { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }
.event-link:hover { color: var(--sun); }
.events-empty { color: var(--muted); font-size: 17px; }
.events-empty a { color: var(--sea); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   MENU & WINE
   ============================================================ */
.menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: clamp(40px, 6vw, 70px); }
.menu-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 230px;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card--wine { background: var(--sea); }
.menu-card__k { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); }
.menu-card h3 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 10px; }
.menu-card p { color: rgba(255,255,255,0.82); margin-top: 10px; font-size: 15px; max-width: 34ch; }
.menu-card__go { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.menu-card__go svg { width: 18px; height: 18px; transition: transform 260ms var(--ease); }
.menu-card:hover .menu-card__go svg { transform: translateX(5px); }

.wine { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.wine__lead h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.1; }
.wine__lead p { color: var(--muted); margin-top: 16px; }
.wine__lead .sticky { position: sticky; top: calc(var(--nav-h) + 30px); }
.prose { font-size: 16px; line-height: 1.7; }
.prose strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.wine-prose { color: var(--muted); column-gap: 48px; }
.wine-prose strong { display: inline-block; }
.wine-prose br + br { line-height: 2.2; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  columns: 4 200px;
  column-gap: clamp(8px, 1vw, 14px);
}
.gallery a {
  display: block;
  break-inside: avoid;
  margin-bottom: clamp(8px, 1vw, 14px);
  border-radius: 14px;
  overflow: hidden;
  background: var(--shell);
  position: relative;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 700ms var(--ease), filter 400ms var(--ease);
}
.gallery a:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}
.gallery__foot { margin-top: 26px; display: flex; justify-content: center; }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.team__card {
  background: var(--card);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.team__card:first-child {
  border-right: 1px solid var(--line);
}
.team__role {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 16px;
}
.team__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}
.team__card p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  max-width: 46ch;
}

/* ============================================================
   HIRE band
   ============================================================ */
.hire { position: relative; overflow: hidden; border-radius: var(--radius); }
.hire__bg { position: absolute; inset: 0; background: url("../images/Folkebadet_Fasade_2.jpg") center/cover; }
.hire__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,39,48,0.86), rgba(10,39,48,0.55)); }
.hire__inner { position: relative; padding: clamp(40px, 7vw, 84px) var(--pad); color: #fff; max-width: 620px; }
.hire__inner h2 { color: #fff; }
.hire__inner p { color: rgba(255,255,255,0.9); margin-top: 16px; }
.hire__inner .hero__cta { margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #d9e0de; padding-block: clamp(56px, 8vw, 90px) 30px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr; gap: clamp(32px, 5vw, 60px); }
.footer h4 { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun); margin-bottom: 16px; }
.footer__brand .display { font-size: 30px; color: #fff; }
.footer__brand p { margin-top: 12px; color: rgba(255,255,255,0.7); max-width: 32ch; }
.footer a.inline { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.4); }
.footer a.inline:hover { color: var(--sun); }
.footer__contact p { color: rgba(255,255,255,0.78); margin-bottom: 10px; }
.news__form { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.news__input { flex: 1; min-width: 180px; padding: 12px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff; font: inherit; font-size: 15px; }
.news__input::placeholder { color: rgba(255,255,255,0.5); }
.news__input:focus { outline: none; border-color: var(--sun); background: rgba(255,255,255,0.1); }
.news__note { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 10px; }
.footer__map { margin-top: 18px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.footer__map iframe { width: 100%; height: 180px; border: 0; display: block; filter: grayscale(0.2) brightness(0.95); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; transition: all 220ms var(--ease); }
.footer__social a:hover { background: var(--sun); border-color: var(--sun); color: #2a1a00; transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: var(--sun); }
.footer__lang { display: inline-flex; align-items: center; gap: 8px; }
.footer__lang a { font-weight: 600; }
.footer__lang .on { color: #fff; }

/* ============================================================
   Reveal animation
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 90ms; }
[data-reveal][data-delay="2"] { transition-delay: 180ms; }
[data-reveal][data-delay="3"] { transition-delay: 270ms; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__right .lang, .nav__right .btn { display: none; }
  .nav__burger { display: block; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__badge { left: 12px; bottom: 12px; }
  .hours { grid-template-columns: 1fr; gap: 16px; }
  .menu-cards { grid-template-columns: 1fr; }
  .wine { grid-template-columns: 1fr; }
  .wine__lead .sticky { position: static; }
  .team { grid-template-columns: 1fr; }
  .team__card:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery a:nth-child(5) { grid-column: span 2; }
.gallery a:nth-child(10) { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hours__day { min-width: 120px; }
  .gallery { columns: 1; }
  .wine-prose { columns: 1; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__bg { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   LEIE LOKALER – hire cards
   ============================================================ */
.hire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 40px;
}
.hire-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.hire-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hire-card__icon {
  width: 48px; height: 48px;
  background: rgba(46,111,124,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--sea);
}
.hire-card__icon svg { width: 24px; height: 24px; }
.hire-card h3 {
  font-size: 19px; margin-bottom: 10px;
}
.hire-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.hire-cta { margin-top: 10px; }
@media (max-width: 760px) {
  .hire-cards { grid-template-columns: 1fr; }
}

/* ---- Faktabokser på leie-siden ---- */
.about__facts {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fact__n {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--sea);
  line-height: 1;
}
.fact__l {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   SPOTIFY-SEKSJON
   ============================================================ */
.spotify-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.spotify-text {
  display: flex;
  flex-direction: column;
}
.spotify-text .section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 4px;
}
.spotify-text .section-title em {
  font-style: italic;
  font-weight: 300;
  color: #1ed760;
}
.spotify-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 22px;
  background: #1ed760;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  width: fit-content;
  transition: transform 220ms var(--ease), background 220ms var(--ease),
    box-shadow 220ms var(--ease);
}
.spotify-follow:hover {
  transform: translateY(-2px) scale(1.03);
  background: #1fdf64;
  box-shadow: 0 10px 28px -10px rgba(30, 215, 96, 0.6);
}
.spotify-player {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
@media (max-width: 760px) {
  .spotify-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
