/* Hallmark · macrostructure: cinematic scroll story · tone: Nordic restraint · anchor hue: amber */
/* ============================================================
   Un Poco Loco — northern clarity, editorial sharpness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Cool gray base */
  --bg: #eef0f3;
  --bg-2: #f6f7f9;
  --surface: #ffffff;
  --ink: #0d1016;
  --ink-2: #1a1f29;
  --muted: #5b6473;
  --muted-2: #8b939f;
  --hair: #d4d8de;
  --hair-2: #e4e7eb;

  /* Single warm accent against the cold base */
  --accent: #d4933a;          /* amber */
  --accent-ink: #0d1016;
  --accent-soft: #f0d9b0;

  /* Type */
  --display: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --serif: 'Instrument Serif', 'Times New Roman', serif;

  --display-weight: 500;
  --display-tracking: -0.025em;

  /* Spacing scale */
  --pad: clamp(20px, 4vw, 56px);
  --pad-y: clamp(56px, 10vw, 140px);
  --maxw: 1440px;
}

/* ----- Palette variants ----- */
[data-palette="stockholm"] { /* default */ }

[data-palette="paper"] {
  --bg: #f3f0e9;
  --bg-2: #faf8f3;
  --surface: #ffffff;
  --ink: #1a1610;
  --ink-2: #2b2419;
  --muted: #6b6353;
  --muted-2: #948a78;
  --hair: #ddd4c2;
  --hair-2: #ebe5d6;
  --accent: #b85c2b;
  --accent-soft: #ecc7ad;
}

[data-palette="ink"] {
  --bg: #f0f0ef;
  --bg-2: #fafaf9;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #1c1c1c;
  --muted: #5c5c5c;
  --muted-2: #8a8a8a;
  --hair: #d4d4d3;
  --hair-2: #e6e6e5;
  --accent: #0a0a0a;
  --accent-ink: #ffffff;
  --accent-soft: #cfcfce;
}

[data-palette="lichen"] {
  --bg: #e9ece7;
  --bg-2: #f3f5f1;
  --surface: #ffffff;
  --ink: #0f1311;
  --ink-2: #1c2320;
  --muted: #5a665e;
  --muted-2: #8a958e;
  --hair: #cad2ca;
  --hair-2: #dde3dc;
  --accent: #6a8a4e;
  --accent-soft: #c6d5b3;
}

/* ----- Dark mode (applies on top of any palette) ----- */
[data-theme="dark"] {
  --bg: #0a0c10;
  --bg-2: #11141a;
  --surface: #151921;
  --ink: #f1f2f4;
  --ink-2: #d8dade;
  --muted: #8a93a1;
  --muted-2: #5f6776;
  --hair: #232832;
  --hair-2: #1a1e26;
}
[data-theme="dark"][data-palette="paper"] {
  --bg: #14110b;
  --bg-2: #1c1812;
  --surface: #221d15;
  --hair: #2e2820;
  --hair-2: #221d15;
  --ink: #f4ede0;
  --muted: #9c907a;
}
[data-theme="dark"][data-palette="ink"] {
  --accent: #f4f4f3;
  --accent-ink: #0a0a0a;
}
[data-theme="dark"][data-palette="lichen"] {
  --bg: #0b0e0c;
  --bg-2: #131713;
  --surface: #181d18;
  --hair: #232a23;
}

