/* ============================================================
   Kristiansand Vannscooter Utleie
   Design DNA inspired by planless.no: Fraunces serif display +
   DM Sans body, deep navy ink, light canvas, floating cards,
   calm scroll-reveal. Accent shifted to ocean turquoise + sun.
   ============================================================ */

:root {
  /* Ink & canvas (from planless) */
  --ink: #0b1f3a;
  --ink-soft: #3a4d68;
  --ink-faint: #6c7c92;
  --navy: #042a4d;
  --navy-deep: #021c34;
  --canvas: #f4f9fc;
  --white: #ffffff;
  --foam: #e8f5fb;
  --line: #e2ecf3;

  /* Ocean + sun accents */
  --aqua: #14b8c4;
  --aqua-deep: #0e7490;
  --sky: #38bdf8;
  --sun: #ff9f43;
  --sun-deep: #ff7a3c;
  --coral: #ff6b5e;

  --grad-sea: linear-gradient(135deg, #0e7490 0%, #14b8c4 55%, #38bdf8 100%);
  --grad-sun: linear-gradient(135deg, #ffb23e 0%, #ff7a3c 100%);
  --grad-deep: linear-gradient(160deg, #053257 0%, #042a4d 45%, #021c34 100%);

  --shadow-sm: 0 2px 8px rgba(4, 42, 77, 0.06);
  --shadow-md: 0 12px 32px rgba(4, 42, 77, 0.1);
  --shadow-lg: 0 30px 70px rgba(4, 42, 77, 0.16);
  --shadow-card: 0 24px 60px -18px rgba(4, 42, 77, 0.28);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); }
em { font-style: italic; }

.kicker {
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-deep);
  margin-bottom: 0.7rem;
}
.kicker--light { color: var(--sky); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 0.85rem; color: #fff;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(255,159,67,0.22); }

/* ---------- 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.85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--sun { background: var(--grad-sun); color: #3a1e00; box-shadow: 0 10px 24px -8px rgba(255,122,60,0.6); }
.btn--sun:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(255,122,60,0.7); }
.btn--sea { background: var(--grad-sea); color: #fff; box-shadow: 0 10px 24px -8px rgba(14,116,144,0.55); }
.btn--sea:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(14,116,144,0.65); }
.btn--ghost { background: rgba(255,255,255,0.7); color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: #fff; border-color: var(--aqua); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,249,252,0.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0.85rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  color: #fff; background: var(--grad-sea); box-shadow: var(--shadow-sm); flex: none;
}
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; line-height: 1.05; color: var(--ink); display: flex; flex-direction: column; }
.brand__text-sub { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.05em; color: var(--ink-faint); text-transform: uppercase; }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.3rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--aqua); transition: width 0.22s ease; border-radius: 2px; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobilmeny { display: none; flex-direction: column; gap: 0.4rem; padding: 0.5rem var(--pad) 1.4rem; background: var(--canvas); border-bottom: 1px solid var(--line); }
.mobilmeny a { padding: 0.7rem 0; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobilmeny a:last-child { border: 0; margin-top: 0.6rem; }

/* ---------- Layout helpers ---------- */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 9vw, 120px) var(--pad); }
.section--alt { max-width: none; background: linear-gradient(180deg, #fff 0%, var(--foam) 100%); }
.section--alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section__head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section__head--light .section__title, .section__head--light .section__sub { color: #eaf6fb; }
.section__sub { font-size: 1.12rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 120px); background: #0a2236 url('/img/hero.jpg') center 45% / cover no-repeat; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background:
    linear-gradient(to bottom, transparent 80%, #ffffff 100%),
    linear-gradient(100deg, rgba(3,22,42,0.86) 0%, rgba(3,22,42,0.50) 50%, rgba(3,22,42,0.18) 100%),
    linear-gradient(to bottom, rgba(3,22,42,0.34) 0%, rgba(3,22,42,0) 38%);
}
.hero__sun { display: none; }
.hero__waves { display: none; }
.hero__waves path:first-child { fill: var(--sky); }
.hero__waves path:last-child { fill: var(--aqua); }

.hero__inner {
  position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__title { font-size: clamp(2.6rem, 6.4vw, 4.7rem); font-weight: 600; margin-bottom: 1.3rem; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.28); }
.hero__title em { color: #5fd6e6; position: relative; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255,255,255,0.92); max-width: 32ch; margin-bottom: 2rem; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hero__trust li { font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.hero__trust strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: #fff; font-weight: 600; }

/* Booking card */
.bookcard {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: var(--r-xl);
  padding: 1.6rem; box-shadow: var(--shadow-card);
}
.bookcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.bookcard__tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--aqua-deep); background: var(--foam); padding: 0.35rem 0.7rem; border-radius: 999px; }
.bookcard__live { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--ink-faint); }
.bookcard__live span { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: pulse 2s infinite; }
.bookcard__title { font-size: 1.4rem; margin-bottom: 1.1rem; }
.bookcard__form { display: flex; flex-direction: column; gap: 0.85rem; }
.bookcard__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.bookcard label, .field label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.bookcard input, .bookcard select, .field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 0.7rem 0.85rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
}
/* iOS Safari: stop date inputs from overflowing their box and collapsing in height when empty */
.bookcard input[type="date"], .field input[type="date"] { -webkit-appearance: none; appearance: none; min-height: 3rem; }
input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
input[type="date"]::-webkit-calendar-picker-indicator { margin-left: 0; }
.bookcard input:focus, .bookcard select:focus, .field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(20,184,196,0.16);
}
.bookcard__note { font-size: 0.8rem; color: var(--ink-faint); text-align: center; margin-top: 0.9rem; }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar__inner { max-width: var(--wrap); margin: 0 auto; padding: 1.4rem var(--pad); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; color: var(--ink-soft); font-size: 0.96rem; }
.trustbar__ic { font-size: 1.2rem; }

