﻿/* ── Section label token — single source of truth for all eyebrow/kicker labels ── */
:root {
  --label-color: #e8621a;
}

:root {
  --font-body: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Space Grotesk", Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --brand-black: #080808;
  --brand-charcoal: #111111;
  --brand-charcoal-rgb: 17, 17, 17;
  --brand-panel: #181818;
  --brand-white: #f5f1e8;
  --brand-muted: #b8b0a2;
  /* Brand orange sampled from the real MH Autoteknik logo (was a mismatched gold, #d6a20a) */
  --brand-gold: #e8621a;
  --brand-gold-light: #f58838;
  --brand-gold-dim: #b34b12;
  --brand-warning: #d86f3d;
  --brand-black-rgb: 8, 8, 8;
  --brand-white-rgb: 245, 241, 232;
  --brand-gold-rgb: 232, 98, 26;
  --brand-warning-rgb: 216, 111, 61;
  --brand-steel: #7f9298;
  --brand-steel-rgb: 127, 146, 152;
  --bg: var(--brand-black);
  --bg-soft: var(--brand-charcoal);
  --surface: var(--brand-charcoal);
  --surface-2: var(--brand-panel);
  --line: rgba(var(--brand-white-rgb), 0.08);
  --line-strong: rgba(var(--brand-white-rgb), 0.14);
  --text: var(--brand-white);
  --muted: var(--brand-muted);
  --accent: var(--brand-gold);
  --accent-strong: var(--brand-gold-light);
  --accent-soft: rgba(var(--brand-gold-rgb), 0.16);
  --accent-hover: var(--brand-gold-light);
  --accent-shadow: rgba(var(--brand-gold-rgb), 0.28);
  --accent-surface: rgba(var(--brand-gold-rgb), 0.08);
  --radius: 12px;
  --shadow: 0 18px 40px rgba(var(--brand-black-rgb), 0.18);
  --container: min(1180px, calc(100vw - 32px));
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--brand-gold-rgb), 0.06), transparent 24%),
    radial-gradient(circle at 82% 32%, rgba(var(--brand-gold-rgb), 0.05), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(var(--brand-white-rgb), 0.03), transparent 18%),
    radial-gradient(circle at 76% 78%, rgba(var(--brand-gold-rgb), 0.05), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 32%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  position: relative;
  background-size: 160% 160%, 170% 170%, 145% 145%, 180% 180%, 100% 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(var(--brand-white-rgb), 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-white-rgb), 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(var(--brand-black-rgb), 0.38), transparent 88%);
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--brand-gold-rgb), 0.07), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(var(--brand-white-rgb), 0.03), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(var(--brand-gold-rgb), 0.05), transparent 24%);
  background-size: 135% 135%, 120% 120%, 140% 140%;
  opacity: 0.58;
}

body[data-page="kontakt"] {
  animation: none;
  background-size: 100% 100%;
}

body[data-page="kontakt"]::before,
body[data-page="kontakt"]::after {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  background-color: var(--bg-soft);
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  overflow: visible;
  transition: background-color 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: transparent;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-gold-rgb), 0.3), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 0;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  justify-self: start;
  margin-right: 0;
}

.brand-logo {
  width: 212px;
  height: 76px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: visible;
  border: 0;
  background: transparent;
  align-self: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: none;
  transform: none;
  transform-origin: center;
}

.brand-monogram {
  display: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.logo-fallback .brand-monogram,
.brand-logo.logo-fallback .brand-monogram {
  display: inline;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.08;
  align-content: center;
  padding-top: 0;
  min-width: 0;
  transform: translateY(-1px);
}

.brand-text strong {
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
  white-space: nowrap;
}

.site-header .brand-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  justify-self: center;
  padding: 0;
  min-width: 0;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  justify-self: end;
  margin-left: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  border-radius: 999px;
}

.lang-flag {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.4;
  filter: grayscale(70%);
  transition: opacity 160ms ease, filter 160ms ease, background-color 160ms ease;
}

.lang-flag:hover {
  opacity: 0.75;
  filter: grayscale(20%);
}

.lang-flag.is-active {
  opacity: 1;
  filter: none;
  background: rgba(var(--brand-white-rgb), 0.08);
}

.lang-switch--mobile {
  margin: 14px auto 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.12);
  background: rgba(var(--brand-white-rgb), 0.055);
  color: var(--text);
  box-shadow: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-call-label {
  color: rgba(var(--brand-white-rgb), 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.header-call strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.header-call:hover,
.header-call:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.5);
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--brand-black);
}

.nav-item-services {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item-services-head {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-radius: 10px;
  background: rgba(var(--brand-white-rgb), 0.03);
  color: var(--text);
}

.services-toggle span {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-item-services.is-open .services-toggle span {
  transform: rotate(-135deg) translateY(-1px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
  padding: 16px 0;
  border-radius: 0;
  border: 0;
  white-space: nowrap;
}

.services-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 460px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 18px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  border-top: 2px solid var(--accent);
  background: rgba(var(--brand-black-rgb), 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px rgba(var(--brand-black-rgb), 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    visibility 180ms var(--ease);
  z-index: 150;
}

.services-subnav-eyebrow {
  grid-column: 1 / -1;
  margin: 2px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-subnav-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 9px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 18px 2px, 12px 2px, 6px 2px;
  background-position: 0 0, 0 3.5px, 0 7px;
  transform: skewX(-20deg);
}

.services-subnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  border-left: 2px solid transparent;
  transition: color 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease);
}

.services-subnav-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: var(--accent);
  transition: background-color 160ms var(--ease), color 160ms var(--ease);
}

.services-subnav-icon svg {
  width: 14px;
  height: 14px;
}

.services-subnav a:hover,
.services-subnav a:focus-visible {
  color: var(--text);
  background: rgba(var(--brand-white-rgb), 0.06);
  border-left-color: var(--accent);
}

.services-subnav a:hover .services-subnav-icon,
.services-subnav a:focus-visible .services-subnav-icon {
  background: var(--accent);
  color: var(--bg);
}

.services-subnav-all {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 12px !important;
  border-top: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-left: none !important;
  justify-content: center !important;
  color: var(--accent) !important;
  font-size: 0.8rem !important;
}

.services-subnav-all:hover,
.services-subnav-all:focus-visible {
  background: transparent !important;
}

.nav-item-services:hover .services-subnav,
.nav-item-services:focus-within .services-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  border-color: transparent;
  background: transparent;
  transform: none;
}

.site-nav a.is-active {
  position: relative;
}

.seo-fallback-header,
.seo-fallback-footer {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 14px;
}

.seo-fallback-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 16px;
}

.seo-fallback-header nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


body[data-page="home"] .site-nav a.is-active::after {
  display: none;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(var(--brand-white-rgb), 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.055), rgba(var(--brand-white-rgb), 0.02)),
    rgba(var(--brand-black-rgb), 0.78);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(var(--brand-white-rgb), 0.05);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-head {
  display: none;
}

.mobile-menu-footer {
  display: none;
}

.hero-slider-section {
  position: relative;
  min-height: min(760px, 78svh);
}

.hero-slider-shell,
.hero-overlay,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider-shell {
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  opacity: 0;
  z-index: 0;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(var(--brand-black-rgb), 0.74) 0%, rgba(var(--brand-black-rgb), 0.48) 42%, rgba(var(--brand-black-rgb), 0.08) 100%),
    linear-gradient(0deg, rgba(var(--brand-black-rgb), 0.62) 0%, rgba(var(--brand-black-rgb), 0.04) 60%),
    rgba(var(--brand-black-rgb), 0.14);
  pointer-events: none;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: min(760px, 78svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 54px;
}

.hero-copy {
  position: relative;
  max-width: 620px;
  padding: 0;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -30px -72px -34px -28px;
  z-index: -1;
  background:
    radial-gradient(ellipse at left top, rgba(var(--brand-black-rgb), 0.74), transparent 66%),
    radial-gradient(ellipse at left bottom, rgba(var(--brand-black-rgb), 0.58), transparent 64%),
    linear-gradient(90deg, rgba(var(--brand-black-rgb), 0.74), rgba(var(--brand-black-rgb), 0.48) 62%, rgba(var(--brand-black-rgb), 0.02)),
    radial-gradient(circle at 22% 45%, rgba(var(--brand-black-rgb), 0.38), transparent 68%);
  border-radius: 18px;
  pointer-events: none;
}

.hero-copy h1,
.hero-copy .lead {
  text-shadow: 0 2px 18px rgba(var(--brand-black-rgb), 0.58);
}

.hero-copy .lead {
  color: rgba(var(--brand-white-rgb), 0.96);
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-highlights a,
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  background: rgba(var(--brand-black-rgb), 0.56);
  color: var(--text);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.hero-highlights a:hover,
.hero-highlights a:focus-visible {
  background: rgba(var(--brand-white-rgb), 0.12);
  border-color: rgba(var(--brand-white-rgb), 0.28);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-highlights a:focus-visible {
  outline: 2px solid rgba(var(--brand-white-rgb), 0.35);
  outline-offset: 2px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 560px;
  margin-top: 18px;
  color: rgba(var(--brand-white-rgb), 0.84);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(var(--brand-gold-rgb), 0.16);
}

.mini-kicker {
  display: block;
  color: var(--label-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.slider-button,
.slider-dot {
  border: 1px solid rgba(var(--brand-white-rgb), 0.2);
  background: rgba(var(--brand-black-rgb), 0.44);
  color: var(--text);
}

.slider-button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.55;
}

.slider-dot.is-active {
  opacity: 1;
  background: var(--accent);
  border-color: var(--accent);
}

.section {
  padding: 62px 0;
  position: relative;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.015), rgba(var(--brand-white-rgb), 0)),
    var(--surface-2);
  box-shadow:
    inset 0 1px 0 rgba(var(--brand-white-rgb), 0.04),
    inset 0 -1px 0 rgba(var(--brand-white-rgb), 0.04);
  scroll-margin-top: 110px;
}

.section-contrast::before,
.section-muted::before,
.section-highlight::before {
  display: none;
}

.section-muted {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.07), transparent 26%),
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.018), rgba(var(--brand-white-rgb), 0)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(var(--brand-white-rgb), 0.035),
    inset 0 -1px 0 rgba(var(--brand-white-rgb), 0.035);
}

