/* ═══════════════════════════════════════════════════════════════
   LYVI — Nordic Scalp Care · Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  /* Colors — Nordic palette */
  --c-bg:          #F6F4F0;
  --c-bg-warm:     #EDE9E1;
  --c-bg-card:     rgba(255,255,255,0.72);
  --c-bg-card-solid: #FFFFFF;
  --c-navy:        #0F1C33;
  --c-navy-mid:    #1B2A4A;
  --c-navy-light:  #2D4A7A;
  --c-navy-muted:  #4A6280;
  --c-sage:        #5C8A63;
  --c-sage-hover:  #4A7551;
  --c-sage-light:  #DAE8DC;
  --c-ice:         #C2D4E0;
  --c-ice-light:   #E8EFF4;
  --c-amber:       #C9956B;
  --c-amber-light: #F2E6D9;
  --c-text:        #1A1F2E;
  --c-text-muted:  #5E6A78;
  --c-text-light:  #94A0AE;
  --c-border:      #DDD8CE;
  --c-border-light:#E9E5DE;
  --c-error:       #C75050;
  --c-success:     #4A8B5C;

  /* Typography */
  --f-heading:     'Outfit', sans-serif;
  --f-body:        'DM Sans', sans-serif;

  /* Spacing */
  --s-xs:    0.25rem;
  --s-sm:    0.5rem;
  --s-md:    1rem;
  --s-lg:    1.5rem;
  --s-xl:    2rem;
  --s-2xl:   3rem;
  --s-3xl:   4rem;
  --s-4xl:   6rem;
  --s-5xl:   8rem;

  /* Layout */
  --max-width:   1140px;
  --border-r:    16px;
  --border-r-lg: 24px;

  /* Transitions */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration:    0.35s;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

/* Film grain texture — adds Nordic tactile warmth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--c-sage);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--c-sage-hover);
}

/* ── Utilities ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.section {
  padding: var(--s-4xl) 0;
}

.section-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--s-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.section-label--lg {
  font-size: 0.85rem;
  font-weight: 600;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--c-amber);
}

.section-title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--c-navy);
  margin-bottom: var(--s-lg);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   § HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* Aurora gradient orbs — constrained to the background */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,138,99,0.12) 0%, rgba(45,74,122,0.05) 50%, transparent 70%);
  pointer-events: none;
  animation: float-orb 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,212,224,0.08) 0%, rgba(201,149,107,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: float-orb 25s ease-in-out infinite reverse;
}

.hero__image-content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--border-r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,51,0.4) 0%, transparent 40%);
}

.hero__title {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--c-amber);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: var(--s-2xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  justify-content: center;
}

/* ── CTA Button ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 2.4rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-sage) 0%, #4A7551 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(92,138,99,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(92,138,99,0.4);
  color: #fff;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn__arrow {
  transition: transform var(--duration) var(--ease);
  font-size: 1.1em;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ── Scroll hint ──────────────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-sm);
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Wave divider ─────────────────────────────────────────────── */
.wave-divider {
  background: var(--c-navy);
  color: var(--c-bg);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

@media (min-width: 640px) {
  .wave-divider svg { height: 80px; }
}

/* ═══════════════════════════════════════════════════════════════
   § WINTER PROBLEMS
   ═══════════════════════════════════════════════════════════════ */
.winter {
  background: var(--c-bg);
}

.winter__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}

.winter__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.winter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}

.problem-card {
  background: var(--c-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-light);
  border-left: 3px solid transparent;
  border-radius: var(--border-r);
  padding: var(--s-2xl) var(--s-xl);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  border-left-color: var(--c-sage);
  box-shadow: 0 12px 48px rgba(15,28,51,0.07);
  transform: translateY(-6px);
}

.problem-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: var(--s-xl);
  transition: all 0.4s var(--ease);
  position: relative;
}

/* Individual Card Accents */
.problem-card:nth-child(1) .problem-card__icon { 
  background: rgba(187, 222, 251, 0.2); 
  color: #1B2A4A; 
  border: 1px solid rgba(187, 222, 251, 0.3);
}
.problem-card:nth-child(2) .problem-card__icon { 
  background: rgba(255, 236, 179, 0.2); 
  color: #D97706; 
  border: 1px solid rgba(255, 236, 179, 0.3);
}
.problem-card:nth-child(3) .problem-card__icon { 
  background: rgba(220, 237, 200, 0.2); 
  color: #2D5A27; 
  border: 1px solid rgba(220, 237, 200, 0.3);
}
.problem-card:nth-child(4) .problem-card__icon { 
  background: rgba(245, 245, 245, 0.4); 
  color: #1B2A4A; 
  border: 1px solid rgba(200, 200, 200, 0.3);
}