/* ---------- Cards (tjenester / scootere) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards--two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(20,184,196,0.4); }
.card--feature { background: var(--grad-deep); border-color: transparent; color: #eaf6fb; }
.card--feature h3 { color: #fff; }
.card--feature p { color: #e3edf8; }
.card--feature .ticks li { color: #d7e8f6; }
.card--feature .ticks li::before { background: var(--sun); }
.card__icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.card p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.card__badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--grad-sun); color: #3a1e00; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.ticks li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: 0.95rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.1rem; height: 1.1rem; display: grid; place-items: center; font-size: 0.72rem; color: #fff; background: var(--aqua); border-radius: 50%; }

/* ---------- Steps (full-bleed navy) ---------- */
.steps { background: var(--grad-deep); position: relative; overflow: hidden; }
.steps::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 26px 26px; opacity: 0.6; }
.steps__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 9vw, 110px) var(--pad); }
.steps__list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: s; }
.steps__list li { position: relative; padding-top: 1rem; }
.steps__num { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--sun); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.1rem; }
.steps__list h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.steps__list p { color: #b9cee2; font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.price { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; }
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price h3 { font-size: 1.3rem; }
.price__time { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 1rem; }
.price__amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; }
.price__amount span { font-size: 1rem; font-weight: 600; color: var(--ink-faint); margin-left: 0.2rem; }
.price__amount small { font-family: var(--font-body); font-size: 0.52rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); vertical-align: 0.45em; margin-right: 0.25rem; }
.price__per { color: var(--ink-faint); font-size: 0.85rem; margin: 0.4rem 0 1.4rem; }
.price--highlight { border: 2px solid var(--aqua); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.price--highlight:hover { transform: translateY(-10px); }
.price__ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-sea); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.32rem 0.9rem; border-radius: 999px; text-transform: uppercase; }
.pricing__foot { text-align: center; margin-top: 2rem; color: var(--ink-soft); }
.pricing__foot a { color: var(--aqua-deep); font-weight: 600; border-bottom: 1.5px solid currentColor; }