.section-highlight {
  background:
    radial-gradient(circle at 94% 6%, rgba(var(--brand-gold-rgb), 0.08), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(var(--brand-white-rgb), 0.02), transparent 20%),
    var(--surface-2);
  box-shadow:
    inset 0 1px 0 rgba(var(--brand-white-rgb), 0.04),
    inset 0 -1px 0 rgba(var(--brand-white-rgb), 0.04);
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, var(--container));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--brand-white-rgb), 0.06) 15%,
    rgba(var(--brand-gold-rgb), 0.32) 50%,
    rgba(var(--brand-white-rgb), 0.06) 85%,
    transparent 100%
  );
}

.blog-breadcrumb {
  padding: 108px 0 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-list a {
  color: var(--muted);
  transition: color 160ms var(--ease);
}

.breadcrumb-list a:hover,
.breadcrumb-list a:focus-visible {
  color: var(--accent);
}

.breadcrumb-list li[aria-hidden="true"] {
  color: rgba(var(--brand-white-rgb), 0.28);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.page-hero {
  padding: 132px 0 64px;
  border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.06);
  background:
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.22), transparent 28%),
    radial-gradient(circle at 80% 90%, rgba(var(--brand-gold-rgb), 0.1), transparent 22%),
    radial-gradient(circle at bottom left, rgba(var(--brand-white-rgb), 0.04), transparent 26%),
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.025), transparent);
}

.page-hero.compact {
  padding-bottom: 40px;
}

.blog-breadcrumb + .page-hero {
  padding-top: 24px;
}

.page-hero-strip {
  display: flex;
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 10px;
  margin-top: 24px;
}

.page-hero-strip a,
.page-hero-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--brand-white-rgb), 0.04);
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  color: var(--text);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.page-hero-strip span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-hero-strip a:hover,
.page-hero-strip a:focus-visible {
  background: rgba(var(--brand-white-rgb), 0.1);
  border-color: rgba(var(--brand-white-rgb), 0.24);
  color: var(--text);
  transform: translateY(-1px);
}

.page-hero-strip a:focus-visible {
  outline: 2px solid rgba(var(--brand-white-rgb), 0.25);
  outline-offset: 2px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--label-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 11px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--label-color), var(--label-color)),
    linear-gradient(var(--label-color), var(--label-color)),
    linear-gradient(var(--label-color), var(--label-color));
  background-repeat: no-repeat;
  background-size: 22px 2px, 15px 2px, 8px 2px;
  background-position: 0 0, 0 4.5px, 0 9px;
  transform: skewX(-20deg);
}

.eyebrow.eyebrow {
  color: var(--label-color);
}

.eyebrow.small {
  margin-bottom: 12px;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1,
h2 {
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.55rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.07;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: inherit;
}

h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}

p {
  margin: 0;
}

.lead,
.section-copy,
.muted {
  color: var(--muted);
}

.lead {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.68;
  margin-top: 18px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  position: relative;
}

.section-header p {
  margin-top: 16px;
  color: var(--muted);
}

.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-contrast .section-header::after,
.section-muted .section-header::after,
.section-highlight .section-header::after {
  width: 130px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--brand-white-rgb), 0.12));
}

.split-grid,
.grid-2,
.finder-layout,
.footer-grid,
.contact-layout,
.preview-grid {
  display: grid;
  gap: 20px;
}

.article-layout {
  max-width: 860px;
}

.split-grid,
.grid-2,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finder-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.preview-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cards-3 > * {
  grid-column: span 4;
}

.cards-4 > * {
  grid-column: span 3;
}

.card,
.finder-form,
.finder-result,
.contact-form,
.map-placeholder,
.faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.015), transparent 32%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(var(--brand-black-rgb), 0.16);
}

.card,
.faq-item,
.map-placeholder {
  padding: 20px;
}

.map-placeholder.map-embed {
  padding: 0;
  min-height: 320px;
}

.map-placeholder.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.statement-card,
.note-card,
.compare-card,
.personality-card {
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.06), transparent 45%),
    var(--surface);
}

.card::before,
.finder-form::after,
.finder-result::after,
.contact-form::after,
.map-placeholder::after,
.faq-item::after,
.image-card::after,
.editorial-panel::after,
.accent-panel::after,
.owner-card::after,
.owner-visual::after,
.blog-spotlight-copy::after,
.blog-spotlight-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--brand-gold-rgb), 0.95) 18%, rgba(var(--brand-white-rgb), 0.18) 50%, transparent 100%);
  pointer-events: none;
}

.finder-form,
.finder-result,
.contact-form {
  padding: 28px;
}

.contact-form {
  contain: paint;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack p {
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.9);
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(var(--brand-white-rgb), 0.04);
  border-color: rgba(var(--brand-white-rgb), 0.22);
  color: rgba(var(--brand-white-rgb), 0.92);
  box-shadow: inset 0 1px 0 rgba(var(--brand-white-rgb), 0.05);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(var(--brand-white-rgb), 0.06);
  border-color: rgba(var(--brand-white-rgb), 0.22);
  color: var(--text);
}

.text-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(var(--brand-white-rgb), 0.18);
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--accent);
}

.card-link,
.spaced {
  margin-top: 14px;
}

.accent-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.1), transparent 30%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-tight {
  padding-top: 22px;
  padding-bottom: 46px;
}

.editorial-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.08), transparent 45%),
    var(--surface);
  box-shadow: var(--shadow);
}

.editorial-panel h2 {
  margin-top: 14px;
}

.editorial-panel p {
  max-width: 56rem;
  margin-top: 14px;
}

.trust-grid,
.services-link-grid,
.benefits-grid {
  align-items: stretch;
}

.trust-card,
.service-link-card,
.front-cta-panel,
.local-links-panel {
  min-height: 100%;
}

.local-links-panel.editorial-panel {
  padding: 30px;
  border-radius: 18px;
  border-color: rgba(var(--brand-gold-rgb), 0.16);
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.08), rgba(var(--brand-white-rgb), 0.018) 44%, rgba(var(--brand-white-rgb), 0.01)),
    rgba(var(--brand-black-rgb), 0.96);
  box-shadow: 0 18px 38px rgba(var(--brand-black-rgb), 0.24);
}

.local-links-panel.editorial-panel::after {
  display: none;
}

.local-links-panel.editorial-panel::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.local-links-panel .mini-kicker {
  color: var(--label-color);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.trust-card {
  display: grid;
  gap: 10px;
}

.trust-icon,
.service-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--brand-white-rgb), 0.08), transparent 60%),
    rgba(var(--brand-gold-rgb), 0.12);
  color: var(--accent-strong);
  font-size: 1.08rem;
  box-shadow: inset 0 1px 0 rgba(var(--brand-white-rgb), 0.05);
}

.service-link-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-gold-rgb), 0.38);
  box-shadow:
    0 22px 44px rgba(var(--brand-black-rgb), 0.26),
    0 0 0 1px rgba(var(--brand-gold-rgb), 0.08);
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.12), transparent 42%),
    rgba(var(--brand-charcoal-rgb), 0.98);
}

.service-link-card:focus-visible {
  outline: 2px solid rgba(var(--brand-gold-rgb), 0.55);
  outline-offset: 3px;
}

.service-link-card p {
  margin: 0;
}

.service-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-link-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.local-links-panel h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.local-link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border-top: 0;
}

.local-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.045), rgba(var(--brand-white-rgb), 0.018)),
    rgba(var(--brand-white-rgb), 0.018);
  color: var(--text);
  font-size: 0.96rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.local-link-list a::after {
  content: ">";
  flex: 0 0 auto;
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(var(--brand-gold-rgb), 0.08);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transform: none;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.local-link-list a:hover,
.local-link-list a:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(var(--brand-gold-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.1), rgba(var(--brand-white-rgb), 0.018)),
    rgba(var(--brand-white-rgb), 0.02);
  transform: translateX(2px);
}

.local-link-list a:hover::after,
.local-link-list a:focus-visible::after {
  color: var(--accent-strong);
  background: rgba(var(--brand-gold-rgb), 0.14);
  transform: translateX(2px);
}

.local-link-list a:focus-visible {
  outline: 2px solid rgba(var(--brand-gold-rgb), 0.45);
  outline-offset: 3px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
  counter-reset: faq;
}

.faq-accordion-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.03), rgba(var(--brand-white-rgb), 0.015)),
    rgba(var(--brand-charcoal-rgb), 0.98);
  box-shadow: 0 18px 34px rgba(var(--brand-black-rgb), 0.16);
}

.faq-accordion-item[open] {
  border-color: rgba(var(--brand-gold-rgb), 0.26);
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.08), rgba(var(--brand-white-rgb), 0.015)),
    rgba(var(--brand-charcoal-rgb), 0.98);
}

.faq-accordion-item {
  counter-increment: faq;
}

.faq-accordion-item summary {
  position: relative;
  display: block;
  padding: 22px 64px 22px 72px;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-accordion-item summary::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-strong);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-accordion-item[open] summary::after {
  content: "-";
}

.faq-accordion-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.front-cta-panel {
  padding: 30px;
}

.front-cta-panel .button-row {
  margin-top: 24px;
}

.finder-form::before,
.finder-result::before,
.contact-form::before,
.editorial-panel::before,
.accent-panel::before,
.blog-spotlight-copy::before,
.blog-spotlight-card::before,
.owner-visual::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--brand-white-rgb), 0.06));
}

.media-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.media-feature-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-feature-copy {
  display: grid;
  gap: 14px;
}

.blog-spotlight {
  display: block;
}

.blog-spotlight-copy,
.blog-spotlight-card {
  border: 1px solid rgba(var(--brand-white-rgb), 0.06);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(var(--brand-gold-rgb), 0.08), transparent 34%),
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.02), transparent 40%),
    var(--surface);
  box-shadow: 0 22px 48px rgba(var(--brand-black-rgb), 0.2);
}

.blog-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 34px;
}

.blog-spotlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-spotlight-copy h3 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-spotlight-meta,
.blog-spotlight-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-spotlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: auto;
  margin-top: 22px;
  padding: 22px 24px;
}

.blog-spotlight-card h4 {
  margin: 0;
  max-width: none;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.blog-spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
}

.blog-spotlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.blog-spotlight .button {
  min-width: 158px;
}

.blog-spotlight .section-copy {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.72;
}

.blog-spotlight .slider-button {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(var(--brand-black-rgb), 0.78);
  border-color: rgba(var(--brand-white-rgb), 0.1);
}

.blog-spotlight-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.blog-spotlight .slider-dots {
  gap: 12px;
  justify-content: center;
}

