/* RenStart — static styles (mirrors Next.js / Tailwind design tokens) */

:root {
  /* Ivaska turquoise brand #18B1B4 + warm amber accent */
  --color-canvas: #f2f6f5;
  --color-brand: #18B1B4;
  --color-brand-soft: #3AC5C8;
  --color-ink: #101414;
  --color-accent: #e2a66a;
  --color-accent-tint: #f7ecdf;
  --color-surface: #ffffff;
  --color-border: #e5e7eb;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 8px 30px rgba(16, 20, 20, 0.06);
  --shadow-drawer: 0 20px 50px rgba(24, 177, 180, 0.12);
  --radius-squircle: 1.25rem;
  --max-content: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background-color: var(--color-accent-tint);
  color: var(--color-brand);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-inline-size: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container-site {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container-site {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-site {
    padding-inline: 2rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--color-brand);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-soft), transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-brand-soft);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary--full {
  width: 100%;
}

/* ——— Section header ——— */
.section-header {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.section-header__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-brand) 70%, transparent);
}

.section-header__title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  line-height: 1.2;
}

.section-header__desc {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--color-ink) 65%, transparent);
}

@media (min-width: 640px) {
  .section-header__title {
    font-size: 2.25rem;
  }

  .section-header__desc {
    font-size: 1.125rem;
  }
}

/* ——— Logo ——— */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:focus-visible {
  outline: none;
}

.logo__mark {
  height: 1.75rem;
  width: 1.75rem;
  object-fit: contain;
}

.logo__full {
  display: block;
  height: 1.48rem; /* −20% */
  width: auto;
  max-width: 7.8rem;
  object-fit: contain;
}

.logo__word {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-brand);
}

.logo--inverse .logo__word {
  color: #fff;
}

@media (min-width: 640px) {
  .logo__mark {
    height: 2.25rem;
    width: 2.25rem;
  }

  .logo__full {
    height: 1.92rem; /* −20% */
    max-width: 9.6rem;
  }

  .logo__word {
    font-size: 1.125rem;
  }
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft),
    box-shadow 0.3s var(--ease-soft), opacity 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
  opacity: 0;
  transform: translateY(-24px);
  pointer-events: none;
  visibility: hidden;
  /* Backup if JS reveal stalls after intro end-frame */
  animation: header-reveal 0.45s var(--ease-soft) 4.3s forwards;
}

/* Full-bleed header: logo left edge, CTA right edge */
.site-header > .container-site {
  max-width: none;
  width: 100%;
  padding-inline: clamp(0.75rem, 2.2vw, 1.75rem);
}

@media (min-width: 1024px) {
  .site-header > .container-site {
    padding-inline: clamp(1rem, 3vw, 2.5rem);
  }
}

.site-header.is-visible,
html.intro-complete .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  animation: none;
}

@keyframes header-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}

.site-header.is-solid {
  border-color: color-mix(in srgb, var(--color-border) 80%, transparent);
  background: color-mix(in srgb, #f4f5f2 92%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-inline: 0;
  width: 100%;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.site-header__link {
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, #fff 90%, transparent);
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.site-header__link:hover {
  background: color-mix(in srgb, #fff 10%, transparent);
  color: #fff;
}

.site-header.is-solid .site-header__link {
  color: var(--color-brand);
}

.site-header.is-solid .site-header__link:hover {
  background: color-mix(in srgb, var(--color-accent-tint) 70%, transparent);
  color: var(--color-brand);
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.3s var(--ease-soft);
}

.site-header__phone:hover {
  background: color-mix(in srgb, #fff 10%, transparent);
}

.site-header.is-solid .site-header__phone {
  color: var(--color-brand);
}

.site-header.is-solid .site-header__phone .site-header__phone-icon {
  color: var(--color-brand);
}

.site-header.is-solid .site-header__phone:hover {
  background: color-mix(in srgb, var(--color-accent-tint) 70%, transparent);
}

.site-header__phone-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.site-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.site-header__phone-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}

.site-header.is-solid .site-header__phone-mobile {
  color: var(--color-brand);
}

.site-header__phone-mobile .site-header__phone-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.site-header__menu-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-soft), border-color 0.3s, color 0.3s;
}

.site-header__menu-btn:hover {
  background: color-mix(in srgb, #fff 10%, transparent);
}

.site-header.is-solid .site-header__menu-btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-brand);
}

.site-header.is-solid .site-header__menu-btn:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-tint);
}

.site-header__menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-header__menu-btn .icon-close {
  display: none;
}

.site-header.is-menu-open .site-header__menu-btn .icon-menu {
  display: none;
}

.site-header.is-menu-open .site-header__menu-btn .icon-close {
  display: block;
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 4rem;
  z-index: 40;
  background: color-mix(in srgb, var(--color-brand) 20%, transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.2s;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset-inline: 0;
  top: 4rem;
  z-index: 50;
  margin-inline: auto;
  max-width: var(--max-content);
  padding-inline: 1rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.28s var(--ease-soft), transform 0.28s var(--ease-soft);
  pointer-events: none;
}

.site-header.is-menu-open .mobile-backdrop,
.site-header.is-menu-open .mobile-drawer {
  display: block;
}

.site-header.is-menu-open .mobile-backdrop {
  opacity: 1;
}

.site-header.is-menu-open .mobile-drawer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer__panel {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-drawer);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.mobile-drawer__link {
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: background-color 0.2s, color 0.2s;
}

.mobile-drawer__link:hover {
  background: var(--color-accent-tint);
  color: var(--color-brand);
}

.mobile-drawer__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border);
  padding: 1rem;
}

