/* ============================================
   Bergen efoil — stylesheet
   Hjellestad sun-palett (cream/navy/coral)
   ============================================ */

:root {
  --cream: #FAF6EC;
  --cream-deep: #F3EDDC;
  --navy: #143A5C;
  --navy-soft: #2A4F70;
  --blue: #2E6FA3;
  --blue-pale: #E6EEF5;
  --coral: #F28B50;
  --coral-deep: #E07440;
  --muted: #7A8B9C;
  --line: rgba(20, 58, 92, 0.12);
  --line-strong: rgba(20, 58, 92, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-center {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
}
.nav-center a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--coral); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sea-temp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--blue-pale);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 500;
}
.sea-temp-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.nav-cta {
  padding: 9px 18px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--coral); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 22% 55%,
      rgba(20, 58, 92, 0.6) 0%,
      rgba(20, 58, 92, 0.2) 45%,
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(20, 58, 92, 0.25) 0%,
      rgba(20, 58, 92, 0) 35%,
      rgba(20, 58, 92, 0.3) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(20, 58, 92, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 104px);
  color: var(--cream);
  font-weight: 300;
  text-shadow: 0 2px 30px rgba(20, 58, 92, 0.4);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 300;
  color: var(--coral);
}
.hero-sub {
  font-size: 18px;
  color: var(--cream);
  max-width: 480px;
  margin: 28px 0 40px;
  line-height: 1.5;
  text-shadow: 0 1px 20px rgba(20, 58, 92, 0.5);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}
.btn-primary {
  padding: 14px 28px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  padding: 14px 28px;
  background: rgba(250, 246, 236, 0.15);
  color: var(--cream);
  border: 1px solid rgba(250, 246, 236, 0.4);
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(250, 246, 236, 0.25); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 10px;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease forwards;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  border-left: 1px solid rgba(250, 246, 236, 0.3);
  padding-left: 18px;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 1px 20px rgba(20, 58, 92, 0.5);
}
.hero-stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 1px 10px rgba(20, 58, 92, 0.5);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION BASE ============ */
section { padding: 100px 32px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 900px;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--coral);
}
.section-lead {
  font-size: 18px;
  color: var(--navy-soft);
  max-width: 560px;
  line-height: 1.6;
}

/* ============ FEELS ============ */
.feels { background: var(--cream); }
.feels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}
.feels-card { display: flex; flex-direction: column; }
.feels-card-img {
  aspect-ratio: 4 / 5;
  background: var(--blue-pale);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.feels-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feels-card:hover .feels-card-img img { transform: scale(1.04); }
.feels-card-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 8px;
}
.feels-card h3 { font-size: 26px; margin-bottom: 10px; }
.feels-card p {
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ PAKKER ============ */
.pakker { background: var(--cream-deep); }
.pakker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.pakke-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 0.5px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}
.pakke-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
}
.pakke-card.featured::before {
  content: 'Start her';
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.pakke-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  margin-bottom: 4px;
}
.pakke-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.pakke-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--line);
}
.pakke-price-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 400;
}
.pakke-price-unit { font-size: 16px; color: var(--muted); }
.pakke-features { list-style: none; margin-bottom: 32px; }
.pakke-features li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
}
.pakke-features li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3.5 3.5L13 5' stroke='%23F28B50' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
}
.pakke-cta {
  margin-top: auto;
  padding: 14px 24px;
  text-align: center;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}
.pakke-card.featured .pakke-cta {
  background: var(--navy);
  color: var(--cream);
}
.pakke-card.featured .pakke-cta:hover { background: var(--coral); }
.pakke-card:not(.featured) .pakke-cta {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.pakke-card:not(.featured) .pakke-cta:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
}
.pakker-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}
.pakker-footnote a { color: var(--navy); }

/* ============ LOKASJON ============ */
.lokasjon { background: var(--cream); }
.lokasjon-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.lokasjon-hero-text h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 28px;
}
.lokasjon-hero-text p {
  font-size: 17px;
  color: var(--navy-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.lokasjon-hero-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blue-pale);
}
.lokasjon-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neighbors {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-bottom: 60px;
}
.neighbor {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--blue-pale);
}
.neighbor img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.neighbor:hover img { transform: scale(1.05); }
.neighbor-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
}
.neighbor:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.neighbor:nth-child(2) { grid-column: span 5; }
.neighbor:nth-child(3) { grid-column: span 5; }

