/* Brand tokens — Light Premium Scandinavian */
:root {
  --bg: #f7f5f1;
  --bg-warm: #f1eee7;
  --surface: #ffffff;
  --surface-alt: #f0ede6;
  --text: #1c2420;
  --text-strong: #121816;
  --muted: #5c675f;
  --primary: #2f5d45;
  --primary-hover: #244a37;
  --primary-soft: #e6efe9;
  --accent: #7a947f;
  --accent-soft: #dce6df;
  --solar: #c9a84c;
  --solar-soft: #f5efd8;
  --border: #e2ddd3;
  --border-strong: #cfc8bb;
  --focus: #2f5d45;
  --danger: #8b3a3a;
  --success: #2f5d45;
  --overlay: rgba(18, 24, 22, 0.48);
  --cookie-bg: #1c2420;
  --cookie-text: #f7f5f1;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28, 36, 32, 0.05);
  --shadow-md: 0 10px 30px rgba(28, 36, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 36, 32, 0.1);
  --container: 1240px;
  --section-space: clamp(4rem, 8vw, 7rem);
  --header-h: 76px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --line: 1.65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: var(--line);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(122, 148, 127, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 168, 76, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  background-attachment: fixed;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--primary-hover);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  background: var(--primary-soft);
  color: var(--text-strong);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--primary);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
  max-width: 100%;
}

.section-alt {
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
  }
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.98rem;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text-strong);
  border-color: var(--border);
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, var(--primary-soft), var(--surface-alt) 45%, var(--solar-soft));
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.media-frame.pos-right img {
  object-position: 68% center;
}

.media-frame.pos-left img {
  object-position: 32% center;
}

.media-frame.pos-person img {
  object-position: center 28%;
}

.media-frame.pos-top img {
  object-position: center 20%;
}

.media-frame::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 1;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  pointer-events: none;
}

.media-frame.portrait {
  aspect-ratio: 4 / 5;
}

.media-frame.square {
  aspect-ratio: 1 / 1;
}

.media-frame.wide {
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--text-strong);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.35rem;
}

.price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--solar-soft);
  color: #6d5720;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.disclaimer {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.flow-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--primary);
  min-width: 2.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, var(--solar) 0%, #e0c56a 35%, var(--primary) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.logo span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.burger-lines {
  width: 1.15rem;
  height: 0.85rem;
  display: grid;
  gap: 0.22rem;
}

.burger-lines span {
  display: block;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.burger[aria-expanded="true"] .burger-lines span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger-lines span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger-lines span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-footer {
  background: #17201c;
  color: #d8ddd9;
  padding: 4rem 0 2rem;
  max-width: 100%;
}

.site-footer a {
  color: #d8ddd9;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #a7b0aa;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 2000;
  max-width: 520px;
  background: var(--cookie-bg);
  color: var(--cookie-text);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  color: #c7cec9;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  min-height: 2.6rem;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
}

.cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-panel.is-open {
  display: grid;
  gap: 0.75rem;
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  font-size: 0.9rem;
}

.cookie-row label {
  display: grid;
  gap: 0.2rem;
}

.cookie-row strong {
  color: #fff;
}

.cookie-row span {
  color: #aeb6b1;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn .arrow,
  .card {
    transition: none;
  }
}
