/* ============================================================
   Studio Lugga — style.css
   V2 · Majorna Editorial Hair Studio
   Chapters: ink (mörk bläckblå) · lugga (djup studioblå)
             paper (varm benvit) · sand/guld · vermillion accent
   Signature: parentesen — (studio lugga)
   ============================================================ */

/* — Lokala typsnitt (självhostade, snabbare & GDPR-vänligt) — */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/playfair-display-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/playfair-display-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/playfair-display-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/playfair-display-latin-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/playfair-display-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/playfair-display-latin-700-italic.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/dm-sans-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/dm-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/dm-sans-latin-500-normal.woff2') format('woff2'); }

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

:root {
  /* — Chapter palette — */
  --ink:        #0a1322;   /* mörk bläckblå — hero, arbeten */
  --ink-soft:   #0d1a2e;
  --lugga:      #14284a;   /* djup Studio Lugga-blå — matchar fotobakgrunderna */
  --lugga-hi:   #1b3560;
  --paper:      #f1eadb;   /* varm benvit / papper — ljusa kapitel */
  --paper-2:    #e8dfca;
  --ink-paper:  #1b2534;   /* text på papper */
  --dim-paper:  #5d6472;
  --sand:       #c8a96e;   /* dämpad sand/guld */
  --sand-2:     #e4d2a2;
  --verm:       #d4502e;   /* vermillion — energisk accent */
  --verm-soft:  #e2673f;
  --cobalt:     #4665d9;   /* mycket begränsad */
  --cream:      #f3ecdf;
  --t-light:    #c2bbb1;
  --t-dim:      #7d766c;
  --line:       rgba(200,169,110,.15);
  --line-hi:    rgba(200,169,110,.4);
  --line-paper: rgba(27,37,52,.16);

  /* — Type: exakt två familjer — */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);

  /* — Alias för äldre variabelnamn (inline-stilar på undersidor) — */
  --navy:        var(--ink);
  --navy-mid:    var(--ink-soft);
  --navy-light:  var(--lugga);
  --navy-deep:   var(--ink);
  --gold:        var(--sand);
  --gold-light:  var(--sand-2);
  --coral:       var(--verm);
  --text-light:  var(--t-light);
  --text-dim:    var(--t-dim);
  --border:      var(--line);
  --border-hover:var(--line-hi);
  --font-display:var(--f-display);
  --font-italic: var(--f-display);
  --font-body:   var(--f-body);

  --pad-x:    clamp(22px, 6vw, 88px);
  --pad-y:    clamp(76px, 10vw, 150px);
  --pad-y-sm: clamp(56px, 7vw, 104px);
  --gap-col:  clamp(40px, 6vw, 88px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--sand); color: var(--ink); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--sand); }

/* ── SIGNATUR: parentesen ─────────────────────────────────────
   (k-label) — kapiteletikett med riktiga parenteser
   paren-frame — stora typografiska parenteser som flankerar
   lens — bildbeskärning formad som ett parentespar        */
.k-label {
  font-size: .72rem; letter-spacing: .34em; text-transform: lowercase;
  color: var(--sand); font-weight: 400; margin-bottom: 22px;
  display: inline-flex; align-items: baseline; gap: .55em; white-space: nowrap;
}
.k-label::before { content: '('; }
.k-label::after  { content: ')'; }
.k-label::before, .k-label::after {
  font-family: var(--f-display); font-style: italic; font-size: 1.35em;
  letter-spacing: 0; color: var(--sand); opacity: .85; transform: translateY(.08em);
}
.on-paper .k-label, .k-label.on-paper { color: var(--verm); }
.on-paper .k-label::before, .on-paper .k-label::after,
.k-label.on-paper::before, .k-label.on-paper::after { color: var(--verm); }

.paren-frame { position: relative; display: inline-block; }
.paren-frame::before, .paren-frame::after {
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  position: absolute; top: 50%; transform: translateY(-54%);
  font-size: clamp(7rem, 16vw, 15rem); line-height: 1;
  opacity: .14; pointer-events: none; user-select: none;
}
.paren-frame::before { content: '('; left: clamp(-70px, -6vw, -34px); }
.paren-frame::after  { content: ')'; right: clamp(-70px, -6vw, -34px); }

.lens { border-radius: 999px; overflow: hidden; }
.lens img { border-radius: 999px; }

/* ── GRUND ── */
.eyebrow { /* bakåtkompatibel — samma röst som k-label */
  font-size: .72rem; letter-spacing: .34em; text-transform: lowercase;
  color: var(--sand); font-weight: 400; margin-bottom: 22px;
  display: inline-flex; align-items: baseline; gap: .55em;
}
.eyebrow::before { content: '('; }
.eyebrow::after  { content: ')'; }
.eyebrow::before, .eyebrow::after {
  font-family: var(--f-display); font-style: italic; font-size: 1.35em;
  letter-spacing: 0; opacity: .85; transform: translateY(.08em);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: 26px;
}
.section-title em { font-style: italic; color: var(--sand-2); font-weight: 500; }
.on-paper .section-title { color: var(--ink-paper); }
.on-paper .section-title em { color: var(--verm); }

.section-body { font-size: .99rem; line-height: 1.85; color: var(--t-light); max-width: 540px; }
.section-body + .section-body { margin-top: 18px; }
.on-paper .section-body { color: #3d4553; }
.on-paper .section-body strong { color: var(--ink-paper); }

/* ── KNAPPAR ── */
.btn-primary {
  display: inline-block;
  background: var(--sand); color: var(--ink);
  padding: 17px 44px; font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 500; text-decoration: none;
  transition: background .22s var(--ease), transform .18s var(--ease), box-shadow .22s;
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sand-2); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(200,169,110,.22); }
.on-paper .btn-primary { background: var(--ink-paper); color: var(--paper); }
.on-paper .btn-primary:hover { background: #2a3a52; box-shadow: 0 10px 30px rgba(27,37,52,.25); }
.btn-verm { background: var(--verm); color: var(--paper); }
.btn-verm:hover { background: var(--verm-soft); box-shadow: 0 10px 30px rgba(212,80,46,.3); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--t-light); text-decoration: none;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  transition: color .2s; background: none; border: none; cursor: pointer;
}
.btn-ghost::after { content:'→'; transition: transform .25s var(--ease-out); display:inline-block; }
.btn-ghost:hover { color: var(--cream); }
.btn-ghost:hover::after { transform: translateX(6px); }
.on-paper .btn-ghost { color: var(--ink-paper); }
.on-paper .btn-ghost:hover { color: var(--verm); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--sand); color: var(--sand-2);
  padding: 15px 36px; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none;
  transition: background .22s, color .22s; cursor: pointer; background: transparent;
}
.btn-outline:hover { background: var(--sand); color: var(--ink); }

