/* ══════════════════════════════════════════════════════════════
   BOUTIQUE MARCHELLA — DIGITAL MAISON
   Guld · silver · off-white · svart. Metall = linje/text, aldrig yta.
   Mål: Bulgariens lyxigaste boutique online.
   ══════════════════════════════════════════════════════════════ */

:root{
  --ink:      #0a0908;
  --ink-2:    #100e0c;
  --ink-3:    #18140f;
  --ink-4:    #221c15;

  --gold:     #c9a86a;
  --gold-lo:  #a98a4f;
  --gold-hi:  #e8d4a4;

  --silver:   #c5cacd;
  --silver-lo:#8b9296;
  --silver-hi:#e6eaec;

  --text:     #f4f0e8;
  --muted:    #a69e90;
  --dim:      #6e675c;

  --hairline:      rgba(201,168,106,.26);
  --hairline-ag:   rgba(197,202,205,.22);
  --hairline-soft: rgba(244,240,232,.1);

  --serif: "Old Standard TT", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-lux: cubic-bezier(.32, .72, 0, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --gut: clamp(1.35rem, 4.8vw, 6rem);
  --sec: clamp(7.5rem, 15vw, 14rem);
  --max: 1440px;
  --nav-h: 4.25rem;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

body{
  margin:0;
  background:var(--ink);
  color:var(--text);
  font-family:var(--sans);
  font-weight:300;
  font-size:clamp(1rem, .45vw + .92rem, 1.1rem);
  line-height:1.75;
  letter-spacing:.012em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* Fast korn – fysisk couture-yta */
body::before{
  content:"";
  position:fixed; inset:0; z-index:80;
  pointer-events:none; opacity:.04; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3,h4{
  font-family:var(--serif); font-weight:400; line-height:1.08; margin:0;
  text-wrap:balance;
}
::selection{ background:var(--gold); color:var(--ink); }

/* ── Reveal ── */
.js-reveal .reveal{ opacity:0; transform:translateY(28px); }
.js-reveal .reveal.is-in{
  opacity:1; transform:none;
  transition:opacity .9s var(--ease-lux), transform .9s var(--ease-lux);
}
@media (prefers-reduced-motion:reduce){
  .js-reveal .reveal{ opacity:1; transform:none; }
}

/* ══════════ PRIMITIVES ══════════ */
.sec-title{
  font-size:clamp(2.2rem, 4.8vw, 4.1rem);
  letter-spacing:-.02em;
  max-width:16ch;
  line-height:1.06;
}
.sec-lede{
  color:var(--muted);
  max-width:46ch;
  margin:1.5rem 0 0;
  font-size:1.02rem;
  line-height:1.75;
}

.link-gold{
  display:inline-flex; align-items:center; gap:.7rem;
  margin-top:2.2rem;
  font-size:.74rem; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold);
  padding-bottom:.4rem;
  border-bottom:1px solid var(--hairline);
  transition:gap .35s var(--ease-lux), border-color .35s, color .35s;
}
.link-gold::after{ content:"\2192"; opacity:.7; transition:transform .35s var(--ease-lux); }
.link-gold:hover{ color:var(--gold-hi); border-bottom-color:var(--gold); gap:1rem; }
.link-gold:hover::after{ transform:translateX(4px); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--sans); font-size:.72rem; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase;
  padding:1.15rem 2.4rem;
  border:1px solid transparent;
  cursor:pointer; background:transparent; color:inherit;
  white-space:nowrap;
  transition:
    background-color .3s var(--ease-lux),
    color .3s var(--ease-lux),
    border-color .3s var(--ease-lux),
    transform .15s var(--ease-out),
    box-shadow .4s var(--ease-lux);
}
.btn:active{ transform:scale(.975); }
.btn--gold{
  border-color:var(--gold); color:var(--gold);
}
.btn--gold:hover{
  background:var(--gold); color:var(--ink);
  box-shadow:0 16px 40px -18px rgba(201,168,106,.55);
}
.btn--line{
  border-color:rgba(244,240,232,.18); color:var(--text);
}
.btn--line:hover{
  border-color:var(--text);
  background:rgba(244,240,232,.04);
}
.btn--ghost{ border-color:var(--hairline); color:var(--gold); }
.btn--ghost:hover{ background:var(--gold); color:var(--ink); }
.btn--sm{ padding:.65rem 1.25rem; font-size:.64rem; }
.btn--full{ width:100%; }

/* ══════════ NAV ══════════ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--nav-h);
  display:flex; align-items:center;
  padding:0 var(--gut);
  border-bottom:1px solid transparent;
  transition:background .4s var(--ease-lux), border-color .4s, backdrop-filter .4s;
}
.nav.is-stuck{
  background:rgba(10,9,8,.78);
  backdrop-filter:blur(20px) saturate(1.2);
  -webkit-backdrop-filter:blur(20px) saturate(1.2);
  border-bottom-color:var(--hairline);
}
.nav__inner{
  width:100%; max-width:var(--max); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}
.wordmark{
  display:flex; align-items:baseline; gap:.6rem; flex-shrink:0; z-index:2;
}
.wordmark__m{
  font-family:var(--serif); font-style:italic;
  font-size:1.55rem; line-height:1; color:var(--gold);
}
.wordmark__txt{
  font-size:.68rem; font-weight:500; letter-spacing:.42em; color:var(--text);
}
.nav__links{
  display:flex; gap:clamp(1.2rem, 2vw, 2.4rem);
  position:absolute; left:50%; transform:translateX(-50%);
}
.nav__links a{
  font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted);
  transition:color .3s;
}
.nav__links a:hover{ color:var(--text); }
.nav__links a.is-current{
  color:var(--text);
  border-bottom:1px solid var(--gold);
}
.nav__right{ display:flex; align-items:center; gap:1.1rem; flex-shrink:0; z-index:2; }
.lang{ display:flex; align-items:center; gap:.45rem; }
.lang__btn{
  background:none; border:0; cursor:pointer; padding:.15rem 0;
  font-size:.66rem; font-weight:500; letter-spacing:.14em; color:var(--dim);
  transition:color .3s;
}
.lang__btn:hover{ color:var(--muted); }
.lang__btn.is-active{ color:var(--gold); }
.lang__sep{ width:1px; height:.7rem; background:var(--hairline); }

.nav__burger{
  display:none; width:2.4rem; height:2.4rem;
  align-items:center; justify-content:center;
  background:none; border:0; cursor:pointer; color:var(--text); padding:0;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after{
  display:block; width:1.1rem; height:1px; background:currentColor; position:relative;
  transition:transform .35s var(--ease-lux), opacity .25s;
}
.nav__burger span::before,
.nav__burger span::after{ content:""; position:absolute; left:0; }
.nav__burger span::before{ top:-6px; }
.nav__burger span::after{ top:6px; }
.nav.is-open .nav__burger span{ background:transparent; }
.nav.is-open .nav__burger span::before{ top:0; transform:rotate(45deg); }
.nav.is-open .nav__burger span::after{ top:0; transform:rotate(-45deg); }

.nav__drawer{
  position:fixed; inset:var(--nav-h) 0 0 0; z-index:99;
  background:rgba(10,9,8,.97);
  backdrop-filter:blur(24px);
  padding:2rem var(--gut) 3rem;
  display:flex; flex-direction:column; gap:0;
  opacity:0; pointer-events:none; visibility:hidden;
  transition:opacity .4s var(--ease-lux), visibility .4s;
}
.nav.is-open .nav__drawer{
  opacity:1; pointer-events:auto; visibility:visible;
}
.nav__drawer a{
  font-family:var(--serif);
  font-size:clamp(1.7rem, 6.5vw, 2.3rem);
  padding:.95rem 0;
  border-bottom:1px solid var(--hairline-soft);
  color:var(--text);
  transition:color .3s;
}
.nav__drawer a:hover{ color:var(--gold); }
.nav__drawer .btn{ margin-top:1.8rem; align-self:flex-start; }

/* Nav över mörk hero – alltid ljusa tokens */
.nav:not(.is-stuck){
  --text:#f4f0e8; --muted:#a69e90; --dim:#6e675c; --gold:#c9a86a;
}

/* ══════════ HERO ══════════ */
.hero{
  --ink:#0a0908; --text:#f4f0e8; --muted:#a69e90; --gold:#c9a86a;
  --gold-hi:#e8d4a4; --silver-lo:#8b9296;
  --hairline:rgba(201,168,106,.26);
  --hairline-soft:rgba(244,240,232,.1);
  position:relative;
  min-height:100dvh;
  color:var(--text);
  background:#070605;
}
.hero__pin{
  position:relative;
  min-height:100dvh;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  overflow:hidden;
}
.hero__visual{
  position:relative;
  min-height:100dvh;
}
.hero__visual-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 18%;
  filter:saturate(.94) contrast(1.04) brightness(.9);
  transform:scale(1.03);
}
.hero__visual::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(7,6,5,.55) 100%),
    linear-gradient(0deg, rgba(7,6,5,.75) 0%, transparent 35%, rgba(7,6,5,.25) 100%),
    radial-gradient(50% 40% at 40% 30%, rgba(201,168,106,.12), transparent 70%);
}

