/* Sävens Elektriska – onepager
   Tokens och mått är 1:1 med Paper-artboard "01 — Sävens Onepager" (1440 desktop). */

/* Inter (variabel, opsz + wght 400–700) laddas från egen server – ingen Google Fonts-anslutning. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-bg: #F3F2ED;
  --color-bg-light: #F8F7F3;
  --color-bg-footer: #EBEAE4;
  --color-surface: #FFFFFF;
  --color-text: #10261C;
  --color-text-body: #4F5652;
  --color-text-muted: #7C837E;
  --color-text-inverse: #F4F3EE;
  --color-text-inverse-muted: #C9D3CB;
  --color-border: #DDDCD5;
  --color-border-inverse: rgba(244, 243, 238, 0.22);
  --color-primary: #009845;
  --color-primary-dark: #1E7A40;
  --color-accent: #C0D56C;
  --color-accent-hover: #B1C956;
  --color-forest: #0F3A2E;
  --color-hero: #0D1A15;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --text-caption: 15px;  --leading-caption: 22px;
  --text-eyebrow: 14px;  --leading-eyebrow: 20px;
  --text-body: 18px;     --leading-body: 30px;
  --text-nav: 17px;      --leading-nav: 24px;
  --text-button: 17px;   --leading-button: 24px;
  --text-body-lg: 20px;  --leading-body-lg: 32px;
  --text-h3: 36px;       --leading-h3: 44px;
  --text-h2: 44px;       --leading-h2: 52px;
  --text-h1: 56px;       --leading-h1: 64px;
  --text-hero: 64px;     --leading-hero: 70px;

  --tracking-tight: -0.015em;
  --tracking-wide: 0.12em;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-full: 999px;

  --container-width: 1440px;
  --container-margin: 112px;
}

*, *::before, *::after { box-sizing: border-box; }

html { background: var(--color-bg); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, p { margin: 0; font-weight: inherit; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { display: block; }
svg { display: block; flex-shrink: 0; }
.pre { white-space: pre; }

.page {
  width: var(--container-width);
  margin: 0 auto;
  overflow: hidden;
  transform-origin: top left;
}

/* ---------- Text styles ---------- */
.eyebrow {
  font-size: var(--text-eyebrow);
  line-height: var(--leading-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-primary-dark);
}
.eyebrow--inverse { color: var(--color-accent); }

.h1 { font-size: var(--text-h1); line-height: var(--leading-h1); font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--color-text); }
.h2 { font-size: var(--text-h2); line-height: var(--leading-h2); font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--color-text); }
.h3 { font-size: var(--text-h3); line-height: var(--leading-h3); font-weight: 500; letter-spacing: var(--tracking-tight); }
.body { font-size: var(--text-body); line-height: var(--leading-body); font-weight: 400; color: var(--color-text-body); }
.body-lg { font-size: var(--text-body-lg); line-height: var(--leading-body-lg); font-weight: 400; }
.caption { font-size: var(--text-caption); line-height: var(--leading-caption); font-weight: 400; color: var(--color-text-muted); }

/* ---------- Icons (Lucide) ---------- */
.icon { width: 18px; height: 18px; }
.nav__item .icon { width: 14px; height: 14px; }
.trust__item .icon { width: 44px; height: 44px; stroke-width: 1.5; }
.category .icon { width: 48px; height: 48px; stroke-width: 1.5; }
.arrow .icon { width: 20px; height: 20px; }
.social .icon { width: 24px; height: 24px; stroke-width: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-text);
  font-size: var(--text-button);
  line-height: var(--leading-button);
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 150ms ease;
}
.btn:hover { background: var(--color-accent-hover); }
.btn svg { transition: transform 150ms ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--l { height: 56px; padding: 0 36px; gap: 12px; }
.btn--about { height: 56px; padding: 0 32px; }
.btn--full { width: 100%; height: 56px; }
.btn--secondary {
  height: 56px;
  padding: 0 40px;
  background: transparent;
  border: 1.5px solid rgba(244, 243, 238, 0.7);
  color: var(--color-text-inverse);
  transition: border-color 150ms ease, background-color 150ms ease;
}
.btn--secondary:hover { background: rgba(244, 243, 238, 0.1); border-color: var(--color-text-inverse); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--color-primary-dark);
  font-size: var(--text-button);
  line-height: var(--leading-button);
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: color 150ms ease, border-color 150ms ease;
}
.text-link:hover { color: var(--color-text); border-color: var(--color-text); }
.text-link svg { transition: transform 150ms ease; }
.text-link:hover svg { transform: translateX(4px); }