/* ---------- Machines ---------- */
.machine { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s; }
.machine:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.machine__shell { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.2rem; background: var(--grad-sea); }
.machine__shell--2 { background: linear-gradient(135deg, #155e75, #0891b2, #22d3ee); }
.machine__shell--3 { background: linear-gradient(135deg, #7c2d12, #ea580c, #f59e0b); }
.machine__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; background: #ffffff; z-index: 0; }
.machine__shell--3 .machine__photo { object-position: center 62%; }
.machine__sheen { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.35), transparent 55%); }
.machine__hp { position: absolute; z-index: 2; bottom: 0.8rem; right: 0.9rem; background: rgba(2,28,52,0.55); backdrop-filter: blur(4px); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 0.35rem 0.7rem; border-radius: 999px; }
.machine h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.machine p { color: var(--ink-soft); font-size: 0.96rem; }
.machine__req { margin-top: 0.8rem; font-size: 0.85rem; font-weight: 600; color: var(--sun-deep); background: #fff4ec; border: 1px solid #ffd9c2; border-radius: 999px; padding: 0.45rem 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; line-height: 1.3; }

/* ---------- Safety ---------- */
.safety { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.safety__copy { position: sticky; top: 100px; }
.safety__copy .btn { margin-top: 1.6rem; }
.safety__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.safety__list li { display: flex; gap: 0.9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.safety__ic { font-size: 1.5rem; flex: none; }
.safety__list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.25rem; }
.safety__list p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.review__stars { color: var(--sun); letter-spacing: 0.15em; font-size: 1.05rem; margin-bottom: 0.9rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.5; color: var(--ink); font-style: italic; margin-bottom: 1.1rem; }
.review figcaption { color: var(--ink-faint); font-size: 0.9rem; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 0.8rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--aqua-deep); border-radius: 2px; transition: transform 0.25s ease; }
.faq__plus::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.faq__plus::after { left: 9px; top: 0; width: 2.5px; height: 20px; }
.faq details[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.contact__details li { display: flex; align-items: center; gap: 0.9rem; font-size: 1.05rem; color: var(--ink-soft); }
.contact__details li span { font-size: 1.3rem; }
.contact__details a { font-weight: 600; color: var(--ink); border-bottom: 1.5px solid transparent; transition: border-color 0.2s; }
.contact__details a:hover { border-color: var(--aqua); }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 1.8rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--split > div { display: flex; flex-direction: column; }
.field label { margin-bottom: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.contact__formnote { font-size: 0.85rem; color: var(--ink-faint); text-align: center; }
.contact__formnote.ok { color: #15803d; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--grad-deep); color: #c4d8ec; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(48px, 7vw, 80px) var(--pad) 2.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer .brand--footer .brand__text, .footer .brand--footer .brand__text-sub { color: #fff; }
.footer .brand--footer .brand__text-sub { color: #8fb0cc; }
.footer__brand p { margin-top: 1.1rem; max-width: 36ch; color: #9fb8d0; font-size: 0.96rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: #9fb8d0; padding: 0.32rem 0; transition: color 0.18s; }
.footer__col a:hover { color: var(--sky); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bar { max-width: var(--wrap); margin: 0 auto; padding: 1.4rem var(--pad); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.85rem; color: #7f9bb8; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2,0.7,0.2,1), transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2), .pricing .reveal:nth-child(2), .reviews .reveal:nth-child(2), .steps__list .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal:nth-child(3), .pricing .reveal:nth-child(3), .reviews .reveal:nth-child(3), .steps__list .reveal:nth-child(3) { transition-delay: 0.16s; }
.pricing .reveal:nth-child(4), .steps__list .reveal:nth-child(4) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__sun { animation: none; } }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(22px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .bookcard { max-width: 460px; }
  .cards, .pricing, .reviews { grid-template-columns: 1fr 1fr; }
  .steps__list { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .safety, .contact__inner { grid-template-columns: 1fr; }
  .safety__copy { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .mobilmeny { display: flex; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .cards, .pricing, .reviews, .safety__list { grid-template-columns: 1fr; }
  .price--highlight { transform: none; }
}
@media (max-width: 460px) {
  .trustbar__inner { gap: 0.8rem 1.4rem; }
  .field--split { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- SEO / conversion additions ---------- */
.hero__svar { margin-top: 1rem; font-size: 0.92rem; font-weight: 600; color: #ffd9a8; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }

.machine__ok { margin-top: 0.8rem; font-size: 0.85rem; font-weight: 600; color: #15803d; background: #e9f9ef; border: 1px solid #bfe8cd; border-radius: 999px; padding: 0.45rem 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; line-height: 1.3; }

.omrader { max-width: 820px; }
.omrader__text { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.65; }
.omrader__text strong { color: var(--ink); font-weight: 600; }
.omrader__sesong { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--aqua-deep); background: var(--foam); border: 1px solid var(--line); padding: 0.5rem 1rem; border-radius: 999px; }

/* Sticky mobile booking bar */
.bookbar { display: none; }
@media (max-width: 768px) {
  .bookbar {
    display: flex; gap: 0.6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
    padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.93); backdrop-filter: saturate(160%) blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(4,42,77,0.12);
  }
  .bookbar__btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem; text-decoration: none;
    padding: 0.85rem 0.9rem; border-radius: 999px; border: 1.5px solid var(--line); color: var(--navy); background: #fff;
  }
  .bookbar__btn--primary { flex: 1.6; background: var(--grad-sun); color: #3a1e00; border-color: transparent; box-shadow: 0 8px 18px -8px rgba(255,122,60,0.6); }
  body { padding-bottom: 74px; }
}
