/* ==========================================================================
   Stenshagen Elevate AS — styles.css
   Design system derived from Brand Identity Manual v3.0 (June 2026)
   Pure CSS, no build step. Mobile-first.
   --------------------------------------------------------------------------
   Fonts:   Cormorant Garamond (headings) · Source Sans 3 (body)
   Colours: Alpine Cream #F5F0E8 · Summit Gold #C5A059 · Deep Fjord #1B2A4A
            Elevation Black #1A1A1A · White #FFFFFF
   Rule:    Summit Gold only on large text, accents and buttons — never body.
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens   */
:root {
  /* Brand palette */
  --alpine-cream:    #F5F0E8;
  --summit-gold:     #C5A059;
  --soft-gold:       #E1CFA3;
  --deep-fjord:      #1B2A4A;
  --deep-fjord-dark: #142038;
  --elevation-black: #1A1A1A;
  --nordic-charcoal: #2D2D2D;
  --stone-grey:      #8C8279;
  --mountain-slate:  #4A5568;
  --white:           #FFFFFF;
  --border-light:    #EAE6DD;
  --card-border:     #EEEEEE;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --max-width:     1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --section-pad:   clamp(3.5rem, 8vw, 7.5rem);   /* 56px → 120px */
  --radius-btn:    4px;
  --radius-card:   8px;

  /* Effects */
  --shadow-card:  0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 12px 28px rgba(26, 26, 26, 0.10);
  --shadow-nav:   0 2px 12px rgba(26, 26, 26, 0.06);
  --transition:   220ms ease;
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;            /* 17px base */
  line-height: 1.7;
  color: var(--elevation-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg { display: block; max-width: 100%; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--summit-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------------------------------------------------------------- Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  color: var(--elevation-black);
  letter-spacing: 0.01em;
}

h2 { font-weight: 600; }

p { max-width: 68ch; }

strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-grey);
}

/* Gold accent rule — the BIM "Summit Gold accent line" */
.accent-line {
  width: 80px;
  height: 3px;
  background: var(--summit-gold);
  border: 0;
  margin: 0;
}
.accent-line--center { margin-inline: auto; }

/* Inline text links — dark text, gold underline (keeps gold off body text) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  color: var(--deep-fjord);
  border-bottom: 1px solid var(--summit-gold);
  padding-bottom: 2px;
  transition: gap var(--transition), border-color var(--transition);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--transition); }
.link-arrow:hover { gap: 0.7em; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------- Layout    */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad); }

.section--cream { background: var(--alpine-cream); }
.section--white { background: var(--white); }
.section--fjord { background: var(--deep-fjord); color: var(--alpine-cream); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .accent-line { margin-bottom: 1.5rem; }
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);   /* 32 → 44px */
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.125rem;
  color: var(--mountain-slate);
}
.section-head--center p { margin-inline: auto; }

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--deep-fjord);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-btn);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------- Buttons   */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  text-align: center;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--summit-gold);
  border-color: var(--summit-gold);
  color: var(--elevation-black);
}
.btn--primary:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
}

.btn--secondary {
  background: transparent;
  border-color: var(--summit-gold);
  color: var(--elevation-black);
}
.btn--secondary:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
}

/* Variant for dark backgrounds (Deep Fjord) */
.btn--on-dark { color: var(--white); }
.btn--on-dark.btn--secondary:hover { color: var(--elevation-black); }

/* ---------------------------------------------------------------- Header    */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: var(--soft-gold);
  box-shadow: var(--shadow-nav);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--elevation-black);
  white-space: nowrap;
}
.brand:hover { color: var(--nordic-charcoal); }
.brand-mark { height: 38px; width: auto; flex-shrink: 0; display: block; }
.brand-mark--founder { display: block; height: 52px; margin-bottom: 1.25rem; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-right: -12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--elevation-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu — mobile-first (panel) */
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--soft-gold);
  box-shadow: var(--shadow-nav);
  padding: 0.75rem var(--container-pad) 1.5rem;
}
.nav-menu.is-open { display: flex; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 48px;
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--elevation-black);
}
.nav-link:hover { color: var(--summit-gold); }

.nav-dropdown-toggle .chevron { transition: transform var(--transition); }