/* ── NAV ── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  padding: 28px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .35s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,19,34,.96); backdrop-filter: blur(18px);
  padding: 15px var(--pad-x); border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: 1.12rem; letter-spacing: .04em;
  color: var(--sand-2); text-decoration: none; white-space: nowrap;
}
.nav-logo b { font-style: italic; font-weight: 700; color: var(--cream); }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  color: var(--t-light); text-decoration: none;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  transition: color .2s; padding: 4px 0; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0;
  height:1px; background:var(--sand); transform:scaleX(0);
  transform-origin:left; transition:transform .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--sand-2); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: transparent; border: 1px solid var(--sand);
  color: var(--sand-2); padding: 11px 28px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: background .22s, color .22s; white-space: nowrap; cursor: pointer;
}
.nav-cta:hover { background: var(--sand); color: var(--ink); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: .3s; }
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 240;
  background: var(--ink); flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 20px;
  padding: 0 clamp(32px, 10vw, 80px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--f-display); font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 700;
  color: var(--cream); text-decoration: none; transition: color .2s; line-height: 1.15;
}
.nav-mobile a:hover, .nav-mobile a[aria-current] { color: var(--sand-2); }
.nav-mobile .nav-mobile-cta { font-family: var(--f-body); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; }

/* ── HERO (startsidan) ── */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  overflow: hidden; background: var(--ink);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px, 16vh, 180px) clamp(28px, 4.5vw, 72px) clamp(56px, 8vh, 90px) var(--pad-x);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: lowercase;
  color: var(--sand); margin-bottom: 30px; display: inline-flex; align-items: baseline; gap: .55em;
}
.hero-eyebrow::before { content:'('; }
.hero-eyebrow::after  { content:')'; }
.hero-eyebrow::before, .hero-eyebrow::after {
  font-family: var(--f-display); font-style: italic; font-size: 1.35em; opacity:.85; transform: translateY(.08em);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6.6vw, 6.1rem);
  font-weight: 700; line-height: .98; letter-spacing: -.02em;
  margin-bottom: 30px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--sand-2); }
.hero-sub { font-size: 1.01rem; line-height: 1.8; color: var(--t-light); max-width: 460px; margin-bottom: 38px; }
.hero-sub strong { color: var(--cream); font-weight: 500; }
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero-note { font-size: .78rem; color: var(--t-dim); letter-spacing: .04em; }
.hero-note a { color: var(--t-light); text-decoration: none; border-bottom: 1px solid var(--line-hi); }
.hero-note a:hover { color: var(--sand-2); }

.hero-right { position: relative; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 24%; filter: contrast(1.05) saturate(1.04); }
.hero-right::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(10,19,34,0) 22%);
}
.hero-imgcap {
  position: absolute; bottom: 26px; right: 30px; z-index: 3;
  font-size: .68rem; letter-spacing: .3em; text-transform: lowercase; color: rgba(243,236,223,.85);
}
.hero-imgcap::before { content: '( '; font-family: var(--f-display); font-style: italic; }
.hero-imgcap::after  { content: ' )'; font-family: var(--f-display); font-style: italic; }

.hero-scroll {
  position: absolute; bottom: 30px; left: var(--pad-x); z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--t-dim);
}
.hero-scroll-line { width: 48px; height: 1px; background: linear-gradient(90deg, var(--sand), transparent); display: block; }

/* ── AUKTORITETSRAD ── */
.proof-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}
.proof-cell {
  padding: 34px clamp(18px, 2.5vw, 40px);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.proof-cell:first-child { border-left: none; }
.proof-big {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.8rem); color: var(--cream); line-height: 1.1;
}
.proof-big em { font-style: italic; font-weight: 500; color: var(--sand-2); }
.proof-small { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--t-dim); }

