
  :root{
    /* Site tokens — identical to main site */
    --bg:        #f5f1ec;
    --ink:       #1f1e1c;
    --ink-soft:  #2b2a28;
    --cream:     #efe9e1;
    --line:      rgba(245, 241, 236, 0.22);
    --line-ink:  rgba(31, 30, 28, 0.14);
    --serif:     "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif; /* unified to Outfit */
    --sans:      "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;

    /* Emerald accents — used sparingly */
    --forest:        #0D1F14;
    --forest-soft:   #142a1c;
    --forest-line:   rgba(239, 233, 225, 0.14);
    --emerald:       #00C853;
    --emerald-soft:  rgba(0, 200, 83, 0.14);
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html,body{ margin:0; padding:0; }
  body{
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* ---------- Hero shell (same shape as main site) ---------- */
  .hero{
    position: relative;
    height: 78vh;
    min-height: 560px;
    width: 100%;
    overflow: hidden;
    color: var(--cream);
    background: var(--forest);
    isolation: isolate;
  }

  /* Full-bleed photo background */
  .hero__media,
  .hero__media img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  /* Darkening + green-tinted wash for legibility over the photo */
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse at 75% 30%, rgba(0,200,83,0.10), transparent 60%),
      linear-gradient(180deg, rgba(8,12,9,0.55) 0%, rgba(8,12,9,0.30) 40%, rgba(8,12,9,0.78) 100%);
    z-index:-1;
    pointer-events:none;
  }

  /* Subtle, almost-invisible laser hint — one beam, slow, low opacity */
  .hero__beams{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero__beam{
    position: absolute;
    left: -30%; right: -30%;
    height: 1px;
    transform-origin: center;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0,200,83,0) 15%,
      rgba(0,200,83,0.28) 50%,
      rgba(0,200,83,0) 85%,
      transparent 100%
    );
    filter: blur(0.6px);
    opacity: 0;
    animation: beam-sweep 14s linear infinite;
  }
  .hero__beam:nth-child(1){ top: 38%; transform: rotate(-18deg); animation-delay: 0s; }
  .hero__beam:nth-child(2){ top: 62%; transform: rotate(-18deg); animation-delay: 7s; animation-duration: 16s; }
  @keyframes beam-sweep{
    0%   { opacity: 0; transform: rotate(-18deg) translateX(-40vw); }
    20%  { opacity: 0.55; }
    50%  { opacity: 0.7; }
    80%  { opacity: 0.5; }
    100% { opacity: 0; transform: rotate(-18deg) translateX(40vw); }
  }
  @media (prefers-reduced-motion: reduce){
    .hero__beam{ animation: none; opacity: 0; }
  }

  /* ---------- Navbar (identical to main site) ---------- */
  .nav{
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 28px 48px;
    color: var(--cream);
  }
  .nav__brand{
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  .nav__brand img{
    display: block;
    height: 66px;
    width: auto;
    object-fit: contain;
  }

  .nav__links{
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: center;
  }
  .nav__links a{
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.92;
    padding: 6px 2px;
    position: relative;
    transition: opacity .2s ease;
  }
  .nav__links a::after{
    content:"";
    position:absolute;
    left:2px; right:2px; bottom: 2px;
    height:1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .nav__links a:hover{ opacity:1; }
  .nav__links a:hover::after{ transform: scaleX(1); }

  .nav__cta{
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px 14px;
    border-radius: 10px;
    background: var(--cream);
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 6px 18px rgba(0,0,0,0.22);
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .nav__cta:hover{ background: #fff; transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 24px rgba(0,0,0,0.28); }
  .nav__cta .arrow{ display:inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .nav__cta:hover .arrow{ transform: translateX(3px); }

  /* ---------- Hero copy (same scale, weight, layout as main site) ---------- */
  .hero__content{
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    z-index: 2;
  }
  .hero__text{ max-width: 640px; }

  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 22px;
    font-weight: 400;
  }
  .eyebrow .dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(0,200,83,0.18);
  }

  .headline{
    font-family: var(--sans);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
    text-wrap: balance;
    color: var(--cream);
  }
  .headline em{
    font-style: normal;
    font-weight: 600;
    color: var(--emerald);
  }

  .subhead{
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.55;
    max-width: 460px;
    opacity: 0.92;
    margin: 0 0 32px;
    text-wrap: pretty;
  }

  .ctas{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
  }
  .btn .arrow{ display:inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .btn:hover .arrow{ transform: translateX(3px); }
  .btn--primary{
    background: var(--ink);
    color: var(--cream);
    border-color: rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 16px rgba(31,30,28,0.28);
  }
  .btn--primary:hover{ background: #000; transform: translateY(-1px); }
  .btn--ghost{
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 12px rgba(31,30,28,0.10);
  }
  .btn--ghost:hover{ background: var(--ink); color: #fff; transform: translateY(-1px); }

  /* ---------- Trust badge (matches main, with emerald tint) ---------- */
  .trust{
    align-self: end;
    text-align: right;
    color: var(--cream);
    max-width: 220px;
  }
  .trust__row{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 9px;
    border: 1px solid rgba(0, 200, 83, 0.45);
    border-radius: 8px;
    background: rgba(0, 200, 83, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #d6f5e1;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .trust__row svg{ display:block; }
  .trust__sub{
    margin-top: 10px;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.78;
  }

  /* ---------- Meta strip ---------- */
  .meta{
    position: absolute;
    left: 48px;
    right: 48px;
    top: 92px;
    display: flex;
    justify-content: space-between;
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
  }

  /* ---------- Generic section (warm, matches main site rhythm) ---------- */
  .section{
    padding: 120px 48px 140px;
    background: var(--bg);
    border-top: 1px solid var(--line-ink);
  }
  .section-inner{ max-width: 1320px; margin: 0 auto; }
  .sect-head{
    display: grid;
    gap: 18px;
    margin: 0 0 56px;
    max-width: 760px;
  }
  .sect-eyebrow{
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 14px;
  }
  .sect-eyebrow::before{
    content:"";
    width: 28px; height: 1px;
    background: currentColor;
    opacity: 0.55;
  }
  .sect-headline{
    margin: 0;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }
  /* Single emerald emphasis allowed inside section headlines */
  .sect-headline em{
    font-style: normal;
    font-weight: 600;
    color: var(--emerald);
  }

  /* ---------- How it works — 3 steps in warm cards ---------- */
  .steps-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .step{
    position: relative;
    background: #fff;
    border: 1px solid var(--line-ink);
    border-radius: 4px;
    padding: 36px 28px 32px;
  }
  .step__num{
    position: absolute;
    top: 24px; right: 28px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    opacity: 0.55;
  }
  .step__icon{
    width: 44px; height: 44px;
    border-radius: 999px;
    display: grid; place-items: center;
    color: var(--emerald);
    background: var(--emerald-soft);
    margin: 0 0 26px;
  }
  .step__icon svg{ display:block; }
  .step__title{
    margin: 0 0 12px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-wrap: balance;
  }
  .step__desc{
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    text-wrap: pretty;
  }

  /* ---------- Stats — forest green accent moment ---------- */
  .section--forest{
    background: var(--forest);
    color: var(--cream);
    border-top: 1px solid var(--line-ink);
  }
  .section--forest .sect-eyebrow{ color: var(--cream); opacity: 0.7; }
  .section--forest .sect-headline{ color: var(--cream); }
  .section--forest .sect-headline em{ color: var(--emerald); }

  /* ---------- CTA bar ---------- */
  .cta-bar{
    background: #122018;
    border-top: 1px solid rgba(239,233,225,0.08);
    border-bottom: 1px solid rgba(239,233,225,0.08);
    padding: 0 48px;
    height: 76px;
  }
  .cta-bar__inner{
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .cta-bar__question{
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    color: var(--cream);
    white-space: nowrap;
  }
  .cta-bar__btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--emerald);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
  }
  .cta-bar__btn:hover{ background: #1db863; transform: translateY(-1px); }
  .cta-bar__arrow{ display:inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .cta-bar__btn:hover .cta-bar__arrow{ transform: translateX(3px); }
  @media(max-width:900px){
    .cta-bar{ padding-left: 24px; padding-right: 24px; }
  }
  @media(max-width:600px){
    .cta-bar{ height: auto; padding: 24px; }
    .cta-bar__inner{ flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .cta-bar__question{ white-space: normal; }
  }

  /* FAQ heading wrapper — semantic only, no visual change */
  .faq-q-heading{ margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; }

  /* ---------- Explain section (Hur fungerar Emerald Laser?) ---------- */
  .el-explain-inner{
    max-width: 1320px;
    margin: 0 auto;
  }
  .el-explain__header{
    margin-bottom: 56px;
  }
  .el-explain__header .sect-headline{
    text-wrap: pretty;
    max-width: none;
  }
  .el-explain__cols{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .el-explain__heading{
    margin: 0 0 22px;
    font-family: var(--sans);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.15;
  }
  .el-explain__ingress{
    font-size: 17px;
    line-height: 1.7;
    color: rgba(239,233,225,0.78);
    margin: 0 0 40px;
    max-width: 50ch;
    text-wrap: pretty;
  }
  .el-explain__block{ margin: 0 0 28px; }
  .el-explain__block:last-child{ margin-bottom: 0; }
  .el-explain__block-title{
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--emerald);
    margin: 0 0 8px;
  }
  .el-explain__block-body{
    font-size: 15.5px;
    line-height: 1.72;
    color: rgba(239,233,225,0.68);
    margin: 0;
    text-wrap: pretty;
  }
  .el-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .el-card{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg,
      #1a3322 0 14px,
      #152b1c 14px 28px
    );
    box-shadow: 0 4px 28px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.18);
  }
  .el-card--tall{ aspect-ratio: 3/4; grid-row: span 2; }
  .el-card--sq{ aspect-ratio: 4/3; }
  .el-card::after{
    content: attr(data-label);
    position: absolute;
    left: 12px; bottom: 12px;
    padding: 6px 11px;
    background: rgba(13,31,20,0.82);
    border: 1px solid rgba(239,233,225,0.14);
    border-radius: 4px;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 0.02em;
    color: rgba(239,233,225,0.65);
  }
  @media(max-width:900px){
    .el-explain__cols{ grid-template-columns: 1fr; gap: 48px; }
    .el-cards{ grid-template-columns: 1fr 1fr; }
  }

  .stats-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 0 48px;
  }
  .stat{
    padding: 40px 28px 36px;
    border: 1px solid var(--forest-line);
    border-radius: 4px;
    background: rgba(239, 233, 225, 0.03);
  }
  .stat__num{
    margin: 0 0 14px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--cream);
  }
  .stat__num small{
    font-size: 26px;
    letter-spacing: -0.02em;
    margin-left: 2px;
    color: var(--emerald);
  }
  .stat__label{
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.78;
    text-wrap: pretty;
  }
  .stat__label strong{
    color: var(--cream);
    opacity: 1;
    font-weight: 500;
  }

  .study-link{
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 12px 0 6px;
    border-bottom: 1px solid var(--cream);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .study-link .arrow{ transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .study-link:hover .arrow{ transform: translateX(4px); }

  /* ---------- Before / After — warm, like reviews on main site ---------- */
  .ba-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
  }
  .ba-head .sect-head{ margin-bottom: 0; max-width: 560px; }
  .ba-disclaimer{
    margin: 0;
    max-width: 320px;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    padding: 12px 14px;
    border: 1px solid var(--line-ink);
    border-radius: 4px;
    background: #fff;
  }
  .ba-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .ba{
    position: relative;
    aspect-ratio: 2/1;
    border: 1px solid var(--line-ink);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ba__pane{
    position: relative;
    background:
      repeating-linear-gradient(
        135deg,
        #d8c8b4 0 14px,
        #cdbca5 14px 28px
      );
    display: grid; place-items: center;
    color: var(--ink-soft);
  }
  .ba__pane + .ba__pane{
    border-left: 1px solid var(--line-ink);
  }
  .ba__tag{
    position: absolute;
    top: 14px; left: 14px;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 9px 6px;
    background: rgba(245, 241, 236, 0.92);
    border: 1px solid var(--line-ink);
    color: var(--ink);
    border-radius: 3px;
  }
  .ba__placeholder{
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
    padding: 8px 12px;
    background: rgba(245, 241, 236, 0.85);
    border: 1px solid var(--line-ink);
    border-radius: 4px;
  }

  /* ---------- FAQ (identical to main site) ---------- */
  .faq-inner{ max-width: 920px; margin: 0 auto; }
  .faq-list{
    border-top: 1px solid var(--line-ink);
  }
  .faq-item{
    border-bottom: 1px solid var(--line-ink);
  }
  .faq-q{
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 26px 8px 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color .2s ease;
  }
  .faq-q:hover{ color: #000; }
  .faq-q .faq-icon{
    flex-shrink: 0;
    width: 22px; height: 22px;
    position: relative;
    display: inline-block;
  }
  .faq-q .faq-icon::before,
  .faq-q .faq-icon::after{
    content:"";
    position: absolute;
    background: var(--ink);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .faq-q .faq-icon::before{
    left: 0; right: 0; top: 50%;
    height: 1.5px;
    transform: translateY(-50%);
  }
  .faq-q .faq-icon::after{
    top: 0; bottom: 0; left: 50%;
    width: 1.5px;
    transform: translateX(-50%);
  }
  .faq-item.is-open .faq-q .faq-icon::after{
    transform: translateX(-50%) scaleY(0);
  }
  .faq-a-wrap{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
  }
  .faq-item.is-open .faq-a-wrap{
    grid-template-rows: 1fr;
  }
  .faq-a-inner{
    overflow: hidden;
    min-height: 0;
  }
  .faq-a{
    margin: 0;
    padding: 0 56px 30px 0;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    text-wrap: pretty;
    max-width: 720px;
  }

  /* ---------- Booking (identical to main site) ---------- */
  .boka-section{
    padding: 120px 48px 140px;
    background: #F5F0E8;
    border-top: 2px solid #cdbca5;
  }
  .boka-inner{ max-width: 1280px; margin: 0 auto; }
  .boka-head{
    display: grid;
    gap: 18px;
    margin: 0 0 64px;
    max-width: 760px;
  }
  .boka-eyebrow{
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 14px;
  }
  .boka-eyebrow::before{
    content:"";
    width: 28px; height: 1px;
    background: currentColor;
    opacity: 0.55;
  }
  .boka-headline{
    margin: 0;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }
  .boka-sub{
    margin: 6px 0 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    opacity: 0.78;
    text-wrap: pretty;
    max-width: 620px;
  }
  .boka-frame{
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  }
  .boka-frame iframe{
    display: block;
    width: 100%;
    height: calc(700px + 130px);
    margin-top: -130px;
    border: 0;
  }
  .boka-poweredby{
    margin: 14px 2px 0;
    font-size: 12px;
    letter-spacing: 0.01em;
    color: #9a9690;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
  .boka-poweredby img{
    height: 14px;
    width: auto;
    display: block;
    opacity: 0.7;
  }

  /* ---------- Footer (identical to main site) ---------- */
  .footer{
    background: var(--ink);
    color: var(--cream);
    padding: 96px 48px 28px;
  }
  .ft-inner{ max-width: 1320px; margin: 0 auto; }
  .ft-grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
  }
  .ft-col h3{
    margin: 0 0 22px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.55;
  }
  .ft-brand{
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    color: var(--cream);
    text-decoration: none;
  }
  .ft-brand img{
    display: block;
    height: 108px;
    width: auto;
    object-fit: contain;
  }
  .ft-tagline{
    margin: 0 0 28px;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.7;
    text-wrap: pretty;
  }
  .ft-social{ display: inline-flex; gap: 10px; }
  .ft-social a{
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(239,233,225,0.22);
    color: var(--cream);
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .ft-social a:hover{
    background: rgba(239,233,225,0.08);
    border-color: rgba(239,233,225,0.5);
    transform: translateY(-1px);
  }
  .ft-social svg{ display: block; }
  .ft-links{
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 12px;
  }
  .ft-links a{
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.82;
    transition: opacity .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .ft-links a:hover{ opacity: 1; }
  .ft-links .arrow{
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
    display: inline-block;
  }
  .ft-links a:hover .arrow{ transform: translateX(3px); }
  .ft-contact{
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--cream);
    opacity: 0.82;
  }
  .ft-contact a{
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease;
  }
  .ft-contact a:hover{ opacity: 0.7; }
  .ft-bottom{
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--cream);
    opacity: 0.55;
    letter-spacing: 0.01em;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1000px){
    .steps-grid{ grid-template-columns: 1fr; }
    .stats-grid{ grid-template-columns: 1fr; }
    .ba-grid{ grid-template-columns: 1fr; }
    .ba-head{ flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 900px){
    .nav{ padding: 20px 24px; grid-template-columns: 1fr auto; }
    .nav__links{ display:none; }
    .meta{ display:none; }
    .hero__content{
      left: 24px; right: 24px; bottom: 36px;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .trust{ text-align:left; max-width: none; }
    .section{ padding: 72px 24px 96px; }
    .boka-section{ padding: 72px 24px 96px; }
    .boka-head{ margin-bottom: 32px; }
    .boka-sub{ font-size: 16px; }
    .boka-frame iframe{ height: calc(600px + 130px); }
    .footer{ padding: 72px 24px 24px; }
    .ft-grid{ grid-template-columns: 1fr; gap: 44px; padding-bottom: 44px; }
    .ft-bottom{ font-size: 11px; }
  }



  /* ===== Fixed solid navbar (all pages, all devices) ===== */
  .nav{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #F5F0E8 !important;
    color: #1f1e1c !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    padding: 12px 32px !important;
    align-items: center !important;
  }
  .nav__brand{ justify-self: start !important; color: #1f1e1c !important; }
  .nav__brand img{ height: 46px !important; }

  .nav__links a{ color: #1f1e1c !important; opacity: 0.78 !important; }
  .nav__links a:hover,
  .nav__links a[aria-current="page"]{ opacity: 1 !important; }
  .nav__links a::after{ background: #1f1e1c !important; }

  .nav__cta{
    background: #1f1e1c !important;
    color: #F5F0E8 !important;
    border-color: transparent !important;
    box-shadow: none !important;
    padding: 10px 18px !important;
  }
  .nav__cta:hover{ background: #000 !important; color: #fff !important; box-shadow: none !important; }

  /* Hamburger — solid colors on cream nav */
  .nav__menu-btn{
    background: rgba(31,30,28,0.04) !important;
    border: 1px solid rgba(31,30,28,0.16) !important;
    color: #1f1e1c !important;
    border-radius: 10px !important;
    width: 44px !important;
    height: 44px !important;
    place-items: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    justify-self: end !important;
    margin-left: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav__menu-btn:hover{
    background: rgba(31,30,28,0.10) !important;
    border-color: rgba(31,30,28,0.32) !important;
  }
  .nav__menu-btn svg{ display: block; stroke: #1f1e1c !important; }

  /* Desktop ≥1025px: logo left, links center, CTA right, no hamburger */
  @media (min-width: 1025px){
    .nav{ grid-template-columns: 1fr auto 1fr !important; display: grid !important; }
    .nav__links{ display: flex !important; justify-self: center !important; }
    .nav__cta{ display: inline-flex !important; justify-self: end !important; }
    .nav__menu-btn{ display: none !important; }
  }

  /* Tablet & mobile ≤1024px: logo left, hamburger far right */
  @media (max-width: 1024px){
    .nav{
      display: grid !important;
      grid-template-columns: 1fr auto !important;
      padding: 10px 20px !important;
    }
    .nav__links{ display: none !important; }
    .nav > nav[aria-label]{ display: none !important; }
    .nav__cta{ display: none !important; }
    .nav__menu-btn{ display: grid !important; }
    /* Make drawer actually display at tablet too */
    .nav__drawer{ display: flex !important; }
    .nav__drawer-overlay{ display: block !important; }
  }

  /* Mobile drawer — above everything */
  .nav__drawer{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50vh !important;
    min-height: 460px !important;
    z-index: 2147483647 !important;
    overflow: hidden !important;
  }
  .nav__drawer-overlay{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2147483646 !important;
  }

  /* Keep body offset so content never hides behind the fixed nav */
  body{ padding-top: 72px !important; }

  /* ===== Tablet (768–1024px) layout patches ===== */
  @media (min-width: 768px) and (max-width: 1024px){
    /* Footer: 2 cols if space allows */
    .ft-grid{
      grid-template-columns: 1fr 1fr !important;
      gap: 48px !important;
    }
    /* Hero copy doesn't overflow */
    .page-hero, .hero{
      padding-left: 32px !important;
      padding-right: 32px !important;
    }
    .page-hero__title, .hero__title{
      font-size: clamp(48px, 8vw, 96px) !important;
    }
    /* Booking iframe full width */
    .boka-frame{ width: 100% !important; }
    .boka-frame iframe{ width: 100% !important; }
  }

  /* ===== Hero sections: no top spacing — clean meet with fixed navbar ===== */
  .hero, section.hero,
  .page-hero, section.page-hero,
  .hero-section,
  .treatment-hero{
    margin-top: 0 !important;
    border-top: 0 !important;
    padding-top: 0 !important;
    margin-top: -1px !important;
  }
  /* Hero content still needs breathing room from the (now-flush) top edge */
  .page-hero__eyebrow,
  .page-hero > :first-child,
  .hero > :first-child{
    /* no-op; min-height + place-items: center already centers content */
  }



  /* ===== Layout safety overrides (every page, every device) ===== */
  html{
    max-width: 100vw;
    overflow-x: hidden;
  }
  body{
    max-width: 100vw;
  }
  img, video, iframe, svg{
    max-width: 100%;
    height: auto;
  }
  /* Iframes use intrinsic height (the booking iframe sets its own) */
  iframe{ height: auto; }
  .boka-frame iframe{ height: 100% !important; min-height: 720px; }

  /* Long text never blows out the row */
  h1, h2, h3, h4, p, li, a, span{
    overflow-wrap: break-word;
    word-break: normal;
  }
  /* But card name labels must not break — short brand-y words */
  .card__name, .card__name,
  .card__back-title, .card__back-title{
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }

  /* Tappable controls (mobile + tablet) */
  @media (max-width: 1024px){
    a.btn, button.btn,
    .card__btn, .card__btn,
    .nav__cta, .nav__menu-btn,
    .nav__drawer-close, .nav__drawer-cta,
    .card__close, .card__close{
      min-height: 44px;
      min-width: 44px;
    }
    /* Body type floor */
    p, li, label, input, button, a{
      font-size: max(15px, 1em);
    }
  }

  /* Mobile (≤480px): tighter section padding so content doesn't get cropped */
  @media (max-width: 480px){
    .page-hero, .hero, .treatment-hero,
    section, .footer{
      padding-left: 20px !important;
      padding-right: 20px !important;
    }
    .nav{ padding-left: 16px !important; padding-right: 16px !important; }
    .nav__brand img{ height: 40px !important; }
  }



  .aud{
    background: var(--forest);
    color: var(--cream);
    padding: 110px 48px 120px;
    border-top: 1px solid rgba(239,233,225,0.08);
  }
  .aud__inner{ max-width: 1320px; margin: 0 auto; }
  .aud__head{
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
  }
  .aud__title{
    margin: 0 0 20px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--cream);
    text-wrap: balance;
  }
  .aud__sub{
    margin: 0;
    font-size: 17px;
    line-height: 1.66;
    color: var(--cream);
    opacity: 0.74;
    text-wrap: pretty;
  }

  .aud__grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .aud-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 560px;
    padding: 44px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cream);
    isolation: isolate;
    border: 1px solid var(--forest-line);
    box-shadow: 0 18px 48px rgba(0,0,0,0.34);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .aud-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0,0,0,0.46);
  }
  /* Placeholder image background */
  .aud-card__media{
    position: absolute;
    inset: 0;
    z-index: -2;
    background-color: #16301f;
    background-image:
      repeating-linear-gradient(135deg,
        rgba(239,233,225,0.045) 0 2px,
        transparent 2px 12px);
  }
  .aud-card__media span{
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(239,233,225,0.42);
  }
  /* Dark green overlay */
  .aud-card__overlay{
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
      rgba(13,31,20,0.45) 0%,
      rgba(13,31,20,0.72) 52%,
      rgba(13,31,20,0.94) 100%);
  }

  .aud-card__eyebrow{
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emerald);
  }
  .aud-card__h{
    margin: 0 0 18px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: var(--cream);
    text-wrap: balance;
  }
  .aud-card__body{
    margin: 0 0 22px;
    font-size: 15.5px;
    line-height: 1.66;
    color: var(--cream);
    opacity: 0.82;
    text-wrap: pretty;
  }
  .aud-card__areas{
    margin: 0 0 28px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--cream);
    opacity: 0.62;
  }
  .aud-card__btn{
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 8px;
    background: var(--emerald);
    color: #fff;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(0,200,83,0.24);
    transition: background .2s ease, transform .2s ease;
  }
  .aud-card__btn .arrow{ display:inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .aud-card:hover .aud-card__btn{ background: #1db863; }
  .aud-card:hover .aud-card__btn .arrow{ transform: translateX(4px); }

  @media (max-width: 880px){
    .aud{ padding: 72px 24px 84px; }
    .aud__grid{ grid-template-columns: 1fr; gap: 22px; }
    .aud-card{ min-height: 460px; padding: 32px; }
  }



/* =================================================================
   Emerald subpage styles (emerald-kvinnor.html / emerald-man.html)
   Dark forest palette — built on the same tokens as emerald.html
   ================================================================= */

/* Placeholder image utility (striped, dark) */
.ph{
  position: relative;
  background-color: #16301f;
  background-image: repeating-linear-gradient(135deg,
    rgba(239,233,225,0.05) 0 2px, transparent 2px 12px);
  overflow: hidden;
}
.ph__label{
  position: absolute;
  top: 18px; left: 18px;
  font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.42);
}

/* Hero media as placeholder on subpages */
.hero__media.ph{ z-index: -2; }

/* ---- Dark content sections ---- */
.fsec{
  padding: 108px 48px;
  background: var(--forest);
  border-top: 1px solid var(--forest-line);
  color: var(--cream);
}
.fsec--alt{ background: #11241a; }
.fsec__inner{ max-width: 1180px; margin: 0 auto; }

.fsec__title{
  margin: 0 0 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-wrap: balance;
}
.fsec__body{
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.74;
  color: var(--cream);
  opacity: 0.84;
  text-wrap: pretty;
}

/* Feature row: text + placeholder media */
.feat{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feat__media{
  min-height: 440px;
  height: 100%;
  border-radius: 14px;
  border: 1px solid var(--forest-line);
}
.feat--media-left .feat__media{ order: -1; }
.feat__text{ max-width: 540px; }

/* Centered prose (text-only sections) */
.prose{ max-width: 880px; margin: 0 auto; text-align: center; }
.prose .fsec__title{ margin-bottom: 28px; }

/* Buttons on dark */
.sbtn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.sbtn .arrow{ display: inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.sbtn:hover .arrow{ transform: translateX(4px); }
.sbtn--primary{
  background: #1A1A1A;
  color: var(--cream);
  padding: 13px 22px 14px;
  border-radius: 10px;
  font-weight: 600;
  border-color: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 16px rgba(0,0,0,0.30);
}
.sbtn--primary:hover{ background: #000; transform: translateY(-1px); }
.sbtn--ghost{
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}
.sbtn--ghost:hover{ border-color: #ffffff; background: var(--ink); color: #ffffff; transform: translateY(-1px); }
.sbtn-row{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.prose .sbtn-row{ justify-content: center; }

/* Areas list (keyword chips with emerald dot) */
.areas{
  list-style: none;
  margin: 0 auto 34px;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.areas li{
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid var(--forest-line);
  border-radius: 999px;
  background: rgba(239,233,225,0.03);
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
}
.areas li::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.16);
}

/* FAQ — dark variant */
.faq--dark .faq-list{ border-top-color: var(--forest-line); }
.faq--dark .faq-item{ border-bottom-color: var(--forest-line); }
.faq--dark .faq-q{ color: var(--cream); }
.faq--dark .faq-q:hover{ color: #fff; }
.faq--dark .faq-q .faq-icon::before,
.faq--dark .faq-q .faq-icon::after{ background: var(--cream); }
.faq--dark .faq-a{ color: var(--cream); opacity: 0.78; }

/* Final CTA band */
.fcta{
  padding: 124px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,200,83,0.12), transparent 62%),
    var(--forest);
  border-top: 1px solid var(--forest-line);
}
.fcta__inner{ max-width: 720px; margin: 0 auto; }
.fcta .fsec__body{ margin-bottom: 4px; }
.fcta .sbtn-row{ justify-content: center; }

@media (max-width: 900px){
  .fsec{ padding: 68px 24px; }
  .feat{ grid-template-columns: 1fr; gap: 32px; }
  .feat--media-left .feat__media{ order: 0; }
  .feat__media{ min-height: 280px; }
  .feat__text{ max-width: none; }
  .fcta{ padding: 84px 24px; }
}


/* ---- Subpage hero (flows normally so long intro copy fits) ---- */
.hero--sub{ height: auto; min-height: 64vh; }
.hero--sub .hero__content{
  position: relative;
  left: auto; right: auto; bottom: auto;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 48px 96px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}
.hero--sub .hero__text{ max-width: 640px; }
.hero--sub .headline{ font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; }
.hero--sub .subhead{ max-width: 700px; font-size: 17px; line-height: 1.7; }
@media (max-width: 900px){
  .hero--sub{ min-height: 0; }
  /* Single column: the desktop `minmax(0,1fr) auto` grid otherwise wins on
     specificity and squeezes the headline beside the trust badge */
  .hero--sub .hero__content{
    padding: 148px 24px 72px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* Keep hero CTA left-aligned & content-width at all breakpoints (match homepage) */
.hero--sub .ctas{
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: auto;
}
.hero--sub .ctas .sbtn{ width: auto; }

/* ---- Align hero corner labels (.meta) to the SAME centered container as the hero text,
       so their left/right edges match the eyebrow/headline/CTA at every width ---- */
.hero--sub .meta{
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  padding: 0 48px;
}
/* Neutralise the tablet section-padding bump that shifts only the flowed hero text
   (the absolutely-positioned .meta ignores it) — keeps both on the same 48px edge */
@media (min-width: 768px) and (max-width: 1024px){
  .hero.hero--sub{ padding-left: 0 !important; padding-right: 0 !important; }
}
@media (max-width: 900px){
  .hero--sub .meta{ padding: 0 24px; }
}


/* ---- Sticky back-to-Emerald button (subpages) ---- */
.back-pill{
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--cream);
  background: rgba(13,31,20,0.66);
  border: 1px solid rgba(0,200,83,0.45);
  box-shadow: 0 8px 24px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.back-pill__arrow{ display: inline-block; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.back-pill:hover{
  background: rgba(13,31,20,0.86);
  border-color: rgba(0,200,83,0.8);
  transform: translateY(-1px);
}
.back-pill:hover .back-pill__arrow{ transform: translateX(-3px); }
@media (max-width: 900px){
  .back-pill{ left: 14px; bottom: 14px; padding: 10px 15px; font-size: 12.5px; }
}


/* =================================================================
   Interactive subpage features
   Feature 1: sticky image panel · Feature 2: body map · Feature 3: progress
   ================================================================= */

/* ---- Feature 3: scroll progress indicator ---- */
.scroll-progress{
  position: fixed;
  left: 0; top: 0;
  width: 3px;
  height: 100vh;
  background: rgba(0,200,83,0.12);
  z-index: 9500;
  pointer-events: none;
}
.scroll-progress__bar{
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: #00C878;
  transform: scaleY(0);
  transform-origin: top center;
  box-shadow: 0 0 12px rgba(0,200,120,0.55);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .scroll-progress__bar{ transition: none; }
}

/* ---- Feature 1: sticky image panel ---- */
.sticky-sec{
  background: #11241a;
  border-top: 1px solid var(--forest-line);
  color: var(--cream);
  padding: 32px 48px;
}
.sticky-wrap{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.sticky-block{
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}
.sticky-block__in{ max-width: 620px; }
.sticky-block .fsec__title{ margin-bottom: 24px; }
.sticky-panel{
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: fit-content;
}
.sticky-imgs{
  position: relative;
  width: 100%;
  height: min(72vh, 600px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--forest-line);
  box-shadow: 0 18px 48px rgba(0,0,0,0.42);
}
.sticky-img{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: #0f2417;
}
.sticky-img.is-active{ opacity: 1; }
.sticky-img__label{
  position: absolute;
  left: 22px; bottom: 20px;
  font-family: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239,233,225,0.62);
}
/* Media carousel inside panel 1 (single panel, always visible) */
.sticky-img--carousel{ background:#0f2417; }
.sticky-imgs .sticky-img--carousel{ opacity:1; }
.scarousel{ position:absolute; inset:0; overflow:hidden; }
.scar-slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity .6s ease;
}
.scar-slide.is-active{ opacity:1; }
.scar-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
/* Video slide: landscape clip rotated 90° CCW + zoomed to cover the portrait panel */
.scar-slide--video{ overflow:hidden; }
.scar-slide--video .sticky-vid{
  position:absolute;
  top:50%; left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: translate(-50%,-50%) rotate(0deg) scale(1.78);
}
/* Dot navigation */
.scar-dots{
  position:absolute;
  left:0; right:0; bottom:18px;
  z-index:3;
  display:flex;
  justify-content:center;
  gap:9px;
}
.scar-dot{
  width:8px; height:8px;
  border-radius:50%;
  background:rgba(239,233,225,0.4);
  box-shadow:0 1px 3px rgba(0,0,0,0.4);
  transition: background .25s ease, transform .25s ease;
}
.scar-dot.is-active{ background:var(--cream); transform:scale(1.25); }

@media (max-width: 1024px){
  .sticky-sec{ padding: 0; background: transparent; border-top: 0; }
  .sticky-wrap{ display: block; max-width: none; }
  .sticky-panel{ display: none; }
  .sticky-block{
    min-height: 0;
    padding: 68px 24px;
    border-top: 1px solid var(--forest-line);
    background: var(--forest);
  }
  .sticky-block:nth-child(even){ background: #11241a; }
  .sticky-block__in{ max-width: 880px; margin: 0 auto; }
}

/* ---- Feature 2: interactive body map ---- */
.bodymap{
  background: var(--forest);
  border-top: 1px solid var(--forest-line);
  color: var(--cream);
  padding: 108px 48px;
}
.bodymap__card{
  max-width: 1180px;
  margin: 0 auto;
  background: #0d2018;
  border: 1px solid rgba(0,200,120,0.15);
  border-radius: 24px;
  padding: 60px;
}
.bodymap__cols{
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: start;
}
.bodymap__info{ text-align: left; }
.bodymap__info .fsec__title{ margin: 0 0 20px; }
.bodymap__lead{
  margin: 0 0 36px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.84;
  max-width: 520px;
  text-wrap: pretty;
}
/* Clean inline stats — no boxes */
.bodymap__stats{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin: 0 0 38px;
}
.stat-card{ border: 0; background: none; padding: 0; max-width: 200px; }
.stat-card__num{
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--emerald);
  margin: 0 0 5px;
  line-height: 1.05;
  white-space: nowrap;
}
.stat-card__label{
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(239,233,225,0.74);
}
/* Dynamic info box — left green border, no outer box */
.bodymap__detail{
  border: 0;
  border-left: 4px solid #00C878;
  border-radius: 0 10px 10px 0;
  background: rgba(0,0,0,0.22);
  padding: 18px 22px;
  min-height: 104px;
  transition: background .25s ease;
}
.bodymap__detail.is-active{ background: rgba(0,200,120,0.08); }
.bodymap__detail h3{
  margin: 0 0 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--emerald);
}
.bodymap__detail p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(239,233,225,0.85);
  text-wrap: pretty;
}
.bodymap__detail--empty h3{
  margin: 0;
  color: rgba(239,233,225,0.6);
  font-weight: 500;
  font-size: 16px;
}
/* Right column — sticky figure + toggle */
.bodymap__figure{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 120px;
}
.body-illu{
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 200 / 500;
  margin: 0 auto;
}
.body-view{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}
.body-view.is-active{ opacity: 1; visibility: visible; }
.body-view > svg{ display: block; width: 100%; height: 100%; }
.bodymap__toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 26px auto 0;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,200,120,0.5);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.bodymap__toggle:hover{ background: rgba(0,200,120,0.12); border-color: rgba(0,200,120,0.85); }
.hotspot{
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.hotspot__dot{
  display: block;
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #00C878;
  border: 2px solid #00C878;
  box-shadow: 0 0 0 0 rgba(0,200,120,0.5);
  animation: hotspot-pulse 2.2s ease-out infinite;
  transition: width .2s ease, height .2s ease;
}
.hotspot__dot::after{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00C878;
}
@keyframes hotspot-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(0,200,120,0.5); }
  70%{ box-shadow: 0 0 0 14px rgba(0,200,120,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,200,120,0); }
}
.hotspot.is-active .hotspot__dot{
  width: 18px; height: 18px;
  border-color: #00C878;
  box-shadow: 0 0 18px 5px rgba(0,255,150,0.7);
  animation: none;
}
.hotspot.is-active .hotspot__dot::after{
  width: 7px; height: 7px;
  background: #00C878;
}
@media (prefers-reduced-motion: reduce){
  .hotspot__dot{ animation: none; }
}
@media (max-width: 900px){
  .bodymap{ padding: 68px 24px; }
  .bodymap__card{ padding: 32px 24px; border-radius: 20px; }
  .bodymap__cols{ grid-template-columns: 1fr; gap: 40px; }
  .bodymap__figure{ position: static; top: auto; }
  .body-illu{ max-width: 230px; }
  .hotspot{ width: 44px; height: 44px; }
  .hotspot__dot{ width: 14px; height: 14px; }
  .hotspot.is-active .hotspot__dot{ width: 18px; height: 18px; }
}