/* Dropdown — shown statically inside the mobile panel */
.nav-dropdown {
  display: flex;
  flex-direction: column;
  padding-left: 0.9rem;
  margin: 0 0 0.5rem;
  border-left: 2px solid var(--soft-gold);
}
.nav-dropdown a {
  display: block;
  min-height: 44px;
  padding: 0.5rem 0;
  font-weight: 400;
  color: var(--mountain-slate);
}
.nav-dropdown a:hover { color: var(--summit-gold); }

.nav-cta {
  margin-top: 0.5rem;
  justify-content: center;
}

/* ---- Desktop navigation ---- */
@media (min-width: 880px) {
  .nav-toggle { display: none; }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-link {
    width: auto;
    min-height: auto;
    padding: 0.5rem 0.9rem;
    font-size: 0.9375rem;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 260px;
    padding: 0.5rem;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-top: 3px solid var(--summit-gold);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .nav-dropdown a {
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-btn);
  }
  .nav-dropdown a:hover { background: var(--alpine-cream); color: var(--elevation-black); }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown,
  .has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .has-dropdown:hover .chevron,
  .has-dropdown:focus-within .chevron { transform: rotate(180deg); }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.55rem 1.4rem;
    min-height: 44px;
    border: 2px solid var(--summit-gold);
    border-radius: var(--radius-btn);
  }
  .nav-cta:hover { background: var(--soft-gold); color: var(--elevation-black); }
}

/* ---------------------------------------------------------------- Hero      */
.hero {
  background: var(--alpine-cream);
  padding-block: clamp(4rem, 11vw, 8.5rem);
  text-align: center;
}
.hero__inner {
  max-width: 820px;
  margin-inline: auto;
}
.hero .eyebrow { display: block; margin-bottom: 1.25rem; }
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);   /* 44 → 68px */
  line-height: 1.05;
  margin-bottom: 1.75rem;
}
.hero .accent-line { margin: 0 auto 1.75rem; }
.hero__sub {
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.125rem, 2.2vw, 1.3125rem);  /* 18 → 21px */
  line-height: 1.6;
  color: var(--mountain-slate);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------------------------------------------------------------- Trust bar */
.trust {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.trust__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--alpine-cream);
  color: var(--summit-gold);
}
.trust__icon svg { width: 26px; height: 26px; }
.trust__lead {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.15;
  color: var(--deep-fjord);
}
.trust__lead .num { color: var(--summit-gold); }
.trust__meta {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-top: 0.2rem;
}

@media (min-width: 720px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
  .trust__item + .trust__item { border-left: 1px solid var(--border-light); padding-left: 1.5rem; }
}

/* ---------------------------------------------------------------- Pillars   */
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .pillars__grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--summit-gold);
}
.pillar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.pillar-card__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--summit-gold);
  line-height: 1;
}
.pillar-card__icon { color: var(--deep-fjord); }
.pillar-card__icon svg { width: 30px; height: 30px; }
.pillar-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.975rem;
  color: var(--mountain-slate);
  margin-bottom: 1.5rem;
}
.pillar-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* ---------------------------------------------------------------- About     */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 820px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; }
}
.about__body h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.about__body .accent-line { margin-bottom: 1.5rem; }
.about__body p {
  font-size: 1.0625rem;
  color: var(--nordic-charcoal);
  margin-bottom: 1.25rem;
}

/* ---------------------------------------------------------------- Image placeholder */
.img-placeholder {
  position: relative;
  aspect-ratio: var(--ratio, 1);
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(140, 130, 121, 0.06) 0,
      rgba(140, 130, 121, 0.06) 12px,
      transparent 12px,
      transparent 24px),
    var(--alpine-cream);
  border: 1px dashed var(--stone-grey);
  border-radius: var(--radius-card);
  color: var(--stone-grey);
  text-align: center;
}
.img-placeholder__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 1rem;
}
.img-placeholder__label svg { width: 32px; height: 32px; opacity: 0.7; }
.img-placeholder__label strong { color: var(--mountain-slate); font-weight: 600; }

