/* ============ EXOTICAGOLF — design tokens ============ */
:root {
  --cream: #f6f1e7;
  --cream-soft: #efe8d9;
  --paper: #fbf8f2;
  --charcoal: #1c1b19;
  --charcoal-soft: #2a2926;
  --coral: #e8503a;
  --coral-deep: #d43f2a;
  --sun: #f4b942;
  --turquoise: #1fa9a0;
  --powder: #8fb8dc;
  --ink-on-cream: #262521;
  --ink-soft: rgba(38, 37, 33, 0.66);
  --tile: #e7e2d7; /* matches the spin videos' studio backdrop */
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --script: "Kaushan Script", cursive;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-on-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.script { font-family: var(--script); font-weight: 400; }
img { max-width: 100%; display: block; }

/* ============ Shared: buttons, kickers, section heads, stars ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.8em 1.7em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 6px 24px rgba(232, 80, 58, 0.35); }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn-charcoal { background: var(--charcoal); color: var(--cream); box-shadow: 0 6px 22px rgba(28, 27, 25, 0.28); }
.btn-charcoal:hover { background: #000; transform: translateY(-2px); }
.btn-cream {
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid rgba(28, 27, 25, 0.14);
  box-shadow: 0 8px 28px rgba(16, 15, 13, 0.30);
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-big { font-size: 1.15rem; padding: 1em 2.4em; }
.btn-wide { width: 100%; max-width: 380px; padding: 1em 2em; }

.kicker {
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--coral);
}
.kicker-sun { color: var(--sun); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-title {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--charcoal);
  margin-top: 0.7rem;
  line-height: 1.15;
}
.section-sub { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.section-head-light .section-title { color: var(--cream); }
.section-head-light .section-sub { color: rgba(246, 241, 231, 0.7); }

.stars { color: var(--sun); letter-spacing: 0.18em; font-size: 1.02rem; }
.star-off { opacity: 0.25; }

.text-link {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--ink-on-cream);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid var(--sun);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover { color: var(--coral); border-color: var(--coral); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(38px); }
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Split-text word reveal */
[data-split] .sw { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.14em; margin-bottom: -0.14em; }
[data-split] .w {
  display: inline-block;
  transform: translateY(115%) rotate(5deg);
  transform-origin: 0 100%;
}
[data-split].split-in .w {
  transform: translateY(0) rotate(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--wi) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  [data-split] .w { transform: none; }
}

/* Scroll progress */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 90;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--turquoise));
}

/* Custom cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 120;
  transform: translate(-100px, -100px);
  transition: width 0.25s ease, height 0.25s ease;
  will-change: transform;
}
.cursor.grow { width: 52px; height: 52px; }
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}
@media (pointer: coarse) {
  .cursor { display: none; }
}

/* Film grain */
.grain {
  position: fixed;
  inset: -60px;
  z-index: 85;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-18px, 24px); }
  50% { transform: translate(22px, -14px); }
  75% { transform: translate(-12px, -22px); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* Chapter dividers */
.chapter {
  position: relative;
  height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
}
.chapter-bg { position: absolute; inset: 0; }
.chapter-bg img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 15, 13, 0.28), transparent 30%, transparent 62%, rgba(16, 15, 13, 0.55));
}
.chapter-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 clamp(1.4rem, 6vw, 6rem) clamp(2.6rem, 7vh, 4.5rem);
  margin-left: auto;
  text-align: right;
}
.chapter-copy-left { margin-left: 0; margin-right: auto; text-align: left; }
.chapter-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.55);
  margin-top: 0.5rem;
}