.blog-spotlight .slider-dot {
  width: 10px;
  height: 10px;
}

@media (max-width: 820px) {
  .blog-spotlight-copy,
  .blog-spotlight-card {
    border-radius: 24px;
  }

  .blog-spotlight-copy {
    padding: 28px;
  }

  .blog-spotlight-copy h3 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .blog-spotlight-card {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    padding: 22px;
  }

  .blog-spotlight-card h4 {
    font-size: 1.3rem;
  }

  .blog-spotlight-head,
  .blog-spotlight-nav {
    flex-wrap: wrap;
  }

  .blog-spotlight-controls,
  .blog-spotlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-spotlight .button {
    min-width: 0;
  }

  .blog-spotlight .slider-button {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.015), transparent 28%),
    var(--surface);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-card-wide img {
  min-height: 340px;
}

.visual-stack {
  align-content: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-span {
  grid-column: 1 / -1;
}

.field-grid label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form {
  scroll-margin-top: 110px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.28);
  border-radius: 12px;
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status-fejl,
.form-status-mangler {
  border-color: rgba(var(--brand-warning-rgb), 0.35);
  background: rgba(var(--brand-warning-rgb), 0.1);
  color: var(--brand-warning);
}

select,
input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.07);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(var(--brand-warning-rgb), 0.7);
}

select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.finder-button {
  margin-top: 18px;
}

.result-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-head h3 {
  margin-top: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat {
  padding: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.stat strong {
  font-size: 1.5rem;
  line-height: 1;
}

.helper-text,
.disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status--success {
  color: var(--accent-strong);
}

.form-status--error {
  color: #ff6b6b;
}

.bullet-list {
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 8px;
}

.footer {
  padding: clamp(52px, 6vw, 80px) 0 36px;
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.2);
  background:
    radial-gradient(ellipse at 8% 0%, rgba(var(--brand-gold-rgb), 0.09), transparent 42%),
    radial-gradient(ellipse at 92% 85%, rgba(var(--brand-gold-rgb), 0.05), transparent 35%),
    var(--bg-soft);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.9fr 1.05fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand .brand-logo {
  width: 168px;
  height: 58px;
}

@media (max-width: 1360px) {
  .brand-logo {
    width: 198px;
    height: 72px;
  }

  .brand-logo img {
    transform: none;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 0.9rem;
  }

  .header-call {
    padding: 0 10px;
  }

  .header-cta {
    padding: 0 14px;
  }
}

@media (max-width: 1180px) {
  .brand-logo {
    width: 184px;
    height: 68px;
  }

  .brand-logo img {
    transform: none;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 7px 7px;
    font-size: 0.88rem;
  }

  .header-call {
    min-height: 40px;
    padding: 0 9px;
  }

  .header-call strong {
    font-size: 0.89rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }
}

.footer-brand-copy {
  max-width: 24rem;
  margin: 8px 0 0;
  line-height: 1.65;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-col p a,
.footer-contact-link {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-map-wrap {
  margin: 8px 0 2px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

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

.footer-map-link {
  margin-top: 2px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(var(--brand-white-rgb), 0.2);
  text-underline-offset: 4px;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: var(--text);
  text-decoration-color: var(--accent);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.1);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(var(--brand-black-rgb), 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.5);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(var(--brand-gold-rgb), 0.18), 0 10px 26px rgba(var(--brand-black-rgb), 0.2);
  transform: translateY(-2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.footer-icon {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: var(--accent);
  opacity: 0.9;
}

.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.55);
  box-shadow: 0 12px 30px rgba(var(--brand-gold-rgb), 0.14);
  transform: translateY(-1px);
}

.social-link[aria-label="Facebook"] {
  background: #1877f2;
  color: #fff;
}

.social-link[aria-label="Instagram"] {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}

.social-link.is-disabled {
  color: var(--muted);
  opacity: 0.72;
  cursor: default;
}

.mobile-quickbar {
  display: none;
}

.desktop-phone-float {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 170px;
  padding: 11px 13px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.035), rgba(var(--brand-white-rgb), 0.01)),
    rgba(var(--brand-black-rgb), 0.82);
  box-shadow: 0 14px 28px rgba(var(--brand-black-rgb), 0.2);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.desktop-phone-float-copy {
  display: grid;
  gap: 3px;
}

.desktop-phone-float:hover,
.desktop-phone-float:focus-visible {
  transform: translateY(-50%) translateX(-2px);
  border-color: rgba(var(--brand-white-rgb), 0.14);
  background:
    linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.05), rgba(var(--brand-white-rgb), 0.015)),
    rgba(var(--brand-black-rgb), 0.88);
}

.desktop-phone-float-label {
  color: rgba(var(--brand-white-rgb), 0.56);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-phone-float strong {
  color: rgba(var(--brand-white-rgb), 0.9);
  font-size: 0.96rem;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 600;
}

.desktop-phone-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(var(--brand-white-rgb), 0.04);
  color: rgba(var(--brand-white-rgb), 0.68);
}

.desktop-phone-float-icon svg {
  width: 16px;
  height: 16px;
}

.owner-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.owner-card,
.owner-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.owner-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.08), transparent 34%),
    var(--surface);
}

.owner-card::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.owner-card h2 {
  line-height: 1.08;
  margin-bottom: 14px;
}

.owner-signature {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--brand-white-rgb), 0.08);
}

.owner-signature strong {
  font-size: 1rem;
}

.owner-signature span {
  color: var(--muted);
  font-size: 0.92rem;
}

.owner-badges {
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 10px;
  margin-top: 18px;
}

.owner-badges span {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.owner-visual {
  padding: 0;
  min-height: 460px;
  background:
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.1), transparent 34%),
    var(--surface);
}

.owner-visual::before {
  display: none;
}

.owner-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.owner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px) 22px;
  background: linear-gradient(0deg, rgba(var(--brand-black-rgb), 0.92) 0%, rgba(var(--brand-black-rgb), 0.5) 60%, transparent 100%);
}

.owner-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: -0.01em;
}

.owner-caption span {
  display: block;
  margin-top: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent-strong);
}

.footer-grid h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.services-notes {
  margin-top: 22px;
}

.services-notes .card {
  min-height: 100%;
}

@keyframes ambientShift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      100% 10%,
      70% 90%,
      0% 0%;
  }

  50% {
    background-position:
      18% 14%,
      82% 20%,
      88% 22%,
      82% 80%,
      0% 0%;
  }

  100% {
    background-position:
      28% 22%,
      68% 28%,
      76% 10%,
      66% 68%,
      0% 0%;
  }
}

@keyframes ambientGlow {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      50% 100%;
    opacity: 0.42;
  }

  50% {
    background-position:
      8% 6%,
      92% 10%,
      54% 92%;
    opacity: 0.62;
  }

  100% {
    background-position:
      16% 10%,
      84% 18%,
      48% 84%;
    opacity: 0.5;
  }
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page^="service"] .reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(var(--brand-white-rgb), 0.08);
  margin-top: 8px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.08);
}

.service-row-featured {
  padding-top: 8px;
}

.service-index {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}

.service-copy {
  display: grid;
  gap: 12px;
}