/* ── MANIFEST (papper) ── */
.manifest {
  background: var(--paper); color: var(--ink-paper);
  padding: var(--pad-y) var(--pad-x);
  position: relative; overflow: hidden;
}
.manifest-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,7fr) minmax(0,4fr); gap: var(--gap-col); align-items: start; }
.manifest h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.5rem, 5.4vw, 5rem); line-height: 1.03; letter-spacing: -.018em;
  color: var(--ink-paper); margin: 26px 0 34px;
}
.manifest h2 em { font-style: italic; font-weight: 500; color: var(--verm); }
.manifest-lede { font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.85; color: #39424f; max-width: 560px; }
.manifest-aside { border-left: 1px solid var(--line-paper); padding-left: clamp(24px, 2.5vw, 40px); display: flex; flex-direction: column; gap: 26px; padding-top: 12px; }
.manifest-point strong {
  display: block; font-family: var(--f-display); font-size: 1.18rem; font-weight: 700;
  color: var(--ink-paper); margin-bottom: 6px;
}
.manifest-point p { font-size: .9rem; line-height: 1.75; color: var(--dim-paper); }
.manifest-paren {
  position: absolute; font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(16rem, 34vw, 30rem); line-height: 1; color: var(--ink-paper);
  opacity: .05; pointer-events: none; user-select: none;
}
.manifest-paren.open  { left: -.14em; top: 46%; transform: translateY(-50%); }
.manifest-paren.close { right: -.14em; top: 46%; transform: translateY(-50%); }

/* ── TVÅ SPECIALISTER (papper, forts.) ── */
.duo { background: var(--paper); padding: 0 var(--pad-x) var(--pad-y); }
.duo-head { max-width: 1180px; margin: 0 auto clamp(48px, 5vw, 72px); border-top: 1px solid var(--line-paper); padding-top: clamp(48px, 5vw, 72px); }
.duo-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); }
.duo-card { display: grid; grid-template-columns: minmax(120px, 168px) 1fr; gap: clamp(20px, 2.5vw, 34px); align-items: start; }
.duo-lens { aspect-ratio: 3 / 4.6; border-radius: 999px; overflow: hidden; background: var(--paper-2); }
.duo-lens img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); transition: transform .8s var(--ease); }
.duo-card:hover .duo-lens img { transform: scale(1.045); }
.duo-name {
  font-family: var(--f-display); font-weight: 700; font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  color: var(--ink-paper); line-height: 1.05; margin-bottom: 4px;
}
.duo-role { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--verm); margin-bottom: 16px; font-weight: 500; }
.duo-bio { font-size: .92rem; line-height: 1.8; color: #3d4553; margin-bottom: 18px; }
.duo-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.duo-facts li { font-size: .82rem; color: var(--dim-paper); padding-left: 18px; position: relative; }
.duo-facts li::before { content: '·'; position: absolute; left: 4px; color: var(--verm); font-weight: 700; }
.duo-facts li strong { color: var(--ink-paper); font-weight: 500; }

/* ── KAPITEL: LOCKAR (lugga-blå) ── */
.chapter-curls {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(70,101,217,.12), transparent 55%),
    var(--lugga);
  padding: var(--pad-y) var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: var(--gap-col); align-items: center;
  border-top: 1px solid rgba(200,169,110,.12);
}
.chapter-curls .section-body { color: #cdd4e2; }
.chapter-curls .k-label { color: var(--sand-2); }
.chapter-curls .k-label::before, .chapter-curls .k-label::after { color: var(--sand-2); }
.curls-stats { display: flex; gap: clamp(26px, 3.5vw, 52px); margin: 34px 0 40px; flex-wrap: wrap; }
.stat-n { font-family: var(--f-display); font-weight: 700; font-size: 1.9rem; color: var(--sand-2); line-height: 1; }
.stat-l { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #93a0ba; margin-top: 7px; }
.curls-visual { display: grid; grid-template-columns: 5fr 4fr; grid-template-rows: auto auto; gap: clamp(12px, 1.4vw, 20px); }
.curls-visual .cv-a { grid-row: 1 / 3; }
.cv-wrap { overflow: hidden; position: relative; }
.cv-wrap img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); transition: transform .9s var(--ease); }
.cv-wrap:hover img { transform: scale(1.04); }
.cv-a { aspect-ratio: 3/4.4; }
.cv-b { aspect-ratio: 4/3.3; }
.cv-c { aspect-ratio: 4/3.3; }
.cv-cap {
  position: absolute; left: 16px; bottom: 14px;
  font-size: .64rem; letter-spacing: .26em; text-transform: lowercase; color: rgba(243,236,223,.9);
  text-shadow: 0 1px 8px rgba(10,19,34,.5);
}
.cv-cap::before { content: '( '; font-family: var(--f-display); font-style: italic; }
.cv-cap::after  { content: ' )'; font-family: var(--f-display); font-style: italic; }

/* ── KAPITEL: FÄRG (bläck + vermillion) ── */
.chapter-color {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.chapter-color .k-label { color: var(--verm-soft); }
.chapter-color .k-label::before, .chapter-color .k-label::after { color: var(--verm-soft); }
.chapter-color .section-title em { color: var(--verm-soft); }
.color-layout {
  display: grid; grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: var(--gap-col); align-items: end;
}
.color-hero-img { position: relative; overflow: hidden; }
.color-hero-img img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; filter: contrast(1.06) saturate(1.08); transition: transform .9s var(--ease); }
.color-hero-img:hover img { transform: scale(1.03); }
.color-side { padding-bottom: clamp(8px, 2vw, 30px); }
.color-side-img { overflow: hidden; margin-top: 40px; max-width: 320px; }
.color-side-img img { width: 100%; aspect-ratio: 1/1.15; object-fit: cover; filter: contrast(1.06) saturate(1.06); }
.color-swatches { display: flex; gap: 8px; margin: 30px 0 36px; align-items: center; }
.color-swatches span { width: 34px; height: 12px; display: block; }
.color-swatches i { font-size: .66rem; letter-spacing: .2em; text-transform: lowercase; color: var(--t-dim); font-style: normal; margin-left: 10px; }

/* ── UTVALDA ARBETEN ── */
.works { background: var(--ink); padding: var(--pad-y-sm) var(--pad-x) var(--pad-y); border-top: 1px solid var(--line); }
.works-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.works-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.8vw, 26px); align-items: start;
}
.work { position: relative; overflow: hidden; }
.work img, .work video { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); transition: transform .9s var(--ease); display: block; }
.work:hover img { transform: scale(1.035); }
.work-cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: .66rem; letter-spacing: .26em; text-transform: lowercase; color: rgba(243,236,223,.92);
  text-shadow: 0 1px 10px rgba(10,19,34,.6);
}
.work-cap::before { content: '( '; font-family: var(--f-display); font-style: italic; }
.work-cap::after  { content: ' )'; font-family: var(--f-display); font-style: italic; }
.w1 { grid-column: 1 / 6;  aspect-ratio: 3/4;   }
.w2 { grid-column: 6 / 10; aspect-ratio: 3/3.6; margin-top: clamp(40px, 6vw, 90px); }
.w3 { grid-column: 10 / 13;aspect-ratio: 3/4.4; }
.w4 { grid-column: 2 / 6;  aspect-ratio: 3/3.4; }
.w5 { grid-column: 6 / 12; aspect-ratio: 16/10; margin-top: clamp(24px, 4vw, 60px); }

/* Reel i works-griden */
.reel-wrap { position: relative; cursor: pointer; }
.reel-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,19,34,.25); transition: background .3s, opacity .3s;
}
.reel-wrap.playing .reel-overlay { background: transparent; opacity: 0; }
.reel-wrap.playing:hover .reel-overlay { opacity: 1; background: rgba(10,19,34,.15); }
.reel-play {
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid rgba(243,236,223,.7); background: rgba(10,19,34,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s; backdrop-filter: blur(4px);
}
.reel-wrap:hover .reel-play { transform: scale(1.08); background: rgba(200,169,110,.35); }
.reel-play svg { width: 20px; height: 20px; fill: var(--cream); margin-left: 3px; }
.reel-wrap.playing .reel-play svg.i-play { display: none; }
.reel-wrap:not(.playing) .reel-play svg.i-pause { display: none; }
.reel-play svg.i-pause { margin-left: 0; }
.reel-label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: .66rem; letter-spacing: .26em; text-transform: lowercase; color: rgba(243,236,223,.92);
  text-shadow: 0 1px 10px rgba(10,19,34,.6); pointer-events: none;
}
.reel-label::before { content: '( '; font-family: var(--f-display); font-style: italic; }
.reel-label::after  { content: ' )'; font-family: var(--f-display); font-style: italic; }

