/* === CSS CUSTOM PROPERTIES === */
:root {
  --color-bg:           #F5F5F5;
  --color-bg-alt:       #ECEEF1;
  --color-bg-deep:      #0F1B2D;
  --color-text:         #1A2333;
  --color-text-light:   #5C6B7C;
  --color-primary:      #FF6B1A;
  --color-primary-dark: #D9530F;
  --color-accent:       #0F1B2D;
  --color-accent-light: #2A3F5F;
  --color-steel:        #B6BFC9;
  --color-white:        #FFFFFF;
  --color-border:       #D6DCE3;
  --color-card-bg:      #FFFFFF;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  /* Wordmark script face (family rule #38). Prototype placeholder. At customer-fork, self-host a licensed commercial script (Edwardian Script ITC / Fave Script Pro / Apple Chancery / Fairwater) and swap here. */
  --font-script:  'Kaushan Script', cursive;

  --max-width: 1280px;
  --radius-card: 6px;
  --radius-btn:  4px;

  /* Canonical button tokens (family rule #42) — size/shape dials, preserving
     the shipped .btn metrics. Variants stay colour/border-only. */
  --btn-radius: var(--radius-btn);
  --btn-pad-y: 0.95rem;
  --btn-pad-x: 1.85rem;
  --btn-font-size: 0.92rem;
  --btn-font-weight: 700;
  --btn-tracking: 0.08em;
  --btn-min-height: 3rem;
  --shadow-card: 0 2px 10px rgba(15, 27, 45, 0.08);
  --shadow-card-hover: 0 10px 30px rgba(15, 27, 45, 0.18);
  --transition: 0.22s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); font-size: 1rem; color: var(--color-text); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 0.85rem; letter-spacing: 0.18em; }

p { color: var(--color-text); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-fade { animation: fadeUp 0.55s ease-out both; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.48s; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 27, 45, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18); }

.nav-inner {
  max-width: 1280px;        /* shared frame with page content (--max-width) so nav + body align to ONE width; fluid clamp gaps still compact on narrow */
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 2.5vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.4rem, 0.6vw, 0.75rem);   /* small edge floor; space-evenly inside .nav-links does the balancing */
}

.nav-logo {
  font-family: var(--font-script);   /* script wordmark, family rule #38 */
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  letter-spacing: 0.01em;   /* script faces want tight tracking, not the all-caps spread */
}

.nav-logo svg { flex-shrink: 0; color: var(--color-primary); }
.nav-logo span { white-space: nowrap; line-height: 1.04; }   /* brand renders on ONE line (all brands short) */

.nav-links {
  flex: 1 1 auto;                  /* grow into the empty middle so the menu stretches edge-to-edge */
  display: flex;
  align-items: center;
  justify-content: space-evenly;   /* EQUAL gaps everywhere incl. before first + after last link */
  gap: clamp(0.5rem, 1vw, 1.5rem); /* minimum inter-item floor; space-evenly distributes the rest */
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Top-bar "Bestill time" pill is the canonical button now (rule #42):
   markup carries `btn btn-accent btn--nav nav-cta` — size/colour come from
   .btn + .btn-accent + .btn--nav. The nav-cta class stays as a hook only. */

.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  transition: all var(--transition);
  background: transparent;
}

.lang-toggle:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-accent);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-primary); }

/* Primary booking CTA inside the drawer (rule #43 — the nav-bar .btn--nav pill
   is hidden ≤768, so the drawer carries the action). Accent-filled to lead.
   The compact-dropdown redesign block near the end of this file carries the
   !important twin that keeps this filled look inside the white card. */