/* ---------------------------------------------------------------- Contact CTA */
.cta-band {
  background: var(--deep-fjord);
  color: var(--alpine-cream);
  text-align: center;
}
.cta-band__inner { max-width: 720px; margin-inline: auto; }
.cta-band .accent-line { margin: 0 auto 1.75rem; }
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.25rem;
}
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 2.25rem;
  font-size: 1.1875rem;
  color: rgba(245, 240, 232, 0.85);
}

/* ---------------------------------------------------------------- Footer    */
.site-footer {
  background: var(--deep-fjord-dark);
  color: rgba(245, 240, 232, 0.72);
  border-top: 1px solid var(--summit-gold);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
}
@media (min-width: 680px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__brand-name .brand-mark { height: 28px; }
.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--soft-gold);
  margin-bottom: 1.5rem;
}
.footer__meta { font-size: 0.9375rem; line-height: 1.8; }
.footer__meta a:hover { color: var(--white); }

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.975rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.25);
  border-radius: 50%;
  color: var(--alpine-cream);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--summit-gold);
  border-color: var(--summit-gold);
  color: var(--elevation-black);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a:hover { color: var(--white); }

/* ==========================================================================
   INNER-PAGE COMPONENTS  (om, pilar-sider, kontakt)
   ========================================================================== */

/* ---- Active nav state ---- */
.nav-link[aria-current="page"] { color: var(--summit-gold); }
.nav-dropdown a[aria-current="page"] { color: var(--summit-gold); font-weight: 600; }
@media (min-width: 880px) {
  .nav-link[aria-current="page"] { position: relative; }
  .nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
    height: 2px;
    background: var(--summit-gold);
  }
  .nav-cta[aria-current="page"]::after { display: none; }
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--alpine-cream);
  padding-block: clamp(3rem, 8vw, 6rem);
}
.page-hero--dark { background: var(--deep-fjord); color: var(--alpine-cream); }
.page-hero__inner { max-width: 820px; }
.page-hero .eyebrow { display: block; margin-bottom: 1.1rem; }
.page-hero--dark .eyebrow { color: var(--soft-gold); }
.page-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.page-hero--dark h1 { color: var(--white); }
.page-hero .accent-line { margin-bottom: 1.5rem; }
.page-hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--mountain-slate);
  max-width: 62ch;
}
.page-hero--dark .page-hero__sub { color: rgba(245, 240, 232, 0.85); }

/* ---- Prose ---- */
.prose p { font-size: 1.0625rem; color: var(--nordic-charcoal); margin-bottom: 1.25rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead { font-size: 1.25rem; color: var(--mountain-slate); line-height: 1.6; }

/* ---- Generic split (text + media) ---- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) {
  .split--media-left { grid-template-columns: 0.85fr 1.15fr; }
  .split--media-right { grid-template-columns: 1.15fr 0.85fr; }
  .split--media-right .split__media { order: 2; }
}
.split__body h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.split__body .accent-line { margin-bottom: 1.5rem; }

/* ---- Values ---- */
.values { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--summit-gold);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.value-card__icon { color: var(--summit-gold); margin-bottom: 1rem; }
.value-card__icon svg { width: 32px; height: 32px; }
.value-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.975rem; color: var(--mountain-slate); }

/* ---- Stats band ---- */
.stats { display: grid; grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
@media (min-width: 680px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--summit-gold);
  line-height: 1;
}
.stat__label { margin-top: 0.6rem; font-size: 1.0625rem; color: var(--nordic-charcoal); }
.section--fjord .stat__label { color: rgba(245, 240, 232, 0.82); }
.stats__note { margin-top: 2.5rem; text-align: center; font-size: 0.95rem; color: var(--stone-grey); margin-inline: auto; max-width: 72ch; }
.section--fjord .stats__note { color: rgba(245, 240, 232, 0.6); }

/* ---- Quote (single, hero) ---- */
.quote { max-width: 860px; margin-inline: auto; text-align: center; }
.quote__mark { font-family: var(--font-heading); font-weight: 700; font-size: 4.5rem; line-height: 0.6; color: var(--summit-gold); }
.quote blockquote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  line-height: 1.4;
  color: var(--deep-fjord);
  margin: 1.25rem 0 1.75rem;
}
.section--fjord .quote blockquote { color: var(--alpine-cream); }
.quote__name { font-family: var(--font-body); font-weight: 700; font-size: 1.0625rem; color: var(--elevation-black); }
.section--fjord .quote__name { color: var(--white); }
.quote__role { font-size: 0.95rem; color: var(--stone-grey); margin-top: 0.2rem; }