/* Footer sign-off */
.footer-signoff {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--cream);
  margin-bottom: 2.2rem;
  line-height: 1.2;
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28, 27, 25, 0.08);
}
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.header-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.header-nav a:hover { color: var(--coral); opacity: 1; }
.site-header:not(.scrolled) { color: #fff; }
.site-header:not(.scrolled) .header-logo img { filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.site-header:not(.scrolled) .header-nav a { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4); }
/* Premium CTA logic: cream button over the film, charcoal on light sections */
.site-header:not(.scrolled) .header-cta { background: var(--cream); color: var(--charcoal); border: none; }
.site-header:not(.scrolled) .header-cta:hover { background: #fff; }
.site-header.scrolled .header-cta { background: var(--charcoal); color: var(--cream); }
.site-header.scrolled .header-cta:hover { background: #000; }

/* ============ Sticky CTA ============ */
.sticky-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  border: 1px solid rgba(246, 241, 231, 0.22);
  box-shadow: 0 10px 32px rgba(16, 15, 13, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}
.sticky-cta:hover { transform: translateY(-3px) scale(1.03); background: #000; }
.sticky-cta-parrot { font-size: 1.1em; }

/* ============ Loader ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-parrot { height: 74px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }
.loader-text { font-family: var(--script); font-size: 1.4rem; color: var(--charcoal); }
.loader-bar {
  width: min(260px, 60vw);
  height: 6px;
  border-radius: 999px;
  background: rgba(28, 27, 25, 0.12);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--turquoise));
  transition: width 0.25s ease;
}

/* ============ FILM (canvas scrub — ren bio) ============ */
.film { position: relative; background: var(--charcoal); }
.film-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.film-cinema { height: 500vh; }
#filmCanvas, #holdCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.film-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(15, 14, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.30) 0%, transparent 22%, transparent 78%, rgba(15, 14, 12, 0.30) 100%);
}

/* Overlays */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-mark { height: clamp(64px, 9vw, 110px); margin-bottom: 1.4rem; filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35)); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  line-height: 1.1;
}
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.scroll-hint-line {
  width: 2px;
  height: 44px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.walk-kicker { font-weight: 800; letter-spacing: 0.35em; font-size: 0.85rem; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.walk-title { font-size: clamp(2.2rem, 5.5vw, 4.2rem); margin-top: 0.7rem; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45); }
.walk-sub { margin-top: 1rem; font-size: clamp(0.98rem, 1.5vw, 1.2rem); font-weight: 500; max-width: 34em; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5); }

/* ============ Bästsäljare ============ */
.best {
  background:
    radial-gradient(55% 45% at 88% 8%, rgba(143, 184, 220, 0.18), transparent 70%),
    var(--paper);
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 5vw, 5rem);
}
.best-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(300px, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.best-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) + 10px);
  background: var(--tile);
  border: 1px solid rgba(28, 27, 25, 0.09);
  box-shadow: 0 30px 90px rgba(28, 27, 25, 0.14);
  overflow: hidden;
}
.best-media img {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply; /* white photo backgrounds melt into the tile */
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.best-media:hover img { transform: scale(1.05) rotate(-1.5deg); }
.best-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.4s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.best-media:hover video, .best-media.playing video { opacity: 1; transform: scale(1); }
.best-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--sun);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55em 1.2em;
  border-radius: 999px;
  z-index: 2;
}
.best-name { font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--charcoal); }
.best-info .stars { margin: 0.6rem 0 1rem; font-size: 1.25rem; }
.best-price { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.4rem; }
.best-info .sizes { margin-bottom: 1.4rem; }
.best-blurb {
  margin-top: 1.6rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 34em;
}
.best-blurb strong { color: var(--ink-on-cream); }
.usps {
  list-style: none;
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(28, 27, 25, 0.1);
}
.usps li {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: var(--ink-soft);
}
.usp-ico { display: block; font-size: 1.4rem; margin-bottom: 0.45rem; }

/* ============ Produktrader (Utforska Kepsar / Polotröjor / Q-Zips) ============ */
.shop-row { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--cream); }
.shop-row-alt {
  background:
    radial-gradient(50% 42% at 8% 90%, rgba(31, 169, 160, 0.10), transparent 70%),
    var(--paper);
}
.row-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 23vw, 320px);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  padding: 1rem clamp(1.2rem, 6vw, 6rem) 2.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.row-scroll::-webkit-scrollbar { display: none; }
.row-scroll-wide { grid-auto-columns: clamp(280px, 30vw, 420px); justify-content: center; }