.mobile-menu a.mobile-cta {
  margin-top: 0.6rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-btn);
  border-bottom: none;
}
.mobile-menu a.mobile-cta:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* === HERO === */
.hero {
  position: relative;
  height: 86vh;
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 27, 45, 0.85) 0%, rgba(15, 27, 45, 0.45) 45%, rgba(15, 27, 45, 0.15) 100%),
    linear-gradient(to top, rgba(15, 27, 45, 0.65) 0%, rgba(15, 27, 45, 0) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 4.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-primary);
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 880px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  letter-spacing: 0.015em;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* === BUTTONS === */
/* Canonical button (family rule #42): ONE size/shape bound to :root tokens;
   min-height makes height deterministic. Variants = colour/border ONLY. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 2px solid transparent;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.1;
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  width: auto;
  transition: all var(--transition);
}

.btn-accent {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.4);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #1B3050;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

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

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

/* The ONE full-width mechanism — replaces every element-specific width:100% override. */
.btn--block { width: 100%; white-space: normal; }   /* full-width labels may wrap on narrow screens */

/* Compact nav variant (size-only exception) for the top-bar "Bestill time" pill. */
.btn--nav {
  --btn-pad-y: 0.55rem;
  --btn-pad-x: 1.1rem;
  --btn-font-size: 0.85rem;
  --btn-min-height: 0;
}
@media (max-width: 768px) { .btn--nav { display: none; } }

.text-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 0.6rem; color: var(--color-primary-dark); }

/* === WRENCH DIVIDER === */
.wrench-divider {
  position: relative;
  height: 56px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrench-divider.on-alt  { background: var(--color-bg-alt); }
.wrench-divider.on-deep { background: var(--color-accent); }

.wrench-divider::before,
.wrench-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 50%, transparent);
}
.wrench-divider.on-deep::before,
.wrench-divider.on-deep::after {
  background: linear-gradient(to right, transparent, rgba(255, 107, 26, 0.4) 50%, transparent);
}
.wrench-divider::before { left: 0; }
.wrench-divider::after  { right: 0; }

.wrench-divider .divider-icon {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

/* === EMERGENCY STRIP === */
.emergency-strip {
  background: var(--color-accent);
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--color-primary);
}

.emergency-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.emergency-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}

.emergency-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.emergency-item strong {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.05rem;
}

.emergency-item a {
  color: var(--color-white);
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  transition: border-color var(--transition);
  white-space: nowrap;
}
.emergency-item a:hover { border-color: var(--color-primary); }

.emergency-item > span:nth-of-type(2) { white-space: nowrap; }

/* === SERVICES PREVIEW (HOME) === */
.services {
  padding: 6rem 2rem 5rem;
  background: var(--color-bg);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-heading h2 { margin-bottom: 0.75rem; }
.services-heading p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--color-primary);
  background: rgba(255, 107, 26, 0.1);
  border-radius: 8px;
  padding: 11px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  white-space: nowrap;
}
.service-card-price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-right: 0.3rem;
}

/* === PRICING TIERS === */
.pricing {
  padding: 6rem 2rem;
  background: var(--color-bg-alt);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pricing-heading h2 { margin-bottom: 0.75rem; }
.pricing-heading p {
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card.featured {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(15, 27, 45, 0.25);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-amount-unit { color: var(--color-white); }
.pricing-card.featured .pricing-tag { color: var(--color-primary); background: rgba(255, 107, 26, 0.15); }
.pricing-card.featured ul li { color: rgba(255, 255, 255, 0.85); }
.pricing-card.featured ul li::before { color: var(--color-primary); }

.pricing-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.pricing-card.featured:hover { transform: translateY(-16px); }

.pricing-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 107, 26, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.pricing-card h3 {
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.pricing-amount-unit {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.5rem 0 1.25rem;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-card .btn { margin-top: auto; justify-content: center; }

/* === STORY / ABOUT (HOME) === */
.story-home {
  padding: 6rem 2rem;
  background: var(--color-bg);
}

.story-home-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-home-text h2 {
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.story-home-text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.story-home-text .story-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 2px solid var(--color-border);
}

.story-meta-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.story-meta-item .label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

.story-home-image img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* === TESTIMONIAL === */
.testimonial {
  padding: 5rem 2rem;
  background: var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 26, 0.18), transparent 45%);
  pointer-events: none;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testimonial-author {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* === PAGE BANNER === */
.page-banner {
  position: relative;
  height: 36vh;
  min-height: 240px;
  max-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 27, 45, 0.85) 0%, rgba(15, 27, 45, 0.4) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-banner-content h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
}

/* === FULL SERVICES PAGE === */
.services-full {
  padding: 5rem 2rem;
  background: var(--color-bg);
}

.services-full-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.6rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-row:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
}

.service-row .service-icon {
  width: 52px;
  height: 52px;
  padding: 10px;
}

.service-row h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-row p {
  color: var(--color-text-light);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.service-row-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--color-text-light);
}

.service-row-meta strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-row-meta { flex-wrap: wrap; }
.service-row-meta > span:not(.dot) { white-space: nowrap; }

.service-row-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--color-border);
  border-radius: 50%;
}