.text-link--inverse {
  gap: 10px;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--color-accent);
}
.text-link--inverse:hover { color: var(--color-accent); border-bottom: 0; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 1440px;
  height: 760px;
  background: var(--color-hero);
  overflow: hidden;
  border-radius: var(--radius-md);
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 100% 50%;
}
.hero__overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,26,21,0.96) 0%, rgba(13,26,21,0.88) 30%, rgba(13,26,21,0.55) 55%, rgba(13,26,21,0.15) 100%);
}
.hero__overlay-bottom {
  position: absolute; left: 0; bottom: 0; width: 1440px; height: 360px;
  background: linear-gradient(180deg, rgba(13,26,21,0) 0%, rgba(13,26,21,0.75) 100%);
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  width: 1440px;
  height: 96px;
  padding: 0 56px 0 112px;
  flex-shrink: 0;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark { width: 64px; height: 51px; object-fit: contain; }
.logo__word { display: flex; flex-direction: column; gap: 2px; }
.logo__name { font-size: 30px; line-height: 30px; font-weight: 700; letter-spacing: 0.02em; color: var(--color-text-inverse); }
.logo__sub { font-size: 14px; line-height: 16px; font-weight: 600; letter-spacing: 0.2em; color: var(--color-accent); }
.header .logo { flex-grow: 1; }

.nav { display: flex; align-items: center; gap: 40px; padding-right: 48px; }
.nav__item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-nav); line-height: var(--leading-nav); font-weight: 500;
  color: var(--color-text-inverse);
  transition: color 150ms ease;
}
.nav__item:hover { color: var(--color-accent); }

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1440px;
  padding: 64px 112px 0;
  flex-shrink: 0;
}
.hero__title {
  padding-top: 16px;
  font-size: var(--text-hero);
  line-height: var(--leading-hero);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-inverse);
}
.hero__ingress { padding-top: 20px; color: var(--color-text-inverse); }
.hero__ctas { display: flex; align-items: center; gap: 16px; padding-top: 32px; }

.trust {
  position: relative;
  display: flex;
  align-items: center;
  width: 1440px;
  padding: 64px 112px 0;
  flex-shrink: 0;
}
.trust__item { display: flex; align-items: center; gap: 16px; width: 304px; flex-shrink: 0; }
.trust__text { font-size: var(--text-body); line-height: 26px; font-weight: 500; color: var(--color-text-inverse); }

/* ---------- Services ---------- */
.services { display: flex; flex-direction: column; width: 1440px; padding: 88px 0 40px; background: var(--color-bg); }
.services__heading { display: flex; justify-content: space-between; align-items: flex-start; width: 1440px; padding: 0 112px; }
.services__left { display: flex; flex-direction: column; gap: 16px; }
.services__intro { padding-top: 28px; }

.carousel {
  position: relative;
  width: 1440px;
  height: 727px;
  padding: 64px 0 0 112px;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 40px;
  width: max-content;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 1216px;
  height: 663px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-hero);
  flex-shrink: 0;
}
.slide__photo { position: absolute; inset: 0; width: 1216px; height: 663px; object-fit: cover; object-position: 50% 50%; }
.slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,26,21,0.82) 0%, rgba(13,26,21,0.45) 45%, rgba(13,26,21,0.05) 100%);
}
.slide__overlay-bottom {
  position: absolute; left: 0; top: 363px; width: 1216px; height: 300px;
  background: linear-gradient(180deg, rgba(13,26,21,0) 0%, rgba(13,26,21,0.55) 100%);
}
.slide__peek {
  position: absolute; inset: 0;
  background: #DBDAD4;
  opacity: 1;
  transition: opacity 500ms ease;
  pointer-events: none;
}
.slide.is-active .slide__peek { opacity: 0; }
.slide__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 1216px;
  padding: 0 56px 44px;
}
.slide__text { display: flex; flex-direction: column; align-items: flex-start; }
.slide__title { padding-top: 14px; color: var(--color-text-inverse); }
.slide__link { padding-top: 20px; }