.service-meta {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.service-meta p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1200px) {
  body {
    background:
      radial-gradient(circle at 14% 12%, rgba(var(--brand-gold-rgb), 0.1), transparent 26%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 45%, var(--bg) 100%);
    background-size: 100% 100%;
  }

  body::before,
  body::after {
    display: none;
  }

  .header-inner {
    display: flex;
    gap: 16px;
    min-height: 70px;
    padding: 6px 0;
  }

  .brand-logo {
    width: 172px;
    height: 64px;
  }

  .brand-logo img {
    transform: none;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    border-color: rgba(var(--brand-white-rgb), 0.12);
    background:
      linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.07), rgba(var(--brand-white-rgb), 0.025)),
      rgba(var(--brand-black-rgb), 0.86);
    box-shadow: inset 0 1px 0 rgba(var(--brand-white-rgb), 0.08), 0 12px 24px rgba(var(--brand-black-rgb), 0.22);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible,
  body.nav-open .nav-toggle {
    border-color: rgba(var(--brand-gold-rgb), 0.46);
    background:
      linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.16), rgba(var(--brand-white-rgb), 0.03)),
      rgba(var(--brand-charcoal-rgb), 0.94);
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: auto;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    width: min(340px, calc(100vw - 36px));
    padding: 14px;
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 22px;
    border: 1px solid rgba(var(--brand-white-rgb), 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms;
    background:
      linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.045), rgba(var(--brand-white-rgb), 0.012)),
      var(--brand-black);
    box-shadow: 0 26px 60px rgba(var(--brand-black-rgb), 0.5), inset 0 1px 0 rgba(var(--brand-white-rgb), 0.05);
    z-index: 220;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 46px;
    padding: 0 2px 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.08);
  }

  .nav-mobile-head > span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .nav-close {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(var(--brand-white-rgb), 0.12);
    border-radius: 999px;
    background: rgba(var(--brand-white-rgb), 0.04);
    color: var(--text);
  }

  .nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    border-color: rgba(var(--brand-gold-rgb), 0.36);
    background: rgba(var(--brand-gold-rgb), 0.1);
  }

  .nav-item-services {
    display: block;
    padding: 8px;
    border: 1px solid rgba(var(--brand-white-rgb), 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.065), rgba(var(--brand-white-rgb), 0.012)),
      rgba(var(--brand-white-rgb), 0.018);
  }

  .nav-item-services-head {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-item-services-head > a {
    flex: 1 1 auto;
    padding: 7px 8px 9px;
    font-size: 0.84rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text);
  }

  .services-toggle {
    display: none;
    flex: 0 0 auto;
  }

  .services-subnav {
    position: static;
    min-width: 0;
    display: grid;
    gap: 2px;
    margin-top: 0;
    padding: 2px 0 0;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 16px;
  }

  .nav-item-services:hover .services-subnav,
  .nav-item-services:focus-within .services-subnav {
    transform: none;
  }

  .services-subnav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    font-size: 0.8rem;
    line-height: 1.12;
    white-space: normal;
    color: rgba(var(--brand-white-rgb), 0.72);
    background: rgba(var(--brand-black-rgb), 0.18);
    border: 1px solid rgba(var(--brand-white-rgb), 0.045);
    border-radius: 13px;
  }

  .services-subnav a::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(var(--brand-gold-rgb), 0.82);
    box-shadow: 0 0 14px rgba(var(--brand-gold-rgb), 0.36);
  }

  .site-nav > a,
  .site-nav > .nav-item-services > .nav-item-services-head > a {
    min-height: 0;
  }

  .site-nav > a {
    padding: 11px 12px;
    font-size: 0.84rem;
    line-height: 1.15;
    border: 1px solid transparent;
    border-radius: 15px;
    background: rgba(var(--brand-white-rgb), 0.012);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    border-color: rgba(var(--brand-gold-rgb), 0.24);
    background:
      linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.15), rgba(var(--brand-gold-rgb), 0.05)),
      rgba(var(--brand-white-rgb), 0.035);
    color: var(--text);
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  html.nav-open,
  body.nav-open {
    overflow: visible;
  }

  .split-grid,
  .grid-2,
  .article-layout,
  .finder-layout,
  .contact-layout,
  .footer-grid,
  .owner-story,
  .media-feature,
  .media-feature-reverse {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 64px 1fr;
  }

  .service-meta {
    grid-column: 2;
  }

  .cards-3 > *,
  .cards-4 > * {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 104px;
  }

  .desktop-phone-float {
    display: none;
  }

  .mobile-quickbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 140;
    display: block;
    padding: 0 12px calc(12px + env(safe-area-inset-bottom));
    pointer-events: none;
    transform: translateY(0);
    opacity: 1;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-quickbar.is-hidden {
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
    opacity: 0;
  }

  body.nav-open .mobile-quickbar {
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
    opacity: 0;
    pointer-events: none;
  }

  .mobile-quickbar-bar,
  .mobile-quickbar-sheet {
    pointer-events: auto;
    border: 1px solid rgba(var(--brand-white-rgb), 0.08);
    background:
      linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.05), rgba(var(--brand-white-rgb), 0.015)),
      rgba(var(--brand-black-rgb), 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 44px rgba(var(--brand-black-rgb), 0.28);
  }

  .mobile-quickbar-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .mobile-quickbar-sheet {
    margin-bottom: 10px;
    padding: 14px;
    border-radius: 22px;
    max-height: min(70vh, calc(100vh - 132px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-quickbar-sheet[hidden] {
    display: none;
  }

  .mobile-quickbar-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
  }

  .mobile-quickbar-sheet-head span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .mobile-quickbar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(var(--brand-white-rgb), 0.08);
    border-radius: 14px;
    background: rgba(var(--brand-white-rgb), 0.03);
    color: var(--text);
  }

  .mobile-quickbar-close svg {
    width: 18px;
    height: 18px;
  }

  .mobile-quickbar-menu {
    display: grid;
    gap: 10px;
  }

  .mobile-quickbar-group {
    border: 1px solid rgba(var(--brand-white-rgb), 0.07);
    border-radius: 16px;
    background: rgba(var(--brand-white-rgb), 0.025);
    overflow: hidden;
  }

  .mobile-quickbar-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 16px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
  }

  .mobile-quickbar-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-quickbar-group summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(var(--brand-gold-rgb), 0.85);
    border-right: 2px solid rgba(var(--brand-gold-rgb), 0.85);
    transform: rotate(135deg);
    transition: transform 180ms ease;
  }

  .mobile-quickbar-group[open] summary::after {
    transform: rotate(-45deg);
  }

  .mobile-quickbar-submenu {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
  }

  .mobile-quickbar-submenu a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(var(--brand-white-rgb), 0.03);
  }

  .mobile-quickbar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(var(--brand-white-rgb), 0.07);
    border-radius: 16px;
    background: rgba(var(--brand-white-rgb), 0.025);
    color: var(--text);
  }

  .mobile-quickbar-menu a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(var(--brand-gold-rgb), 0.85);
    border-right: 2px solid rgba(var(--brand-gold-rgb), 0.85);
    transform: rotate(45deg);
  }

  .mobile-quickbar-link {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-height: 66px;
    padding: 9px 6px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: transparent;
    color: var(--muted);
    text-align: center;
  }

  .mobile-quickbar-link:hover,
  .mobile-quickbar-link:focus-visible,
  .mobile-quickbar.is-open .mobile-quickbar-menu-toggle {
    border-color: rgba(var(--brand-gold-rgb), 0.28);
    background: rgba(var(--brand-gold-rgb), 0.1);
    color: var(--text);
  }

  .mobile-quickbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(var(--brand-white-rgb), 0.04);
  }

  .mobile-quickbar-icon svg {
    width: 18px;
    height: 18px;
  }

  .mobile-quickbar-label {
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hero-slider-section,
  .hero-content {
    min-height: auto;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    padding-bottom: 16px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 32px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy::before {
    inset: -20px -16px -24px -16px;
    background:
      radial-gradient(ellipse at left top, rgba(var(--brand-black-rgb), 0.78), transparent 70%),
      radial-gradient(ellipse at left bottom, rgba(var(--brand-black-rgb), 0.62), transparent 70%),
      linear-gradient(90deg, rgba(var(--brand-black-rgb), 0.78), rgba(var(--brand-black-rgb), 0.58) 72%, rgba(var(--brand-black-rgb), 0.18)),
      radial-gradient(circle at 24% 42%, rgba(var(--brand-black-rgb), 0.38), transparent 70%);
    border-radius: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-copy .lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-controls {
    margin-top: 24px;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-proof {
    gap: 8px 12px;
    font-size: 0.8rem;
  }

  .trust-card,
  .service-link-card,
  .faq-accordion-item summary {
    gap: 12px;
  }

  .faq-accordion-item summary {
    padding: 20px 58px 20px 20px;
  }

  .faq-accordion-item p {
    padding: 0 20px 20px;
  }

  .local-link-list a {
    min-height: 54px;
    padding: 0 16px;
  }

  .front-cta-panel {
    padding: 28px;
  }

  .field-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cards-3 > *,
  .cards-4 > * {
    grid-column: span 12;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-meta {
    grid-column: auto;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .header-inner {
    min-height: 62px;
    padding: 4px 0;
  }

  .brand-logo {
    width: 138px;
    height: 52px;
  }

  .brand-logo img {
    transform: none;
  }

  .site-nav {
    top: 74px;
    left: auto;
    right: 8px;
    width: min(300px, calc(100vw - 96px));
    gap: 4px;
    padding: 10px;
    max-height: calc(100dvh - 82px);
    border-radius: 20px;
  }

  .site-nav > a {
    padding: 10px 11px;
    font-size: 0.8rem;
  }

  .nav-item-services-head > a {
    font-size: 0.79rem;
    padding: 8px 9px 9px;
  }

  .services-subnav {
    gap: 3px;
    padding-bottom: 0;
  }

  .services-subnav a {
    padding: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .trust-icon,
  .service-link-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.15rem;
  }

  .faq-accordion-item summary {
    font-size: 0.98rem;
  }

  .card,
  .finder-form,
  .finder-result,
  .contact-form,
  .map-placeholder,
  .faq-item,
  .accent-panel {
    padding: 22px;
  }

  .slider-button {
    width: 44px;
    height: 44px;
  }

  .mobile-quickbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-quickbar-bar {
    gap: 4px;
    padding: 8px;
  }

  .mobile-quickbar-label {
    font-size: 0.69rem;
  }
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: grid;
  gap: 14px;
  max-width: 720px;
  max-height: calc(100svh - 40px);
  overflow: auto;
  margin: 0 auto;
  padding: 18px;
  color: var(--text);
  background: rgba(var(--brand-black-rgb), 0.92);
  border: 1px solid rgba(var(--brand-white-rgb), 0.11);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(var(--brand-black-rgb), 0.34);
  backdrop-filter: blur(18px);
}

.cookie-consent-text {
  display: grid;
  gap: 7px;
}

.cookie-kicker {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-text strong {
  font-size: 1.05rem;
}

.cookie-consent-text p {
  max-width: 620px;
  margin: 0;
  color: rgba(var(--brand-white-rgb), 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.09);
  border-radius: 15px;
  background: rgba(var(--brand-white-rgb), 0.024);
}

.toggle-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 34px;
  height: 20px;
}

.cookie-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.cookie-option input:disabled {
  cursor: default;
}

.toggle-switch {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.28);
  background: rgba(var(--brand-white-rgb), 0.08);
  transition: border-color 0.18s ease, background-color 0.18s ease;
  pointer-events: none;
}

.cookie-option input:checked ~ .toggle-switch {
  border-color: var(--accent);
  background: var(--accent);
}

.cookie-option input:focus-visible ~ .toggle-switch {
  outline: 2px solid rgba(var(--brand-white-rgb), 0.35);
  outline-offset: 2px;
}

.toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(var(--brand-white-rgb), 0.7);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.cookie-option input:checked ~ .toggle-switch .toggle-knob {
  transform: translateX(14px);
  background: var(--bg);
}

.cookie-option span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.cookie-option strong {
  font-size: 0.82rem;
}

.cookie-option small {
  color: rgba(var(--brand-white-rgb), 0.58);
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie-option.is-required {
  opacity: 0.74;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.cookie-consent-actions .button {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  padding-left: 14px;
  padding-right: 14px;
}

.cookie-settings-button {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 110;
  min-height: 42px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(var(--brand-black-rgb), 0.88);
  border: 1px solid rgba(var(--brand-white-rgb), 0.16);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(var(--brand-black-rgb), 0.28);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.36);
  background: rgba(var(--brand-black-rgb), 0.98);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .site-header,
  .mobile-quickbar-bar,
  .cookie-consent,
  .cookie-settings-button,
  .hero-highlights a,
  .hero-highlights span {
    backdrop-filter: none;
  }
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 88px;
    max-height: calc(100svh - 112px);
    padding: 16px;
  }

  .cookie-options {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .button {
    flex: 1;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cookie-settings-button {
    bottom: 112px;
  }
}

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

  .hero-slide,
  .reveal-on-scroll,
  body {
    transition: none;
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Home redesign: workshop dashboard direction */
body[data-page="home"] {
  --home-steel: #7f9298;
  --home-green: #8ed7a7;
  --home-line: rgba(245, 241, 232, 0.13);
}

body[data-page="home"] .home-hero {
  min-height: min(820px, 86svh);
  overflow: hidden;
}

body[data-page="home"] .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.34) 0 1px, transparent 1px 100%) 50% 0 / 260px 100%,
    linear-gradient(0deg, rgba(127, 146, 152, 0.12) 0 1px, transparent 1px 100%) 0 50% / 100% 164px;
  opacity: 0.3;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

body[data-page="home"] .home-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 55%),
    linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.18), transparent 42%),
    rgba(0, 0, 0, 0.18);
}

body[data-page="home"] .home-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(820px, 86svh);
  padding-top: 86px;
  padding-bottom: 70px;
}