/* ── BOKNINGSHJÄLP (papper) ── */
.paths { background: var(--paper); color: var(--ink-paper); padding: var(--pad-y) var(--pad-x); }
.paths-inner { max-width: 1180px; margin: 0 auto; }
.paths-list { list-style: none; border-top: 1px solid var(--line-paper); margin-top: clamp(36px, 4vw, 56px); }
.path {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(18px, 3vw, 44px);
  align-items: center; padding: clamp(24px, 3vw, 36px) 6px;
  border-bottom: 1px solid var(--line-paper);
  text-decoration: none; color: inherit; transition: background .25s, padding .25s var(--ease);
  cursor: pointer; width: 100%; background: none; border-left: none; border-right: none; border-top: none; text-align: left;
  font-family: inherit;
}
.path:hover { background: rgba(232,223,202,.55); padding-left: 18px; }
.path-idx {
  font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--verm);
  min-width: 52px;
}
.path-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); line-height: 1.1; color: var(--ink-paper);
}
.path-desc { font-size: .85rem; color: var(--dim-paper); margin-top: 6px; max-width: 560px; line-height: 1.65; font-family: var(--f-body); font-weight: 300; }
.path-go {
  font-size: 1.5rem; color: var(--verm); transition: transform .25s var(--ease-out);
  font-family: var(--f-body);
}
.path:hover .path-go { transform: translateX(8px); }
.paths-foot { margin-top: 28px; font-size: .85rem; color: var(--dim-paper); }
.paths-foot a { color: var(--ink-paper); text-decoration: none; border-bottom: 1px solid var(--line-paper); }
.paths-foot a:hover { color: var(--verm); border-color: var(--verm); }

/* ── FÖRTROENDE ── */
.trust { background: var(--ink-soft); border-top: 1px solid var(--line); padding: var(--pad-y-sm) var(--pad-x); }
.trust-head {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: var(--gap-col); align-items: center;
  max-width: 1180px; margin: 0 auto clamp(44px, 5vw, 68px);
}
.trust-score-wrap { text-align: left; border-left: 2px solid var(--sand); padding-left: clamp(22px, 2.5vw, 36px); }
.trust-score { font-family: var(--f-display); font-weight: 700; font-size: clamp(3.4rem, 6vw, 5rem); color: var(--cream); line-height: 1; }
.trust-stars { color: var(--sand); letter-spacing: .28em; font-size: .95rem; margin: 12px 0 6px; }
.trust-count { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--t-dim); }
.trust-google-link {
  display: inline-block; margin-top: 14px; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--t-light); text-decoration: none; border-bottom: 1px solid var(--line-hi); padding-bottom: 3px;
}
.trust-google-link:hover { color: var(--cream); }
.trust-intro .section-title { margin-bottom: 0; }

/* ── Kundröster: statisk redaktionell komposition ── */
.voices {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 26px); align-items: start;
  max-width: 1180px; margin: 0 auto;
}
.voices .voice-lead { grid-column: 1; grid-row: 1 / span 2; }
.voice {
  margin: 0; padding: clamp(26px, 2.6vw, 38px) clamp(24px, 2.4vw, 36px);
  background: var(--ink); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px; height: 100%;
}
.voice blockquote {
  margin: 0; font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 1.02rem; line-height: 1.78; color: var(--t-light);
}
/* Inga dekorativa parenteser runt citaten: flera kunder avslutar med
   smiley ":)" vilket annars renderas som ":) )". Parentessignaturen bärs
   i stället av sektionsetiketten ( omdömen via timma ). */
.voice blockquote { position: relative; padding-left: 22px; }
.voice blockquote::before {
  content: '('; position: absolute; left: 0; top: -2px;
  font-size: 1.25em; color: var(--sand); line-height: 1.3;
}
.voice-lead {
  background: var(--lugga); border-color: var(--line-hi);
  justify-content: center; gap: 26px;
}
.voice.voice-lead figcaption { margin-top: 0; }
.voice-lead blockquote { font-size: clamp(1.2rem, 1.9vw, 1.72rem); line-height: 1.6; color: var(--cream); }
.voice figcaption { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.voice figcaption b { font-size: .88rem; font-weight: 500; color: var(--cream); }
.voice figcaption span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--t-dim); }
.voice-lead figcaption span { color: var(--sand-2); }
.voices-cta { max-width: 1180px; margin: clamp(34px, 4vw, 52px) auto 0; }

@media (max-width: 1100px) {
  .voices { grid-template-columns: 1fr 1fr; }
  .voices .voice-lead { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 640px) {
  .trust-head { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; }
  .voice-lead blockquote { font-size: 1.14rem; }
}

/* ── SLUT-CTA ── */
.finale {
  background: var(--ink); padding: var(--pad-y) var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: var(--gap-col); align-items: center; border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.finale-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 5rem); line-height: 1.0; letter-spacing: -.018em; margin: 24px 0 30px;
}
.finale-title em { font-style: italic; font-weight: 500; color: var(--sand-2); }
.finale-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.finale-meta { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; color: var(--t-light); }
.finale-meta a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line-hi); width: fit-content; }
.finale-meta a:hover { color: var(--sand-2); }
.finale-meta span b { color: var(--cream); font-weight: 500; }
.finale-visual { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(6px, 1vw, 14px); }
.finale-visual .fp {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(9rem, 15vw, 15rem); line-height: .8; color: var(--sand); opacity: .55; user-select: none;
}
.finale-visual .fp:first-child { margin-right: -0.1em; }
.finale-visual .fp:last-child  { margin-left: 0.06em; }
.finale-lens { width: clamp(160px, 16vw, 230px); aspect-ratio: 3/4.6; border-radius: 999px; overflow: hidden; }
.finale-lens img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }

