:root {
    --ember: #160A0A;
    --burgundy: #892121;
    --ink: #262C38;
    --ink-soft: #5D6270;
    --gold: #C79E6B;
    --bone: #F6F1EF;
    --rule: #E0D3CE;
    --rule-dark: rgba(255,255,255,.16);
    --white: #FFFFFF;
    --display: "Outfit", "Segoe UI", Arial, sans-serif;
    --body: "Inter Tight", "Segoe UI", Arial, sans-serif;
    --container: 1200px;
    --gutter: clamp(20px, 5vw, 56px);
    --section: clamp(72px, 10vw, 136px);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; color-scheme: light; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0;
    background: var(--bone);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; }
  h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; text-wrap: balance; letter-spacing: -0.02em; }
  h1 { font-size: clamp(42px, 6vw, 82px); line-height: 1.02; }
  h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.06; }
  h3 { font-size: 22px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
  p { margin: 0; }
  .container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
  .label, .eyebrow {
    font-family: var(--body); font-weight: 500;
    font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  }
  .eyebrow { color: var(--burgundy); margin: 0 0 18px; }
  .eyebrow.gold { color: var(--gold); }
  .prose p + p { margin-top: 1em; }
  .prose { max-width: 60ch; }
  .small { font-size: 15px; }

  /* Buttons — two styles only. Pill shape carried over from the current lumox.no */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--display); font-weight: 500; font-size: 16px; line-height: 1;
    padding: 18px 28px; border-radius: 999px; text-decoration: none; white-space: nowrap;
    border: 1.5px solid transparent; cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  .btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .btn-gold { background: var(--gold); color: var(--ember); }
  .btn-gold:hover { background: #D5AF80; }
  .btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
  .btn-ghost:hover { background: rgba(127,127,127,.12); }
  .text-link { color: inherit; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold); text-decoration-thickness: 1.5px; }
  .text-link:hover { text-decoration-color: currentColor; }

  /* Header */
  .nav {
    position: absolute; inset: 0 0 auto 0; z-index: 5;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto;
    padding-top: 26px;
  }
  .brand img { width: 128px; height: auto; }
  .nav-links { display: flex; gap: 34px; }
  .nav-links a { color: rgba(255,255,255,.86); text-decoration: none; font-size: 15.5px; font-weight: 500; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { display: flex; align-items: center; gap: 22px; }
  .nav-cta .phone { color: var(--white); text-decoration: none; font-size: 15px; font-weight: 500; font-variant-numeric: tabular-nums; }
  .nav .btn { padding: 14px 22px; font-size: 15px; }

  /* Hero */
  .hero {
    position: relative; isolation: isolate; overflow: hidden;
    background: var(--ember); color: var(--white);
    min-height: min(800px, 92vh);
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 84% 50%; z-index: -2;
    background: var(--ember);
  }
  .hero-shade {
    position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(20deg, rgba(22,10,10,.95) 0%, rgba(22,10,10,.78) 36%, rgba(22,10,10,.3) 62%, rgba(22,10,10,0) 84%),
      linear-gradient(180deg, rgba(22,10,10,.72) 0%, rgba(22,10,10,0) 28%, rgba(22,10,10,0) 68%, rgba(22,10,10,.6) 100%);
  }
  .hero-inner { padding: 150px 0 52px; max-width: 640px; }
  .hero-inner .eyebrow { color: var(--gold); }
  .hero h1 { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero .lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; max-width: 50ch; margin-top: 26px; color: rgba(255,255,255,.86); animation: rise 1s .08s cubic-bezier(.2,.7,.2,1) both; }
  .hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; animation: rise 1s .16s cubic-bezier(.2,.7,.2,1) both; }
  .hero .actions .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
  .hero .actions .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
  @keyframes rise { from { transform: translateY(14px); } to { transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) { .hero h1, .hero .lead, .hero .actions { animation: none; } }

  .hero-data {
    display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px clamp(36px, 6vw, 88px);
    margin: 0 auto; padding: 22px 0 32px; border-top: 1px solid var(--rule-dark);
  }
  .hero-data > div { display: flex; flex-direction: column; gap: 4px; }
  .hero-data dt { color: rgba(255,255,255,.58); }
  .hero-data dd { margin: 0; font-family: var(--display); font-weight: 500; font-size: 26px; line-height: 1.1; font-variant-numeric: tabular-nums; }
  .hero-data dd small { font-family: var(--body); font-size: 14px; color: rgba(255,255,255,.66); margin-left: 6px; }
  .video-toggle {
    margin-left: auto; align-self: center;
    background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.35);
    font-family: var(--body); font-weight: 500; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
    padding: 10px 16px; border-radius: 999px; cursor: pointer;
  }
  .video-toggle:hover { color: var(--white); border-color: rgba(255,255,255,.7); }

  /* Sections */
  .section { padding: var(--section) 0; }
  .section + .section { padding-top: 0; }
  .split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
  .split.rev { grid-template-columns: 7fr 5fr; }

  /* One image world: every still is pulled toward the hero's burgundy and slightly desaturated */
  .graded { position: relative; overflow: hidden; }
  .graded img { width: 100%; filter: saturate(.78) contrast(1.04); }
  .graded::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(20deg, rgba(137,33,33,.5) 0%, rgba(22,10,10,.22) 100%);
    mix-blend-mode: multiply;
  }
  .portrait { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 42%; }
  .landscape { aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 50%; }
  figure { margin: 0; }
  figcaption { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }

  /* Benefits — six cells, the first is the heading, so the grid is always full */
  .benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(28px, 4vw, 56px); }
  .benefits > * { padding: 28px 0 40px; border-top: 1px solid var(--rule); }
  .benefits .head { border-top-color: var(--ink); }
  .benefits .head p:not(.eyebrow) { margin-top: 18px; max-width: 30ch; color: var(--ink-soft); }
  .benefits h3 { margin-bottom: 12px; }
  .benefits p { font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); max-width: 34ch; }

  /* Proof — full bleed, dark, led by the clinic's own biggest number */
  .proof { background: var(--ember); color: var(--white); overflow: hidden; }
  .proof-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: stretch; }
  .proof-text { padding: var(--section) clamp(28px, 5vw, 80px) var(--section) max(var(--gutter), calc((100vw - var(--container)) / 2)); }
  .proof-text h2 { max-width: 12ch; }
  .proof-note { margin-top: 18px; color: rgba(255,255,255,.62); max-width: 40ch; }
  .stat-lead { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 22px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--rule-dark); }
  .stat-lead .num { font-family: var(--display); font-weight: 600; font-size: clamp(88px, 12vw, 168px); line-height: .9; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; color: var(--gold); white-space: nowrap; }
  .stat-lead .num .unit { font-size: .4em; letter-spacing: 0; margin-left: .12em; }
  .stat-lead .what { max-width: 18ch; line-height: 1.3; font-size: 18px; color: rgba(255,255,255,.86); }
  .stat-list { list-style: none; margin: 26px 0 0; padding: 0; }
  .stat-list li { display: grid; grid-template-columns: 200px 1fr; align-items: baseline; gap: 18px; padding: 16px 0; border-top: 1px solid var(--rule-dark); }
  .stat-list .num { font-family: var(--display); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
  .stat-list span:last-child { color: rgba(255,255,255,.8); font-size: 17px; }
  .proof-text .text-link { display: inline-block; margin-top: 30px; font-size: 15px; }
  .proof-media { position: relative; min-height: 420px; }
  .proof-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 74% 24%; }

  /* Use areas — two real groups, not nine loose bullets */
  .areas { display: grid; grid-template-columns: 1fr 1fr; gap: 34px clamp(28px, 4vw, 56px); margin-top: 36px; }
  .areas h3 { color: var(--burgundy); margin-bottom: 10px; }
  .areas ul { list-style: none; margin: 0; padding: 0; }
  .areas li { padding: 11px 0; border-top: 1px solid var(--rule); font-size: 17px; line-height: 1.35; }
  .areas .course { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--ink); color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }

  /* Testimonials — a navy band; Norwegian guillemets set in the brand gold */
  .quotes-band { background: var(--ink); color: var(--white); padding: var(--section) 0; }
  .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); margin-top: 44px; }
  .quote { margin: 0; border-top: 1px solid rgba(255,255,255,.22); padding-top: 28px; }
  .quote p { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.1vw, 28px); line-height: 1.3; letter-spacing: -0.01em; }
  .quote p::before { content: "«"; color: var(--gold); margin-right: .06em; }
  .quote p::after { content: "»"; color: var(--gold); margin-left: .06em; }
  .quote footer { margin-top: 18px; font-size: 15px; color: rgba(255,255,255,.62); }

  /* Prices — the one burgundy surface on the page */
  .offers {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px);
    margin-top: 44px; padding: clamp(28px, 4vw, 52px);
    background: var(--burgundy); color: var(--white);
  }
  .offer { border-top: 1px solid rgba(255,255,255,.28); padding-top: 24px; }
  .offer h3 { font-size: 20px; }
  .offer .sub { color: rgba(255,255,255,.72); font-size: 15.5px; margin-top: 4px; }
  .offer .price { display: flex; align-items: baseline; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
  .offer .now { font-family: var(--display); font-weight: 600; font-size: clamp(48px, 5vw, 68px); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
  .offer .was { font-size: 15px; color: rgba(255,255,255,.7); text-decoration: line-through; text-decoration-color: var(--gold); white-space: nowrap; }
  .offer .vat { color: rgba(255,255,255,.7); }
  .offer .save { display: inline-block; margin-top: 16px; color: var(--gold); }
  .offer .per { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 15px; }
  .offer-note { margin-top: 40px; max-width: 60ch; color: var(--ink-soft); }
  .offer-actions { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; margin-top: 28px; }
  .offer-actions .phone { text-decoration: none; font-weight: 500; font-variant-numeric: tabular-nums; }
  .offer-actions .phone:hover { text-decoration: underline; text-underline-offset: 4px; }

  /* Closing — mirrors the hero: same ground, the bed fully framed on the right */
  .closing { position: relative; isolation: isolate; overflow: hidden; background: var(--ember); color: var(--white); min-height: 560px; display: flex; align-items: center; }
  .closing-img {
    position: absolute; top: 0; bottom: 0; right: 0; width: 56%; height: 100%;
    object-fit: contain; object-position: right center; z-index: -2;
    mix-blend-mode: screen; opacity: .95;
  }
  .closing-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(22,10,10,.9) 0%, rgba(22,10,10,.7) 42%, rgba(22,10,10,0) 70%); }
  .closing .container { padding: var(--section) 0; }
  .closing-inner { max-width: 600px; }
  .closing p { margin-top: 20px; color: rgba(255,255,255,.82); max-width: 44ch; }
  .closing .actions { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; margin-top: 36px; }
  .closing .contact { font-size: 15.5px; font-weight: 500; color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,.35); }
  .closing .contact:hover { color: var(--white); text-decoration-color: var(--white); }

  /* Footer — navy, the brand's second surface */
  .footer { background: var(--ink); color: rgba(255,255,255,.74); padding: 56px 0 40px; font-size: 15px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; align-items: start; }
  .footer .brand img { width: 120px; }
  .footer .tag { margin-top: 18px; max-width: 32ch; line-height: 1.5; }
  .footer h4 { margin: 0 0 14px; color: var(--gold); }
  .footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .footer a { color: rgba(255,255,255,.86); text-decoration: none; }
  .footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
  .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; color: rgba(255,255,255,.55); }

  @media (max-width: 1000px) {
    .nav-links { display: none; }
    .split, .split.rev { grid-template-columns: 1fr; }
    .split.rev .graded { order: -1; }
    .benefits { grid-template-columns: 1fr 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-text { padding-inline: var(--gutter); }
    .proof-media { min-height: 340px; max-height: 460px; }
    .closing-img { width: 70%; opacity: .55; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    body { font-size: 17px; }
    .nav-cta .phone { display: none; }
    .brand img { width: 108px; }
    .hero-inner { padding-top: 120px; }
    .hero-data { gap: 18px 28px; }
    .benefits, .areas, .quotes, .offers, .footer-grid { grid-template-columns: 1fr; }
    .benefits > * { padding-bottom: 28px; }
    .stat-list li { grid-template-columns: 1fr; gap: 4px; }
    .portrait { aspect-ratio: 1 / 1.1; }
    .closing { min-height: 0; }
    .closing-img { width: 100%; opacity: .4; }
  }