.lokasjon-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 60px;
  border-top: 0.5px solid var(--line);
}
.lokasjon-address h3 { font-size: 28px; margin-bottom: 16px; }
.lokasjon-address-detail { margin-bottom: 24px; }
.lokasjon-address-detail .label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.lokasjon-address-detail .value {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}
.lokasjon-address-detail .value a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}
.map-frame {
  aspect-ratio: 4/3;
  background: var(--blue-pale);
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ============ UTSTYR ============ */
.utstyr {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.utstyr .eyebrow { color: var(--coral); }
.utstyr-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.utstyr h2 {
  color: var(--cream);
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 28px;
}
.utstyr h2 em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.utstyr p {
  color: rgba(250, 246, 236, 0.8);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.utstyr-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.utstyr-spec {
  border-top: 0.5px solid rgba(250, 246, 236, 0.2);
  padding-top: 16px;
}
.utstyr-spec-value {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.utstyr-spec-label {
  font-size: 13px;
  color: rgba(250, 246, 236, 0.6);
}
.utstyr-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1e4a6e 0%, #2A5A80 100%);
  border-radius: 4px;
  overflow: hidden;
}
.utstyr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ BEDRIFT ============ */
.bedrift { background: var(--cream-deep); }
.bedrift-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.bedrift h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.bedrift p {
  color: var(--navy-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.bedrift-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.bedrift-list li {
  list-style: none;
  font-size: 15px;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bedrift-list li span:last-child {
  color: var(--muted);
  font-size: 13px;
}
.bedrift-img {
  aspect-ratio: 3/4;
  background: var(--blue-pale);
  border-radius: 4px;
  overflow: hidden;
}
.bedrift-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============ BOOKING (native form) ============ */
.booking { background: var(--cream); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.booking h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}
.booking-intro {
  color: var(--navy-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.booking-note {
  background: var(--blue-pale);
  padding: 18px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--blue);
  font-size: 14px;
  color: var(--navy);
  line-height: 1.55;
}
.booking-note a { color: var(--navy); }

.booking-form {
  background: var(--cream-deep);
  padding: 40px;
  border-radius: 4px;
  border: 0.5px solid var(--line);
}
.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--line-strong);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--coral-deep); }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--navy); }

/* ============ FAQ ============ */
.faq { background: var(--cream-deep); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq h2 {
  font-size: clamp(36px, 5vw, 56px);
  text-align: center;
  margin-bottom: 60px;
}
.faq-item {
  border-top: 0.5px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 0.5px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--navy);
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 0.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-toggle::before {
  content: '+';
  font-size: 18px;
  color: var(--navy);
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--coral);
  border-color: var(--coral);
}
.faq-item.open .faq-toggle::before {
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 16px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 32px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand-logo { margin-bottom: 16px; }
.footer-brand-logo img {
  height: 88px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: rgba(250, 246, 236, 0.6);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 0.5px solid rgba(250, 246, 236, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 246, 236, 0.5);
}

/* ============ LEGAL SIDER (vilkår, personvern) ============ */
.legal-page {
  padding: 160px 32px 100px;
  background: var(--cream);
  min-height: 100vh;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-container h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}
.legal-container .legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--line);
}
.legal-container h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}
.legal-container h3 {
  font-size: 18px;
  margin: 28px 0 10px;
}
.legal-container p,
.legal-container li {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-container ul, .legal-container ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.legal-container a {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  text-decoration: none;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
}
.legal-back:hover { color: var(--navy); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 12px 20px; }
  .nav-logo img { height: 60px; }
  .nav-center { display: none; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-bg img { object-position: 75% center; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 140px; }
  section { padding: 60px 20px; }
  .feels-grid { grid-template-columns: 1fr; gap: 32px; }
  .pakker-grid { grid-template-columns: 1fr; }
  .lokasjon-hero, .lokasjon-address, .utstyr-grid, .bedrift-inner, .booking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .neighbors { grid-auto-rows: 140px; }
  .neighbor:nth-child(1) { grid-column: span 12; grid-row: span 2; }
  .neighbor:nth-child(2), .neighbor:nth-child(3) { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .legal-page { padding: 120px 20px 60px; }
}