/* === BOOKING PAGE === */
.booking-section {
  padding: 5rem 2rem;
  background: var(--color-bg-alt);
}

.booking-inner {
  max-width: 920px;
  margin: 0 auto;
}

.booking-iframe-wrap {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.booking-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: 4px;
}

.booking-iframe-fallback {
  padding: 4rem 2rem;
  text-align: center;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-text-light);
}

.booking-iframe-fallback strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/* Booking placeholder card (Setmore not yet wired) */
.booking-placeholder {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.booking-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.booking-placeholder-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.booking-placeholder h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0;
  letter-spacing: 0.03em;
}

.booking-placeholder > p {
  color: var(--color-text-light);
  max-width: 540px;
  line-height: 1.65;
  margin: 0.25rem 0 0.5rem;
}

.booking-placeholder-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}

.booking-placeholder-cta .btn { gap: 0.5rem; }
.booking-placeholder-cta .btn svg { flex-shrink: 0; }

.booking-placeholder-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 0.85rem;
  max-width: 480px;
}

/* === PRICE CALCULATOR (PREMIUM ONLY — markup absent on classic) === */
.calculator {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
}

.calculator-heading {
  margin-bottom: 1.75rem;
}

.calculator-heading h2 {
  margin-bottom: 0.4rem;
  font-size: 1.7rem;
}

.calculator-heading p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.calc-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.calc-field select,
.calc-field input {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  padding: 0.75rem 0.9rem;
  color: var(--color-text);
  transition: border-color var(--transition), background var(--transition);
}

.calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235C6B7C' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2rem;
}

.calc-field select:focus,
.calc-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.calc-service-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.calc-service-radio {
  position: relative;
}

.calc-service-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-service-radio label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-bg);
}

.calc-service-radio input:checked + label {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.calc-result {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.calc-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  display: block;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.calc-result-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: 1.5;
}

/* === BEFORE / AFTER SLIDER (PREMIUM ONLY) === */
.before-after {
  padding: 5rem 2rem;
  background: var(--color-bg);
}

.before-after-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.before-after-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  --pos: 50%;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-slider .ba-after {
  clip-path: polygon(var(--pos) 0, 100% 0, 100% 100%, var(--pos) 100%);
}

.ba-slider .ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--color-primary);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.ba-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 2;
}

.ba-label {
  position: absolute;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: rgba(15, 27, 45, 0.7);
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.ba-label.before { left: 1rem; }
.ba-label.after  { right: 1rem; color: var(--color-primary); }

/* === ABOUT PAGE === */
.story-section {
  padding: 5rem 2rem;
  background: var(--color-bg);
}

.story-inner {
  max-width: 820px;
  margin: 0 auto;
}

.story-inner h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1.04rem;
}

.team-section {
  padding: 5rem 2rem;
  background: var(--color-bg-alt);
}

.team-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.team-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 25%;
}

.team-card-body { padding: 1.5rem 1.5rem 1.75rem; }

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.team-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
}

.team-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === CONTACT + MAP === */
.contact-section {
  padding: 5rem 2rem;
  background: var(--color-bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
}

.contact-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--color-text-light);
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.contact-row svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}

.contact-row .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.contact-row a,
.contact-row span {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.02rem;
}