/* Fullskärms-hero 16:9 – text VÄNSTER (hon står höger i L01-panorama) */
html.hero-wide .hero{
  min-height:100dvh;
}
html.hero-wide .hero__pin{
  display:block;
  position:relative;
  min-height:100dvh;
}
html.hero-wide .hero__visual{
  position:absolute;
  inset:0;
  min-height:100%;
  opacity:1;
}
html.hero-wide .hero__visual-img{
  object-position:center 28%;
  filter:saturate(.94) contrast(1.05) brightness(.82);
}
/* Gradient: mörkare VÄNSTER där texten ligger, ljusare höger där hon är */
html.hero-wide .hero__visual::after{
  background:
    linear-gradient(90deg,
      rgba(7,6,5,.82) 0%,
      rgba(7,6,5,.55) 32%,
      rgba(7,6,5,.18) 58%,
      rgba(7,6,5,.35) 100%),
    linear-gradient(0deg, rgba(7,6,5,.7) 0%, transparent 42%),
    radial-gradient(45% 50% at 78% 42%, rgba(201,168,106,.08), transparent 55%);
}
html.hero-wide .hero__stage{
  position:relative;
  z-index:2;
  min-height:100dvh;
  max-width:min(34rem, 46vw);
  width:100%;
  margin-left:var(--gut);
  margin-right:auto;
  background:transparent;
  justify-content:center;
  align-items:flex-start;   /* vänsterställd text i vänsterspalten */
  text-align:left;
  padding-left:clamp(1.25rem, 3vw, 2rem);
  padding-right:clamp(1.25rem, 3vw, 2rem);
}
html.hero-wide .hero__seal{ margin-left:0; margin-right:auto; }
html.hero-wide .hero__title{ margin-left:0; margin-right:0; }
html.hero-wide .hero__lede{ margin-left:0; margin-right:0; max-width:34ch; }
html.hero-wide .hero__cta{ justify-content:flex-start; }
html.hero-wide .hero__place{ margin-left:0; }
@media (max-width:1100px){
  html.hero-wide .hero__stage{
    max-width:100%;
    margin-left:0;
    margin-right:0;
    align-items:center;
    text-align:center;
    /* Extra text-skydd under centrerad copy (vit text över sten/ljus) */
    background:linear-gradient(180deg, transparent 0%, rgba(7,6,5,.55) 28%, rgba(7,6,5,.92) 100%);
  }
  html.hero-wide .hero__seal{ margin-left:auto; margin-right:auto; }
  html.hero-wide .hero__title{ margin-left:auto; margin-right:auto; }
  html.hero-wide .hero__lede{ margin-left:auto; margin-right:auto; }
  html.hero-wide .hero__cta{ justify-content:center; }
  /* Full-bleed hero: behåll bilden synlig (generell .hero__visual sätter opacity:.35) */
  html.hero-wide .hero__visual{ opacity:1; }
  /*
    Mobil-crop: liggande 1280×720 i stående viewport visar ~26% av bredden.
    Maria står i högra tredjedelen → center 28% klipper bort henne (bara arm kvar).
    76% X håller ansikte/figur i bild ovanför rubrik (Claude-mätning, 390–430 px).
  */
  html.hero-wide .hero__visual-img{
    object-position:76% 30%;
  }
  /* Gradient: 90deg mörkar vänster (desktop text). Mobil = centrerad text → 180deg */
  html.hero-wide .hero__visual::after{
    background:
      linear-gradient(180deg,
        rgba(7,6,5,.42) 0%,
        rgba(7,6,5,.18) 28%,
        rgba(7,6,5,.55) 58%,
        rgba(7,6,5,.88) 100%),
      radial-gradient(55% 45% at 50% 35%, rgba(201,168,106,.07), transparent 65%);
  }
}
/* Extra-smal: något mer åt höger om crop fortfarande nypper */
@media (max-width:430px){
  html.hero-wide .hero__visual-img{
    object-position:78% 28%;
  }
}
.hero__stage{
  position:relative; z-index:2;
  display:flex; flex-direction:column;
  justify-content:center;
  align-items:center;          /* centrera allt i högerkolumnen */
  text-align:center;
  padding:calc(var(--nav-h) + 1.5rem) clamp(1.5rem, 4vw, 4rem) 3rem;
  background:
    radial-gradient(80% 55% at 50% 30%, rgba(201,168,106,.09), transparent 55%),
    linear-gradient(180deg, #0c0a08 0%, #080706 100%);
}
.hero__place{
  font-size:.68rem; font-weight:500;
  letter-spacing:.38em; text-transform:uppercase;
  color:var(--gold); margin:0 0 1.6rem;
  display:inline-flex; align-items:center; gap:.9rem;
  opacity:0; animation:fadeup .9s var(--ease-lux) .15s forwards;
}
.hero__place::before,
.hero__place::after{
  content:""; width:2rem; height:1px;
  background:linear-gradient(90deg, transparent, var(--silver-lo));
}
.hero__place::after{ transform:scaleX(-1); }

/* Hennes logga: mjuk guld-aura bakom (samma grepp som v1-kuben/sigillet) */
.hero__seal{
  position:relative;
  width:clamp(6.5rem, 14vw, 9.25rem);
  aspect-ratio:1;
  margin:0 auto 1.5rem;
  display:grid;
  place-items:center;
  opacity:0;
  animation:crestin 1.2s var(--ease-lux) .22s forwards;
}
.hero__seal-aura{
  position:absolute;
  inset:-55%;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 48%,
      rgba(201,168,106,.42) 0%,
      rgba(201,168,106,.16) 28%,
      rgba(201,168,106,.04) 52%,
      transparent 68%);
  pointer-events:none;
  z-index:0;
  filter:blur(2px);
}
.hero__seal img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
  /* v1-recept: guldglöd + djup – loggan flyter i mörkret, inte en klistrad bricka */
  filter:
    drop-shadow(0 0 22px rgba(201,168,106,.55))
    drop-shadow(0 0 48px rgba(201,168,106,.28))
    drop-shadow(0 14px 28px rgba(0,0,0,.55));
}