body[data-page="home"] .home-hero .hero-copy {
  max-width: 720px;
}

body[data-page="home"] .home-hero .hero-copy::before {
  inset: -36px -48px -34px -30px;
  border: 1px solid rgba(var(--brand-white-rgb), 0.09);
  border-left: 3px solid rgba(var(--brand-gold-rgb), 0.86);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.42)),
    linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.11), transparent 44%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="home"] .home-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 6.3vw, 6.6rem);
  line-height: 0.94;
}

body[data-page="home"] .home-hero .lead {
  max-width: 58ch;
}

body[data-page="home"] .home-hero .hero-controls {
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
}

.hero-diagnostic-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 22px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.07), transparent 34%),
    rgba(10, 11, 11, 0.76);
  backdrop-filter: blur(16px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-diagnostic-panel::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--home-steel), transparent);
}

.diagnostic-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(142, 215, 167, 0.28);
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 18px rgba(142, 215, 167, 0.9);
}

.hero-diagnostic-panel h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.diagnostic-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.diagnostic-steps li > span {
  grid-row: span 2;
  color: var(--accent-strong);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.diagnostic-steps strong {
  line-height: 1.2;
}

.diagnostic-steps small {
  color: var(--muted);
  line-height: 1.4;
}

.home-trust-section {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.1), transparent 28%, rgba(127, 146, 152, 0.08));
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.2);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.quality-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(245, 241, 232, 0.1);
}

.quality-strip span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 22px;
  border-right: 1px solid rgba(245, 241, 232, 0.1);
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.92rem;
}

.quality-strip strong {
  color: var(--text);
  font-size: 0.98rem;
}

.service-finder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-finder {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.11), transparent 34%),
    rgba(11, 12, 12, 0.74);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.service-options {
  display: grid;
  gap: 8px;
}

.service-option {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 6px;
  background: rgba(245, 241, 232, 0.035);
  color: rgba(245, 241, 232, 0.78);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service-option:hover,
.service-option:focus-visible,
.service-option.is-active {
  border-color: rgba(var(--brand-gold-rgb), 0.52);
  background: rgba(var(--brand-gold-rgb), 0.13);
  color: var(--text);
}

.service-option.is-active {
  transform: translateX(4px);
}

.service-result {
  min-height: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.08), transparent 48%),
    rgba(18, 18, 18, 0.84);
}

.service-result h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
}

.service-result p,
.service-result li {
  color: var(--muted);
}

.service-result ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.service-result li {
  position: relative;
  padding-left: 22px;
}

.service-result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

body[data-page="home"] .services-link-grid {
  gap: 14px;
}

body[data-page="home"] .service-link-card {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.08), transparent 42%),
    rgba(14, 15, 15, 0.9);
}

.symptom-section {
  border-top: 1px solid rgba(245, 241, 232, 0.07);
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}

.symptom-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.symptom-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(245, 241, 232, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(127, 146, 152, 0.1), transparent 46%),
    rgba(13, 14, 14, 0.86);
  overflow: hidden;
}

.symptom-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(127, 146, 152, 0.6));
}

.symptom-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symptom-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.symptom-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.workshop-section .split-grid {
  align-items: center;
}

body[data-page="home"] .front-cta-panel {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.16), transparent 38%),
    linear-gradient(90deg, rgba(127, 146, 152, 0.1), transparent),
    rgba(13, 14, 14, 0.94);
}

@media (max-width: 1020px) {
  body[data-page="home"] .home-hero .hero-content,
  .service-finder-layout,
  .symptom-layout {
    grid-template-columns: 1fr;
  }

  .hero-diagnostic-panel {
    max-width: 620px;
  }

  .quality-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .home-hero {
    min-height: auto;
  }

  body[data-page="home"] .home-hero .hero-content {
    padding-top: 82px;
    padding-bottom: 38px;
    gap: 22px;
  }

  body[data-page="home"] .home-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .hero-diagnostic-panel {
    padding: 18px;
  }

  .service-finder {
    grid-template-columns: 1fr;
  }

  .service-options {
    grid-template-columns: 1fr 1fr;
  }

  .service-option {
    min-height: 48px;
    font-size: 0.88rem;
  }

  .symptom-grid,
  .quality-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .quality-strip span {
    min-height: 74px;
    padding: 14px 16px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    min-height: auto;
  }
}

/* Softer WordPress-style polish for the revised home page */
body[data-page="home"] .site-header {
  position: fixed;
  top: 0;
}

body[data-page="home"] .site-header.scrolled {
  background: rgba(8, 8, 8, 0.72);
  border-bottom: none;
  backdrop-filter: blur(22px) saturate(1.15);
}

body[data-page="home"] .site-header.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(var(--brand-gold-rgb), 0.36), transparent);
}

body[data-page="home"] .header-inner {
  min-height: 86px;
}

body[data-page="home"] .brand-logo {
  width: 196px;
  height: 70px;
}

body[data-page="home"] .site-nav {
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.045);
}

body[data-page="home"] .site-nav > a,
body[data-page="home"] .nav-item-services-head > a {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
}

body[data-page="home"] .site-nav > a:hover,
body[data-page="home"] .site-nav > a:focus-visible,
body[data-page="home"] .nav-item-services-head > a:hover,
body[data-page="home"] .nav-item-services-head > a:focus-visible {
  background: rgba(var(--brand-gold-rgb), 0.13);
  color: var(--text);
}

body[data-page="home"] .header-call {
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.065);
}

body[data-page="home"] .header-cta {
  min-height: 46px;
  padding: 0 21px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(var(--brand-gold-rgb), 0.22);
}

body[data-page="home"] .home-hero {
  min-height: min(760px, 82svh);
}

body[data-page="home"] .home-hero::before {
  opacity: 0.12;
}

body[data-page="home"] .home-hero .hero-content {
  min-height: min(760px, 82svh);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 390px);
}

body[data-page="home"] .home-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.05rem, 5.5vw, 5.75rem);
  letter-spacing: 0;
}

body[data-page="home"] .home-hero .hero-copy::before {
  border-left-width: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.36)),
    rgba(245, 241, 232, 0.025);
}

body[data-page="home"] .home-hero .button {
  border-radius: 999px;
}

body[data-page="home"] .hero-diagnostic-panel {
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(245, 241, 232, 0.1), rgba(245, 241, 232, 0.025)),
    rgba(12, 12, 12, 0.78);
}

body[data-page="home"] .home-trust-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.035), rgba(245, 241, 232, 0.01)),
    rgba(12, 12, 12, 0.96);
}

body[data-page="home"] .quality-strip {
  gap: 12px;
  padding: 18px 0;
  border-left: 0;
}

body[data-page="home"] .quality-strip span {
  min-height: 82px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.035);
  text-align: center;
}

.services-motion-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.035), transparent 20%),
    radial-gradient(circle at 8% 0%, rgba(var(--brand-gold-rgb), 0.13), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(127, 146, 152, 0.13), transparent 32%),
    #121211;
}

.services-motion-section::before,
.services-motion-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(16vw, 190px);
  z-index: 2;
  pointer-events: none;
}

.services-motion-section::before {
  left: 0;
  background: linear-gradient(90deg, #121211, rgba(18, 18, 17, 0));
}

.services-motion-section::after {
  right: 0;
  background: linear-gradient(270deg, #121211, rgba(18, 18, 17, 0));
}

.services-motion-intro {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.services-motion-intro .section-header {
  margin: 0;
  max-width: 720px;
}

.services-motion-intro .button {
  flex: 0 0 auto;
  border-radius: 999px;
}

.services-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 20px;
}

.services-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  animation: servicesMarquee 34s linear infinite;
  will-change: transform;
}

.services-marquee:hover .services-marquee-track,
.services-marquee:focus-within .services-marquee-track {
  animation-play-state: paused;
}

.services-marquee-track a {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  border: 1px solid rgba(245, 241, 232, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.08), rgba(245, 241, 232, 0.025)),
    rgba(8, 8, 8, 0.66);
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.36rem);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.services-marquee-track a::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--brand-gold-rgb), 0.5);
}

.services-marquee-track a:hover,
.services-marquee-track a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(var(--brand-gold-rgb), 0.42);
  background: rgba(var(--brand-gold-rgb), 0.14);
}

.services-feature-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.service-feature-card {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.075), rgba(245, 241, 232, 0.018)),
    rgba(8, 8, 8, 0.58);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-feature-card:hover,
.service-feature-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(var(--brand-gold-rgb), 0.34);
}

.service-feature-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-feature-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
}

@keyframes servicesMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  body[data-page="home"] .site-nav {
    border-radius: 8px;
  }

  .services-motion-intro {
    display: grid;
    align-items: start;
  }

  .services-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .header-inner {
    min-height: 72px;
  }

  body[data-page="home"] .brand-logo {
    width: 168px;
    height: 58px;
  }

  body[data-page="home"] .quality-strip span {
    border-radius: 8px;
  }

  .services-motion-section {
    padding: 58px 0;
  }

  .services-marquee-track {
    animation-duration: 24s;
  }

  .services-marquee-track a {
    min-height: 54px;
    padding: 0 20px;
  }
}

/* Final home polish: calmer, warmer, more conversion-led */
body[data-page="home"] {
  --home-radius: 24px;
  --home-cream: #f2eee5;
  --home-ink: #191714;
  --home-soft-dark: #151512;
  --home-card: #fffaf0;
  background:
    radial-gradient(circle at 8% 8%, rgba(var(--brand-gold-rgb), 0.08), transparent 24%),
    linear-gradient(180deg, #0b0b0a 0%, #171612 42%, #0d0d0c 100%);
}

body[data-page="home"] .site-header.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-bottom: none;
}

body[data-page="home"] .header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  min-height: 80px;
}