.p-item { scroll-snap-align: center; text-align: center; }
.p-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) + 6px);
  background: var(--tile);
  border: 1px solid rgba(28, 27, 25, 0.09);
  box-shadow: 0 18px 55px rgba(28, 27, 25, 0.10);
  overflow: hidden;
  margin-bottom: 1.3rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.3s ease;
}
.p-item:hover .p-media { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(28, 27, 25, 0.18); border-color: rgba(28, 27, 25, 0.16); }
.p-media img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  mix-blend-mode: multiply; /* white photo backgrounds melt into the tile */
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-item:hover .p-media img { transform: scale(1.06) rotate(-1.2deg); }
.p-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.4s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-item:hover .p-media video, .p-item.playing .p-media video { opacity: 1; transform: scale(1); }
.p-name { font-size: 1.5rem; color: var(--charcoal); }
.p-item .stars { margin: 0.35rem 0 0.3rem; font-size: 0.9rem; }
.p-price { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.9rem; }
.p-item .sizes { justify-content: center; margin-bottom: 1rem; }
.p-cta {
  font-size: 0.85rem;
  padding: 0.75em 1.6em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}
.p-item:hover .p-cta, .p-item:focus-within .p-cta { opacity: 1; transform: translateY(0); }

.sizes { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.size {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.42em 0.95em;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 27, 25, 0.22);
  background: transparent;
  color: var(--ink-on-cream);
  cursor: pointer;
  transition: all 0.2s ease;
}
.size:hover { border-color: var(--turquoise); color: var(--turquoise); }
.size.selected { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.size.soldout {
  opacity: 0.38;
  text-decoration: line-through;
  cursor: not-allowed;
}
.size.soldout:hover { border-color: rgba(28, 27, 25, 0.22); color: var(--ink-on-cream); }
.cta-soldout { background: transparent; color: var(--ink-soft); border: 1.5px solid rgba(28, 27, 25, 0.25); box-shadow: none; }
.cta-soldout:hover { background: rgba(28, 27, 25, 0.06); color: var(--ink-on-cream); }

/* ============ Marquee ============ */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 3px solid var(--coral);
  border-bottom: 3px solid var(--turquoise);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span { font-family: var(--script); font-size: 1.35rem; }
.marquee-track i { font-style: normal; font-size: 1rem; }

/* ============ Fabric macro — scrubbas av scrollen ============ */
.macro-scrub { position: relative; height: 340vh; background: var(--charcoal); }
.macro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#macroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.macro-sticky video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.macro-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, transparent 40%, rgba(16, 15, 13, 0.72) 82%),
    linear-gradient(90deg, rgba(16, 15, 13, 0.55) 0%, transparent 55%);
  pointer-events: none;
}
.macro-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 clamp(1.4rem, 6vw, 6rem) clamp(3rem, 8vh, 6rem);
  max-width: 46rem;
  color: var(--cream);
}
.macro-title { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin: 0.6rem 0 1.6rem; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
.macro-beats { position: relative; min-height: 4.6em; }
.macro-beat {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 34em;
  line-height: 1.6;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  opacity: 0;
  will-change: opacity, transform;
}
.macro-beat strong { color: var(--sun); }
.macro-note {
  font-family: var(--script);
  font-size: 1.45rem;
  color: var(--sun);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  opacity: 0;
  will-change: opacity;
}

/* ============ Testimonials — riktiga kunder, löpande karusell ============ */
.voices { background: var(--paper); padding: clamp(5rem, 10vw, 8rem) 0; overflow: hidden; }
.voices .section-head { padding: 0 1.5rem; }
.voices .section-title em { font-style: normal; color: var(--turquoise); }
.stars-big { font-size: 1.6rem; margin-top: 0.9rem; }

.t-carousel {
  display: grid;
  gap: 1.6rem;
  margin-top: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
/* Rows are JS-driven marquees (see main.js) so the carousel spins regardless
   of OS animation settings — the brand explicitly wants the moving carousel. */
.t-row {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  will-change: transform;
}

.t-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
  width: clamp(300px, 30vw, 400px);
  background: var(--cream);
  border: 1px solid rgba(28, 27, 25, 0.08);
  border-radius: 26px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 44px rgba(28, 27, 25, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.t-card:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: 0 24px 60px rgba(28, 27, 25, 0.14); }
.voice-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--av, var(--cream-soft));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  grid-row: span 2;
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(28, 27, 25, 0.18);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.t-card:hover .voice-avatar img { transform: scale(1.1) rotate(-3deg); }
.av-badge {
  position: absolute;
  right: -6px;
  bottom: -4px;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  background: var(--turquoise);
  color: #fff;
  border: 2px solid var(--cream);
  border-radius: 999px;
  padding: 0.25em 0.5em;
  line-height: 1;
}
.t-row .t-card:nth-child(even) { transform: translateY(14px); }
.t-row .t-card:nth-child(even):hover { transform: translateY(8px) rotate(-0.6deg); }
.t-card blockquote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 500;
}
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.t-card figcaption span { font-weight: 600; color: var(--ink-soft); }
.t-badge {
  font-style: normal;
  margin-left: auto;
  background: var(--sun);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.3em 0.75em;
  white-space: nowrap;
}