.contact-row a:hover { color: var(--color-primary); }

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 460px;
  background: var(--color-bg-alt);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

/* === FOOTER === */
.footer {
  background: #0A1320;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-address {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

/* Tier-symmetry footer signature (family rule #31) — static branding on BOTH tiers (hover behaviour premium-only; killed below) */
.footer-brand .footer-wordmark {
  font-family: var(--font-script);   /* Kaushan Script, script wordmark, family rule #38 (placeholder; self-host licensed face at fork) */
  font-size: 2.4rem;
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: none;   /* script faces read as mixed-case, not the h3 all-caps blanket */
  color: var(--color-white);
  margin-bottom: 0.6rem;
}
.footer-social-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary); margin-top: 1.25rem; margin-bottom: 0.5rem;
}
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-primary); }

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  margin-bottom: 0.4rem;
}
.footer-contact a {
  color: var(--color-white);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-primary); }

.footer-contact .response-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a:hover { color: var(--color-white); }

/* === VIPPS MODAL === */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, 0.78);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--color-white);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-top: 4px solid var(--color-primary);
}

.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-vipps-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FF5B24;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.modal-box h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.modal-box p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.modal-box p:last-of-type { margin-bottom: 1.75rem; }

.modal-box a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* .modal-close-btn is the canonical button now (rule #42): markup carries
   `btn btn-primary btn--block modal-close-btn` — no bespoke size here. */

/* === 404 === */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
}

.not-found-inner h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.not-found-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.not-found-inner p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .services-full-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Mobile hero = DYRLEGE-STYLE OVERLAY (rule #37, dyrlege-overlay variant,
     REVISED 2026-07-01 per Bithun — replaces the rejected card-stack;
     identical to premium at rest per rule #31, classic = static .hero-bg).
     The whole 16:9 image shows UNCROPPED at the top; the text + buttons are
     pulled UP so the eyebrow + headline sit OVER the top-LEFT of the image
     (image focus on the RIGHT), and the sub + buttons flow DOWN past the
     image onto the deep-navy panel. A left-weighted scrim keeps the
     left-side text legible over the media. */
  .hero {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0 0 2.2rem;
    background: var(--color-bg-deep);
  }
  .hero .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: 70% center;
  }
  .hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(15, 27, 45, 0) 44%, rgba(15, 27, 45, 0.5) 78%, rgba(15, 27, 45, 0.92) 100%),
      linear-gradient(96deg, rgba(15, 27, 45, 0.94) 0%, rgba(15, 27, 45, 0.64) 37%, rgba(15, 27, 45, 0.16) 65%, rgba(15, 27, 45, 0) 85%);
  }
  .hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    margin-top: calc(-1 * (100vw * 9 / 16) + 1.4rem);
    padding: 0 1.15rem;
    background: transparent;
  }
  .hero-content h1 { font-size: clamp(1.7rem, 6.6vw, 2.4rem); margin-bottom: 0.9rem; }
  .hero-content p { font-size: 0.97rem; margin-top: 0.7rem; margin-bottom: 1.5rem; }
  /* Buttons LEFT, equal width, content-sized (rule #40a) — applies across the
     whole mobile range. Identical to premium at rest (rule #31). */
  .hero-cta-row {
    display: inline-grid;
    grid-auto-flow: row;
    grid-template-columns: max-content;
    gap: 0.75rem;
    justify-items: stretch;
    justify-content: start;
    width: max-content;
    max-width: 100%;
  }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  .story-home-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-home-image img { height: 320px; }

  .services-grid,
  .pricing-grid,
  .team-grid { grid-template-columns: 1fr; }

  .emergency-strip { padding: 0.9rem 1.25rem; }
  .emergency-inner { gap: 0.75rem; }
  .emergency-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
  }
  .emergency-item svg { display: none; }
  .emergency-item strong { margin-top: 0.1rem; }

  .contact-inner { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .map-wrap iframe { min-height: 320px; }

  .calculator-form { grid-template-columns: 1fr; }

  /* Footer stays 2-up on tablet + phone (brand spans the top, SIDER + KONTAKT
     side by side) so it isn't all stacked on the left — family rule #40b.
     Identical to premium at rest (rule #31). */
  .footer-inner { grid-template-columns: 1fr 1fr; column-gap: 1.6rem; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .booking-iframe-wrap iframe { height: 880px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  /* Headline sized so it holds ≤2 lines and the whole image stays visible
     above the pulled-up text — dyrlege-overlay hero (rule #37). */
  .hero-content h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  /* Paired hero CTAs are equalised + content-sized in the ≤768 block above
     (family rule #40a); the ≤480 block inherits it. Identical to premium
     at rest (rule #31). */
}

/* === CLASSIC STATIC OVERRIDE ===
   Per spec: classic ships fully static — no transitions, animations,
   or hover transforms. Removing this block re-enables motion (paid upsell). */

*, *::before, *::after {
  transition: none !important;
  animation: none !important;
}

.reveal,
.reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
}

.page-fade { animation: none !important; }

.service-card:hover,
.pricing-card:hover,
.pricing-card.featured:hover,
.team-card:hover,
.btn:hover,
.btn-accent:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-ghost:hover,
.story-home-image:hover,
.service-row:hover {
  transform: none !important;
}

.service-card:hover,
.pricing-card:hover,
.team-card:hover,
.service-row:hover {
  box-shadow: var(--shadow-card) !important;
  border-color: var(--color-border) !important;
}

.pricing-card.featured { transform: translateY(-6px) !important; }
.pricing-card.featured:hover { transform: translateY(-6px) !important; }

.btn-accent:hover {
  background: var(--color-primary) !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background: var(--color-accent) !important;
  box-shadow: none !important;
}
.btn-outline:hover {
  background: transparent !important;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}
.btn-ghost:hover {
  background: transparent !important;
  color: var(--color-accent) !important;
}

.text-link:hover { gap: 0.35rem !important; color: var(--color-primary) !important; }

.service-card::before { transform: scaleX(0) !important; }

.nav.scrolled { box-shadow: none !important; }

.nav-links a:hover,
.nav-links a.active { color: rgba(255, 255, 255, 0.7) !important; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 0 !important; }

.nav-cta:hover { background: var(--color-primary) !important; }

.lang-toggle:hover {
  color: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover { color: inherit !important; }

/* Social icons stay inert at rest on classic — premium-only hover behaviour killed (family rule #31 motion-vs-structure split) */
.footer-social a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.72) !important;
  transform: none !important;
}