/* ----- Typography variants (Tweaks: typography pairing) ----- */
[data-type="grotesk"] {
  --display: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display-weight: 500;
  --display-tracking: -0.025em;
}
[data-type="editorial"] {
  --display: 'Instrument Serif', 'Times New Roman', serif;
  --body: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display-weight: 400;
  --display-tracking: -0.015em;
}
[data-type="swiss"] {
  --display: 'Geist Mono', ui-monospace, monospace;
  --body: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display-weight: 500;
  --display-tracking: -0.04em;
}
[data-type="mix"] {
  --display: 'Instrument Serif', serif;
  --body: 'Geist Mono', ui-monospace, monospace;
  --display-weight: 400;
  --display-tracking: -0.01em;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .2s ease, color .2s ease;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

button { font: inherit; cursor: pointer; }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.section--flush { padding-top: 0; border-top: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }
.eyebrow .num { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  margin: 0;
  text-wrap: pretty;
  line-height: 1.02;
}

h1 { font-size: clamp(44px, 7vw, 112px); }
h2 { font-size: clamp(34px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.1; }
h4 { font-size: 18px; }

p { margin: 0; }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-2); line-height: 1.45; max-width: 60ch; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand__mark {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 12px;
  border-radius: 4px;
  letter-spacing: 0;
}
.brand__loco {
  display: inline-block;
  transform: rotate(-6deg);
  transform-origin: center;
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}
.nav__links {
  display: flex; gap: 22px;
  font-size: 14px; color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .nav__links { gap: 16px; font-size: 13px; }
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }

.menu-btn {
  display: none;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 2px;
  font-family: var(--mono);
  font-size: 11px;
}
.lang button {
  border: 0; background: transparent;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }

.theme-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: transparent;
  display: grid; place-items: center;
  color: var(--ink);
}
.theme-btn:hover { border-color: var(--ink); }
.theme-btn svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--hair);
  background: var(--bg);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--pad) 18px;
  display: grid;
  gap: 4px;
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair-2);
  color: var(--ink);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(18px, 2.5vw, 36px) 0 clamp(22px, 2.5vw, 36px);
  border-top: none;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__meta .l { display: flex; gap: 18px; flex-wrap: wrap; }
.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: 20px;
}
.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(40px, 5.4vw, 82px);
}
.hero h1 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero__sub {
  margin-top: 20px;
}
.hero__sub .copy { max-width: 56ch; color: var(--ink-2); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.5; }
.hero__sub .en { color: var(--muted); font-size: 14px; font-family: var(--mono); line-height: 1.55; max-width: 50ch; }
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  max-width: 64ch;
}
.hero__facts span {
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 7px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: color-mix(in oklch, var(--bg-2) 70%, transparent);
  white-space: nowrap;
}
.hero__ctas {
  margin-top: 22px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__chooser {
  display: grid;
  gap: 8px;
  align-self: start;
}
.chooser__intro {
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}
.chooser__label,
.chooser__mode {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.chooser__intro h2 {
  margin-top: 6px;
  font-size: clamp(22px, 2vw, 30px);
  max-width: none;
}
.chooser__panel {
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--surface);
  padding: clamp(12px, 1.5vw, 17px);
}
.chooser__panel--package {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chooser__panel--package .chooser__mode,
.chooser__panel--package p {
  color: color-mix(in oklch, var(--bg) 68%, transparent);
}
.chooser__panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
}
.chooser__panel p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.chooser__panel > a,
.chooser__panel li a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chooser__panel > a {
  margin-top: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.chooser__panel ul {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.chooser__panel li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--hair-2);
  padding-top: 6px;
}
.chooser__panel li::after {
  content: "→";
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}
.hero__visual {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  border-radius: 4px;
  overflow: hidden;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.03);
}
.hero__visual-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  border: 1px solid var(--hair);
  border-radius: 4px;
}
.hero__visual-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__visual-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
}
.hero__visual-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .hero__body { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero__visual { min-height: 360px; }
  .hero__chooser { align-self: auto; }
}