.problem-card:hover .problem-card__icon {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.problem-card__icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
}

.problem-card__title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-navy);
  margin-bottom: var(--s-sm);
  line-height: 1.3;
}

.problem-card__text {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   § WHY PRODUCTS FAIL
   ═══════════════════════════════════════════════════════════════ */
.products-fail {
  background: var(--c-bg-warm);
}

.products-fail .section-header {
  margin-bottom: var(--s-2xl);
}

.products-fail__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}

.products-fail__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.products-fail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}

.fail-card {
  background: var(--c-bg-card-solid);
  border: 1px solid var(--c-border-light);
  border-radius: var(--border-r);
  padding: var(--s-2xl);
  position: relative;
  transition: all 0.4s var(--ease);
}

.fail-card:hover {
  box-shadow: 0 12px 48px rgba(15,28,51,0.07);
  transform: translateY(-6px);
}

.fail-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: var(--s-xl);
  transition: all 0.4s var(--ease);
}

/* Fail Card Icon Accents */
.fail-card:nth-child(1) .fail-card__icon { 
  background: rgba(144, 164, 174, 0.12); 
  border: 1px solid rgba(144, 164, 174, 0.18); 
}
.fail-card:nth-child(2) .fail-card__icon { 
  background: rgba(229, 115, 115, 0.10); 
  border: 1px solid rgba(229, 115, 115, 0.16); 
}
.fail-card:nth-child(3) .fail-card__icon { 
  background: rgba(180, 83, 9, 0.09); 
  border: 1px solid rgba(180, 83, 9, 0.14); 
}

.fail-card:hover .fail-card__icon {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.fail-card__icon svg {
  width: 36px;
  height: 36px;
}

.fail-card__title {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-navy);
  margin-bottom: var(--s-md);
}

.fail-card__text {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   § WHAT WE'RE BUILDING
   ═══════════════════════════════════════════════════════════════ */
.building {
  background: var(--c-bg);
}

.building__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.building__image-wrap {
  position: relative;
  border-radius: var(--border-r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-bg-warm) 0%, var(--c-ice-light) 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(15,28,51,0.1), 0 1px 3px rgba(15,28,51,0.05);
  transition: transform 0.6s var(--ease);
}

.building__image-wrap:hover {
  transform: rotate(-1deg) scale(1.01);
}

.building__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.building__image-badge {
  position: absolute;
  bottom: var(--s-lg);
  left: var(--s-lg);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: 0.06em;
}

.building__text .section-label {
  margin-bottom: var(--s-sm);
}

.building__desc {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--s-2xl);
  font-weight: 300;
  max-width: 520px;
}

.building__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.building__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
  font-size: 0.95rem;
  color: var(--c-text);
}

.building__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-ice-light));
  border-radius: 10px;
  color: var(--c-sage);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   § EMAIL CAPTURE
   ═══════════════════════════════════════════════════════════════ */
.email-capture {
  background: var(--c-bg-warm);
  text-align: center;
  position: relative;
}

.email-capture__inner {
  max-width: 520px;
  margin: 0 auto;
  background: var(--c-bg-card-solid);
  border-radius: var(--border-r-lg);
  padding: var(--s-3xl) var(--s-2xl);
  position: relative;
  box-shadow: 0 12px 48px rgba(15,28,51,0.06);
  border: 1px solid var(--c-border-light);
}

.email-capture__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--s-2xl);
  right: var(--s-2xl);
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-amber), var(--c-ice));
}

.email-capture__title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-navy);
  margin-bottom: var(--s-md);
}

.email-capture__subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: var(--s-xl);
  line-height: 1.7;
}

.email-capture__promise strong {
  color: var(--c-amber);
  font-weight: 500;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--s-md);
}

.email-form__input {
  width: 100%;
  padding: 0.95rem 1.4rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  outline: none;
  transition: all var(--duration) var(--ease);
}