.hero__title{
  font-size:clamp(2.6rem, 5.2vw, 4.8rem);
  letter-spacing:-.025em; line-height:1.02;
  max-width:12ch;
  margin:0 auto;
  text-wrap:balance;
}
.hero__line{ display:block; overflow:hidden; padding-bottom:.05em; }
.hero__reveal{
  display:block; transform:translateY(105%);
  animation:rise 1s var(--ease-lux) forwards;
}
.hero__line:nth-child(1) .hero__reveal{ animation-delay:.45s; }
.hero__line:nth-child(2) .hero__reveal{ animation-delay:.62s; }
.hero__title .l2{
  font-style:italic; color:var(--gold);
  font-size:.86em; line-height:1.12;
}

.hero__lede{
  color:var(--muted); max-width:34ch;
  margin:1.35rem auto 0; font-size:.98rem; line-height:1.7;
  opacity:0; animation:fadeup 1s var(--ease-lux) .95s forwards;
}
.hero__cta{
  display:flex; flex-wrap:wrap; gap:.85rem;
  justify-content:center;
  margin-top:2rem;
  opacity:0; animation:fadeup 1s var(--ease-lux) 1.1s forwards;
}
/* hero meta borttagen i still luxury — trust-raden under hero bär det */

@keyframes rise{ to{ transform:translateY(0); } }
@keyframes fadeup{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:none; }
}
@keyframes crestin{
  from{ opacity:0; transform:translateY(16px) scale(.94); }
  to{ opacity:1; transform:none; }
}
@media (prefers-reduced-motion:reduce){
  .hero{ min-height:100dvh; }
  .hero__place,.hero__seal,.hero__reveal,.hero__lede,.hero__cta{
    animation:none; opacity:1; transform:none;
  }
}