body[data-page="home"] .brand-logo {
  width: 188px;
  height: 66px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .brand,
body[data-page="home"] .brand-logo img {
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .brand-logo img {
  filter: none;
}

body[data-page="home"] .site-nav {
  justify-self: center;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body[data-page="home"] .site-nav > a,
body[data-page="home"] .nav-item-services-head > a {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(245, 241, 232, 0.78);
}

body[data-page="home"] .site-nav > a:hover,
body[data-page="home"] .site-nav > a:focus-visible,
body[data-page="home"] .nav-item-services-head > a:hover,
body[data-page="home"] .nav-item-services-head > a:focus-visible {
  background: transparent;
  color: var(--text);
}

body[data-page="home"] .header-call {
  min-height: 42px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.045);
}

body[data-page="home"] .header-cta {
  border-radius: 999px;
}

body[data-page="home"] .home-hero {
  min-height: min(720px, 80svh);
  overflow: hidden;
}

body[data-page="home"] .home-hero .hero-video-shell,
body[data-page="home"] .home-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-page="home"] .home-hero .hero-video-shell {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body[data-page="home"] .home-hero .hero-video {
  display: block;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-hero::before,
body[data-page="home"] .home-hero .hero-copy::before {
  display: none;
}

body[data-page="home"] .home-hero .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, transparent 58%);
}

body[data-page="home"] .home-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(720px, 80svh);
  align-items: center;
  padding-top: 108px;
  padding-bottom: 76px;
}

body[data-page="home"] .home-hero .hero-copy {
  max-width: 760px;
}

body[data-page="home"] .home-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.9rem, 5.1vw, 5.35rem);
  line-height: 1;
}

body[data-page="home"] .home-hero .lead {
  max-width: 62ch;
  color: rgba(245, 241, 232, 0.9);
}

body[data-page="home"] .hero-highlights {
  margin-top: 22px;
}

body[data-page="home"] .hero-highlights a {
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.11);
}

body[data-page="home"] .button {
  border-radius: 999px;
}

body[data-page="home"] .button.text-button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: rgba(var(--brand-gold-rgb), 0.75);
  text-underline-offset: 7px;
}

body[data-page="home"] .home-trust-section {
  background: #11110f;
}

body[data-page="home"] .quality-strip {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  padding: 22px 0;
}

body[data-page="home"] .quality-strip span {
  min-height: auto;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  color: rgba(245, 241, 232, 0.66);
}

body[data-page="home"] .quality-strip strong {
  display: block;
  margin-bottom: 3px;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.035), transparent),
    var(--home-soft-dark);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border-radius: var(--home-radius);
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.09), rgba(245, 241, 232, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.process-steps span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-steps h3,
.process-steps p {
  margin: 0;
}

.process-steps p {
  color: var(--muted);
}

body[data-page="home"] .home-services-section {
  background: var(--home-cream);
  color: var(--home-ink);
}

body[data-page="home"] .home-services-section .eyebrow,
body[data-page="home"] .home-services-section .section-copy {
  color: rgba(25, 23, 20, 0.68);
}

body[data-page="home"] .home-services-section .section-header p {
  color: rgba(25, 23, 20, 0.68);
}

body[data-page="home"] .home-services-section .service-link-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(25, 23, 20, 0.08);
  border-radius: var(--home-radius);
  background: var(--home-card);
  color: var(--home-ink);
  box-shadow: 0 20px 48px rgba(38, 32, 22, 0.11);
}

body[data-page="home"] .home-services-section .service-link-card:hover,
body[data-page="home"] .home-services-section .service-link-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-gold-rgb), 0.42);
  background: #fffdf7;
  box-shadow: 0 28px 60px rgba(38, 32, 22, 0.15);
}

body[data-page="home"] .home-services-section .service-link-icon {
  border-radius: 18px;
  background: rgba(var(--brand-gold-rgb), 0.16);
  color: #9a7100;
}

body[data-page="home"] .home-services-section .service-link-cta {
  color: #8a6600;
}

body[data-page="home"] .home-services-section .button.secondary {
  border-color: rgba(25, 23, 20, 0.22);
  color: var(--home-ink);
}

.workshop-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--brand-gold-rgb), 0.1), transparent 30%),
    #171612;
}

