/* Self-hostet Manrope (variabel font) — ingen tredjeparts-kald = GDPR-rent */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope.woff2') format('woff2');
}

/* ════════════════════════════════════════════════════════════════════
   FAIR RÅDGIVNING — rent & moderne redesign
   Palet: varm off-white papir, dyb blæk-sort, terrakotta-accent.
   Typografi: Manrope (lining-tal → "18" og "0" ser korrekte ud).
   ════════════════════════════════════════════════════════════════════ */

:root {
  --paper:      #FAF8F4;   /* varm off-white – hovedbaggrund */
  --paper-2:    #F2EDE5;   /* lidt varmere – kort & sektioner */
  --ink:        #1B1A17;   /* næsten-sort, varm – tekst & mørke sektioner */
  --ink-2:      #232019;
  --muted:      #6B665E;   /* dæmpet tekst */
  --line:       #E7E1D6;   /* hårfine streger */
  --accent:     #C2603A;   /* terrakotta – CTA & highlights */
  --accent-700: #A64E2C;
  --accent-soft:#F4E5DB;   /* accent-tint */
  --white:      #FFFFFF;

  --ff: 'Manrope', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(27,26,23,.04), 0 2px 8px rgba(27,26,23,.04);
  --shadow-md: 0 4px 12px rgba(27,26,23,.06), 0 12px 32px rgba(27,26,23,.07);
  --shadow-lg: 0 12px 28px rgba(27,26,23,.08), 0 24px 56px rgba(27,26,23,.10);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --wrap: 1160px;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* ───────────────────────────── RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums tabular-nums;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; } /* sikrer at hidden vinder over display-regler */
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
::selection { background: var(--accent); color: #fff; }

/* ───────────────────────────── LAYOUT */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section__head { max-width: 640px; margin: 0 0 56px; }
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.section__intro { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.ic { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ───────────────────────────── BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-size: .98rem; font-weight: 700; letter-spacing: -.01em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out),
              border-color .25s var(--ease-out), color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  white-space: nowrap;
}
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(194,96,58,.28); }
.btn--accent:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(194,96,58,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--full { width: 100%; }
.btn:active { transform: translateY(0); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; color: var(--accent);
  transition: gap .25s var(--ease-out);
}
.link-arrow .ic { font-size: 1.05em; }
.link-arrow:hover { gap: .85em; }

/* ───────────────────────────── NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(27,26,23,.02); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.nav__logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; }
.nav__logo-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--ink); color: var(--paper);
  font-size: .82rem; font-weight: 800; letter-spacing: .02em;
}
.nav__logo-name { font-size: 1.06rem; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .95rem; font-weight: 600; color: var(--muted); transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__cta { padding: 10px 20px; font-size: .92rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link { padding: 13px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.nav__mobile-cta { margin-top: 14px; }

/* ───────────────────────────── HERO */
.hero { padding: 150px 0 96px; background:
  radial-gradient(120% 80% at 100% 0%, var(--accent-soft) 0%, rgba(244,229,219,0) 55%),
  var(--paper);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero__title {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
  margin-bottom: 24px;
}
.hero__lead { font-size: 1.16rem; color: var(--muted); max-width: 30em; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: var(--ink); }
.hero__trust .ic { color: var(--accent); font-size: 1.1em; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: -18px; bottom: 28px;
  display: flex; flex-direction: column;
  background: var(--white); padding: 14px 20px;
  border-radius: 14px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.hero__badge strong { font-size: .98rem; font-weight: 800; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* ───────────────────────────── STATS */
.stats { background: var(--ink); color: var(--paper); padding: 56px 0; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stats__item { text-align: center; padding: 8px 4px; position: relative; }
.stats__item:not(:last-child)::after {
  content: ''; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(250,248,244,.14);
}
.stats__num { font-size: clamp(2.6rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; display: flex; justify-content: center; align-items: baseline; gap: 2px; }
.stats__suffix { color: var(--accent); }
.stats__label { margin-top: 12px; font-size: .9rem; font-weight: 600; color: rgba(250,248,244,.62); }

/* ───────────────────────────── OM CHRIS */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about__media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__body p { color: var(--muted); margin-bottom: 18px; }
.about__body p:first-of-type { margin-top: 4px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; }
.tag {
  padding: 7px 15px; border-radius: var(--radius-pill);
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--ink);
}

/* ───────────────────────────── YDELSER */
.services { background: var(--paper-2); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); position: relative; }
.svc--featured .svc__desc { color: rgba(250,248,244,.7); }
.svc--featured .svc__list li { color: rgba(250,248,244,.92); }
.svc__tag {
  position: absolute; top: 18px; right: 18px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink); background: var(--accent); padding: 5px 11px; border-radius: var(--radius-pill);
}
.svc__name { font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; }
.svc__price { margin: 14px 0 16px; font-size: 1rem; color: var(--muted); display: flex; align-items: baseline; gap: 5px; }
.svc--featured .svc__price { color: rgba(250,248,244,.7); }
.svc__amount { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.svc--featured .svc__amount { color: var(--paper); }
.svc__desc { font-size: .96rem; color: var(--muted); margin-bottom: 20px; }
.svc__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.svc__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; }
.svc__list .ic { color: var(--accent); font-size: 1.15em; margin-top: .15em; }
.svc--featured .svc__list .ic { color: var(--accent); }
.svc .btn { margin-top: auto; }
.svc--featured .btn--full { background: var(--accent); }

/* ───────────────────────────── PROCES */
.process { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); }
.step__num { font-size: 1rem; font-weight: 800; color: var(--accent); letter-spacing: .04em; margin-bottom: 16px; }
.step__title { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.step p { font-size: .95rem; color: var(--muted); }

/* ───────────────────────────── GALLERI */
.gallery { background: var(--paper-2); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__grid img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out); }
.gallery__grid img:hover { transform: scale(1.02); }

/* ───────────────────────────── UDTALELSER */
.tm { background: var(--paper); }
.tm__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tm-card {
  display: flex; flex-direction: column;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px;
}
.tm-card__stars { display: flex; gap: 3px; color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.tm-card__quote { font-size: 1.04rem; line-height: 1.6; color: var(--ink); margin-bottom: 24px; flex: 1; }
.tm-card__author { display: flex; align-items: center; gap: 13px; }
.tm-card__avatar {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: .92rem;
}
.tm-card__author strong { display: block; font-weight: 700; font-size: .96rem; }
.tm-card__author span { font-size: .85rem; color: var(--muted); }
.tm__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.tm__btn {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--ink); font-size: 1.1rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.tm__btn:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.tm__dots { display: flex; gap: 8px; }
.tm__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: width .25s var(--ease), background .25s var(--ease); }
.tm__dot.active { width: 24px; border-radius: 5px; background: var(--accent); }

/* ───────────────────────────── VIDEN / BLOG */
.blog { background: var(--paper-2); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__media { display: block; overflow: hidden; aspect-ratio: 16/10; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.04); }
.post__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__cat { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.post__title { font-size: 1.16rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 10px; }
.post__excerpt { font-size: .95rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
.post .link-arrow { font-size: .92rem; }

/* ───────────────────────────── BLOG-ARTIKEL */
.article { padding: 140px 0 96px; background: var(--paper); }
.article__head { max-width: 760px; }
.article__back { font-size: .92rem; margin-bottom: 28px; }
.article__head .post__cat { display: block; margin-bottom: 14px; }
.article__title { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.article__meta { margin-top: 16px; color: var(--muted); font-size: .95rem; }
.article__cover { margin: 44px auto 0; max-width: 900px; }
.article__cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article__body { max-width: 720px; margin-top: 48px; font-size: 1.12rem; line-height: 1.75; color: var(--ink); }
.article__body h2 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin: 40px 0 14px; }
.article__body h3 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; }
.article__body p { margin-bottom: 22px; color: #34322C; }
.article__body strong { font-weight: 700; color: var(--ink); }

/* ───────────────────────────── CTA */
.cta { padding: 96px 0; background: var(--ink); color: var(--paper); }
.cta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.cta__text { margin: 20px 0 32px; font-size: 1.12rem; color: rgba(250,248,244,.72); }

/* ───────────────────────────── BOOKING + KONTAKT (formularer) */
.booking { background: var(--paper); }
.booking__grid, .contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.booking__info p, .contact__info p { color: var(--muted); margin-top: 4px; }
.booking__points { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.booking__points li { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.booking__points .ic { color: var(--accent); font-size: 1.2em; }

.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.contact .form, .booking .form { /* equal feel */ }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form__group label { font-size: .85rem; font-weight: 700; margin-bottom: 7px; }
.form__group input, .form__group select, .form__group textarea {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--paper); font-size: .96rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form__group textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-success {
  display: flex; align-items: center; gap: 10px; margin-top: 18px;
  padding: 14px 16px; border-radius: 12px;
  background: #EAF3EC; color: #1F6B3B; font-weight: 600; font-size: .94rem;
}
.form-success .ic { font-size: 1.2em; }
.form__consent { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }
.form__consent a { color: var(--accent); text-decoration: underline; }
.news__consent { flex-basis: 100%; text-align: left; margin-top: 4px; }

/* ───────────────────────────── KONTAKT-INFO */
.contact { background: var(--paper-2); }
.contact__list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact__list li { display: flex; align-items: flex-start; gap: 15px; }
.contact__ic {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 12px; background: var(--white); border: 1px solid var(--line);
  color: var(--accent); font-size: 1.2rem;
}
.contact__list strong { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact__list a, .contact__list span { font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.contact__list a:hover { color: var(--accent); }
.contact__social { display: flex; gap: 10px; }
.contact__social a, .footer__social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); font-weight: 700; font-size: .9rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.contact__social a:hover, .footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ───────────────────────────── NYHEDSBREV */
.news { padding: 80px 0; background: var(--paper); }
.news__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--accent-soft); border-radius: var(--radius-lg); padding: 44px 48px;
}
.news__title { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.news__text { margin-top: 10px; color: var(--muted); }
.news__form { display: flex; flex-wrap: wrap; gap: 10px; }
.news__form input {
  flex: 1 1 160px; padding: 13px 16px; border: 1.5px solid transparent; border-radius: var(--radius-pill);
  background: #fff; font-size: .95rem;
}
.news__form input:focus { outline: none; border-color: var(--accent); }
.news__form .btn { flex: none; }
.news__form .form-success { flex-basis: 100%; }

/* ───────────────────────────── FOOTER */
.footer { background: var(--ink); color: rgba(250,248,244,.72); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .nav__logo { color: var(--paper); margin-bottom: 16px; }
.footer__brand .nav__logo-mark { background: var(--paper); color: var(--ink); }
.footer__tagline { font-size: .94rem; max-width: 28ch; margin-bottom: 20px; }
.footer__social a { border-color: rgba(250,248,244,.2); color: var(--paper); }
.footer__col h4 { color: var(--paper); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__plain { display: block; font-size: .94rem; padding: 5px 0; color: rgba(250,248,244,.72); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(250,248,244,.12);
  font-size: .86rem;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--paper); }

/* ───────────────────────────── SCROLL-REVEAL */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .section { padding: 84px 0; }
  .hero__grid { gap: 44px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 124px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 420px; }
  .hero__badge { left: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 440px; }
  .tm__track { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; max-width: 460px; }
  .booking__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .news__inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
  .hero { padding: 108px 0 56px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .stats { padding: 40px 0; }
  .stats__row { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .stats__item:not(:last-child)::after { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; max-width: 440px; }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ───────────────────────────── REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