/* ============ Varför Exotica — banguiden ============ */
.why {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 5vw, 5rem);
  overflow: hidden;
}
.why-map { position: absolute; inset: 0; width: 100%; height: 100%; }
#whyFlag { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.why-lead { position: sticky; top: 16vh; text-align: left; }
.why-lead .section-title { color: var(--cream); }
.why-sub { margin-top: 1rem; color: rgba(246, 241, 231, 0.65); line-height: 1.65; }
.why-list { list-style: none; display: grid; }
.why-row {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  align-items: baseline;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.13);
  opacity: 0.35;
  transform: translateX(10px);
  transition: padding-left 0.35s ease, opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-row.lit { opacity: 1; transform: translateX(0); }
.why-row.lit .why-num { color: var(--coral); text-shadow: 0 0 18px rgba(232, 80, 58, 0.45); }
.why-row:first-child { border-top: 1px solid rgba(246, 241, 231, 0.13); }
.why-row:hover { padding-left: 0.8rem; }
.why-num {
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--sun);
  flex: none;
  width: 2.2ch;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.why-row h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.why-row p { font-size: 0.95rem; line-height: 1.7; color: rgba(246, 241, 231, 0.7); }
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-lead { position: static; }
}

/* ============ Story: Bakom fjädrarna ============ */
.story {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.2rem, 6vw, 6rem);
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(244, 185, 66, 0.18), transparent 70%),
    radial-gradient(50% 45% at 8% 90%, rgba(31, 169, 160, 0.14), transparent 70%),
    var(--cream);
}
.story-art img,
.story-art video {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 24px 80px rgba(28, 27, 25, 0.22);
  transform: rotate(-2deg);
}
.story-title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin: 0.4rem 0 1.4rem; color: var(--charcoal); }
.story-copy p { line-height: 1.75; font-size: 1.04rem; margin-bottom: 1.1rem; max-width: 36em; }
.story-copy em { color: var(--coral); font-style: normal; font-weight: 800; }
.story-vision { font-weight: 600; }
.story-vision .script { font-size: 1.45rem; color: var(--turquoise); }

/* ============ HOLD ============ */
.hold { position: relative; background: var(--charcoal); height: 300vh; }
.hold-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.overlay-hold { pointer-events: none; }
.overlay-hold .btn { pointer-events: auto; }
.hold-title { font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.15; text-shadow: 0 5px 36px rgba(0, 0, 0, 0.5); }
.hold-sub { margin: 1.2rem 0 2rem; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 500; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55); max-width: 36em; }

/* ============ Signup ============ */
.signup { background: var(--charcoal); color: var(--cream); padding: clamp(4.5rem, 9vw, 7rem) 1.5rem; }
.signup-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.signup-title { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.signup-sub { margin: 1rem 0 2rem; opacity: 0.85; line-height: 1.65; }
#signupForm { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
#signupForm input {
  flex: 1 1 260px;
  max-width: 340px;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85em 1.3em;
  border-radius: 999px;
  border: 1.5px solid rgba(246, 241, 231, 0.3);
  background: rgba(246, 241, 231, 0.08);
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}
#signupForm input::placeholder { color: rgba(246, 241, 231, 0.5); }
#signupForm input:focus { border-color: var(--sun); }
.signup-success { margin-top: 1.4rem; font-family: var(--script); font-size: 1.35rem; color: var(--sun); }