.workshop-photo-card {
  overflow: hidden;
  border-radius: var(--home-radius);
  background: rgba(245, 241, 232, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.workshop-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.workshop-photo-content {
  padding: 28px;
}

.workshop-photo-content h3,
.workshop-photo-content p {
  margin: 0;
}

.workshop-photo-content p {
  margin-top: 10px;
  color: var(--muted);
}

body[data-page="home"] .front-cta-panel {
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--home-radius);
  background:
    linear-gradient(135deg, rgba(var(--brand-gold-rgb), 0.18), transparent 42%),
    rgba(245, 241, 232, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

@media (max-width: 1020px) {
  body[data-page="home"] .site-nav {
    gap: 16px;
  }

  .process-layout,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .home-hero .hero-content {
    padding-top: 96px;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  body[data-page="home"] .quality-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  body[data-page="home"] .quality-strip span {
    padding: 14px;
    border-radius: 18px;
    background: rgba(245, 241, 232, 0.045);
  }
}

/* Service slideshow replacing the former trust strip */
/* ═══ REDESIGN V2 — rework 2026 ═══ */

/* ── Services grid ──────────────────────────────────────── */
.sg-section {
  padding: clamp(80px, 10vw, 128px) 0;
}
.sg-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.sg-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.sg-eyebrow {
  color: var(--label-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sg-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 11px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--label-color), var(--label-color)),
    linear-gradient(var(--label-color), var(--label-color)),
    linear-gradient(var(--label-color), var(--label-color));
  background-repeat: no-repeat;
  background-size: 22px 2px, 15px 2px, 8px 2px;
  background-position: 0 0, 0 4.5px, 0 9px;
  transform: skewX(-20deg);
}
.sg-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}
/* ── Services ledger: en editorial rækkeliste, ikke et kortgrid ── */
.service-ledger {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.service-ledger-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 56px;
  align-items: center;
  gap: 24px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background-color 220ms var(--ease), padding 220ms var(--ease);
}

.service-ledger-row:hover,
.service-ledger-row:focus-visible {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--surface);
  outline: none;
}

.service-ledger-index {
  align-self: start;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.service-ledger-tag {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-ledger-main h3 {
  font-family: "Anton", var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--text);
  transition: color 220ms var(--ease);
}

.service-ledger-row:hover .service-ledger-main h3 {
  color: var(--accent);
}

.service-ledger-main h3 a {
  color: inherit;
  text-decoration: none;
}

.service-ledger-main h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-ledger-desc {
  margin: 0;
  max-width: 48ch;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-ledger-arrow {
  justify-self: end;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.service-ledger-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-ledger-row:hover .service-ledger-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.service-ledger-row:hover .service-ledger-arrow svg {
  transform: rotate(-45deg);
}

@media (max-width: 720px) {
  .service-ledger-row {
    grid-template-columns: 32px 1fr 40px;
    row-gap: 8px;
    padding: 24px 4px;
    gap: 14px;
  }

  .service-ledger-index {
    margin-top: 6px;
  }
}

/* ── FAQ 2-kolonne grid ───────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 60px);
  margin-top: 28px;
}

.faq-grid .faq-item {
  border-top: 1px solid var(--line);
  border-bottom: none;
  margin-top: -1px;
}

.faq-grid .faq-item:last-child,
.faq-grid .faq-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 1px solid var(--line);
}

/* ── Responsivt ───────────────────────────────────────── */
@media (max-width: 560px) {
  .faq-grid { grid-template-columns: 1fr; }
}
/* ── Alternating split rows ── */
.sg-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.sg-row {
  display: flex;
  min-height: clamp(360px, 45vw, 560px);
  border-bottom: 1px solid var(--line);
}

.sg-row--flip { flex-direction: row-reverse; }

.sg-row-img {
  flex: 0 0 50%;
  overflow: hidden;
  margin: 0;
}

.sg-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sg-row:hover .sg-row-img img { transform: scale(1.03); }

.sg-row-body {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(36px, 5vw, 80px) clamp(32px, 5vw, 72px);
}

.sg-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sg-num::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 11px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 22px 2px, 15px 2px, 8px 2px;
  background-position: 0 0, 0 4.5px, 0 9px;
  transform: skewX(-20deg);
}

.sg-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.sg-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 44ch;
}

.sg-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
.sg-link:hover { color: var(--accent-strong); gap: 10px; }

@media (max-width: 768px) {
  .sg-row, .sg-row--flip { flex-direction: column; min-height: unset; }
  .sg-row-img { flex: none; height: clamp(220px, 55vw, 380px); }
  .sg-row-body { flex: none; padding: 32px 24px; }
  .sg-desc { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sg-row-img img { transition: none; }
  .sg-row:hover .sg-row-img img { transform: none; }
}

/* ── sg-row: entrance keyframes ── */
@keyframes sgImgSlideLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sgImgSlideRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sgFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sgLineGrow {
  from { width: 0; }
  to   { width: 28px; }
}

/* ── sg-row: pre-reveal state ── */
.sg-row[data-sg-row] .sg-row-img,
.sg-row[data-sg-row] .sg-num,
.sg-row[data-sg-row] .sg-badge,
.sg-row[data-sg-row] .sg-title,
.sg-row[data-sg-row] .sg-desc,
.sg-row[data-sg-row] .sg-trust,
.sg-row[data-sg-row] .sg-actions {
  opacity: 0;
}
.sg-row[data-sg-row] .sg-num::before { width: 0; }

/* ── sg-row: post-reveal animations (.is-visible tilføjes af JS) ── */
.sg-row[data-sg-row].is-visible .sg-row-img {
  animation: sgImgSlideLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}
.sg-row[data-sg-row].sg-row--flip.is-visible .sg-row-img {
  animation: sgImgSlideRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}
.sg-row[data-sg-row].is-visible .sg-num::before {
  animation: sgLineGrow 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.sg-row[data-sg-row].is-visible .sg-num {
  animation: sgFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.sg-row[data-sg-row].is-visible .sg-badge {
  animation: sgFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both;
}
.sg-row[data-sg-row].is-visible .sg-title {
  animation: sgFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.sg-row[data-sg-row].is-visible .sg-desc {
  animation: sgFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both;
}
.sg-row[data-sg-row].is-visible .sg-trust {
  animation: sgFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both;
}
.sg-row[data-sg-row].is-visible .sg-actions {
  animation: sgFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}
.sg-row[data-sg-row]:not(.is-visible) .sg-num::before { transition: none; }

/* ── sg-badge ── */
.sg-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(var(--brand-gold-rgb), 0.12);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.22);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  transition: background 0.25s ease;
}
.sg-row:hover .sg-badge { background: rgba(var(--brand-gold-rgb), 0.22); }

/* ── sg-trust ── */
.sg-trust {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: -4px 0 0;
  opacity: 0.85;
}

/* ── sg-actions: Book-knap + links ── */
.sg-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sg-btn-book {
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.sg-blog-link {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.18);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.sg-blog-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── Overlappende nummer på billede (frame-effekt) ── */
.sg-row-img {
  position: relative;
}
.sg-row-img::after {
  content: attr(data-num);
  position: absolute;
  bottom: 20px;
  right: -2px;
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(var(--brand-gold-rgb), 0.38);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.sg-row--flip .sg-row-img::after {
  right: auto;
  left: -2px;
}

/* ── hover: forstærk billede-zoom ── */
.sg-row:hover .sg-row-img img {
  transform: scale(1.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-row:hover .sg-title {
  color: var(--text);
  transition: color 0.25s ease;
}
.sg-row:hover .sg-num::before {
  width: 38px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-row:hover .sg-btn-book {
  box-shadow: 0 4px 20px rgba(var(--brand-gold-rgb), 0.28);
}

/* ── reduced motion guard ── */
@media (prefers-reduced-motion: reduce) {
  .sg-row[data-sg-row] .sg-row-img,
  .sg-row[data-sg-row] .sg-num,
  .sg-row[data-sg-row] .sg-badge,
  .sg-row[data-sg-row] .sg-title,
  .sg-row[data-sg-row] .sg-desc,
  .sg-row[data-sg-row] .sg-trust,
  .sg-row[data-sg-row] .sg-actions {
    opacity: 1;
    animation: none;
  }
  .sg-row[data-sg-row] .sg-num::before { width: 28px; animation: none; }
  .sg-row:hover .sg-title, .sg-row:hover .sg-num::before { transition: none; }
  .sg-row-img::after { display: none; }
}

/* ── mobile ── */
@media (max-width: 768px) {
  .sg-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sg-btn-book { width: 100%; max-width: 280px; justify-content: center; }
  .sg-blog-link { white-space: normal; }
  .sg-row-img::after { font-size: clamp(3rem, 12vw, 5rem); right: 12px; bottom: 12px; }
  .sg-row--flip .sg-row-img::after { right: 12px; left: auto; }
  .sg-row[data-sg-row].is-visible .sg-row-img,
  .sg-row[data-sg-row].sg-row--flip.is-visible .sg-row-img {
    animation: sgFadeUp 0.5s ease 0ms both;
  }
}

/* ── Tre spørgsmål ─────────────────────────────────────── */
.sq-section {
  padding: clamp(56px, 7vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 12% 50%, rgba(var(--brand-gold-rgb), 0.06), transparent 45%),
    var(--bg-soft);
}
.sq-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.sq-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.sq-list {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(var(--brand-white-rgb), 0.02), transparent 40%), var(--surface);
}
.sq-n {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  flex-shrink: 0;
}
.sq-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
@media (max-width: 680px) { .sq-list { flex-direction: column; gap: 14px; } }

/* ── Workshop split ────────────────────────────────────── */
.wk-section {
  padding: clamp(80px, 10vw, 128px) 0;
}
.wk-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.wk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wk-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.1;
}
.wk-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 28px;
}
.wk-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.wk-address a { color: var(--text); text-decoration: none; }
.wk-address a:hover { color: var(--accent); }
.wk-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.wk-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.wk-btn--primary { background: var(--accent); color: #0d0d0b; }
.wk-btn--primary:hover { background: var(--accent-strong); }
.wk-btn--outline { border: 1px solid var(--line-strong); color: var(--text); }
.wk-btn--outline:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 768px) { .wk-inner { grid-template-columns: 1fr; } .wk-media { order: -1; } }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section {
  padding: clamp(80px, 10vw, 128px) 0;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.faq-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 10px;
}
.faq-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 clamp(32px, 5vw, 52px);
}
.faq-tel { color: var(--accent); text-decoration: none; }
.faq-tel:hover { color: var(--accent-strong); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary { display: block; list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-q {
  display: block;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 32px;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 0 20px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item:not([open]):hover .faq-q { color: var(--text); }

/* ── Afsluttende CTA ───────────────────────────────────── */
.endcta-section {
  padding: clamp(72px, 8vw, 104px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--brand-gold-rgb), 0.13), transparent 65%),
    var(--surface-2);
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.25);
}
.endcta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.endcta-heading {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 clamp(36px, 5vw, 52px);
  line-height: 1.05;
}
.endcta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.endcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.endcta-btn--primary { background: var(--accent); color: #0d0d0b; }
.endcta-btn--primary:hover { background: var(--accent-strong); }
.endcta-btn--outline { border: 1px solid var(--line-strong); color: var(--text); }
.endcta-btn--outline:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 540px) {
  .endcta-actions { flex-direction: column; align-items: center; }
  .endcta-btn { width: 100%; max-width: 320px; }
}

/* ── Hero reveal-on-scroll ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slider-section.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: none;
  will-change: opacity, transform;
}
.hero-slider-section.reveal-on-scroll.is-revealed {
  animation: fadeSlideUp 0.7s ease both;
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider-section.reveal-on-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Sections must remain visible even when animation JavaScript is delayed,
   blocked, minified, or cached by WordPress. */
.sg-section,
.sq-section,
.wk-section,
.faq-section,
.bp-section,
.endcta-section,
.qs-strip {
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}
.sg-section.is-revealed,
.sq-section.is-revealed,
.wk-section.is-revealed,
.faq-section.is-revealed,
.bp-section.is-revealed,
.endcta-section.is-revealed,
.qs-strip.is-revealed {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .sg-section, .sq-section, .wk-section, .faq-section, .bp-section, .endcta-section,
  .qs-strip {
    opacity: 1; transform: none; animation: none;
  }
}

/* ── Blog Preview Carousel ────────────────────────────── */
.bp-section {
  padding: clamp(56px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}

.bp-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.bp-header { margin-bottom: clamp(24px, 3.5vw, 36px); }

.bp-heading {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 10px 0 0;
}

.bp-stage {
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.bp-track {
  display: flex;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bp-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 32px 36px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  box-sizing: border-box;
}

.bp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(214, 162, 10, 0.1);
  border: 1px solid rgba(214, 162, 10, 0.22);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.bp-title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.26;
}

.bp-excerpt {
  font-size: 0.9rem;
  line-height: 1.66;
  color: var(--muted);
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bp-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

.bp-link:hover { color: var(--accent-strong); }

.bp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.bp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
  flex-shrink: 0;
}

.bp-btn svg { width: 18px; height: 18px; display: block; }

.bp-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(214, 162, 10, 0.06);
}

.bp-btn:disabled { opacity: 0.26; cursor: default; }
.bp-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.bp-dots { display: flex; gap: 8px; align-items: center; }

.bp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 240ms ease, width 240ms ease, border-radius 240ms ease;
  flex-shrink: 0;
}

.bp-dot[aria-selected="true"] {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

.bp-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.bp-footer-link {
  text-align: center;
  margin: 16px 0 0;
  font-size: 0.85rem;
}

.bp-footer-link a { color: var(--muted); text-decoration: none; transition: color 180ms ease; }
.bp-footer-link a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .bp-track { transition: none; }
}

@media (max-width: 540px) {
  .bp-slide { padding: 22px 18px; }
  .bp-btn { width: 36px; height: 36px; }
}

/* ── Brand ticker ───────────────────────────────────────── */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--brand-gold-rgb), 0.12);
  padding: 14px 0;
  background: rgba(var(--brand-gold-rgb), 0.03);
  cursor: default;
  user-select: none;
}

/* Pinned to the bottom of the hero section */
.brand-ticker--hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  border-color: rgba(var(--brand-white-rgb), 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.brand-ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 60s linear infinite;
  will-change: transform;
}

.brand-ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 36px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--brand-white-rgb), 0.35);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand-ticker-track span::after {
  content: "·";
  margin-left: clamp(18px, 3vw, 36px);
  color: rgba(var(--brand-gold-rgb), 0.3);
  font-weight: 400;
}