/* ── UNDERSIDOR: sid-hero ── */
.page-hero {
  padding: clamp(150px, 20vh, 210px) var(--pad-x) clamp(56px, 7vw, 88px);
  max-width: 980px; position: relative;
}
.page-hero h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.7rem, 6vw, 5.2rem); line-height: 1.0; letter-spacing: -.02em; margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--sand-2); }
.page-hero p { font-size: 1rem; line-height: 1.85; color: var(--t-light); max-width: 620px; }
.page-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; font-size: .78rem; color: var(--t-dim); align-items: center; }
.page-hero-trust strong { color: var(--sand-2); font-weight: 500; }
.pht-star { color: var(--sand); }
.pht-div { width: 22px; height: 1px; background: var(--line-hi); display: inline-block; }

/* ── DELADE LAYOUTER ── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-col); }
.split-2.center { align-items: center; }
.section-pad { padding: var(--pad-y-sm) var(--pad-x); }

/* Papperskapitel på undersidor */
.paper-block { background: var(--paper); color: var(--ink-paper); }
.paper-block .section-body { color: #3d4553; }
.paper-block .section-title { color: var(--ink-paper); }
.paper-block .section-title em { color: var(--verm); }
.paper-block .eyebrow, .paper-block .k-label { color: var(--verm); }
.paper-block .eyebrow::before, .paper-block .eyebrow::after,
.paper-block .k-label::before, .paper-block .k-label::after { color: var(--verm); }

/* ── LOCKTYPER ── */
.curl-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.curl-type-card { padding: clamp(24px, 2.6vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s; }
.curl-type-card:hover { background: rgba(200,169,110,.05); }
.curl-type-label { font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--sand); margin-bottom: 12px; }
.curl-type-name { font-family: var(--f-display); font-size: 1.45rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.curl-type-desc { font-size: .84rem; line-height: 1.7; color: var(--t-light); }

/* ── CG-STEG ── */
.cg-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.cg-step { border-top: 1px solid var(--line-hi); padding-top: 22px; }
.cg-step-num { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; color: var(--sand); margin-bottom: 12px; }
.cg-step-num::before { content: '( '; }
.cg-step-num::after  { content: ' )'; }
.cg-step-title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.cg-step-desc { font-size: .86rem; line-height: 1.75; color: var(--t-light); }

/* ── MANIFESTO-CITAT (lockar-sidan) ── */
.curls-manifesto { padding: var(--pad-y-sm) var(--pad-x); background: var(--lugga); border-top: 1px solid rgba(200,169,110,.12); }
.manifesto-text {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.5; color: var(--cream);
  max-width: 900px; margin: 0 auto; text-align: center;
}
.manifesto-text em { color: var(--sand-2); }
.curls-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.2vw, 18px); padding: 0 var(--pad-x); background: var(--lugga); padding-bottom: var(--pad-y-sm); }
.curls-photo-row > div { overflow: hidden; }
.curls-photo-row img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: contrast(1.05); transition: transform .8s var(--ease); }
.curls-photo-row > div:hover img { transform: scale(1.04); }
.curls-photo-row > div:nth-child(2) { margin-top: clamp(24px, 3vw, 48px); }

/* ── PRISER ── */
.pricing-section { padding: var(--pad-y-sm) var(--pad-x); }
.pricing-category-title {
  font-family: var(--f-display); font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 700;
  margin-bottom: 18px; color: var(--cream);
}
.pricing-grid { display: flex; flex-direction: column; }
.pricing-item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px 32px; align-items: center;
  padding: 24px 4px; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s var(--ease);
}
.pricing-item:first-child { border-top: 1px solid var(--line); }
.pricing-item:hover { background: rgba(200,169,110,.05); padding-left: 14px; }
.pricing-item-top { display: block; }
.pricing-name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); }
.pricing-time { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--t-dim); margin-top: 4px; }
.pricing-desc { grid-column: 1 / -1; grid-row: 2; font-size: .84rem; line-height: 1.65; color: var(--t-light); max-width: 640px; margin-top: -6px; }
.pricing-price { font-size: .95rem; color: var(--sand-2); font-weight: 500; white-space: nowrap; }
.pricing-tag {
  display: inline-block; font-family: var(--f-body); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sand); border: 1px solid var(--line-hi); padding: 3px 10px; margin-left: 10px; vertical-align: middle; font-weight: 400;
}
.service-link {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sand-2);
  text-decoration: none; white-space: nowrap; transition: color .2s; cursor: pointer; background: none; border: none; font-family: inherit;
}
.service-link:hover { color: var(--cream); }

/* Info-rad (ersätter emoji-raden) */
.terms-strip {
  background: var(--ink-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px var(--pad-x); display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; align-items: center;
}
.terms-strip span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dim); display: inline-flex; align-items: baseline; gap: 8px; }
.terms-strip span::before { content: '('; font-family: var(--f-display); font-style: italic; color: var(--sand); font-size: 1.2em; }
.terms-strip span::after  { content: ')'; font-family: var(--f-display); font-style: italic; color: var(--sand); font-size: 1.2em; }

.svc-jump {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,19,34,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad-x); display: flex; gap: 26px; align-items: center; overflow-x: auto;
}
.svc-jump-label { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--t-dim); white-space: nowrap; }
.svc-jump a { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--t-light); text-decoration: none; white-space: nowrap; }
.svc-jump a:hover { color: var(--sand-2); }

.svc-guide {
  display: flex; gap: clamp(18px, 2.5vw, 32px); align-items: center; flex-wrap: wrap;
  border: 1px solid var(--line); padding: clamp(22px, 2.6vw, 34px); margin-bottom: clamp(40px, 5vw, 64px);
  background: var(--ink-soft);
}
.svc-guide-mark {
  font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 2.2rem; color: var(--sand);
  flex-shrink: 0; width: 56px; height: 56px; border: 1px solid var(--line-hi); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-guide-text { flex: 1; min-width: 240px; }
.svc-guide-text strong { display: block; font-family: var(--f-display); font-size: 1.15rem; color: var(--cream); margin-bottom: 6px; }
.svc-guide-text p { font-size: .86rem; line-height: 1.7; color: var(--t-light); }

.svc-start { padding: var(--pad-y-sm) var(--pad-x); background: var(--ink); }
.svc-start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); margin-top: clamp(32px, 4vw, 48px); }
.svc-start-card { padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s; }
.svc-start-card:hover { background: rgba(200,169,110,.05); }
.svc-start-step { font-family: var(--f-display); font-style: italic; font-size: .95rem; color: var(--sand); margin-bottom: 14px; }
.svc-start-title { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; line-height: 1.2; }
.svc-start-desc { font-size: .85rem; line-height: 1.7; color: var(--t-light); margin-bottom: 18px; }