/* Wide: lite mer glöd så sigillet håller mot fotobakgrund */
html.hero-wide .hero__seal{
  width:clamp(5.75rem, 11vw, 8rem);
}
html.hero-wide .hero__seal-aura{
  background:
    radial-gradient(circle at 50% 48%,
      rgba(201,168,106,.5) 0%,
      rgba(201,168,106,.18) 30%,
      transparent 66%);
}

/* ══════════ TRUST (still — ingen marquee) ══════════ */
.trust{
  border-block:1px solid var(--hairline);
  background:var(--ink-2);
  padding:clamp(1.75rem, 3.8vw, 2.6rem) var(--gut);
}
.trust__inner{
  max-width:var(--max); margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem;
  text-align:center;
}
.trust__inner p{
  margin:0;
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}
.trust__inner span{ color:var(--gold); }
@media (max-width:700px){
  .trust__inner{ grid-template-columns:1fr; gap:1rem; }
}

/* ══════════ FABRIC-FIRST (tyg, stilla editorial) ══════════ */
.fabric{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:clamp(1.1rem, 2.2vw, 1.85rem) clamp(1rem, 1.8vw, 1.5rem);
  max-width:var(--max);
  margin:0 auto;
  padding:var(--sec) var(--gut);
  align-items:end;
}
.fabric__copy{
  grid-column:1 / 4;
  align-self:center;
  padding-right:clamp(0rem, 1vw, 1rem);
}
.fabric__kicker{
  margin:0 0 1rem;
  font-size:.68rem;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
}
.fabric__copy h2{
  font-size:clamp(2.1rem, 3.4vw, 3.35rem);
  letter-spacing:-.02em;
  line-height:1.05;
  max-width:9ch;
  margin:0 0 1.35rem;
}
.fabric__copy p{
  margin:0;
  color:var(--muted);
  max-width:30ch;
  font-size:.98rem;
  line-height:1.78;
}
.fabric__cell{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.fabric__cell figcaption{
  font-size:.68rem;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--dim);
}
.fabric__cell--a{ grid-column:4 / 8; }
.fabric__cell--a .shot{ aspect-ratio:3/4; }
.fabric__cell--b{ grid-column:8 / 11; margin-bottom:clamp(2rem, 6vw, 5.5rem); }
.fabric__cell--b .shot{ aspect-ratio:3/4; }
.fabric__cell--c{ grid-column:11 / 13; }
.fabric__cell--c .shot{ aspect-ratio:2/3; }
.fabric__cell--d{
  grid-column:8 / 13;
  margin-top:clamp(.25rem, 1vw, .75rem);
}
.fabric__cell--d .shot{ aspect-ratio:21/9; }
.fabric__cell .shot{ border:1px solid var(--hairline-ag); }
.fabric__cell .shot::after{
  background:linear-gradient(180deg, transparent 60%, rgba(10,9,8,.28) 100%);
}
@media (hover:hover) and (pointer:fine){
  .fabric__cell:hover .shot img{
    transform:scale(1.035);
    filter:saturate(1) contrast(1.05);
  }
}
@media (max-width:960px){
  .fabric{ grid-template-columns:repeat(6, 1fr); align-items:start; }
  .fabric__copy{ grid-column:1 / -1; margin-bottom:clamp(1.5rem, 3vw, 2.5rem); }
  .fabric__copy h2{ max-width:12ch; }
  .fabric__cell--a{ grid-column:1 / 4; }
  .fabric__cell--b{ grid-column:4 / 7; margin-bottom:0; }
  .fabric__cell--c{ grid-column:1 / 4; }
  .fabric__cell--d{ grid-column:4 / 7; }
  .fabric__cell--d .shot{ aspect-ratio:3/4; }
}
@media (max-width:560px){
  .fabric{ grid-template-columns:1fr 1fr; }
  .fabric__copy{ grid-column:1 / -1; }
  .fabric__cell--a,
  .fabric__cell--b,
  .fabric__cell--c{ grid-column:auto; }
  .fabric__cell--d{ grid-column:1 / -1; }
  .fabric__cell--d .shot{ aspect-ratio:16/10; }
}