/* ---- Quote cards (multiple) ---- */
.quote-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 880px; margin-inline: auto; }
.quote-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--summit-gold);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.quote-card blockquote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.1875rem, 2.4vw, 1.4375rem);
  line-height: 1.5;
  color: var(--deep-fjord);
  margin-bottom: 1.5rem;
}
.quote-card__name { font-weight: 700; font-size: 1rem; color: var(--elevation-black); }
.quote-card__role { font-size: 0.9rem; color: var(--stone-grey); margin-top: 0.2rem; }

/* ---- Check list (outcomes / credentials) ---- */
.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1.0625rem; color: var(--nordic-charcoal); }
.check-list svg { color: var(--summit-gold); flex-shrink: 0; width: 22px; height: 22px; margin-top: 3px; }

/* ---- Callout ---- */
.callout {
  border-left: 4px solid var(--summit-gold);
  background: var(--alpine-cream);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.35;
  color: var(--deep-fjord);
}

/* ---- Offer / pricing cards ---- */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 800px) { .offer-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .offer-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.offer-card--featured {
  border: 1px solid var(--soft-gold);
  border-top: 4px solid var(--summit-gold);
  background: var(--alpine-cream);
}
.offer-card__tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--elevation-black);
  background: var(--soft-gold);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.offer-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.625rem; line-height: 1.15; margin-bottom: 0.4rem; }
.offer-card__meta { font-size: 0.875rem; letter-spacing: 0.04em; color: var(--stone-grey); margin-bottom: 1.5rem; }
.offer-card__price { font-family: var(--font-heading); font-weight: 700; font-size: 1.875rem; color: var(--summit-gold); line-height: 1.1; }
.offer-card__price-note { font-size: 0.85rem; color: var(--stone-grey); margin-bottom: 1.5rem; }
.offer-card__price + .offer-card__price-note { margin-top: 0.25rem; }
.offer-card .check-list { margin-bottom: 1.75rem; }
.offer-card .check-list li { font-size: 0.975rem; }
.offer-card .btn { margin-top: auto; }
.offer-card__alt { display: block; text-align: center; margin-top: 0.85rem; font-size: 0.9rem; color: var(--mountain-slate); }
.offer-card__alt a { border-bottom: 1px solid var(--summit-gold); padding-bottom: 1px; }
.offer-card__alt a:hover { color: var(--elevation-black); }

/* ---- FAQ (native details/summary) ---- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__item:first-child { border-top: 1px solid var(--border-light); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.1875rem, 2.4vw, 1.375rem);
  color: var(--deep-fjord);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--summit-gold); }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--summit-gold); transition: transform var(--transition); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 0 1.5rem; color: var(--nordic-charcoal); line-height: 1.7; }
.faq__answer p { max-width: 74ch; }

/* ---- Contact form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.3fr 1fr; } }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; color: var(--elevation-black); }
.field .req { color: var(--mountain-slate); }
.field input,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--elevation-black);
  border: 1px solid var(--stone-grey);
  border-radius: var(--radius-btn);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #A8A097; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--summit-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}
.form__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form .btn { align-self: flex-start; }

.contact-aside h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.contact-aside .accent-line { margin-bottom: 1.25rem; }
.contact-aside p { color: var(--nordic-charcoal); margin-bottom: 1.25rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 1.0625rem; }
.contact-detail svg { width: 22px; height: 22px; color: var(--summit-gold); flex-shrink: 0; }

/* ---- CTA band, light variant ---- */
.cta-band--light { background: var(--alpine-cream); color: var(--elevation-black); }
.cta-band--light h2 { color: var(--elevation-black); }
.cta-band--light p { color: var(--mountain-slate); }

/* ---- Misc ---- */
.note { font-size: 0.85rem; color: var(--stone-grey); font-style: italic; }
.center { text-align: center; }

/* ---------------------------------------------------------------- Reveal    */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
html.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
html.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