/* Hero image strip */
.hero__strip {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: clamp(180px, 20vw, 300px);
}
.hero__strip > div {
  position: relative;
  background: var(--hair);
  overflow: hidden;
  border-radius: 2px;
}
.hero__strip img { width: 100%; height: 100%; object-fit: cover; }
.hero__strip .cap {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: rgba(0,0,0,.45); padding: 4px 8px; border-radius: 2px;
  backdrop-filter: blur(6px);
}
@media (max-width: 800px) {
  .hero__strip { grid-template-columns: 1fr; height: auto; }
  .hero__strip > div { min-height: 220px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn--ghost { border-color: var(--hair); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Cinematic scroll story
   ============================================================ */
.story-hero {
  --story-bg: oklch(13% 0.018 255);
  --story-bg-2: oklch(18% 0.016 250);
  --story-ink: oklch(94% 0.01 75);
  --story-muted: oklch(75% 0.018 245);
  --story-dim: oklch(58% 0.018 245);
  --story-line: oklch(94% 0.01 75 / 0.14);
  --story-paper: oklch(87% 0.018 75);
  --story-amber: oklch(72% 0.12 72);
  --story-blue: oklch(39% 0.034 238);
  min-height: 400svh;
  margin-top: -60px;
  background: var(--story-bg);
  color: var(--story-ink);
  position: relative;
  isolation: isolate;
}
.story-hero__sticky {
  min-height: calc(100svh - 60px);
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: clamp(78px, 9vw, 118px) var(--pad) clamp(76px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .74fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
}
.story-hero__visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(7% 0.012 250 / .38), transparent 34%, oklch(7% 0.012 250 / .24)),
    linear-gradient(180deg, var(--story-bg-2), var(--story-bg));
  z-index: -2;
}
.story-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(96% 0.012 90 / .12), transparent 28%),
    linear-gradient(180deg, transparent 58%, oklch(6% 0.012 260 / .58));
  mix-blend-mode: screen;
  pointer-events: none;
}
.story-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, oklch(5% 0.012 260 / .82));
  pointer-events: none;
}
.story-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035) translate3d(0, 16px, 0);
  transition: opacity 520ms cubic-bezier(.22, 1, .36, 1), transform 900ms cubic-bezier(.22, 1, .36, 1);
}
.story-scene.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}
.story-light {
  position: absolute;
  left: 8vw;
  top: 11vh;
  width: min(34vw, 520px);
  height: min(46vh, 480px);
  background:
    linear-gradient(115deg, oklch(95% 0.024 88 / .28), oklch(95% 0.024 88 / .05) 48%, transparent 72%);
  clip-path: polygon(0 0, 78% 8%, 100% 100%, 18% 84%);
  opacity: .75;
}
.story-desk {
  position: absolute;
  left: 8vw;
  right: 7vw;
  bottom: 13vh;
  height: clamp(170px, 24vh, 260px);
  background:
    linear-gradient(92deg, oklch(48% 0.018 70 / .42), oklch(30% 0.017 65 / .42)),
    linear-gradient(180deg, oklch(42% 0.018 70), oklch(24% 0.018 70));
  transform: perspective(900px) rotateX(58deg) rotateZ(-2deg);
  transform-origin: center bottom;
  border: 1px solid oklch(86% 0.012 90 / .12);
  box-shadow: 0 60px 120px oklch(0% 0 0 / .48);
}
.story-object,
.story-path,
.story-grid,
.story-node,
.story-marker {
  position: absolute;
  display: block;
}
.story-object--laptop {
  width: clamp(180px, 22vw, 340px);
  height: clamp(104px, 13vw, 190px);
  right: clamp(120px, 15vw, 230px);
  bottom: clamp(176px, 26vh, 310px);
  background:
    linear-gradient(135deg, oklch(75% 0.02 240 / .18), oklch(13% 0.02 240 / .92)),
    linear-gradient(180deg, oklch(25% 0.02 245), oklch(8% 0.012 250));
  border: 1px solid oklch(92% 0.01 95 / .2);
  border-radius: 7px;
  transform: perspective(700px) rotateX(7deg) rotateY(-13deg) rotateZ(1deg);
  box-shadow: 0 24px 70px oklch(0% 0 0 / .45);
}
.story-object--laptop::after {
  content: "";
  position: absolute;
  inset: 16% 12%;
  background:
    linear-gradient(90deg, var(--story-amber), transparent 32%),
    repeating-linear-gradient(180deg, oklch(92% 0.01 80 / .34) 0 1px, transparent 1px 15px);
  opacity: .52;
}
.story-object--paper {
  background: linear-gradient(145deg, var(--story-paper), oklch(74% 0.014 76));
  border: 1px solid oklch(99% 0.006 90 / .24);
  box-shadow: 0 12px 40px oklch(0% 0 0 / .24);
}
.story-object--paper::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 18%;
  top: 24%;
  height: 1px;
  background: oklch(28% 0.018 250 / .28);
  box-shadow: 0 15px 0 oklch(28% 0.018 250 / .2), 0 30px 0 oklch(28% 0.018 250 / .14);
}
.story-object--paper-a {
  width: clamp(96px, 11vw, 170px);
  height: clamp(132px, 15vw, 220px);
  left: 23vw;
  bottom: 22vh;
  transform: rotate(-12deg);
}
.story-object--paper-b {
  width: clamp(110px, 12vw, 190px);
  height: clamp(82px, 9vw, 130px);
  left: 39vw;
  bottom: 19vh;
  transform: rotate(8deg);
  opacity: .72;
}
.story-object--paper-c {
  width: clamp(180px, 19vw, 280px);
  height: clamp(100px, 11vw, 150px);
  left: 31vw;
  bottom: 24vh;
  transform: rotate(-2deg);
}
.story-object--cup {
  width: 48px;
  height: 48px;
  left: 54vw;
  bottom: 23vh;
  border-radius: 50%;
  background: radial-gradient(circle at center, oklch(20% 0.018 70) 0 34%, var(--story-paper) 36% 62%, oklch(58% 0.018 70) 64%);
  opacity: .82;
}
.story-path {
  left: 26vw;
  right: 22vw;
  bottom: 29vh;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--story-amber), transparent);
  transform: rotate(-5deg);
}
.story-path::before,
.story-path::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--story-amber);
  box-shadow: 0 0 26px oklch(72% 0.12 72 / .5);
}
.story-path::before { left: 9%; }
.story-path::after { right: 12%; }
.story-grid {
  width: min(44vw, 620px);
  height: min(32vh, 310px);
  right: 10vw;
  bottom: 22vh;
  background:
    linear-gradient(90deg, oklch(92% 0.012 90 / .12) 1px, transparent 1px),
    linear-gradient(180deg, oklch(92% 0.012 90 / .12) 1px, transparent 1px);
  background-size: 42px 42px;
  border: 1px solid oklch(92% 0.012 90 / .12);
  transform: perspective(800px) rotateX(8deg) rotateY(-12deg);
  opacity: .6;
}
.story-node {
  width: clamp(96px, 10vw, 150px);
  height: clamp(46px, 5vw, 72px);
  background: oklch(91% 0.012 85 / .11);
  border: 1px solid oklch(91% 0.012 85 / .24);
  border-radius: 4px;
  box-shadow: 0 20px 64px oklch(0% 0 0 / .28);
}
.story-node--a { right: 34vw; bottom: 42vh; }
.story-node--b { right: 21vw; bottom: 31vh; }
.story-node--c { right: 39vw; bottom: 23vh; }
.story-marker {
  width: clamp(90px, 10vw, 160px);
  height: clamp(110px, 12vw, 190px);
  bottom: 23vh;
  background:
    linear-gradient(180deg, oklch(92% 0.014 85 / .16), oklch(92% 0.014 85 / .06)),
    linear-gradient(145deg, oklch(28% 0.018 250), oklch(15% 0.012 260));
  border: 1px solid oklch(92% 0.014 85 / .18);
  border-radius: 5px;
  box-shadow: 0 36px 90px oklch(0% 0 0 / .36);
}
.story-marker::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 2px;
  background: var(--story-amber);
}
.story-marker--one { left: 24vw; transform: rotate(-5deg); }
.story-marker--two { left: 35vw; transform: rotate(2deg); }
.story-marker--three { left: 46vw; transform: rotate(-1deg); }
.story-marker--four { left: 57vw; transform: rotate(5deg); }
.story-grain {
  position: absolute;
  inset: 0;
  opacity: .15;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, oklch(100% 0 0 / .09) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, oklch(0% 0 0 / .08) 0 1px, transparent 1px 3px);
}
.story-hero__chrome {
  grid-column: 1 / -1;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 30vw);
  gap: 24px;
  align-items: center;
  color: var(--story-muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.story-kicker {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.story-progress {
  height: 1px;
  background: var(--story-line);
  overflow: hidden;
}
.story-progress span {
  display: block;
  width: calc(var(--story-progress, 0) * 100%);
  height: 100%;
  background: var(--story-amber);
}
.story-hero__copy {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  width: min(780px, 100%);
  min-height: clamp(330px, 43vh, 440px);
  align-self: end;
}
.story-copy {
  position: absolute;
  inset: auto 0 0;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(.22, 1, .36, 1), transform 620ms cubic-bezier(.22, 1, .36, 1);
}
.story-copy.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.story-label {
  color: var(--story-muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.story-copy h1 {
  color: var(--story-ink);
  font-size: clamp(44px, 7vw, 112px);
  max-width: 10ch;
  line-height: .93;
  letter-spacing: -.045em;
}
.story-copy__text {
  color: var(--story-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
  max-width: 52ch;
  margin-top: 24px;
}
.story-copy--choice h1 {
  max-width: 11ch;
}
.story-choice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 28px;
  border: 1px solid var(--story-line);
  background: var(--story-line);
}
.story-choice a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: oklch(12% 0.016 250 / .74);
  color: var(--story-ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}
.story-choice a:hover {
  background: var(--story-amber);
  color: oklch(12% 0.016 250);
}
.story-choice a:focus-visible {
  outline: 2px solid var(--story-amber);
  outline-offset: -2px;
}
.story-hero__actions {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: end;
  margin-bottom: 28px;
}
.story-hero__actions .btn--primary {
  background: var(--story-ink);
  color: var(--story-bg);
}
.story-hero__actions .btn--ghost {
  border-color: var(--story-line);
  color: var(--story-ink);
}
.story-hero__actions .btn--primary:hover,
.story-hero__actions .btn--ghost:hover {
  background: var(--story-amber);
  border-color: var(--story-amber);
  color: var(--story-bg);
}

@media (max-width: 980px) {
  .story-hero__sticky {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .story-hero__copy,
  .story-hero__actions {
    grid-column: 1;
  }
  .story-hero__chrome {
    grid-template-columns: 1fr;
  }
  .story-progress {
    width: min(320px, 100%);
  }
  .story-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 700px) {
  .story-hero {
    min-height: auto;
  }
  .story-hero__sticky {
    position: relative;
    min-height: 0;
    padding: 84px var(--pad) 40px;
    display: block;
  }
  .story-hero__visual {
    min-height: 430px;
    position: relative;
    margin: 0 calc(var(--pad) * -1) 34px;
  }
  .story-scene {
    opacity: 0;
    transform: none;
  }
  .story-scene--one {
    opacity: 1;
    transform: none;
  }
  .story-hero__chrome {
    position: absolute;
    top: 28px;
    left: var(--pad);
    right: var(--pad);
  }
  .story-kicker span:nth-child(n+3) {
    display: none;
  }
  .story-progress {
    display: none;
  }
  .story-hero__copy {
    min-height: 0;
    width: 100%;
  }
  .story-copy {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0 0 32px;
    border-bottom: 1px solid var(--story-line);
    margin-bottom: 32px;
  }
  .story-copy:last-child {
    margin-bottom: 0;
  }
  .story-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
    max-width: 11ch;
  }
  .story-copy__text {
    font-size: 16px;
    margin-top: 18px;
  }
  .story-choice {
    grid-template-columns: 1fr 1fr;
  }
  .story-hero__actions {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-scene,
  .story-copy,
  .btn,
  .btn .arrow {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .story-hero {
    min-height: auto;
  }
  .story-hero__sticky {
    position: relative;
  }
}

/* ============================================================
   Offer selector — three layouts (Tweak switches data-offer)
   ============================================================ */
.offer { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.offer__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 56px;
  align-items: end;
}
.offer__head h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
}
.offer__head .right { color: var(--muted); max-width: 48ch; }
.offer__head .right p + p { margin-top: 12px; }
@media (max-width: 800px) { .offer__head { grid-template-columns: 1fr; } }

/* shared bits */
.tier-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.tier-name { font-family: var(--display); font-weight: var(--display-weight); letter-spacing: var(--display-tracking); }
.tier-price { font-family: var(--mono); font-size: 12px; color: var(--ink); }
.tier-price span { color: var(--muted); }
.tier-promise { color: var(--ink-2); }
.tier-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); border-bottom: 1px solid var(--hair); padding-bottom: 4px;
}
.tier-link:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* Variant A — Editorial table */
.offer[data-layout="table"] .offer__rows { border-top: 1px solid var(--ink); }
.offer[data-layout="table"] .row {
  display: grid;
  grid-template-columns: 60px 1.4fr 2fr 1fr 140px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--hair);
  transition: background .2s ease, padding .2s ease;
  position: relative;
}
.offer[data-layout="table"] .row:hover { background: var(--bg-2); padding-left: 12px; padding-right: 12px; }
.offer[data-layout="table"] .row .name { font-size: clamp(28px, 3vw, 44px); line-height: 1; }
.offer[data-layout="table"] .row .name em {
  font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400;
}
.offer[data-layout="table"] .row .desc { color: var(--muted); max-width: 50ch; }
.offer[data-layout="table"] .row .price { text-align: left; }
.offer[data-layout="table"] .row .cta { text-align: right; }
@media (max-width: 900px) {
  .offer[data-layout="table"] .row { grid-template-columns: 28px 1fr; row-gap: 8px; }
  .offer[data-layout="table"] .row .desc,
  .offer[data-layout="table"] .row .price,
  .offer[data-layout="table"] .row .cta { grid-column: 2; text-align: left; }
}

/* Variant B — Vertical ladder */
.offer[data-layout="ladder"] .ladder { display: flex; flex-direction: column; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.offer[data-layout="ladder"] .rung {
  background: var(--surface);
  padding: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 60px 1fr 1.5fr auto;
  gap: 32px;
  align-items: start;
  transition: background .2s ease;
}
.offer[data-layout="ladder"] .rung:hover { background: var(--bg-2); }
.offer[data-layout="ladder"] .rung .name { font-size: clamp(32px, 3.6vw, 56px); line-height: 0.95; }
.offer[data-layout="ladder"] .rung .name em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.offer[data-layout="ladder"] .rung .desc { color: var(--muted); }
.offer[data-layout="ladder"] .rung .right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.offer[data-layout="ladder"] .rung:nth-child(3) { background: var(--ink); color: var(--bg); }
.offer[data-layout="ladder"] .rung:nth-child(3) .desc { color: var(--muted-2); }
.offer[data-layout="ladder"] .rung:nth-child(3) .tier-num { color: var(--muted-2); }
.offer[data-layout="ladder"] .rung:nth-child(3) .tier-link { color: var(--bg); border-bottom-color: rgba(255,255,255,.2); }
@media (max-width: 900px) {
  .offer[data-layout="ladder"] .rung { grid-template-columns: 1fr; gap: 14px; }
  .offer[data-layout="ladder"] .rung .right { align-items: flex-start; }
}

/* Variant C — Asymmetric grid */
.offer[data-layout="asym"] .asym {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.offer[data-layout="asym"] .card {
  background: var(--surface);
  border: 1px solid var(--hair);
  padding: clamp(24px, 3vw, 40px);
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 240px;
  transition: border-color .2s ease, transform .2s ease;
}
.offer[data-layout="asym"] .card:hover { border-color: var(--ink); transform: translateY(-2px); }
.offer[data-layout="asym"] .card h3 { font-size: clamp(24px, 2.4vw, 36px); }
.offer[data-layout="asym"] .card .desc { color: var(--muted); flex: 1; }
.offer[data-layout="asym"] .card--studio {
  grid-column: span 2; grid-row: span 2;
  background: var(--ink); color: var(--bg);
  border-color: var(--ink);
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.offer[data-layout="asym"] .card--studio .desc { color: var(--muted-2); }
.offer[data-layout="asym"] .card--studio h3 { font-size: clamp(40px, 5vw, 84px); line-height: 1; max-width: 11ch; }
.offer[data-layout="asym"] .card--studio h3 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.offer[data-layout="asym"] .card--studio .tier-num { color: var(--muted-2); }
.offer[data-layout="asym"] .card--studio .tier-link { color: var(--bg); border-bottom-color: rgba(255,255,255,.2); }
.offer[data-layout="asym"] .card--studio .deco {
  position: absolute; right: -40px; bottom: -40px; width: 220px; height: 220px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
}
.offer[data-layout="asym"] .card--studio .deco::after {
  content: ""; position: absolute; inset: 28px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
}
.offer[data-layout="asym"] .card--bygg { background: var(--bg-2); }
@media (max-width: 900px) {
  .offer[data-layout="asym"] .asym { grid-template-columns: 1fr; }
  .offer[data-layout="asym"] .card--studio { grid-column: auto; grid-row: auto; min-height: 360px; }
}

/* hide non-active variants */
.offer .layout { display: none; }
.offer[data-layout="table"] .layout--table { display: block; }
.offer[data-layout="ladder"] .layout--ladder { display: block; }
.offer[data-layout="asym"] .layout--asym { display: block; }

/* ============================================================
   Services
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.svc {
  background: var(--surface);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
}
.svc__hd { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.svc__hd .num { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.svc h3 { font-size: clamp(22px, 2vw, 30px); }
.svc h3 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.svc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.svc li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 8px 0; border-top: 1px solid var(--hair-2);
  color: var(--ink-2);
}
.svc li::before {
  content: "+"; font-family: var(--mono); color: var(--accent); font-size: 12px;
}
@media (max-width: 800px) { .services { grid-template-columns: 1fr; } }

/* ============================================================
   Process
   ============================================================ */
.process { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.process__steps { display: flex; flex-direction: column; }
.process .step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.process .step:last-child { border-bottom: 1px solid var(--hair); }
.process .step .n { font-family: var(--mono); font-size: 11px; color: var(--muted); padding-top: 6px; }
.process .step h4 { font-size: clamp(20px, 1.8vw, 26px); font-weight: var(--display-weight); margin-bottom: 6px; letter-spacing: var(--display-tracking); }
.process .step p { color: var(--muted); }
@media (max-width: 900px) { .process { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   Proof — interview style
   ============================================================ */
.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.proof__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.proof__quote em { font-style: italic; color: var(--accent); }
.proof__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 24px; letter-spacing: 0.06em; }
.proof__list { display: flex; flex-direction: column; gap: 20px; }
.proof__card {
  border: 1px solid var(--hair);
  padding: 22px;
  border-radius: 4px;
  background: var(--surface);
}
.proof__card .hd { display: flex; justify-content: space-between; align-items: baseline; }
.proof__card .hd .tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.proof__card h4 { margin: 10px 0 8px; }
.proof__card p { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .proof { grid-template-columns: 1fr; } }

/* ============================================================
   CTA / Footer
   ============================================================ */
.cta-band {
  border-top: 1px solid var(--hair);
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg-2);
}
.cta-band__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }
.cta-band h2 em { font-style: italic; font-family: var(--serif); color: var(--accent); font-weight: 400; }
.cta-band .meta { color: var(--muted); font-family: var(--mono); font-size: 12px; line-height: 1.8; }
.cta-band .meta a:hover { color: var(--accent); }
@media (max-width: 800px) { .cta-band__inner { grid-template-columns: 1fr; } }

/* ============================================================
   Booking
   ============================================================ */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 4px;
  overflow: hidden;
}
.booking-card {
  background: var(--surface);
  padding: clamp(26px, 3vw, 42px);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-card--enterprise {
  background: var(--ink);
  color: var(--bg);
}
.booking-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.booking-card h2 {
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1.04;
  max-width: 12ch;
}
.booking-card p,
.booking-card li {
  color: var(--muted);
}
.booking-card--enterprise p,
.booking-card--enterprise li {
  color: var(--muted-2);
}
.booking-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.booking-card li {
  border-top: 1px solid var(--hair-2);
  padding-top: 9px;
}
.booking-card--enterprise li {
  border-top-color: rgba(255,255,255,.12);
}
.booking-card .btn {
  justify-content: center;
}
.booking-card--enterprise .btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.booking-flow {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: clamp(36px, 6vw, 80px);
}
.booking-flow__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.booking-flow__steps div {
  background: var(--surface);
  padding: 24px;
  min-height: 150px;
}
.booking-flow__steps span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 18px;
}
.booking-flow__steps p {
  color: var(--ink-2);
}
.caldiy-note {
  margin-top: 34px;
  border: 1px solid var(--hair);
  background: var(--bg-2);
  border-radius: 4px;
  padding: 22px;
  color: var(--muted);
}
.caldiy-note strong {
  color: var(--ink);
}
@media (max-width: 950px) {
  .booking-grid,
  .booking-flow,
  .booking-flow__steps {
    grid-template-columns: 1fr;
  }
  .booking-card {
    min-height: 380px;
  }
}

.footer {
  border-top: 1px solid var(--hair);
  padding: 36px 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__row a:hover { color: var(--ink); }

/* ============================================================
   Package detail page
   ============================================================ */
.pkg-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
}
.pkg-hero__meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px;
  padding-bottom: 16px; margin-bottom: 32px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.pkg-hero__meta .label { color: var(--muted); margin-bottom: 4px; }
.pkg-hero__meta .value { color: var(--ink); font-size: 13px; }
.pkg-hero h1 { font-size: clamp(56px, 9vw, 140px); line-height: 0.95; }
.pkg-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.pkg-hero__lead { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.pkg-hero__lead .lead { font-size: clamp(20px, 1.8vw, 28px); color: var(--ink-2); line-height: 1.35; }
.pkg-hero__lead .en { color: var(--muted); font-family: var(--mono); font-size: 13px; max-width: 50ch; line-height: 1.6; }
.pkg-hero__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .pkg-hero__meta { grid-template-columns: 1fr 1fr; }
  .pkg-hero__lead { grid-template-columns: 1fr; }
}

.pkg-promise { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.pkg-promise__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.pkg-promise .pull { font-family: var(--serif); font-style: italic; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; color: var(--ink); }
.pkg-promise .pull em { color: var(--accent); }
@media (max-width: 800px) { .pkg-promise__inner { grid-template-columns: 1fr; gap: 24px; } }

.pkg-scope { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.pkg-scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden;
}
.pkg-scope__cell {
  background: var(--surface);
  padding: clamp(24px, 3vw, 40px);
  min-height: 220px;
}
.pkg-scope__cell .num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.pkg-scope__cell h3 { margin: 10px 0 16px; font-size: clamp(20px, 1.8vw, 26px); }
.pkg-scope__cell p { color: var(--muted); }
@media (max-width: 800px) { .pkg-scope__grid { grid-template-columns: 1fr; } }

.pkg-bounds { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.pkg-bounds__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pkg-bounds .col h3 { margin-bottom: 16px; font-size: clamp(20px, 1.8vw, 26px); }
.pkg-bounds .col h3 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.pkg-bounds .col ul { list-style: none; margin: 0; padding: 0; }
.pkg-bounds .col li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--hair);
  color: var(--ink-2);
}
.pkg-bounds .col li:last-child { border-bottom: 1px solid var(--hair); }
.pkg-bounds .col--in li::before { content: "+"; color: var(--accent); font-family: var(--mono); }
.pkg-bounds .col--out li::before { content: "—"; color: var(--muted); font-family: var(--mono); }
@media (max-width: 800px) { .pkg-bounds__inner { grid-template-columns: 1fr; } }

.pkg-cases {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--hair);
}
.pkg-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.case {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--hair);
  border-radius: 2px;
  overflow: hidden;
}
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.case:hover img { transform: scale(1.03); }
.case .meta {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
@media (max-width: 800px) { .pkg-cases__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Contact page
   ============================================================ */
.contact-hero { padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px); }
.contact-hero h1 { font-size: clamp(56px, 9vw, 140px); line-height: 0.95; }
.contact-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-bottom: var(--pad-y); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; font-family: var(--body);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--hair);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-2);
  background: transparent;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.contact-side {
  display: flex; flex-direction: column; gap: 24px;
  font-size: 14px; color: var(--muted);
}
.contact-side h4 { font-size: 13px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 400; margin-bottom: 8px; }
.contact-side .big { font-family: var(--display); font-size: clamp(20px, 1.8vw, 26px); color: var(--ink); letter-spacing: -0.02em; }
.contact-side a:hover { color: var(--accent); }

/* ============================================================
   About page
   ============================================================ */
.about-hero { padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px); }
.about-hero__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.about-hero h1 { font-size: clamp(48px, 7.5vw, 120px); line-height: 0.96; }
.about-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.about-portrait { aspect-ratio: 4/5; background: var(--hair); border-radius: 2px; overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.02); }
@media (max-width: 800px) { .about-hero__grid { grid-template-columns: 1fr; gap: 32px; } }