/* ── GALLERI ── */
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; padding: 0 var(--pad-x) 40px; }
.gallery-filter {
  background: none; border: 1px solid var(--line); color: var(--t-light);
  font-family: var(--f-body); font-size: .7rem; letter-spacing: .2em; text-transform: lowercase;
  padding: 11px 26px; cursor: pointer; transition: all .22s;
}
.gallery-filter:hover { border-color: var(--line-hi); color: var(--cream); }
.gallery-filter.active { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.gallery-masonry {
  columns: 3; column-gap: clamp(14px, 1.6vw, 22px);
  padding: 0 var(--pad-x) var(--pad-y-sm) !important;
}
.gallery-item { break-inside: avoid; margin-bottom: clamp(14px, 1.6vw, 22px); position: relative; overflow: hidden; }
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; filter: contrast(1.05); transition: transform .7s var(--ease); cursor: zoom-in; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-label {
  position: absolute; left: 16px; bottom: 14px;
  font-size: .62rem; letter-spacing: .24em; text-transform: lowercase; color: rgba(243,236,223,.92);
  text-shadow: 0 1px 8px rgba(10,19,34,.6); pointer-events: none;
}
.gallery-item-label::before { content: '( '; font-family: var(--f-display); font-style: italic; }
.gallery-item-label::after  { content: ' )'; font-family: var(--f-display); font-style: italic; }

/* Lightbox */
.lb { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(10,19,34,.96); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: min(90vw, 1100px); max-height: 86vh; object-fit: contain; }
.lb-btn {
  position: absolute; background: none; border: 1px solid rgba(243,236,223,.3); color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s;
}
.lb-btn:hover { border-color: var(--sand); background: rgba(200,169,110,.15); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: .72rem; letter-spacing: .3em; color: var(--t-dim); }

/* Reels-sektion (galleri) */
.reels-section { padding: var(--pad-y-sm) var(--pad-x); }
.reels-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-col); align-items: end; margin-bottom: clamp(36px, 4vw, 56px); }
.reels-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: clamp(14px, 1.6vw, 22px); }
.reels-grid .reel-wrap { aspect-ratio: 9/14; overflow: hidden; }
.reels-grid video { width: 100%; height: 100%; object-fit: cover; }

/* ── OM OSS ── */
.about-hero-grid { display: grid; grid-template-columns: 5fr 4fr; gap: clamp(12px, 1.5vw, 22px); padding: 0 var(--pad-x); }
.about-hero-grid > div { overflow: hidden; }
.about-hero-img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; filter: contrast(1.05); }
.about-hero-grid > div:nth-child(2) { margin-top: clamp(30px, 4vw, 60px); }
.about-hero-grid > div:nth-child(2) .about-hero-img { aspect-ratio: 4/4; }
.about-content { padding: var(--pad-y-sm) var(--pad-x); }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-col); margin-bottom: var(--pad-y-sm); }
.about-quote-block { border-left: 2px solid var(--sand); padding-left: clamp(22px, 2.5vw, 34px); margin-bottom: 28px; }
.about-quote { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.55; color: var(--cream); }
.about-quote-attr { margin-top: 14px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dim); }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); margin: clamp(36px, 4vw, 52px) 0 var(--pad-y-sm); }
.team-card { border-top: 1px solid var(--line-hi); padding-top: 30px; }
.team-role { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sand); margin-bottom: 12px; }
.team-name { font-family: var(--f-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: var(--cream); margin-bottom: 16px; }
.team-bio { font-size: .9rem; line-height: 1.8; color: var(--t-light); margin-bottom: 20px; }
.team-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.team-facts li { font-size: .84rem; color: var(--t-dim); padding-left: 18px; position: relative; }
.team-facts li::before { content: '·'; position: absolute; left: 4px; color: var(--sand); font-weight: 700; }
.team-facts li strong { color: var(--cream); font-weight: 500; }
.team-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.team-tag { font-size: .62rem; letter-spacing: .16em; text-transform: lowercase; color: var(--t-light); border: 1px solid var(--line); padding: 6px 14px; }
.team-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); margin-bottom: var(--pad-y-sm); }
.value-card { padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-num { font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--sand); margin-bottom: 14px; }
.value-num::before { content: '( '; }
.value-num::after  { content: ' )'; }
.value-title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; line-height: 1.25; }
.value-desc { font-size: .85rem; line-height: 1.75; color: var(--t-light); }

.about-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.2vw, 18px); margin-bottom: var(--pad-y-sm); }
.about-mosaic > div { overflow: hidden; }
.about-mosaic img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: contrast(1.05); transition: transform .8s var(--ease); }
.about-mosaic > div:hover img { transform: scale(1.04); }
.about-mosaic > div:nth-child(even) { margin-top: clamp(20px, 2.5vw, 40px); }

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap-col); padding: 0 var(--pad-x) var(--pad-y-sm); }
.contact-book-card { background: var(--lugga); border: 1px solid rgba(200,169,110,.2); padding: clamp(26px, 3vw, 40px); margin-bottom: 40px; }
.contact-book-card h3 { font-family: var(--f-display); font-size: 1.55rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.contact-book-card h3 em { font-style: italic; color: var(--sand-2); font-weight: 500; }
.contact-book-card p { font-size: .88rem; line-height: 1.75; color: #cdd4e2; margin-bottom: 24px; max-width: 480px; }
.contact-book-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; font-size: .74rem; color: #93a0ba; }
.contact-book-meta .star { color: var(--sand); }
.contact-or { display: flex; align-items: center; gap: 20px; margin: 8px 0 36px; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--t-dim); }
.contact-or::before, .contact-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--t-dim); margin-bottom: 10px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--ink-soft); border: 1px solid var(--line);
  color: var(--cream); font-family: var(--f-body); font-size: .92rem; font-weight: 300;
  padding: 15px 18px; transition: border-color .2s; outline: none; border-radius: 0; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sand); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--t-dim); }