.mobile-drawer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--color-canvas);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand);
  transition: border-color 0.2s, background-color 0.2s;
}

.mobile-drawer__phone:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-tint);
}

@media (min-width: 640px) {
  .site-header__inner {
    height: 4rem;
  }

  .mobile-drawer {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 4.5rem;
  }

  .site-header__nav,
  .site-header__actions {
    display: flex;
  }

  .site-header__mobile-actions {
    display: none;
  }

  .mobile-backdrop,
  .mobile-drawer,
  .site-header.is-menu-open .mobile-backdrop,
  .site-header.is-menu-open .mobile-drawer {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  background: #0A5558;
}

.hero__frame {
  position: relative;
  height: calc(100dvh - 6.75rem);
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__bg-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 42%,
      rgba(5, 14, 12, 0.62) 0%,
      rgba(5, 14, 12, 0.28) 55%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      rgba(5, 14, 12, 0.62) 0%,
      rgba(5, 14, 12, 0.28) 30%,
      rgba(5, 14, 12, 0.45) 58%,
      rgba(5, 14, 12, 0.82) 100%
    );
}

/* Video covers hero during intro; text sits underneath and is always painted */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 20;
  transition: opacity 0.45s var(--ease-soft);
  /* If JS stalls, still lift the cream end-frame off the UI */
  animation: hero-video-hide-fallback 0.4s linear 4.1s forwards;
}

.hero__video-wrap.is-hidden,
html.intro-complete .hero__video-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
  animation: none !important;
}