/* ============ Footer ============ */
.site-footer {
  background: var(--charcoal);
  color: rgba(246, 241, 231, 0.75);
  text-align: center;
  padding: 3rem 1.5rem 6rem;
  border-top: 1px solid rgba(246, 241, 231, 0.1);
}
.footer-logo { height: 54px; margin: 0 0 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.site-footer p { margin-bottom: 0.6rem; font-size: 0.92rem; }
.site-footer a { color: var(--sun); text-decoration: none; }
.site-footer a:hover { color: var(--coral); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(180px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 980px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.footer-brand p { max-width: 26em; line-height: 1.65; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-col a {
  color: rgba(246, 241, 231, 0.75);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: var(--sun); transform: translateX(3px); }
.footer-note { font-size: 0.8rem; opacity: 0.65; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

/* ============ Delad navigering: sök + hamburgermeny (nav.js) ============ */
.hdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hdr-btn:hover { transform: translateY(-2px); background: rgba(28, 27, 25, 0.07); }
.site-header:not(.scrolled) .hdr-btn:hover { background: rgba(255, 255, 255, 0.15); }
.hdr-burger { display: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: var(--cream);
  padding: clamp(1.2rem, 4vw, 3rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-lock, .nav-lock body { overflow: hidden; }
.nav-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink-on-cream);
  background: none;
  transition: transform 0.2s ease;
}
.nav-close:hover { transform: rotate(90deg); }

.nav-menu { display: grid; place-content: center; text-align: center; gap: 2.2rem; }
.nav-menu-links { display: grid; gap: 0.9rem; }
.nav-menu-links a {
  font-size: clamp(2.1rem, 8vw, 3rem);
  color: var(--charcoal);
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-menu-links a:hover { color: var(--coral); transform: translateX(6px); }
.nav-menu-meta { display: grid; gap: 0.55rem; padding-top: 1.4rem; border-top: 1px solid rgba(28, 27, 25, 0.14); }
.nav-menu-meta a { font-size: 0.95rem; font-weight: 700; color: var(--ink-soft); }
.nav-menu-meta a:hover { color: var(--coral); }

.nav-search-inner { max-width: 620px; margin: clamp(3rem, 10vh, 5.5rem) auto 0; }
.nav-search input {
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-on-cream);
  background: #fff;
  border: 1.5px solid rgba(28, 27, 25, 0.2);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  outline: none;
}
.nav-search input:focus { border-color: var(--turquoise); }
.nav-search-results { display: grid; gap: 0.4rem; margin-top: 1.2rem; padding-bottom: 3rem; }
.nav-hit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-hit:hover { background: rgba(28, 27, 25, 0.05); transform: translateX(4px); }
.nav-hit-media {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--tile, #e7e2d7);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.nav-hit-media img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.nav-hit-name { font-weight: 700; }
.nav-hit-price { margin-left: auto; font-weight: 800; font-size: 0.9rem; color: var(--ink-soft); }
.nav-empty { color: var(--ink-soft); font-weight: 600; padding: 0.6rem 0.2rem; }

.footer-copy { font-size: 0.78rem; opacity: 0.55; margin-top: 1.8rem; }

/* I overlays: visa den vanliga muspekaren (sajtens custom cursor släcks) */
body.has-cursor .nav-overlay, body.has-cursor .nav-overlay * { cursor: auto; }
body.has-cursor .nav-overlay a, body.has-cursor .nav-overlay button { cursor: pointer; }
body.has-cursor .nav-overlay input { cursor: text; }
body.nav-open .cursor { display: none; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hdr-burger { display: inline-flex; }
  .site-header { gap: 0.6rem; }
  .best-grid, .story { grid-template-columns: 1fr; }
  .best-info { text-align: center; }
  .best-info .sizes, #signupForm { justify-content: center; }
  .usps { justify-content: center; }
  .best-blurb { margin-inline: auto; }
  .story-art { max-width: 420px; margin: 0 auto; }
  .header-nav { display: none; }
  .header-cta { margin-left: auto; }
  .p-cta { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-parrot { animation: none; }
}