.form-select { cursor: pointer; }
.form-textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .74rem; color: var(--t-dim); margin-top: 8px; line-height: 1.6; }
.form-msg { padding: 18px 22px; margin-bottom: 26px; font-size: .88rem; line-height: 1.65; }
.form-msg.success { background: rgba(200,169,110,.12); border: 1px solid var(--line-hi); color: var(--sand-2); }
.form-msg.error { background: rgba(212,80,46,.1); border: 1px solid rgba(212,80,46,.4); color: #eda28c; }
.form-submit { margin-top: 26px; }

.contact-detail { margin-bottom: 30px; }
.contact-detail-label { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sand); margin-bottom: 8px; }
.contact-detail-value { font-size: .95rem; line-height: 1.7; color: var(--cream); }
.contact-detail-value a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line-hi); }
.contact-detail-value a:hover { color: var(--sand-2); }
.contact-map { width: 100%; aspect-ratio: 4/3; border: 1px solid var(--line); filter: grayscale(.4) contrast(1.05); margin-top: 10px; }

/* ── FAQ ── */
.faq-section { padding: var(--pad-y-sm) var(--pad-x); }
.faq-section.bg-mid { background: var(--ink-soft); border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: var(--gap-col); max-width: 1240px; margin: 0 auto; align-items: start; }
.faq-intro-sticky { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-family: var(--f-display); font-size: 1.08rem; font-weight: 700; color: var(--cream);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sand-2); }
.faq-item summary::after {
  content: '('; font-family: var(--f-display); font-style: italic; font-weight: 400;
  color: var(--sand); font-size: 1.3rem; transition: transform .3s var(--ease); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(90deg); }
.faq-item[open] summary { color: var(--sand-2); }
.faq-answer { padding: 0 4px 24px; font-size: .89rem; line-height: 1.8; color: var(--t-light); max-width: 640px; }
.faq-answer a { color: var(--sand-2); text-decoration: none; border-bottom: 1px solid var(--line-hi); }
.faq-answer strong { color: var(--cream); font-weight: 500; }

/* ── BOKNINGSMODAL ── */
.bm { position: fixed; inset: 0; z-index: 400; display: none; }
.bm.open { display: block; }
.bm-backdrop { position: absolute; inset: 0; background: rgba(10,19,34,.7); backdrop-filter: blur(6px); }
.bm-panel {
  position: absolute; top: 50%; left: 50%;
  width: min(520px, calc(100% - 40px));
  background: var(--ink-soft); border: 1px solid var(--line-hi);
  transform: translate(-50%, -46%); opacity: 0;
  transition: transform .35s var(--ease-out), opacity .3s;
}
.bm.open .bm-panel { transform: translate(-50%, -50%); opacity: 1; }
.bm-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 28px; border-bottom: 1px solid var(--line);
}
.bm-title { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 1.15rem; color: var(--sand-2); }
.bm-close {
  background: none; border: 1px solid var(--line-hi); color: var(--cream);
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; flex-shrink: 0;
}
.bm-close:hover { background: rgba(200,169,110,.15); border-color: var(--sand); }
.bm-body { padding: 30px 28px 34px; }
.bm-lede { font-size: .98rem; color: var(--t-light); line-height: 1.7; margin-bottom: 20px; }
.bm-lede strong { color: var(--cream); font-weight: 500; }
.bm-steps { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bm-steps li {
  font-size: .86rem; color: var(--t-light); line-height: 1.6; padding-left: 26px; position: relative;
}
.bm-steps li::before {
  content: '('; position: absolute; left: 4px; top: -1px;
  font-family: var(--f-display); font-style: italic; color: var(--sand); font-size: 1.05em;
}
.bm-go { display: block; text-align: center; width: 100%; }
.bm-alt { font-size: .78rem; color: var(--t-dim); line-height: 1.7; margin-top: 18px; }
.bm-alt a { color: var(--sand-2); text-decoration: none; }
.bm-alt a:hover { border-bottom: 1px solid var(--sand-2); }

/* ── STICKY MOBIL BOKNINGSLIST ── */
.sticky-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,19,34,.97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-hi);
  transform: translateY(110%); transition: transform .35s var(--ease-out);
}
.sticky-book.show { transform: translateY(0); }
.sticky-book-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-book-info b { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: .92rem; color: var(--sand-2); white-space: nowrap; }
.sticky-book-info small { font-size: .66rem; color: var(--t-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-book-info .star { color: var(--sand); }
.sticky-book-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-book-actions .btn-primary { padding: 13px 26px; font-size: .66rem; }
.sticky-book-call {
  width: 44px; height: 44px; border: 1px solid var(--line-hi); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sticky-book-call svg { width: 17px; height: 17px; fill: var(--sand-2); display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--ink); border-top: 1px solid var(--line);
  padding: var(--pad-y-sm) var(--pad-x) 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: clamp(32px, 4vw, 64px);
}
.footer-logo { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 1.4rem; color: var(--sand-2); display: block; margin-bottom: 18px; }
.footer-tagline { font-size: .86rem; line-height: 1.75; color: var(--t-light); max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 20px; }
.footer-social { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-2); text-decoration: none; border-bottom: 1px solid var(--line-hi); padding-bottom: 3px; }
.footer-social:hover { color: var(--cream); }
.footer-col-title { font-size: .66rem; letter-spacing: .26em; text-transform: lowercase; color: var(--sand); margin-bottom: 20px; display: inline-flex; gap: .5em; align-items: baseline; }
.footer-col-title::before { content: '('; font-family: var(--f-display); font-style: italic; font-size: 1.25em; }
.footer-col-title::after  { content: ')'; font-family: var(--f-display); font-style: italic; font-size: 1.25em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .86rem; color: var(--t-light); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--sand-2); }
.footer-address { font-size: .86rem; line-height: 1.85; color: var(--t-light); }
.footer-address strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 4px; }
.footer-address a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line-hi); }
.footer-address a:hover { color: var(--sand-2); }
.footer-bottom {
  background: var(--ink); border-top: 1px solid var(--line);
  padding: 22px var(--pad-x); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: .72rem; color: var(--t-dim); }
body.has-sticky .footer-bottom { padding-bottom: 100px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.rd2 { transition-delay: .12s; }
.reveal.rd3 { transition-delay: .24s; }

/* Fokus */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sand); outline-offset: 3px;
}