.email-form__input::placeholder {
  color: var(--c-text-light);
}

.email-form__input:focus {
  border-color: var(--c-sage);
  box-shadow: 0 0 0 4px rgba(107,143,113,0.1);
}

.email-form__submit {
  width: 100%;
}

.email-form__message {
  min-height: 1.5em;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}

.email-form__message--success {
  color: var(--c-success);
}

.email-form__message--error {
  color: var(--c-error);
}

.email-capture__reassurance {
  font-size: 0.82rem;
  color: var(--c-text-light);
  margin-top: var(--s-md);
}

.email-capture__privacy {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-top: var(--s-md);
}

.email-capture__privacy a {
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-capture__privacy a:hover {
  color: var(--c-sage);
}

/* ═══════════════════════════════════════════════════════════════
   § FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.4);
  padding: var(--s-3xl) var(--s-lg) var(--s-2xl);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.9;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,212,224,0.2), var(--c-amber), rgba(194,212,224,0.2), transparent);
}

.footer__brand {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.16em;
  margin-bottom: var(--s-lg);
}

.footer__details {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
  margin-bottom: var(--s-lg);
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__detail-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-sm);
}

.footer__sep {
  display: none;
}

.footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   § COOKIE CONSENT
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: var(--s-lg);
  left: var(--s-lg);
  right: var(--s-lg);
  z-index: 9999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border-light);
  border-radius: var(--border-r);
  box-shadow: 0 8px 40px rgba(15,28,51,0.1);
  padding: var(--s-lg) var(--s-xl);
  transform: translateY(calc(100% + var(--s-lg)));
  transition: transform 0.5s var(--ease);
  max-width: 600px;
  margin: 0 auto;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  align-items: center;
  text-align: center;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--s-sm);
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.cookie-btn--accept {
  background: var(--c-navy);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--c-navy-light);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--c-text-muted);
  border: 1.5px solid var(--c-border);
}

.cookie-btn--decline:hover {
  border-color: var(--c-text-muted);
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════════════════════
   § PRIVACY PAGE
   ═══════════════════════════════════════════════════════════════ */
.privacy-page {
  padding: var(--s-4xl) var(--s-lg);
  min-height: 100vh;
}

.privacy-page__inner {
  max-width: 680px;
  margin: 0 auto;
}

.privacy-page__back {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: var(--s-2xl);
  transition: color var(--duration) var(--ease);
}

.privacy-page__back:hover {
  color: var(--c-sage);
}

.privacy-page__back--bottom {
  margin-bottom: 0;
  margin-top: var(--s-3xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--c-border-light);
}

.privacy-page h1 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-navy);
  margin-bottom: var(--s-lg);
}

.privacy-page h2 {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--c-navy);
  margin-top: var(--s-2xl);
  margin-bottom: var(--s-md);
}

.privacy-page p,
.privacy-page li {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--s-md);
}

.privacy-page ul {
  padding-left: var(--s-xl);
  margin-bottom: var(--s-md);
}

.privacy-page li {
  margin-bottom: var(--s-sm);
}

.privacy-page strong {
  color: var(--c-text);
  font-weight: 600;
}

.privacy-page__updated {
  font-size: 0.82rem;
  color: var(--c-text-light);
  margin-bottom: var(--s-2xl);
}

/* ═══════════════════════════════════════════════════════════════
   § RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (min-width: 640px) {
  .container {
    padding: 0 var(--s-2xl);
  }

  .winter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-fail__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .email-form__submit {
    width: auto;
    min-width: 220px;
  }

  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
  }

  .footer__sep {
    display: inline;
  }

  .footer__details {
    gap: 0;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section {
    padding: var(--s-5xl) 0;
  }

  .winter__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title image"
      "subtitle image"
      "actions image";
    gap: var(--s-lg) var(--s-3xl);
    text-align: left;
  }

  .hero__title {
    grid-area: title;
    align-self: end;
  }

  .hero__subtitle {
    grid-area: subtitle;
    margin-left: 0;
  }

  .hero__actions {
    grid-area: actions;
    justify-content: flex-start;
    align-self: start;
  }

  .hero__image-content {
    grid-area: image;
    max-width: none;
    margin: 0;
  }

  .building__layout {
    grid-template-columns: 1fr 1fr;
  }
}