/* ══════════ SECTIONS ══════════ */
.sec{
  padding:var(--sec) var(--gut);
  max-width:var(--max);
  margin:0 auto;
  overflow-x:clip;
}
.sec[id]{ scroll-margin-top:calc(var(--nav-h) + 1rem); }
.sec__head{ margin-bottom:clamp(2.8rem, 5.5vw, 4.8rem); }
.sec__note{
  margin:1.35rem 0 0;
  font-size:.76rem; letter-spacing:.08em;
}
.sec__note a{
  color:var(--gold);
  border-bottom:1px solid var(--hairline);
  transition:border-color .3s;
}
.sec__note a:hover{ border-bottom-color:var(--gold); }
.sec--flush{ max-width:none; padding-left:0; padding-right:0; }
.sec--flush .sec__inner{
  max-width:var(--max); margin:0 auto; padding:0 var(--gut);
}
.sec--band{
  background:var(--ink-2);
  max-width:none;
  padding:var(--sec) var(--gut);
}
.sec--band .sec__inner{ max-width:var(--max); margin:0 auto; }

/* ══════════ MEDIA ══════════ */
.shot{
  position:relative; overflow:hidden;
  background:var(--ink-3);
  isolation:isolate;
}
.shot::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(244,240,232,.05);
  background:linear-gradient(180deg, transparent 50%, rgba(10,9,8,.35) 100%);
  transition:opacity .5s;
}
.shot img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1s var(--ease-lux), filter .6s;
  filter:saturate(.95) contrast(1.03);
}
.shot--portrait{ aspect-ratio:3/4; }
.shot--tall{ aspect-ratio:3/4.4; }
.shot--reel{ aspect-ratio:9/16; }
.shot--wide{ aspect-ratio:16/11; }
.shot--cinema{ aspect-ratio:16/9; }

@media (hover:hover) and (pointer:fine){
  .card:hover .shot img,
  .cat:hover .shot img,
  .reel:hover .shot img{
    transform:scale(1.05);
    filter:saturate(1.02) contrast(1.05);
  }
  .card:hover .shot::after,
  .cat:hover .shot::after{ opacity:.55; }
}

/* ══════════ MOMENT (full-bleed Plovdiv) ══════════ */
.moment{
  position:relative;
  /* Lite högre = mindre aggressiv vertikal crop på fullfigurs-V03 */
  min-height:min(78vh, 42rem);
  display:grid;
  place-items:center;
  overflow:hidden;
  border-block:1px solid var(--hairline);
}
.moment__media{
  position:absolute; inset:0;
}
.moment__media img{
  width:100%; height:100%;
  object-fit:cover;
  /* V03: bar axel + ansikte — 40% kapade över ögonen; uppåt i bild */
  object-position:center 12%;
  filter:saturate(.92) contrast(1.04) brightness(.72);
}
.moment__veil{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,9,8,.35) 0%, rgba(10,9,8,.55) 50%, rgba(10,9,8,.75) 100%),
    radial-gradient(50% 40% at 50% 50%, rgba(201,168,106,.1), transparent 70%);
}
.moment__line{
  position:relative; z-index:2;
  margin:0;
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.5rem, 3.5vw, 2.4rem);
  color:var(--gold-hi);
  letter-spacing:.06em;
  text-shadow:0 8px 40px rgba(0,0,0,.55);
}

/* ══════════ COLLECTION ══════════ */
.cats{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:clamp(.9rem, 1.6vw, 1.4rem);
}
.cat{
  display:flex; flex-direction:column;
  position:relative;
  color:var(--text);
}
.cat--hero{
  grid-row:span 2;
}
.cat--hero .shot{ flex:1; min-height:100%; aspect-ratio:auto; height:100%; }
.cat--hero .shot img{ height:100%; }
.cat__body{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:1.5rem 1.4rem;
  background:linear-gradient(0deg, rgba(10,9,8,.88) 0%, transparent 100%);
}
.cat:not(.cat--hero) .cat__body{
  position:static;
  background:none;
  padding:1.15rem 0 0;
}
.cat__body h3{
  font-size:clamp(1.25rem, 1.8vw, 1.7rem);
  letter-spacing:-.01em;
  margin-bottom:.35rem;
}
.cat__body p{
  margin:0; color:var(--muted); font-size:.88rem; line-height:1.55;
  max-width:28ch;
}
.cat--hero .cat__body p{ color:rgba(244,240,232,.78); }