.controls { display: flex; align-items: center; gap: 10px; }
.arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(244, 243, 238, 0.7);
  color: var(--color-text-inverse);
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.arrow--prev { border-color: var(--color-accent); }
.arrow:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-text); }
.controls__counter { padding-left: 24px; font-size: var(--text-button); line-height: var(--leading-button); font-weight: 500; color: var(--color-text-inverse); font-variant-numeric: tabular-nums; }
/* Fasta carousel-kontroller (flyttar inte med sliden): slide-botten 727 − 44 − 52 */
.carousel__controls { position: absolute; top: 631px; right: 168px; z-index: 2; }

/* ---------- About ---------- */
.about { display: flex; align-items: flex-start; width: 1440px; padding: 56px 0 24px; background: var(--color-bg-light); }
.about__text { display: flex; flex-direction: column; align-items: flex-start; width: 743px; padding: 72px 40px 0 112px; flex-shrink: 0; }
.about__body { padding-top: 24px; }
.about__btn { margin-top: 40px; }
.about__photo { width: 697px; height: 571px; object-fit: cover; object-position: 48% 50%; flex-shrink: 0; border-radius: var(--radius-md); }

/* ---------- Categories ---------- */
.categories { display: flex; align-items: center; width: 1440px; height: 260px; padding: 0 20px; background: var(--color-forest); }
.category { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1 1 0; min-width: 0; }
.category__label { padding-top: 14px; font-size: var(--text-body-lg); line-height: 28px; font-weight: 600; color: var(--color-text-inverse); }
.category__sub { font-size: var(--text-caption); line-height: var(--leading-caption); color: var(--color-text-inverse-muted); }
.categories__divider { width: 1px; height: 160px; background: var(--color-border-inverse); flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact {
  display: flex; justify-content: space-between; align-items: flex-start;
  width: 1440px; height: 540px;
  padding: 48px 112px 0;
  background: var(--color-bg-light);
}
.contact__text { display: flex; flex-direction: column; align-items: flex-start; width: 580px; flex-shrink: 0; }
.contact__title { padding-top: 16px; }
.contact__body { padding-top: 16px; }
.contact__details { display: flex; flex-direction: column; gap: 12px; padding-top: 28px; }
.detail { display: flex; align-items: center; gap: 16px; font-size: var(--text-body-lg); line-height: 28px; font-weight: 500; color: var(--color-text); }
.detail__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--color-accent); flex-shrink: 0; }
.detail:hover { color: var(--color-primary-dark); }