.contact-row a:hover { color: var(--color-text) !important; }

.modal-close-btn:hover { background: var(--color-accent) !important; }

/* === CLASSIC MOBILE MENU REDESIGN ===
   Compact dropdown panel anchored to the right of the nav. */
@media (max-width: 768px) {
  .mobile-menu {
    display: none !important;
    position: fixed !important;
    top: 72px !important;
    right: 1rem !important;
    left: auto !important;
    bottom: auto !important;
    inset: auto 1rem auto auto !important;
    width: 240px !important;
    height: auto !important;
    transform: none !important;
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 32px rgba(15, 27, 45, 0.2) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0.4rem 0 !important;
    z-index: 1001 !important;
  }
  .mobile-menu.open {
    display: flex !important;
    transform: none !important;
  }
  .mobile-menu a {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: var(--color-text) !important;
    padding: 0.8rem 1.2rem !important;
    border-bottom: 1px solid var(--color-border) !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }
  .mobile-menu a:last-of-type { border-bottom: none !important; }
  .mobile-menu a:hover {
    background: transparent !important;
    color: var(--color-text) !important;
  }
  /* Drawer booking CTA keeps its accent-filled look inside the compact card
     (rule #43); static tier — hover holds the same colour (no motion). */
  .mobile-menu a.mobile-cta {
    margin: 0.5rem 0.9rem 0.45rem !important;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    text-align: center !important;
    border-radius: var(--radius-btn) !important;
    border-bottom: none !important;
  }
  .mobile-menu a.mobile-cta:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
  }
}