/* ══════════ ATELIER ══════════ */
.atelier{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem, 5vw, 5.5rem);
  align-items:center;
}
.atelier__frame{
  position:relative;
}
.atelier__frame::before{
  content:"";
  position:absolute;
  inset:-.7rem -.7rem auto auto;
  width:42%; height:42%;
  border-top:1px solid var(--hairline);
  border-right:1px solid var(--hairline);
  pointer-events:none;
  z-index:2;
}
.atelier__frame::after{
  content:"";
  position:absolute;
  inset:auto auto -.7rem -.7rem;
  width:42%; height:42%;
  border-bottom:1px solid var(--hairline);
  border-left:1px solid var(--hairline);
  pointer-events:none;
  z-index:2;
}
.atelier__txt .sec-title{ max-width:14ch; }
.atelier__txt p{
  color:var(--muted); margin:1.5rem 0 0;
  max-width:44ch; font-size:1.02rem; line-height:1.78;
}
.atelier__quote{
  margin:2.2rem 0 0;
  padding:1.4rem 0 0;
  border-top:1px solid var(--hairline-soft);
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(1.2rem, 2vw, 1.55rem);
  color:var(--gold-hi);
  line-height:1.35;
  max-width:22ch;
}

/* ══════════ MOTION / REELS ══════════ */
.motion-head{
  display:flex; justify-content:space-between; align-items:end;
  gap:2rem; margin-bottom:clamp(2rem, 4vw, 3.2rem);
  flex-wrap:wrap;
}
.detail-strip{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:clamp(.75rem, 1.5vw, 1.25rem);
  margin-bottom:clamp(2rem, 4vw, 3rem);
}
.detail-strip__item{ margin:0; }
.detail-strip .shot{ border:1px solid var(--hairline-ag); }
/* Täta crops = “närbild” utan AI-upprepning */
.shot--crop-a img{ object-position:center 35%; transform:scale(1.15); }
.shot--crop-b img{ object-position:center 25%; transform:scale(1.2); }
.shot--crop-c img{ object-position:center 30%; transform:scale(1.18); }
.detail-strip .shot{ overflow:hidden; }
@media (max-width:800px){
  .detail-strip{ grid-template-columns:1fr; }
  .detail-strip__item--wide .shot--cinema{ aspect-ratio:16/10; }
}
.reels-rail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(200px, 22vw);
  gap:1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:.5rem;
  margin:0 calc(-1 * var(--gut));
  padding-left:var(--gut); padding-right:var(--gut);
  scrollbar-width:thin;
  scrollbar-color:var(--gold-lo) transparent;
}
.reels-rail::-webkit-scrollbar{ height:3px; }
.reels-rail::-webkit-scrollbar-thumb{ background:var(--gold-lo); }
.reel{
  scroll-snap-align:start;
  display:block;
  transition:transform .5s var(--ease-lux);
}
.reel .shot{ border:1px solid var(--hairline-ag); }
@media (hover:hover) and (pointer:fine){
  .reel:hover{ transform:translateY(-8px); }
  .reel:hover .shot{ border-color:var(--silver); }
}
.reel__cap{
  margin-top:.85rem;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted);
}

/* ══════════ LOOKBOOK GRID (editorial, mer luft) ══════════ */
.lookbook{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:clamp(1.6rem, 3.2vw, 2.8rem) clamp(1rem, 1.8vw, 1.5rem);
}
.card{ display:flex; flex-direction:column; color:inherit; }
.card--a{ grid-column:span 7; }
.card--b{ grid-column:span 5; }
.card--c{ grid-column:span 4; }
.card--d{ grid-column:span 4; }
.card--e{ grid-column:span 4; }
.card--f{ grid-column:span 6; }
.card--g{ grid-column:span 6; }
.card--a .shot{ aspect-ratio:16/11; }
.card--f .shot,
.card--g .shot{ aspect-ratio:3/4; }
.card__meta{
  display:flex; justify-content:space-between; align-items:baseline;
  gap:1rem; margin-top:1.15rem; padding-top:1.05rem;
  border-top:1px solid var(--hairline-soft);
}
.card__meta h3{
  font-size:clamp(1.02rem, 1.35vw, 1.22rem);
  letter-spacing:-.01em;
  max-width:22ch;
}
.price{
  font-size:.66rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); flex-shrink:0;
}
/* Stiller hover — mindre “byrå”, mer couture */
@media (hover:hover) and (pointer:fine){
  .card:hover .shot img{
    transform:scale(1.03);
  }
}