/* ── RESPONSIVT ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-top: clamp(130px, 18vh, 170px); order: 2; padding-bottom: 64px; }
  .hero-right { order: 1; height: min(58vh, 520px); }
  .hero-right::after { background: linear-gradient(180deg, rgba(10,19,34,.35) 0%, rgba(10,19,34,0) 30%, var(--ink) 100%); }
  .hero-left { padding-top: 48px; }
  .hero-scroll { display: none; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof-cell:nth-child(3) { border-left: none; }
  .proof-cell { border-top: 1px solid var(--line); }
  .proof-cell:nth-child(-n+2) { border-top: none; }
  .manifest-inner, .duo-grid, .reels-header, .about-content-grid { grid-template-columns: 1fr; }
  .manifest-aside { border-left: none; border-top: 1px solid var(--line-paper); padding-left: 0; padding-top: 30px; }
  .chapter-curls, .color-layout, .split-2, .finale, .contact-grid { grid-template-columns: 1fr; }
  .curl-types-grid, .svc-start-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cg-steps { grid-template-columns: 1fr; gap: 28px; }
  .gallery-masonry { columns: 2; }
  .works-grid { grid-template-columns: repeat(6, 1fr); }
  .w1 { grid-column: 1 / 4; }
  .w2 { grid-column: 4 / 7; margin-top: clamp(30px, 5vw, 60px); }
  .w3 { grid-column: 1 / 4; margin-top: 0; }
  .w4 { grid-column: 4 / 7; margin-top: 0; }
  .w5 { grid-column: 1 / 7; margin-top: 0; }
  .finale-visual { justify-content: flex-start; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro-sticky { position: static; }
  .team-grid, .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-grid > div:nth-child(2) { margin-top: 0; }
  .about-mosaic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .sticky-book { display: flex; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.4rem); }
  .hero-btns .btn-primary { width: 100%; text-align: center; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof-cell { padding: 22px 16px; }
  .proof-big { font-size: 1.15rem; }
  .proof-small { font-size: .62rem; }
  .duo-card { grid-template-columns: 1fr; }
  .duo-lens { max-width: 190px; aspect-ratio: 3/4.2; }
  .curls-visual { grid-template-columns: 1fr 1fr; }
  .curl-types-grid, .svc-start-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .works-grid { display: flex; flex-direction: column; gap: 14px; }
  .works-grid .work { margin-top: 0 !important; }
  .path { grid-template-columns: 1fr auto; }
  .path-idx { display: none; }
  .pricing-item { grid-template-columns: 1fr auto; }
  .pricing-item .service-link { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .pricing-desc { grid-row: auto; }
  .footer { grid-template-columns: 1fr; gap: 36px; }
  .contact-book-meta { gap: 14px; }
  .finale-visual .fp { font-size: clamp(6rem, 24vw, 9rem); }
  .finale-lens { width: clamp(130px, 34vw, 170px); }
  .bm-newtab { display: none; }
  .bm-head .bm-newtab-m { display: inline-block; }
  .marquee-strip { display: none; }
  .terms-strip { gap: 14px; padding: 18px var(--pad-x); }
}

@media (min-width: 641px) { .bm-newtab-m { display: none !important; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Kompletteringar ── */
.stylist-badge {
  display: inline-block; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand-2); border: 1px solid var(--line-hi); padding: 6px 14px;
}
.contact-map-embed iframe { width: 100%; aspect-ratio: 4/3; border: 1px solid var(--line); filter: grayscale(.35) contrast(1.03); display: block; }

/* ── Smala skärmar (≤360px) ── */
.manifest, .chapter-curls, .chapter-color, .finale { overflow-x: clip; }
@media (max-width: 640px) {
  .color-layout > *, .split-2 > *, .chapter-curls > * { min-width: 0; }
  .btn-primary, .btn-ghost, .btn-outline { white-space: normal; }
  .color-side-img { max-width: 100%; }
}
@media (max-width: 360px) {
  .k-label { white-space: normal; font-size: .64rem; letter-spacing: .26em; }
  .nav-inner { gap: 10px; }
  .nav-logo { font-size: 1.02rem; }
  .nav-cta { padding: 9px 13px; font-size: .6rem; letter-spacing: .12em; }
}

/* ── Prisgrupper (Klipp & Färg / Enbart färg) ── */
.pricing-subgroup {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: 1.35rem; color: var(--sand-2); margin: 0 0 24px;
}



/* ── OMDÖMESSIDA ── */
.page-hero-compact { padding-bottom: clamp(30px, 4vw, 52px); }
.page-hero-compact h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }

.rv-trust { padding: 0 var(--pad-x) clamp(46px, 5vw, 70px); }
.rv-trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 60px);
  padding: clamp(24px, 2.6vw, 34px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.rv-trust-score { border-left: 2px solid var(--sand); padding-left: clamp(20px, 2.2vw, 32px); }
.rv-trust-score .trust-score { font-size: clamp(2.8rem, 4.4vw, 3.8rem); }
.rv-trust-facts { display: flex; flex-direction: column; gap: 8px; }
.rv-trust-facts p { font-size: .92rem; color: var(--t-light); margin: 0; }
.rv-trust-facts p b { color: var(--cream); font-weight: 500; }
.rv-trust-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 10px; }
.rv-trust-links a {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--t-light); text-decoration: none; border-bottom: 1px solid var(--line-hi); padding-bottom: 3px;
}
.rv-trust-links a:hover { color: var(--sand-2); border-color: var(--sand-2); }

.rv-grid-section { padding: 0 var(--pad-x) var(--pad-y-sm); }
.rv-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px); align-items: stretch;
}
.rv-grid .voice { height: 100%; }
.rv-grid .voice-lead { grid-column: span 2; grid-row: span 2; }
.rv-span-2 { grid-column: span 2; }
.rv-quiet { justify-content: center; }
.rv-quiet blockquote { font-size: 1.08rem; }
.rv-grid .voice-lead blockquote { font-size: clamp(1.16rem, 1.7vw, 1.55rem); }

.rv-cta { padding: var(--pad-y) var(--pad-x); background: var(--ink-soft); border-top: 1px solid var(--line); }
.rv-cta .section-body { max-width: 560px; }
.rv-cta-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 30px; }

@media (max-width: 1100px) {
  .rv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Endast ledcitatet spänner brett – annars uppstår hål i rutnätet. */
  .rv-grid .voice-lead { grid-column: span 2; grid-row: auto; }
  .rv-span-2:not(.voice-lead) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-grid .voice-lead { grid-column: span 1; grid-row: auto; }
  .rv-span-2 { grid-column: span 1; }
  .rv-trust-score { border-left: none; border-top: 2px solid var(--sand); padding: 16px 0 0; }
}