.brand-ticker:hover .brand-ticker-track span {
  color: rgba(var(--brand-white-rgb), 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .brand-ticker-track { animation: none; }
}

/* ═══ END REDESIGN V2 ═══ */

.qs-strip {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  border-bottom: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
}
.qs-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.qs-col { display: flex; align-items: center; gap: 10px; }
.qs-location, .qs-hours {
  flex: 1; min-width: 0;
  font-size: 0.875rem; font-weight: 450; letter-spacing: 0.01em;
  color: var(--muted); white-space: nowrap;
}
.qs-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); opacity: 0.85; }
.qs-divider { width: 1px; height: 32px; background: rgba(var(--brand-gold-rgb), 0.15); flex-shrink: 0; margin: 0 32px; }
.qs-cta { flex-shrink: 0; gap: 12px; display: flex; }
.qs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 20px; border-radius: 4px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.025em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.qs-btn--primary { background: var(--accent); color: #0d0d0b; border: 1px solid transparent; }
.qs-btn--primary:hover { background: var(--accent-strong); }
.qs-btn--outline { background: transparent; color: var(--accent); border: 1px solid rgba(var(--brand-gold-rgb), 0.45); }
.qs-btn--outline:hover { border-color: var(--accent); color: var(--accent-strong); background: rgba(var(--brand-gold-rgb), 0.06); }
@media (max-width: 768px) {
  .qs-inner { flex-wrap: wrap; padding: 0 20px; }
  .qs-location, .qs-hours { flex: 1 1 auto; min-width: calc(50% - 20px); }
  .qs-divider { margin: 0 16px; }
  .qs-divider--hide-mobile { display: none; }
  .qs-cta { width: 100%; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(var(--brand-gold-rgb), 0.12); justify-content: center; }
}
@media (max-width: 480px) {
  .qs-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .qs-location, .qs-hours { min-width: unset; width: 100%; }
  .qs-divider { display: none; }
  .qs-cta { width: 100%; margin-top: 6px; padding-top: 14px; }
  .qs-btn { flex: 1; justify-content: center; }
}

/* Compact mobile home hero. Keep this after the redesign rules so desktop
   viewport heights cannot create an empty mobile gap. */
body[data-page="home"] .home-hero,
body[data-page="home"] .home-hero .hero-content {
  min-height: 0;
}

body[data-page="home"] .home-hero .hero-content {
  padding-top: 132px;
  padding-bottom: 92px;
}

@media (max-width: 820px) {
  body[data-page="home"] .home-hero .hero-content {
    align-items: flex-start;
    padding-top: 86px;
    padding-bottom: 64px;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
    line-height: 1.02;
  }

  body[data-page="home"] .hero-highlights {
    margin-top: 16px;
  }

  body[data-page="home"] .home-hero .button-row {
    margin-top: 18px;
  }

  body[data-page="home"] .home-hero .hero-proof {
    margin-top: 16px;
  }

  body[data-page="home"] .brand-ticker {
    padding: 9px 0;
  }

  body[data-page="home"] + .qs-strip,
  body[data-page="home"] .qs-strip,
  .qs-strip {
    display: none;
  }

  .sg-section {
    padding-top: 44px;
    padding-bottom: 64px;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .home-hero .hero-content {
    padding-top: 78px;
    padding-bottom: 58px;
  }

  body[data-page="home"] .home-hero .lead {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body[data-page="home"] .home-hero .hero-highlights a {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .sg-section {
    padding-top: 36px;
  }
}

/* One shared header across the entire WordPress site. */
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 0;
}

.header-call {
  min-height: 42px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.045);
}

.header-cta {
  border-radius: 999px;
}

@media (min-width: 1201px) {
  .header-inner,
  body[data-page="home"] .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 34px;
    min-height: 80px;
  }

  .brand-logo,
  body[data-page="home"] .brand-logo {
    width: 188px;
    height: 66px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand,
  .brand-logo img,
  body[data-page="home"] .brand,
  body[data-page="home"] .brand-logo img {
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
  }

  .site-nav,
  body[data-page="home"] .site-nav {
    justify-self: center;
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body[data-page="home"] .site-nav > a,
  body[data-page="home"] .nav-item-services-head > a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    color: rgba(245, 241, 232, 0.78);
  }
}

@media (max-width: 1200px) {
  .header-inner,
  body[data-page="home"] .header-inner {
    min-height: 70px;
    padding: 6px 0;
  }

  .brand-logo,
  body[data-page="home"] .brand-logo {
    width: 172px;
    height: 64px;
  }
}

/* Full-screen mobile navigation */
@media (max-width: 1200px) {
  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

  .site-nav,
  body[data-page="home"] .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    padding: 100px 0 calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(ellipse at 0% 38%, rgba(var(--brand-gold-rgb), 0.14), transparent 48%),
      radial-gradient(ellipse at 100% 70%, rgba(var(--brand-gold-rgb), 0.08), transparent 42%),
      #0b0b0a;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease), visibility 280ms;
  }

  .site-nav::before {
    content: "";
    position: fixed;
    inset: 74px 0 auto;
    height: min(58vh, 520px);
    pointer-events: none;
    background:
      linear-gradient(145deg, transparent 0 22%, rgba(var(--brand-gold-rgb), 0.045) 22% 55%, transparent 55%),
      linear-gradient(25deg, transparent 0 48%, rgba(var(--brand-white-rgb), 0.025) 48% 72%, transparent 72%);
  }

  .site-nav.is-open,
  body[data-page="home"] .site-nav.is-open {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-mobile-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    min-height: 78px;
    margin: 0;
    padding: 8px 18px;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.09);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu-brand img {
    width: 172px;
    height: 52px;
    object-fit: contain;
    background: transparent;
  }

  .nav-close {
    position: relative;
    display: inline-flex;
    width: auto;
    height: 48px;
    gap: 12px;
    padding: 0 38px 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
  }

  .nav-close .nav-close-label {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: none;
  }

  .nav-close span:first-child,
  .nav-close span:last-child {
    transform: none;
  }

  .nav-close > span:not(.nav-close-label) {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 2px;
  }

  .nav-close > span:nth-child(2) {
    transform: rotate(45deg);
  }

  .nav-close > span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-nav > a,
  .site-nav > .nav-item-services,
  .mobile-menu-footer {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 560px);
    margin-inline: auto;
  }

  .site-nav > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 8px 16px;
    border: 0;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.055);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: clamp(1.12rem, 4.6vw, 1.45rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .nav-item-services {
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.055);
    border-radius: 0;
    background: transparent;
  }

  .nav-item-services-head {
    min-height: 58px;
    justify-content: center;
  }

  .nav-item-services-head > a {
    flex: 0 1 auto;
    padding: 8px 10px;
    color: var(--text);
    font-size: clamp(1.12rem, 4.6vw, 1.45rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .services-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }

  .services-subnav {
    display: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 0 16px;
  }

  .nav-item-services.is-open .services-subnav {
    display: grid !important;
  }

  .services-subnav a {
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    border-color: rgba(var(--brand-gold-rgb), 0.16);
    background: rgba(var(--brand-gold-rgb), 0.055);
    color: rgba(var(--brand-white-rgb), 0.82);
    font-size: 0.78rem;
    text-align: center;
  }

  .services-subnav a::before {
    display: none;
  }

  .mobile-menu-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(var(--brand-gold-rgb), 0.2);
  }

  .mobile-menu-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 12px;
    border: 1px solid rgba(var(--brand-gold-rgb), 0.4);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
  }

  .mobile-menu-footer a:nth-child(2) {
    background: var(--accent);
    color: var(--brand-black);
  }

  .mobile-menu-footer small {
    grid-column: 1 / -1;
    padding-top: 10px;
    color: rgba(var(--brand-white-rgb), 0.5);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-subnav {
    grid-template-columns: 1fr;
  }

  .mobile-menu-footer {
    grid-template-columns: 1fr;
  }

  .mobile-menu-footer small {
    grid-column: auto;
  }
}

/* ── Blog-kort med billede ────────────────────────────── */
.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card-img {
  margin: 0;
  height: 180px;
  overflow: hidden;
  background: #111;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, filter 400ms ease;
  filter: brightness(0.88);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

.blog-card-body h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 160ms ease;
}

.blog-card-body h3 a:hover { color: var(--text); }

.blog-card-body .section-copy {
  font-size: 0.83rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-read-time {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.72;
}

.blog-card-body .card-link {
  margin-top: 2px;
}

.blog-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-white-rgb), 0.16);
  box-shadow: 0 22px 44px rgba(var(--brand-black-rgb), 0.26);
}

/* ── Nyeste indlæg (featured post) ───────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid rgba(var(--brand-white-rgb), 0.08);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--brand-gold-rgb), 0.1), transparent 38%),
    var(--surface);
  box-shadow: 0 22px 48px rgba(var(--brand-black-rgb), 0.2);
  text-decoration: none;
  color: var(--text);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-featured:hover,
.blog-featured:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(var(--brand-gold-rgb), 0.3);
  box-shadow: 0 28px 56px rgba(var(--brand-black-rgb), 0.3);
}

.blog-featured-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}

.blog-featured-media img,
.blog-featured > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.86);
  transition: transform 420ms ease, filter 420ms ease;
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.04);
  filter: brightness(1);
}

.blog-featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: 0 10px 22px rgba(var(--brand-gold-rgb), 0.35);
}

.blog-featured-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 44px;
}

.blog-featured-body .eyebrow {
  margin-bottom: 0;
}

.blog-featured-body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-featured-body .section-copy {
  max-width: 46ch;
  font-size: 0.96rem;
}

.blog-featured-cta {
  width: max-content;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    aspect-ratio: 16 / 9;
  }

  .blog-featured-body {
    padding: 30px;
  }
}

/* ── Mobile navigation redesign — clean right-edge slide-in panel ── */
@media (max-width: 1200px) {
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(var(--brand-black-rgb), 0.6);
  }

  .nav-toggle {
    border-radius: 10px;
    background: rgba(var(--brand-white-rgb), 0.05);
    box-shadow: none;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible,
  body.nav-open .nav-toggle {
    background: rgba(var(--brand-white-rgb), 0.1);
    border-color: rgba(var(--brand-white-rgb), 0.2);
  }

  .site-nav,
  body[data-page="home"] .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    height: 100dvh;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 20px 24px calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border: 0;
    border-left: 1px solid rgba(var(--brand-white-rgb), 0.1);
    border-radius: 0;
    background: var(--bg-soft);
    box-shadow: -30px 0 60px rgba(var(--brand-black-rgb), 0.45);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 320ms;
    z-index: 950;
  }

  .site-nav::before {
    content: none;
  }

  .site-nav.is-open,
  body[data-page="home"] .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-mobile-head {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    margin: 0 0 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.08);
    background: none;
    backdrop-filter: none;
  }

  .mobile-menu-brand {
    display: none;
  }

  .nav-close {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(var(--brand-white-rgb), 0.14);
    border-radius: 999px;
    background: rgba(var(--brand-white-rgb), 0.04);
  }

  .nav-close-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .nav-close > span:not(.nav-close-label) {
    position: absolute;
    right: auto;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    transform-origin: center;
  }

  .nav-close > span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-close > span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav > a,
  body[data-page="home"] .site-nav > a,
  .nav-item-services-head > a,
  body[data-page="home"] .nav-item-services-head > a {
    width: auto;
    margin: 0;
    min-height: 0;
    padding: 13px 2px;
    border: 0;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.07);
    border-radius: 0;
    background: none;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    justify-content: flex-start;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a.is-active,
  body[data-page="home"] .site-nav > a:hover,
  body[data-page="home"] .site-nav > a:focus-visible {
    background: none;
    color: var(--accent-strong);
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .nav-item-services {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--brand-white-rgb), 0.07);
    border-radius: 0;
    background: none;
  }

  .nav-item-services-head {
    justify-content: space-between;
  }

  .services-toggle {
    width: 36px;
    height: 36px;
    border: 0;
    background: none;
  }

  .services-subnav {
    display: none !important;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0 0 12px 2px;
  }

  .nav-item-services.is-open .services-subnav {
    display: grid !important;
  }

  .services-subnav a {
    padding: 8px 6px;
    border-radius: 10px;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .services-subnav-icon {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-footer {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: auto;
    margin: auto 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--brand-white-rgb), 0.1);
  }

  .mobile-menu-footer a {
    min-height: 48px;
    border-radius: 12px;
  }

  .mobile-menu-footer a:first-child {
    border: 1px solid rgba(var(--brand-white-rgb), 0.16);
    background: none;
    color: var(--text);
  }

  .mobile-menu-footer a:nth-child(2) {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--bg);
  }

  .mobile-menu-footer small {
    padding-top: 2px;
    color: rgba(var(--brand-white-rgb), 0.5);
    text-align: left;
  }

  .lang-switch--mobile {
    margin: 4px auto 0 0;
  }

  .header-actions {
    display: flex;
    order: -1;
  }

  .header-call,
  .header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-nav,
  body[data-page="home"] .site-nav {
    width: 100vw;
  }
}