/* ══════════ FIT STEPS ══════════ */
.fit-lead{ max-width:38rem; margin-bottom:clamp(2.8rem, 5vw, 4.5rem); }
.steps{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.5rem, 3vw, 2.5rem);
}
.steps li{
  position:relative;
  padding:2rem 1.5rem 1.6rem;
  border:1px solid var(--hairline-soft);
  background:
    linear-gradient(165deg, rgba(201,168,106,.04), transparent 50%),
    var(--ink-3);
  transition:border-color .4s;
}
.steps li:hover{ border-color:var(--hairline); }
.steps__n{
  display:block;
  font-family:var(--serif);
  font-size:2rem;
  color:var(--silver);
  margin-bottom:1.1rem;
  line-height:1;
}
.steps h3{
  font-size:1.25rem;
  margin-bottom:.7rem;
  letter-spacing:-.01em;
}
.steps p{
  margin:0; color:var(--muted); font-size:.94rem; line-height:1.65;
  max-width:28ch;
}

/* ══════════ CONTACT ══════════ */
.contact{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:clamp(2.5rem, 6vw, 6rem);
  align-items:start;
}
.contact__txt .sec-title{ max-width:12ch; }
.contact__txt > p{
  color:var(--muted); margin:1.5rem 0 0; max-width:40ch; line-height:1.75;
}
.contact__facts{
  margin:2.8rem 0 0;
  border-top:1px solid var(--hairline-soft);
}
.contact__facts div{
  display:grid;
  grid-template-columns:6.5rem 1fr;
  gap:1rem; align-items:baseline;
  padding:1.1rem 0;
  border-bottom:1px solid var(--hairline-soft);
}
.contact__facts dt{
  font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--dim);
}
.contact__facts dd{ margin:0; font-size:.98rem; }
.contact__facts a{
  color:var(--gold);
  border-bottom:1px solid transparent;
  transition:border-color .3s;
}
.contact__facts a:hover{ border-bottom-color:var(--gold); }

.form{
  display:grid; gap:1.25rem;
  padding:clamp(1.6rem, 3vw, 2.4rem);
  border:1px solid var(--hairline);
  background:
    linear-gradient(160deg, rgba(201,168,106,.05), transparent 40%),
    rgba(16,14,12,.85);
}
.field{ display:grid; gap:.45rem; }
.field label{
  font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--dim);
}
.field input,
.field select,
.field textarea{
  width:100%;
  background:transparent;
  border:0; border-bottom:1px solid var(--hairline-soft);
  border-radius:0;
  padding:.85rem 0;
  font-weight:300; font-size:1rem;
  transition:border-color .35s;
}
.field textarea{ resize:vertical; min-height:5.5rem; }
.field select option{ background:var(--ink-2); }
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none; border-bottom-color:var(--gold);
}
.form__note{
  margin:0; text-align:center;
  font-size:.76rem; color:var(--dim); letter-spacing:.04em;
}
.form__ok{
  margin:0; text-align:center;
  font-size:.85rem; color:var(--gold);
  border:1px solid var(--hairline);
  padding:1rem;
}
.form__err{
  margin:0; text-align:center;
  font-size:.85rem; color:#c47a6a;
  border:1px solid rgba(196,122,106,.35);
  padding:1rem;
}

/* ══════════ PRODUKTSIDA (maison) ══════════ */
.pd{ max-width:var(--max); margin:0 auto; padding:calc(var(--nav-h) + 2.5rem) var(--gut) var(--sec); }
.pd__back{
  display:inline-flex; align-items:center; gap:.55rem;
  margin-bottom:2.2rem;
  font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); transition:color .3s, gap .3s;
}
.pd__back::before{ content:"\2190"; }
.pd__back:hover{ color:var(--gold); gap:.8rem; }
.pd__wrap{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem, 5vw, 5rem); align-items:start;
}
.pd__gallery{ position:relative; }
.pd__img{ box-shadow:0 40px 90px -50px rgba(0,0,0,.8); max-width:36rem; }
.pd__info{ padding-top:.5rem; }
.pd__kat{
  font-size:.64rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin:0 0 1.2rem;
}
.pd__namn{
  font-size:clamp(2rem, 3.5vw, 3.1rem);
  letter-spacing:-.02em; max-width:14ch; line-height:1.06;
}
.pd__pris{
  color:var(--muted); margin:1.2rem 0 1.6rem;
  font-size:.92rem; letter-spacing:.05em;
}
.pd__points{
  list-style:none; margin:0 0 2rem; padding:0;
  display:grid; gap:.65rem;
}
.pd__points li{
  font-size:.9rem; color:var(--muted);
  padding-left:1.1rem; position:relative;
}
.pd__points li::before{
  content:""; position:absolute; left:0; top:.55em;
  width:.4rem; height:1px; background:var(--gold);
}
.pd__info .btn{ min-width:14rem; }
.pd__info .link-gold{ display:inline-flex; margin-top:1.2rem; margin-left:.25rem; }
.pd__ask{
  margin-top:clamp(4rem, 8vw, 6.5rem);
  max-width:32rem;
}
.pd__ask .sec-title{ margin-bottom:1.75rem; max-width:14ch; }
.pd__more{ margin-top:clamp(4rem, 8vw, 6.5rem); }
.pd__more .sec-title{ margin-bottom:2rem; }
.lookbook--related{
  grid-template-columns:repeat(3, 1fr);
}
.lookbook--related .card{ grid-column:auto; }
@media (max-width:900px){
  .pd__wrap{ grid-template-columns:1fr; }
  .lookbook--related{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .lookbook--related{ grid-template-columns:1fr; }
}

/* ══════════ FOOTER ══════════ */
.foot{
  border-top:1px solid var(--hairline);
  background:var(--ink-2);
}
.foot__inner{
  max-width:var(--max); margin:0 auto;
  padding:clamp(3.5rem, 7vw, 6rem) var(--gut) clamp(2.5rem, 4vw, 3.5rem);
  display:grid; grid-template-columns:1.4fr 1fr; gap:3rem;
}
.foot__brand p{
  color:var(--dim); font-size:.9rem; margin:1.4rem 0 0;
  max-width:28ch; line-height:1.65;
}
.foot__cols{
  display:grid; grid-template-columns:1fr 1fr; gap:2rem;
}
.foot__cols h4{
  font-family:var(--sans); font-size:.62rem; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold);
  margin:0 0 1.15rem;
}
.foot__cols a{
  display:block; color:var(--muted); font-size:.9rem;
  padding:.32rem 0; transition:color .3s;
}
.foot__cols a:hover{ color:var(--text); }
.foot__bar{
  max-width:var(--max); margin:0 auto;
  padding:1.35rem var(--gut);
  border-top:1px solid var(--hairline-soft);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--dim);
}