.form { display: flex; flex-direction: column; gap: 12px; width: 576px; flex-shrink: 0; }
.form__input, .form__textarea {
  width: 576px;
  padding: 0 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  color: var(--color-text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form__input { height: 52px; }
.form__textarea { height: 120px; padding: 14px 20px; resize: vertical; }
.form__input::placeholder, .form__textarea::placeholder { color: var(--color-text-muted); opacity: 1; }
.form__input:focus, .form__textarea:focus {
  outline: none;
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 152, 69, 0.14);
}
.form__input[aria-invalid="true"], .form__textarea[aria-invalid="true"] { border: 1.5px solid #B4382E; }
.form__status { font-size: 14px; line-height: 20px; color: var(--color-primary-dark); min-height: 0; }
.form__status:empty { display: none; }

/* ---------- Footer ---------- */
.footer { display: flex; flex-direction: column; width: 1440px; height: 180px; padding: 40px 112px 0; background: var(--color-bg-footer); }
.footer__row { display: flex; align-items: center; justify-content: space-between; width: 1216px; }
.footer .logo { gap: 10px; }
.footer .logo__mark { width: 60px; height: 47px; }
.footer .logo__name { font-size: 28px; line-height: 28px; color: var(--color-text); }
.footer .logo__sub { font-size: 13px; line-height: 15px; color: var(--color-primary); }
.footer__nav { display: flex; align-items: center; gap: 28px; }
.footer__link { font-size: var(--text-caption); line-height: var(--leading-caption); font-weight: 500; color: var(--color-text); transition: color 150ms ease; }
.footer__link:hover { color: var(--color-primary-dark); }
.social { display: flex; align-items: center; gap: 28px; }
.social a { color: var(--color-text); transition: opacity 150ms ease; }
.social a:hover { opacity: 0.7; }
.footer__copy { padding-top: 28px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Låga fönster (< 720 px höga): hela heron inkl. trust-raden ovanför vecket. Gäller bara desktoplayouten. */
@media (min-width: 1024px) and (max-height: 720px) {
  .hero { height: 100vh; min-height: 620px; }
  .header { height: 84px; }
  .hero__content { padding-top: 40px; }
  .hero__title { font-size: 56px; line-height: 62px; }
  .hero__ingress { padding-top: 16px; }
  .hero__ctas { padding-top: 24px; }
  .trust { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* ---------- Undersida: Om Sävens (Paper-artboard "03 — Om Sävens") ---------- */
.subhead { display: flex; flex-direction: column; width: 1440px; background: var(--color-bg); }
.header--light .logo__name { color: var(--color-text); }
.header--light .logo__sub { color: var(--color-primary); }
.header--light .nav__item { color: var(--color-text); }
.header--light .nav__item:hover, .header--light .nav__item.is-current { color: var(--color-primary-dark); }

.intro { display: flex; align-items: center; gap: 64px; width: 1440px; padding: 64px 112px 96px; background: var(--color-bg); }
.intro__text { display: flex; flex-direction: column; align-items: flex-start; width: 592px; flex-shrink: 0; }
.intro__title { padding-top: 16px; }
.intro__ingress { padding-top: 20px; color: var(--color-text-body); }
.intro__photo { width: 560px; height: 760px; object-fit: cover; object-position: 50% 30%; border-radius: var(--radius-md); flex-shrink: 0; }

.story { display: flex; flex-direction: row-reverse; justify-content: flex-end; align-items: flex-start; gap: 64px; width: 1440px; padding: 8px 112px 96px; background: var(--color-bg); }
.story__text { display: flex; flex-direction: column; align-items: flex-start; width: 640px; flex-shrink: 0; }
.story__title { padding-top: 16px; }
.story__body { padding-top: 24px; }
.story__body + .story__body { padding-top: 16px; }
.story__photo { width: 512px; height: 600px; object-fit: cover; object-position: 50% 50%; border-radius: var(--radius-md); flex-shrink: 0; }

.facts { display: flex; align-items: center; width: 1440px; height: 260px; padding: 0 20px; background: var(--color-forest); }
.fact { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1 1 0; min-width: 0; }
.fact__value { font-size: 56px; line-height: 64px; font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--color-accent); }
.fact__label { font-size: var(--text-body); line-height: 26px; font-weight: 500; color: var(--color-text-inverse); text-align: center; }

.values { display: flex; flex-direction: column; align-items: flex-start; width: 1440px; padding: 96px 112px 96px; background: var(--color-bg-light); }
.values__title { padding-top: 16px; }
.values__grid { display: flex; gap: 48px; width: 1216px; padding-top: 56px; }
.value { display: flex; flex-direction: column; align-items: flex-start; flex: 1 1 0; min-width: 0; }
.value__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius-full); background: var(--color-accent); }
.value .icon { width: 26px; height: 26px; stroke-width: 1.75; }
.value__title { padding-top: 24px; font-size: 24px; line-height: 32px; font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--color-text); }
.value__body { padding-top: 10px; }

.cta { display: flex; align-items: center; justify-content: space-between; width: 1440px; padding: 88px 112px; background: var(--color-bg); }
.cta__text { display: flex; flex-direction: column; align-items: flex-start; }
.cta__title { padding-top: 16px; }
.cta__body { padding-top: 16px; }
.cta__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.btn--outline { height: 56px; padding: 0 32px; background: transparent; border: 1.5px solid var(--color-text); color: var(--color-text); transition: background-color 150ms ease, color 150ms ease; }
.btn--outline:hover { background: var(--color-text); color: var(--color-text-inverse); }

/* ---------- Element som bara finns i mobillayouten ---------- */
.menu-toggle, .hero__call, .swipe, .footer__info, .callbar { display: none; }

/* ==========================================================================
   Mobil (< 1024 px) — Paper-artboard "04 — Sävens Onepager Mobil" (390 bred).
   Ingen zoom här: main.js skalar bara desktoplayouten från 1024 px och uppåt.
   ========================================================================== */
@media (max-width: 1023px) {
  :root { --gutter: 20px; }

  .page { width: 100%; }
  .pre { white-space: normal; }

  .eyebrow { font-size: 13px; line-height: 18px; }
  .h1, .h2 { font-size: 32px; line-height: 38px; letter-spacing: -0.02em; }
  .h3 { font-size: 24px; line-height: 30px; }
  .body, .body-lg { font-size: 17px; line-height: 28px; }

  /* Header + meny */
  .header { width: 100%; height: 72px; padding: 0 var(--gutter); justify-content: space-between; }
  .header .logo { flex-grow: 0; }
  .logo { gap: 9px; }
  .logo__mark { width: 44px; height: 35px; }
  .logo__name { font-size: 21px; line-height: 21px; }
  .logo__sub { font-size: 10px; line-height: 12px; }
  .header > .btn { display: none; }
  .nav { display: none; }

  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(244, 243, 238, 0.5);
    color: var(--color-text-inverse);
  }
  .menu-toggle .icon { width: 22px; height: 22px; }
  .menu-toggle .icon-x { display: none; }
  .header.is-open .menu-toggle .icon-menu { display: none; }
  .header.is-open .menu-toggle .icon-x { display: block; }

  .header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0; z-index: 10;
    padding: 4px var(--gutter) 20px;
    background: var(--color-hero);
  }
  .header.is-open .nav__item { padding: 14px 0; font-size: 20px; line-height: 26px; border-bottom: 1px solid var(--color-border-inverse); }
  .header.is-open .nav__item .icon { display: none; }

  .header--light .menu-toggle { border-color: var(--color-border); color: var(--color-text); }
  .header--light.is-open .nav { background: var(--color-bg); }
  .header--light.is-open .nav__item { border-color: var(--color-border); }

  /* Hero */
  .hero { width: 100%; height: auto; border-radius: 0; }
  .hero__photo { inset: 0 0 auto 0; height: 720px; object-position: 78% 50%; }
  .hero__overlay-left {
    inset: 0 0 auto 0; height: 720px;
    background: linear-gradient(180deg, rgba(13,26,21,0.55) 0%, rgba(13,26,21,0.35) 30%, rgba(13,26,21,0.85) 62%, rgba(13,26,21,0.97) 100%);
  }
  .hero__overlay-bottom { display: none; }
  .hero__content { width: 100%; min-height: 648px; justify-content: flex-end; padding: 0 var(--gutter) 28px; }
  .hero__content .eyebrow { font-size: 12px; }
  .hero__title { max-width: 560px; padding-top: 12px; font-size: 38px; line-height: 43px; letter-spacing: -0.02em; }
  .hero__ingress { max-width: 520px; padding-top: 14px; font-size: 17px; line-height: 27px; color: var(--color-text-inverse-muted); }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 420px; padding-top: 24px; }
  .hero__ctas .btn { width: 100%; height: 56px; padding: 0 20px; }
  .hero__offer { display: none; }
  .hero__call { display: inline-flex; }

  .trust {
    width: 100%; flex-wrap: wrap; row-gap: 20px;
    padding: 24px var(--gutter) 32px;
    border-top: 1px solid var(--color-border-inverse);
    background: var(--color-hero);
  }
  .trust__item { width: 50%; gap: 12px; padding-right: 8px; }
  .trust__item .icon { width: 32px; height: 32px; }
  .trust__text { font-size: 15px; line-height: 20px; white-space: pre-line; }

  /* Tjänster: svepbara kort */
  .services { width: 100%; padding: 56px 0 48px; }
  .services__heading { width: 100%; flex-direction: column; padding: 0 var(--gutter); }
  .services__left { gap: 12px; }
  .services__intro { max-width: 640px; padding-top: 16px; }

  .carousel { width: 100%; height: auto; padding: 32px 0 0; }
  .carousel__track {
    width: auto; gap: 12px;
    padding-left: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
    transform: none !important;
  }
  .carousel__track::-webkit-scrollbar { display: none; }
  .carousel__track::after { content: ""; flex: 0 0 8px; }
  .slide { width: min(310px, 80vw); height: 420px; scroll-snap-align: start; }
  .slide__photo { width: 100%; height: 100%; }
  .slide__overlay { background: linear-gradient(180deg, rgba(13,26,21,0) 30%, rgba(13,26,21,0.9) 100%); }
  .slide__overlay-bottom, .slide__peek, .slide__link, .carousel__controls { display: none; }
  .slide__content { width: 100%; padding: 0 22px 24px; }
  .slide .eyebrow { font-size: 12px; }
  .slide__title { padding-top: 8px; }

  .swipe { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gutter) 0; }
  .swipe__dots { display: flex; align-items: center; gap: 8px; }
  .swipe__dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: #CFCEC7; transition: width 200ms ease, background-color 200ms ease; }
  .swipe__dot.is-active { width: 22px; background: var(--color-forest); }
  .swipe__hint { font-size: 14px; line-height: 20px; font-weight: 500; color: var(--color-text-muted); }

  /* Om Sävens (startsidan) */
  .about { width: 100%; flex-direction: column; padding: 56px var(--gutter); }
  .about__text { display: contents; }
  .about .h2 { order: 1; }
  .about__body { order: 2; padding-top: 16px; }
  .about__photo { order: 3; width: 100%; height: auto; aspect-ratio: 350 / 262; margin-top: 32px; }
  .about__btn { order: 4; width: 100%; margin-top: 32px; }

  /* Kundgrupper + fakta: 2 × 2 */
  .categories, .facts { width: 100%; height: auto; flex-wrap: wrap; align-items: stretch; padding: 12px var(--gutter); }
  .categories__divider { display: none; }
  .category { flex: 0 0 50%; align-items: flex-start; gap: 4px; padding: 24px 12px 24px 0; }
  .category .icon { width: 36px; height: 36px; }
  .category__label { padding-top: 10px; font-size: 18px; line-height: 24px; }
  .category__sub { font-size: 14px; line-height: 20px; }
  .category:nth-child(1), .category:nth-child(3),
  .fact:nth-child(1), .fact:nth-child(3) { border-bottom: 1px solid var(--color-border-inverse); }
  .category:nth-child(3), .category:nth-child(7),
  .fact:nth-child(3), .fact:nth-child(7) { padding-left: 16px; border-left: 1px solid var(--color-border-inverse); }

  /* Kontakt */
  .contact { width: 100%; height: auto; flex-direction: column; justify-content: flex-start; gap: 32px; padding: 56px var(--gutter); }
  .contact__text { width: 100%; }
  .contact__title { padding-top: 12px; }
  .contact__details { width: 100%; gap: 0; margin-top: 32px; padding-top: 0; border-top: 1px solid var(--color-border); }
  .detail { height: 68px; gap: 14px; font-size: 18px; line-height: 26px; border-bottom: 1px solid var(--color-border); }
  .form { width: 100%; }
  .form__input, .form__textarea { width: 100%; font-size: 16px; }

  /* Sidfot (extra bottenluft för den fasta ringraden) */
  .footer { width: 100%; height: auto; padding: 40px var(--gutter) 104px; }
  .footer__row { width: 100%; flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer .logo__mark { width: 48px; height: 38px; }
  .footer .logo__name { font-size: 23px; line-height: 23px; }
  .footer .logo__sub { font-size: 11px; line-height: 13px; }
  .footer__info { display: flex; flex-direction: column; gap: 4px; font-size: 15px; line-height: 22px; color: var(--color-text); }
  .footer__nav { flex-wrap: wrap; column-gap: 24px; row-gap: 10px; }
  .social { display: none; }
  .footer__copy { padding-top: 24px; font-size: 14px; line-height: 20px; }

  /* Fast ring-/mejlrad */
  .callbar {
    display: flex; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: rgba(248, 247, 243, 0.96);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms;
  }
  .callbar.is-visible { transform: none; visibility: visible; }
  .callbar .btn { flex: 1 1 0; height: 52px; padding: 0 16px; }

  /* Undersida Om Sävens */
  .subhead { width: 100%; }
  .intro { width: 100%; flex-direction: column; align-items: stretch; gap: 32px; padding: 24px var(--gutter) 56px; }
  .intro__text { width: 100%; }
  .intro__title { padding-top: 12px; font-size: 36px; line-height: 42px; }
  .intro__ingress { padding-top: 16px; }
  .intro__photo { width: 100%; height: auto; aspect-ratio: 350 / 440; }
  .story { width: 100%; flex-direction: column; gap: 32px; padding: 0 var(--gutter) 56px; }
  .story__text { width: 100%; }
  .story__title { padding-top: 12px; }
  .story__body { padding-top: 16px; }
  .story__photo { width: 100%; height: auto; aspect-ratio: 350 / 300; }
  .fact { flex: 0 0 50%; gap: 4px; padding: 24px 0; }
  .fact__value { font-size: 40px; line-height: 48px; }
  .fact__label { font-size: 15px; line-height: 22px; }
  .values { width: 100%; padding: 56px var(--gutter); }
  .values__title { padding-top: 12px; }
  .values__grid { width: 100%; flex-direction: column; gap: 32px; padding-top: 32px; }
  .value__title { padding-top: 16px; font-size: 22px; line-height: 28px; }
  .cta { width: 100%; flex-direction: column; align-items: stretch; gap: 28px; padding: 56px var(--gutter); }
  .cta__title { padding-top: 12px; }
  .cta__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta__actions .btn { width: 100%; }
}