@keyframes hero-video-hide-fallback {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__copy {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero__offer {
  pointer-events: auto;
  position: relative;
  margin-inline: auto;
  display: flex;
  width: 100%;
  max-width: 32rem;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.25rem 0;
  text-align: center;
}

.hero__badge {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #f0d4b0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 14px rgba(0, 0, 0, 0.65);
}

.hero__headline {
  margin: 1.25rem 0 0;
  font-family: var(--font-sans);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 6px 28px rgba(0, 0, 0, 0.55);
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--accent {
  margin-top: 0.25rem;
  color: #f2c89a;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 6px 24px rgba(0, 0, 0, 0.55);
}

.hero__sub {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero__ctas {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fff;
  padding: 0.875rem 1.5rem;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s, transform 0.3s var(--ease-soft), box-shadow 0.3s;
}

.hero__cta-primary:hover {
  background: #f4f5f2;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid color-mix(in srgb, #fff 90%, transparent);
  background: color-mix(in srgb, #000 25%, transparent);
  padding: 0.875rem 1.5rem;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background-color 0.3s, transform 0.3s var(--ease-soft);
}

.hero__cta-secondary:hover {
  background: color-mix(in srgb, #fff 15%, transparent);
}

.hero__trust {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid color-mix(in srgb, #fff 10%, transparent);
  background: color-mix(in srgb, #0A5558 78%, transparent);
  padding: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    animation: none !important;
  }

  .hero__video-wrap {
    display: none !important;
  }
}

.hero__trust-list {
  margin-inline: auto;
  display: grid;
  max-width: 64rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}

.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  text-align: left;
}

.hero__trust-check {
  margin-top: 0.125rem;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--color-accent);
  color: var(--color-brand);
}

.hero__trust-check svg {
  width: 0.875rem;
  height: 0.875rem;
}

.hero__trust-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.375;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

@media (min-width: 640px) {
  .hero__frame {
    height: calc(100dvh - 5.5rem);
    min-height: 640px;
  }

  .hero__offer {
    max-width: 48rem;
    padding-inline: 2rem;
    padding-top: 5rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    letter-spacing: 0.36em;
  }

  .hero__headline {
    margin-top: 1.5rem;
    font-size: 3rem;
  }

  .hero__sub {
    margin-top: 1.25rem;
    max-width: 36rem;
    font-size: 0.875rem;
    letter-spacing: 0.22em;
  }

  .hero__ctas {
    margin-top: 2.25rem;
    max-width: 36rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero__cta-primary,
  .hero__cta-secondary {
    padding-inline: 1.75rem;
    font-size: 0.875rem;
  }

  .hero__trust {
    padding: 1.25rem 2rem;
  }

  .hero__trust-list {
    gap: 0.875rem 2rem;
  }

  .hero__trust-label {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .hero__frame {
    height: 100dvh;
    min-height: 700px;
  }

  .hero__bg-img {
    object-position: center;
  }

  .hero__offer {
    max-width: 64rem;
  }

  .hero__headline {
    font-size: 3.75rem;
    line-height: 1.05;
  }

  .hero__ctas {
    max-width: none;
  }

  .hero__trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ——— Shared Scandi section shell (Packages / Process reference) ——— */
.scandi-section {
  position: relative;
  scroll-margin-top: 6rem;
  overflow: hidden;
  border-bottom: 1px solid #e8e2d6;
  padding: 4.5rem 0;
}

.scandi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scandi-veil {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #f5f2ea 40%, transparent);
  pointer-events: none;
}

.scandi-inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1100px;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .scandi-inner {
    padding-inline: 1.5rem;
  }

  .scandi-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .scandi-inner {
    padding-inline: 2rem;
    max-width: 1180px;
  }

  .scandi-section {
    padding: 6rem 0;
  }
}

.scandi-header {
  margin-inline: auto;
  max-width: 38rem;
  text-align: center;
}

.scandi-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.scandi-rule {
  height: 1px;
  width: 2.5rem;
  background: color-mix(in srgb, #18B1B4 30%, transparent);
}

@media (min-width: 640px) {
  .scandi-rule {
    width: 3.5rem;
  }
}

.scandi-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, #18B1B4 75%, transparent);
}

.scandi-title {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

@media (min-width: 640px) {
  .scandi-title {
    font-size: 2.35rem;
  }
}

.scandi-desc {
  margin: 1rem 0 0;
  font-size: 15px;
  line-height: 1.625;
  color: color-mix(in srgb, #3a3f3c 80%, transparent);
}

@media (min-width: 640px) {
  .scandi-desc {
    font-size: 1rem;
  }
}

.scandi-desc strong {
  font-weight: 600;
  color: #1a2420;
}

.scandi-divider {
  margin: 1.5rem auto 0;
  height: 1px;
  width: 4rem;
  background: color-mix(in srgb, #18B1B4 20%, transparent);
}

.scandi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  border: 1px solid #e5dfd3;
  background: color-mix(in srgb, #faf7f0 95%, transparent);
  box-shadow: 0 10px 30px rgba(40, 30, 15, 0.06);
}

/* ——— Trust / Safety ——— */
.trust-section .scandi-inner {
  position: relative;
}

.trust-section__skip {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  z-index: 5;
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(24, 177, 180, 0.25);
  transition: background-color 0.2s;
}

.trust-section__skip:hover {
  background: var(--color-brand);
}

.trust-section__skip svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.trust-card {
  padding: 1.5rem;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.trust-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 45%, #e5dfd3);
  box-shadow: 0 14px 34px rgba(40, 30, 15, 0.1);
}

.trust-card__icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #f3e6d6;
  color: var(--color-brand);
  transition: background-color 0.3s, color 0.3s;
}

.trust-card:hover .trust-card__icon {
  background: var(--color-brand);
  color: #fff;
}

.trust-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-card__title {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

.trust-card__desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: color-mix(in srgb, #4a524e 85%, transparent);
}

@media (min-width: 640px) {
  .trust-section__skip {
    right: 0;
    top: 1rem;
  }

  .trust-grid {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ——— Packages ——— */
.pkg-grid {
  margin-top: 3rem;
  display: grid;
  align-items: stretch;
  gap: 1.5rem;
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-squircle);
  border: 1px solid #e5dfd3;
  background: color-mix(in srgb, #faf7f0 95%, transparent);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 10px 30px rgba(40, 30, 15, 0.06);
}

.pkg-card--featured {
  border: 1.5px solid #18B1B4;
  box-shadow: 0 16px 40px rgba(24, 177, 180, 0.1);
}

.pkg-card__badge {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: #18B1B4;
  padding: 0.4rem 1.05rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.pkg-card__leaf {
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 1.5rem;
  height: 7rem;
  width: 6rem;
  opacity: 0.14;
  overflow: hidden;
}

.pkg-card__leaf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.pkg-card__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.pkg-card__tagline {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, #18B1B4 55%, transparent);
}

.pkg-card__name {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

.pkg-card__price {
  margin: 0.875rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #18B1B4;
}

.pkg-card__desc {
  margin: 0.75rem 0 0;
  font-size: 14px;
  line-height: 1.625;
  color: color-mix(in srgb, #4a524e 80%, transparent);
}

.pkg-card__includes {
  margin: 2rem 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, #18B1B4 40%, transparent);
}

.pkg-card__features {
  margin-top: 0.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pkg-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pkg-card__check {
  margin-top: 1px;
  display: flex;
  height: 1.15rem;
  width: 1.15rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f7ecdf;
  color: #18B1B4;
}

.pkg-card__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pkg-card__feature-text {
  font-size: 14px;
  line-height: 1.375;
  color: color-mix(in srgb, #2c3430 88%, transparent);
}

.pkg-card__cta {
  margin-top: 2rem;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.9rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d4cdc0;
  background: #f5f2ea;
  color: #18B1B4;
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft);
}

.pkg-card__cta:hover {
  border-color: color-mix(in srgb, #18B1B4 35%, transparent);
  background: #fff;
}

.pkg-card__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.pkg-card--featured .pkg-card__cta {
  border: none;
  background: #18B1B4;
  color: #fff;
}

.pkg-card--featured .pkg-card__cta:hover {
  background: #3AC5C8;
}

@media (min-width: 640px) {
  .pkg-grid {
    margin-top: 3.5rem;
  }

  .pkg-card {
    padding: 2.25rem 2rem 2rem;
  }

  .pkg-card__leaf {
    right: 0.75rem;
    height: 8rem;
    width: 7rem;
  }

  .pkg-card__name {
    font-size: 1.65rem;
  }
}

@media (min-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .pkg-grid {
    gap: 1.5rem;
  }
}

/* ——— Results placeholder ——— */
.results__card {
  margin-inline: auto;
  max-width: 40rem;
  padding: 1.75rem 1.5rem;
}

.results__card .scandi-header {
  max-width: none;
}

@media (min-width: 640px) {
  .results__card {
    padding: 2.25rem 2.5rem;
  }
}

.results-gallery {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.results-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid #e5dfd3;
  background: #e8e2d6;
  box-shadow: 0 10px 30px rgba(40, 30, 15, 0.08);
}

.results-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-soft, ease);
}

.results-gallery__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 16, 0.82));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.results-gallery__index {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.72;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .results-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .results-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .results-gallery__item img {
    aspect-ratio: 3 / 4;
  }

  .results-gallery__item:hover img {
    transform: scale(1.04);
  }
}

/* ——— Inner service pages ——— */
.page-main {
  padding-top: 4.5rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8e2d6;
  padding: 3.5rem 0 3rem;
  background: #f5f2ea;
}

.page-hero .scandi-bg {
  opacity: 0.35;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.page-hero__cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-page-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1.5px solid #18B1B4;
  background: transparent;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #18B1B4;
  transition: background-color 0.2s, color 0.2s;
}

.btn-page-secondary:hover {
  background: #18B1B4;
  color: #fff;
}

.page-section {
  padding: 3.25rem 0;
  border-bottom: 1px solid #e8e2d6;
  background: #faf7f0;
}

.page-section--cream {
  position: relative;
  overflow: hidden;
  background: #f5f2ea;
}

.page-section__inner {
  position: relative;
  z-index: 1;
}

.page-panel {
  padding: 1.5rem 1.35rem;
}

.page-figure {
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid #e5dfd3;
}

.page-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-header-left {
  text-align: left;
  margin-inline: 0;
  max-width: 40rem;
}

.page-header-left .scandi-title,
.page-header-left .scandi-desc {
  text-align: left;
  margin-inline: 0;
}

.page-cta-band__desc {
  margin-inline: auto;
}

.page-cta-band__action {
  margin-top: 1.75rem;
}

.page-breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 0;
}

.page-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: color-mix(in srgb, #4a524e 75%, transparent);
}

.page-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.45;
}

.page-breadcrumbs__list a {
  color: #18B1B4;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-breadcrumbs__list a:hover {
  color: var(--color-accent, #e2a66a);
}

.page-related {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-related__link {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #d4cdc0;
  background: #faf7f0;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 550;
  color: #18B1B4;
  transition: border-color 0.2s, background-color 0.2s;
}

.page-related__link:hover {
  border-color: color-mix(in srgb, #18B1B4 35%, transparent);
  background: #fff;
}

.page-grid-2 {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.page-list {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: color-mix(in srgb, #2c3430 90%, transparent);
}

.page-list__check {
  margin-top: 0.15rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f7ecdf;
  color: #18B1B4;
}

.page-list__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.page-trust {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.page-trust__item {
  padding: 1.25rem 1.35rem;
}

.page-trust__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #18B1B4;
}

.page-trust__desc {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: color-mix(in srgb, #4a524e 88%, transparent);
}

.page-cta-band {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: #18B1B4;
  color: #f5f2ea;
  text-align: center;
}

.page-cta-band .scandi-title {
  color: #faf7f0;
}

.page-cta-band .scandi-desc {
  color: color-mix(in srgb, #f5f2ea 78%, transparent);
}

.page-cta-band .scandi-eyebrow {
  color: var(--color-accent);
}

.page-cta-band .scandi-rule {
  background: color-mix(in srgb, #e2a66a 45%, transparent);
}

.page-cta-band .btn-primary {
  background: #faf7f0;
  color: #18B1B4;
}

.page-cta-band .btn-primary:hover {
  background: #fff;
}

@media (min-width: 640px) {
  .page-main {
    padding-top: 5rem;
  }

  .page-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .page-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .page-trust {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 5.5rem 0 4rem;
  }
}

/* ——— Before / After ——— */
.ba-wrap {
  margin: 3rem auto 0;
  max-width: 56rem;
}

.ba-hint {
  display: none;
}

.ba-track {
  position: relative;
  aspect-ratio: 4 / 3;
  touch-action: none;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid #e5dfd3;
  background: var(--color-brand);
  box-shadow: 0 16px 40px rgba(40, 30, 15, 0.12);
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  pointer-events: none;
  position: absolute;
  top: 0.75rem;
  z-index: 10;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ba-label--before {
  left: 0.75rem;
  background: color-mix(in srgb, var(--color-ink) 70%, transparent);
}

.ba-label--after {
  right: 0.75rem;
  background: color-mix(in srgb, var(--color-brand) 80%, transparent);
}

.ba-divider {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 10;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 14px rgba(24, 177, 180, 0.35);
  transform: translateX(-50%);
  left: 50%;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  height: 3rem;
  width: 3rem;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 3px solid #fff;
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  outline: 4px solid color-mix(in srgb, var(--color-brand) 20%, transparent);
}

.ba-handle__arrows {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ba-slider {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: ew-resize;
  outline: none;
}

.ba-slider:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-accent);
}

@keyframes ba-handle-pulse {
  0%,
  100% {
    outline-color: color-mix(in srgb, var(--color-brand) 18%, transparent);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    outline-color: color-mix(in srgb, var(--color-brand) 42%, transparent);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (min-width: 640px) {
  .ba-track {
    aspect-ratio: 16 / 10;
  }

  .ba-label {
    top: 1rem;
  }

  .ba-label--before {
    left: 1rem;
  }

  .ba-label--after {
    right: 1rem;
  }
}

/* ——— Process ——— */
.process__curves {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 0;
}

.process .scandi-inner {
  z-index: 1;
}

.process-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  border: 1px solid color-mix(in srgb, #e8e2d6 80%, transparent);
  background: color-mix(in srgb, #fff 95%, transparent);
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(40, 30, 15, 0.06);
}

.process-card__step {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  display: inline-flex;
  border-radius: 0.375rem;
  background: #f3e6d6;
  padding: 0.25rem 0.625rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #18B1B4;
}

.process-card__media {
  position: relative;
  margin-top: 0.25rem;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #f0ede6;
}

.process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-card__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

.process-card__desc {
  margin: 0.5rem 0 0;
  font-size: 13px;
  line-height: 1.625;
  color: #5a625e;
}

@media (min-width: 640px) {
  .process-grid {
    margin-top: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card {
    padding: 1.25rem;
  }

  .process-card__title {
    font-size: 1.2rem;
  }

  .process-card__desc {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ——— Testimonials ——— */
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.testimonial-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, #e5dfd3);
  box-shadow: 0 14px 34px rgba(40, 30, 15, 0.1);
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-brand);
}

.testimonial-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card__quote {
  margin: 1.25rem 0 0;
  flex: 1;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in srgb, #3a3f3c 90%, transparent);
}

.testimonial-card__footer {
  margin-top: 1.5rem;
  border-top: 1px solid #e5dfd3;
  padding-top: 1.25rem;
}

.testimonial-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #18B1B4;
}

.testimonial-card__location {
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, #4a524e 80%, transparent);
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ——— Services in Oslo (local-seo) ——— */
.local-seo-grid {
  margin-top: 3rem;
  display: grid;
  align-items: stretch;
  gap: 1.5rem;
}

.local-seo-card {
  padding: 2rem 1.75rem 1.75rem;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.local-seo-card:hover {
  border-color: color-mix(in srgb, #18B1B4 25%, #e5dfd3);
  box-shadow: 0 14px 34px rgba(40, 30, 15, 0.1);
}

.local-seo-card__keyword {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, #18B1B4 55%, transparent);
}

.local-seo-card__title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

.local-seo-card__body {
  margin: 0.75rem 0 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.625;
  color: color-mix(in srgb, #4a524e 85%, transparent);
}

.local-seo-card__cta {
  margin-top: 1.75rem;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #d4cdc0;
  background: #f5f2ea;
  padding: 0.9rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  color: #18B1B4;
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft);
}

.local-seo-card__cta:hover {
  border-color: color-mix(in srgb, #18B1B4 35%, transparent);
  background: #fff;
}

@media (min-width: 640px) {
  .local-seo-grid {
    margin-top: 3.5rem;
  }

  .local-seo-card {
    padding: 2.25rem 2rem 2rem;
  }

  .local-seo-card__title {
    font-size: 1.45rem;
  }

  .local-seo-card__body {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .local-seo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .local-seo-grid {
    gap: 1.5rem;
  }
}

/* ——— Quote ——— */
.quote__panel {
  margin: 3rem auto 0;
  max-width: 42rem;
  padding: 1.25rem;
}

.quote__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.quote__step-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, #4a524e 85%, transparent);
}

.quote__progress-pct {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
}

.quote__progress {
  margin-top: 0.75rem;
  height: 0.375rem;
  overflow: hidden;
  border-radius: 9999px;
  background: #efeae1;
}

.quote__progress-bar {
  height: 100%;
  border-radius: 9999px;
  background: var(--color-brand);
  width: 25%;
  transition: width 0.35s var(--ease-soft);
}

.quote__step {
  margin-top: 2rem;
}

.quote__step[hidden] {
  display: none;
}

.quote__legend,
.quote__contact-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #18B1B4;
}

.quote__options {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.quote__option {
  border-radius: 0.85rem;
  border: 1px solid #e5dfd3;
  background: color-mix(in srgb, #f5f2ea 80%, transparent);
  padding: 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
  cursor: pointer;
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft),
    color 0.3s var(--ease-soft), box-shadow 0.3s;
}

.quote__option:hover {
  border-color: color-mix(in srgb, var(--color-accent) 55%, #e5dfd3);
  background: color-mix(in srgb, var(--color-accent-tint) 45%, #faf7f0);
}

.quote__option.is-selected {
  border-color: var(--color-brand);
  background: var(--color-accent-tint);
  color: var(--color-brand);
  box-shadow: 0 8px 22px rgba(24, 177, 180, 0.08);
}

.quote__option-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.quote__option-check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: none;
}

.quote__option.is-selected .quote__option-check {
  display: block;
}

.quote__error {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #b91c1c;
}

.quote__field {
  margin-top: 1.25rem;
}

.quote__field:first-of-type {
  margin-top: 1.25rem;
}

.quote__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #18B1B4;
}

.quote__required {
  color: var(--color-brand);
}

.quote__optional {
  font-weight: 400;
  color: color-mix(in srgb, #4a524e 70%, transparent);
}

.quote__input {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e5dfd3;
  background: #f5f2ea;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.quote__input::placeholder {
  color: color-mix(in srgb, #4a524e 55%, transparent);
}

.quote__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 30%, transparent);
  background: #fff;
}

.quote__input.is-invalid {
  border-color: #f87171;
}

.quote__privacy {
  margin-top: 1.25rem;
}

.quote__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, #3a3f3c 90%, transparent);
  cursor: pointer;
}

.quote__privacy-label input {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  accent-color: var(--color-brand);
}

.quote__privacy-link {
  font-weight: 500;
  color: var(--color-brand);
  text-underline-offset: 2px;
}

.quote__privacy-link:hover {
  text-decoration: underline;
}

.quote__nav {
  margin-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
}

.quote__btn-back,
.quote__btn-next,
.quote__btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, opacity 0.2s;
}

.quote__btn-back[hidden],
.quote__btn-next[hidden],
.quote__btn-submit[hidden],
.quote__btn-skip[hidden] {
  display: none !important;
}

.quote__btn-back {
  border: 1px solid #d4cdc0;
  background: #f5f2ea;
  color: #18B1B4;
}

.quote__btn-back:hover:not(:disabled) {
  border-color: color-mix(in srgb, #18B1B4 30%, transparent);
  background: #fff;
}

.quote__btn-back:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.quote__btn-back svg,
.quote__btn-next svg {
  width: 1rem;
  height: 1rem;
}

.quote__nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.quote__btn-next,
.quote__btn-submit {
  border: none;
  background: var(--color-brand);
  color: #fff;
  font-weight: 600;
  width: 100%;
}

.quote__btn-next:hover,
.quote__btn-submit:hover {
  background: var(--color-brand-soft);
}

.quote__btn-skip {
  border: 1.5px solid var(--color-brand);
  background: transparent;
  color: var(--color-brand);
  font-weight: 600;
  width: 100%;
}

.quote__btn-skip:hover {
  background: var(--color-accent-tint);
}

.quote__btn-submit {
  padding-block: 0.875rem;
}

.quote__btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (min-width: 640px) {
  .quote__panel {
    padding: 2rem;
  }

  .quote__options {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote__nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .quote__nav-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
  }

  .quote__btn-next,
  .quote__btn-submit,
  .quote__btn-skip {
    width: auto;
    min-width: 11rem;
  }
}

/* Success modal */
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: flex-end;
  justify-content: center;
  background: color-mix(in srgb, var(--color-brand) 40%, transparent);
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s;
}

.quote-modal.is-open {
  display: flex;
  opacity: 1;
}

.quote-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1.15rem;
  border: 1px solid #e5dfd3;
  background: color-mix(in srgb, #faf7f0 98%, transparent);
  padding: 1.5rem;
  box-shadow: var(--shadow-drawer);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s var(--ease-soft);
}

.quote-modal.is-open .quote-modal__dialog {
  transform: translateY(0) scale(1);
}

.quote-modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e5dfd3;
  background: transparent;
  color: color-mix(in srgb, #4a524e 80%, transparent);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.quote-modal__close:hover {
  background: #f5f2ea;
  color: var(--color-brand);
}

.quote-modal__close svg {
  width: 1rem;
  height: 1rem;
}

.quote-modal__icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--color-accent-tint);
  color: var(--color-brand);
}

.quote-modal__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.quote-modal__title {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #18B1B4;
  outline: none;
}

.quote-modal__message {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in srgb, #4a524e 90%, transparent);
}

.quote-modal__done {
  margin-top: 1.5rem;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: var(--color-brand);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quote-modal__done:hover {
  background: var(--color-brand-soft);
}

@media (min-width: 640px) {
  .quote-modal {
    align-items: center;
  }

  .quote-modal__dialog {
    padding: 2rem;
  }
}

/* ——— FAQ ——— */
.faq__list {
  margin: 3rem auto 0;
  max-width: 48rem;
  overflow: hidden;
}

.faq__item {
  padding-inline: 1.25rem;
  border-bottom: 1px solid #e5dfd3;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item h3 {
  margin: 0;
}

.faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.faq__question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #18B1B4;
}

.faq__chevron {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e5dfd3;
  background: #f5f2ea;
  color: var(--color-brand);
  transition: transform 0.3s, background-color 0.3s;
}

.faq__chevron svg {
  width: 1rem;
  height: 1rem;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  background: var(--color-accent-tint);
}

.faq__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s var(--ease-soft), opacity 0.28s var(--ease-soft);
}

.faq__item.is-open .faq__panel {
  max-height: 320px;
  opacity: 1;
}

.faq__answer {
  margin: 0;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: color-mix(in srgb, #4a524e 90%, transparent);
}

@media (min-width: 640px) {
  .faq__item {
    padding-inline: 1.5rem;
  }

  .faq__question {
    font-size: 1.125rem;
  }

  .faq__answer {
    font-size: 1rem;
  }
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid color-mix(in srgb, #0C7A7E 80%, transparent);
  background: linear-gradient(180deg, #18B1B4 0%, #0E8A8E 100%);
  color: #fff;
}

.site-footer__inner {
  padding-block: 3.5rem;
  padding-inline: 1.25rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

.site-footer__logo-wrap {
  display: inline-flex;
  border-radius: 0.85rem;
  background: #faf7f0;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.site-footer__mission {
  margin: 1.25rem 0 0;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: color-mix(in srgb, #f5f2ea 72%, transparent);
}

.site-footer__col-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, #f5f2ea 88%, var(--color-accent));
}

.site-footer__districts {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.site-footer__link {
  font-size: 0.875rem;
  color: color-mix(in srgb, #f5f2ea 75%, transparent);
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: var(--color-accent);
}

.site-footer__nav-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, #f5f2ea 80%, transparent);
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.site-footer__contact-item:hover {
  color: var(--color-accent);
}

.site-footer__contact-item--static {
  align-items: flex-start;
}

.site-footer__contact-item--static:hover {
  color: color-mix(in srgb, #f5f2ea 80%, transparent);
}

.site-footer__icon {
  width: 1rem;
  height: 1rem;
  color: color-mix(in srgb, #f5f2ea 55%, var(--color-accent));
  flex-shrink: 0;
}

.site-footer__icon--top {
  margin-top: 0.125rem;
}

.site-footer__hours-label {
  display: block;
  color: color-mix(in srgb, #f5f2ea 58%, transparent);
}

.site-footer__bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid color-mix(in srgb, #f5f2ea 14%, transparent);
  padding-top: 1.5rem;
}

.site-footer__rights {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, #f5f2ea 55%, transparent);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.site-footer__legal a {
  font-size: 0.875rem;
  color: color-mix(in srgb, #f5f2ea 62%, transparent);
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: var(--color-accent);
}

@media (min-width: 640px) {
  .site-footer__inner {
    padding-block: 4rem;
    padding-inline: 1.5rem;
  }

  .site-footer__districts {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    padding-inline: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: span 4;
  }

  .site-footer__districts-col {
    grid-column: span 3;
  }

  .site-footer__districts {
    grid-template-columns: 1fr;
  }

  .site-footer__nav-col {
    grid-column: span 2;
  }

  .site-footer__contact-col {
    grid-column: span 3;
  }
}

/* =========================================================
   MOBILE / TABLET ONLY (≤1023px) — do not affect desktop
   ========================================================= */
@media (max-width: 1023.98px) {
  .scandi-section {
    padding: 3.25rem 0;
  }

  .scandi-title {
    font-size: 1.65rem;
  }

  .scandi-desc {
    font-size: 0.9375rem;
  }

  /* Hero: tighter phone frame */
  .hero__frame {
    min-height: 520px;
    height: calc(100dvh - 5.5rem);
  }

  .hero__offer {
    padding: 4.5rem 1rem 0;
  }

  .hero__headline {
    font-size: 1.85rem;
  }

  .hero__sub {
    margin-top: 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    max-width: 20rem;
  }

  .hero__ctas {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 22rem;
    gap: 0.65rem;
  }

  .hero__cta-primary,
  .hero__cta-secondary {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.8125rem;
  }

  .hero__trust {
    padding: 0.85rem 0.75rem;
  }

  .hero__trust-list {
    gap: 0.65rem 0.75rem;
  }

  .hero__trust-label {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero__trust-check {
    height: 1.25rem;
    width: 1.25rem;
  }

  /* Trust: compact 2×2, not a long stack */
  .trust-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-card {
    padding: 1rem 0.9rem;
  }

  .trust-card__icon {
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 0.65rem;
  }

  .trust-card__icon svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .trust-card__title {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .trust-card__desc {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .trust-section__skip {
    top: 0;
    right: 0.25rem;
    height: 2.25rem;
    width: 2.25rem;
  }

  /* Results: designer mobile composition */
  .results .scandi-header {
    text-align: left;
    margin-inline: 0;
    max-width: 22rem;
  }

  .results .scandi-eyebrow-row {
    justify-content: flex-start;
  }

  .results .scandi-title,
  .results .scandi-desc {
    text-align: left;
    margin-inline: 0;
  }

  .results .scandi-divider {
    margin-inline: 0;
  }

  .ba-wrap {
    margin-top: 1.75rem;
  }

  .ba-track {
    aspect-ratio: 4 / 3;
    border-radius: 1.35rem;
    border: none;
    box-shadow:
      0 0 0 1px color-mix(in srgb, #18B1B4 8%, transparent),
      0 22px 48px rgba(24, 177, 180, 0.18);
  }

  .ba-label {
    top: 1rem;
    padding: 0.4rem 0.85rem;
    font-size: 10px;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }

  .ba-label--before {
    left: 1rem;
  }

  .ba-label--after {
    right: 1rem;
  }

  .ba-handle {
    height: 3.35rem;
    width: 3.35rem;
    border-width: 2.5px;
    box-shadow:
      0 12px 28px rgba(24, 177, 180, 0.35),
      0 0 0 6px color-mix(in srgb, #fff 35%, transparent);
    animation: ba-handle-pulse 2.4s ease-in-out infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .ba-handle {
      animation: none;
    }
  }

  .ba-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: color-mix(in srgb, #18B1B4 62%, transparent);
  }

  .ba-hint span {
    font-size: 0.85rem;
    opacity: 0.7;
  }

  .results-gallery {
    margin-top: 1.75rem;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto auto;
    gap: 0.7rem;
  }

  .results-gallery__item {
    border: none;
    border-radius: 1.1rem;
    box-shadow: 0 12px 28px rgba(40, 30, 15, 0.1);
  }

  .results-gallery__item:nth-child(1) {
    grid-column: 1 / -1;
    border-radius: 1.35rem;
  }

  .results-gallery__item:nth-child(1) img {
    aspect-ratio: 16 / 10;
  }

  .results-gallery__item:nth-child(2) {
    grid-row: 2;
  }

  .results-gallery__item:nth-child(3) {
    grid-row: 2;
  }

  .results-gallery__item:nth-child(2) img,
  .results-gallery__item:nth-child(3) img {
    aspect-ratio: 3 / 4;
    min-height: 11.5rem;
  }

  .results-gallery__item:nth-child(4) {
    grid-column: 1 / -1;
    border-radius: 1.25rem 1.25rem 1.5rem 1.5rem;
  }

  .results-gallery__item:nth-child(4) img {
    aspect-ratio: 21 / 10;
  }

  .results-gallery__caption {
    padding: 1.1rem 0.95rem 0.9rem;
    font-size: 0.78rem;
    line-height: 1.3;
    background: linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, #0A5558 55%, transparent) 55%,
      color-mix(in srgb, #0A5558 88%, transparent) 100%
    );
  }

  .results-gallery__item:nth-child(2) .results-gallery__caption,
  .results-gallery__item:nth-child(3) .results-gallery__caption {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 0.75rem 0.75rem;
    font-size: 0.72rem;
  }

  /* Snap rails only for reviews + Oslo services (not packages / process) */
  .testimonials-grid,
  .local-seo-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.9rem;
    margin-top: 2rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    padding-bottom: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar,
  .local-seo-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card,
  .local-seo-card {
    flex: 0 0 min(82vw, 19.25rem);
    width: min(82vw, 19.25rem);
    max-width: none;
    scroll-snap-align: center;
  }

  /* Packages: stacked cards, not a slider */
  .pkg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 2rem;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .pkg-card {
    width: auto;
    max-width: none;
    padding: 1.75rem 1.35rem 1.35rem;
  }

  .pkg-card__name {
    font-size: 1.35rem;
  }

  .pkg-card__leaf {
    height: 5.5rem;
    width: 4.75rem;
    opacity: 0.12;
  }

  .testimonial-card {
    padding: 1.35rem 1.2rem;
  }

  .local-seo-card {
    padding: 1.35rem 1.2rem;
  }

  .local-seo-card__title {
    font-size: 1.15rem;
  }

  .local-seo-card__body {
    font-size: 0.875rem;
  }

  /* Snap dots under rails */
  .snap-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .snap-dots__dot {
    height: 0.4rem;
    width: 0.4rem;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: color-mix(in srgb, #18B1B4 22%, transparent);
    cursor: pointer;
    transition: background-color 0.25s, width 0.25s var(--ease-soft);
  }

  .snap-dots__dot.is-active {
    width: 1.15rem;
    background: #18B1B4;
  }

  .snap-hint {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: color-mix(in srgb, #18B1B4 48%, transparent);
  }

  /* Process: hide busy curves; carousel on phones only below */
  .process__curves {
    opacity: 0.18;
  }

  /* Footer: brand full-width, then 2×2 columns */
  .site-footer__inner {
    padding-block: 2.75rem 2rem;
    padding-inline: 1.25rem;
  }

  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__mission {
    margin-top: 1rem;
    max-width: none;
    font-size: 0.8125rem;
  }

  .site-footer__col-title {
    font-size: 0.6875rem;
  }

  .site-footer__districts {
    margin-top: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .site-footer__nav-list,
  .site-footer__contact {
    margin-top: 0.75rem;
    gap: 0.4rem;
  }

  .site-footer__link,
  .site-footer__contact-item {
    font-size: 0.8125rem;
  }

  .site-footer__bottom {
    margin-top: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-footer__rights,
  .site-footer__legal a {
    font-size: 0.75rem;
  }

  .quote__panel {
    padding: 1.15rem;
  }

  .faq__list {
    border-radius: 1rem;
  }
}

/* Phones: compact type; process stays stacked (no slider) */
@media (max-width: 639.98px) {
  .hero__headline {
    font-size: 1.7rem;
  }

  .scandi-section {
    padding: 2.75rem 0;
  }
}

@media (min-width: 1024px) {
  .snap-dots,
  .snap-hint {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal--title,
  .reveal--eyebrow,
  .reveal--line,
  .reveal--soft,
  .reveal--card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .reveal--eyebrow .scandi-rule,
  .reveal--line {
    transform: none !important;
  }
}

/* ——— Scroll reveal: soft “wipe-clean” ——— */
.reveal {
  --reveal-delay: 0s;
  transition:
    opacity 0.55s var(--ease-soft),
    transform 0.55s var(--ease-soft);
  transition-delay: var(--reveal-delay);
}

/* Hidden state only after intro — avoids a flash during the video */
/* Scroll reveal disabled — keep rules inert so old markup cannot hide content */
html.reveal-on .reveal:not(.is-in),
html.reveal-on .reveal--title:not(.is-in),
html.reveal-on .reveal--eyebrow:not(.is-in),
html.reveal-on .reveal--soft:not(.is-in),
html.reveal-on .reveal--line:not(.is-in),
html.reveal-on .reveal--card:not(.is-in) {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}