.about-bio { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.about-bio__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.about-bio p { color: var(--ink-2); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; max-width: 60ch; }
.about-bio p + p { margin-top: 16px; }
@media (max-width: 800px) { .about-bio__inner { grid-template-columns: 1fr; gap: 24px; } }

.about-creds { padding: var(--pad-y) 0; border-top: 1px solid var(--hair); }
.creds-list { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 24px; margin-top: 40px; }
.creds-list .row { display: contents; }
.creds-list .row > * {
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  color: var(--ink-2);
}
.creds-list .row .y { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.creds-list .row .t { font-family: var(--display); font-size: clamp(18px, 1.4vw, 22px); letter-spacing: -0.01em; }
.creds-list .row .c { color: var(--muted); }
@media (max-width: 800px) {
  .creds-list { grid-template-columns: 70px 1fr; }
  .creds-list .row .c { grid-column: 2; padding-top: 0; border-top: 0; color: var(--muted); font-size: 14px; }
}

/* Lang utilities */
[data-lang="se"] .en-only, [data-lang="en"] .se-only { display: none; }

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 100;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(0,0,0,.15);
  font-size: 12px;
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks__hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 11px;
}
.tweaks__hd .close { background: transparent; border: 0; color: var(--muted); font-family: var(--mono); }
.tweaks__hd .close:hover { color: var(--ink); }
.tweaks__body { padding: 14px; display: flex; flex-direction: column; gap: 16px; }
.tweaks__section { display: flex; flex-direction: column; gap: 8px; }
.tweaks__section > label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}
.tweaks__row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__row button {
  flex: 1;
  border: 1px solid var(--hair);
  background: transparent;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--ink-2);
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
  min-width: 56px;
}
.tweaks__row button[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tweaks__swatches { display: flex; gap: 6px; }
.tweaks__swatch {
  flex: 1; height: 32px;
  border-radius: 4px;
  border: 1px solid var(--hair);
  cursor: pointer;
  position: relative;
}
.tweaks__swatch[aria-pressed="true"]::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--ink); border-radius: 6px;
}