/* ══════════ THEME TOGGLE ══════════ */
.vswitch,
.theme-switch{
  display:inline-flex; align-items:center; gap:.15rem;
  background:rgba(10,9,8,.9);
  border:1px solid var(--hairline);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding:.28rem;
  font-family:var(--sans);
  font-size:.58rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--dim);
  transition:border-color .3s, background-color .35s;
}
/* Flytande vswitch bort i still luxury — tema bara i nav */
.vswitch{ display:none !important; }
.vswitch:hover,
.theme-switch:hover{ border-color:var(--hairline-ag); }

/* Nav-variant: kompakt, synlig i headern */
.theme-switch{
  background:rgba(10,9,8,.35);
  padding:.22rem;
}
.nav.is-stuck .theme-switch{
  background:rgba(10,9,8,.55);
}

.vswitch__opt,
.theme-switch__opt{
  appearance:none; -webkit-appearance:none;
  background:transparent; border:0; cursor:pointer;
  font:inherit; letter-spacing:inherit; text-transform:inherit;
  color:var(--dim);
  padding:.45rem .75rem;
  transition:color .3s, background-color .3s, box-shadow .3s;
  line-height:1;
}
.vswitch__opt.is-on,
.theme-switch__opt.is-on{
  color:var(--ink);
  background:var(--gold);
  box-shadow:0 6px 18px -10px rgba(201,168,106,.7);
}
.vswitch__sep{ display:none; }

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

/* ══════════ RESPONSIVE ══════════ */
@media (max-width:1100px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-flex; }
  .nav__right .btn--sm{ display:none; }
  .hero__pin{ grid-template-columns:1fr; }
  .hero__visual{
    position:absolute; inset:0; opacity:.35;
    min-height:100%;
  }
  .hero__visual::after{
    background:
      linear-gradient(180deg, rgba(7,6,5,.3) 0%, rgba(7,6,5,.92) 70%, #070605 100%);
  }
  .hero__stage{
    min-height:100dvh;
    background:transparent;
    padding-bottom:3.5rem;
  }
  .hero{ height:auto; min-height:100dvh; }
  .hero__pin{ height:auto; min-height:100dvh; position:relative; }
  .sec__head--split{ grid-template-columns:1fr; }
  .cats{ grid-template-columns:1fr 1fr; }
  .cat--hero{ grid-column:span 2; grid-row:auto; }
  .cat--hero .shot{ aspect-ratio:16/10; }
  .atelier,.contact,.pd__wrap{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .foot__inner{ grid-template-columns:1fr; }
  .lookbook{ grid-template-columns:1fr 1fr; }
  .card--a,.card--b,.card--c,.card--d,.card--e,.card--f,.card--g{ grid-column:span 1; }
  .card--a .shot{ aspect-ratio:3/4; }
  .reels-rail{ grid-auto-columns:minmax(160px, 42vw); }
}

@media (max-width:640px){
  .cats{ grid-template-columns:1fr; }
  .cat--hero{ grid-column:auto; }
  .cat--hero .shot{ aspect-ratio:3/4; }
  .lookbook{ grid-template-columns:1fr; }
  .hero__cta{ flex-direction:column; align-items:center; max-width:20rem; width:100%; }
  .hero__cta .btn{ width:100%; }
  .wordmark__txt{ letter-spacing:.28em; font-size:.6rem; }

  .contact__facts div{ grid-template-columns:5.5rem 1fr; }
  .vswitch{ left:.55rem; bottom:.55rem; font-size:.54rem; }
  .theme-switch{ display:none; } /* mobil: bara flytande växel */
  body.nav-lock{ overflow:hidden; }
  .btn{ white-space:normal; text-align:center; line-height:1.3; }
}

@media (max-width:1100px){
  .theme-switch{ display:none; }
}
