/* ============================================================
   HAPPY KAMPUNG — Design System
   Awwwards-level editorial aesthetic
   Cream + Ink + Sage + Gold
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:        #FAF8F5;
  --cream-warm:   #F3F0EB;
  --cream-deep:   #EAE5DC;
  --ink:          #1A1511;
  --ink-mid:      #4A3F36;
  --ink-soft:     #7A6F66;
  --ink-ghost:    #B0A89E;
  --sage:         #3D6B50;
  --sage-mid:     #5C8A70;
  --sage-pale:    #EAF0EC;
  --sage-dark:    #2A4D38;
  --gold:         #A8733A;
  --gold-pale:    #F5EDE0;
  --void:         #130F0B;
  --void-mid:     #1E1812;
  --white:        #FFFFFF;

  /* Typography scale */
  --display:      clamp(3.25rem, 9vw, 8.5rem);
  --headline:     clamp(2rem, 5vw, 4rem);
  --title:        clamp(1.5rem, 3vw, 2.5rem);
  --lead:         clamp(1.0625rem, 1.5vw, 1.25rem);
  --body:         1.0625rem;
  --small:        0.9375rem;
  --label:        0.75rem;
  --eyebrow-size: 0.75rem;

  /* Spacing */
  --section-v:    clamp(7rem, 12vw, 11rem);
  --section-v-sm: clamp(4rem, 7vw, 7rem);
  --gutter:       clamp(1.5rem, 5vw, 5rem);
  --max-w:        1200px;
  --max-w-text:   700px;

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:   cubic-bezier(0.65, 0, 0.35, 1);
  --dur-slow:     1.2s;
  --dur-med:      0.7s;
  --dur-fast:     0.35s;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(26,21,17,0.07);
  --shadow-md:    0 8px 40px rgba(26,21,17,0.10);
  --shadow-lg:    0 24px 80px rgba(26,21,17,0.14);
  --shadow-card:  0 4px 32px rgba(26,21,17,0.08), 0 1px 4px rgba(26,21,17,0.05);
}

/* ── Base ────────────────────────────────────────────────────── */
html { background: var(--cream); }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: var(--body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display--italic {
  font-style: italic;
  font-weight: 400;
}

.headline {
  font-size: var(--headline);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.title {
  font-size: var(--title);
  line-height: 1.2;
}

.lead {
  font-size: var(--lead);
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink-mid);
}

.eyebrow {
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

p { max-width: 65ch; }

/* ── Layout Utilities ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 800px; }
.container--text   { max-width: var(--max-w-text); }


/* ── Photo Placeholders (art direction for photographer) ──────── */
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--cream-deep);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: 'PHOTO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--ink-ghost);
  font-weight: 600;
}

.photo-placeholder__caption {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 30ch;
}

.photo-placeholder--dark {
  background: var(--void-mid);
}

.photo-placeholder--dark .photo-placeholder__caption { color: rgba(250,248,245,0.45); }
.photo-placeholder--dark::before { color: rgba(250,248,245,0.12); }
.photo-placeholder--sage { background: #D8E8DF; }
.photo-placeholder--warm { background: #EDE3D5; }


/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.375rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    padding var(--dur-med) var(--ease-out);
}

.nav--scrolled {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,21,17,0.08);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* Logo */
.hk-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.hk-logo__mark {
  width: 2rem;
  height: 2rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}

.hk-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--dur-fast);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.625rem 1.375rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 500 !important;
  transition: background var(--dur-fast) !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--sage-dark) !important; }

.nav__mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
  }
}

/* Nav on dark background hero */
.nav--on-dark .hk-logo__text  { color: var(--cream); }
.nav--on-dark .nav__links a   { color: rgba(250,248,245,0.7); }
.nav--on-dark .nav__links a::after { background: var(--cream); }
.nav--on-dark .nav__links a:hover  { color: var(--cream); }
.nav--on-dark .nav__cta        { background: rgba(250,248,245,0.12) !important; }
.nav--on-dark .nav__cta:hover  { background: rgba(250,248,245,0.2) !important; }
.nav--on-dark .hk-logo__mark  { background: rgba(250,248,245,0.12); }

.nav--scrolled.nav--on-dark .hk-logo__text { color: var(--ink); }
.nav--scrolled.nav--on-dark .nav__links a  { color: var(--ink-mid); }
.nav--scrolled.nav--on-dark .nav__cta      { background: var(--ink) !important; color: var(--cream) !important; }
.nav--scrolled.nav--on-dark .hk-logo__mark { background: var(--sage); }


/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.9rem 1.875rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-out);
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,21,17,0.2);
}

.btn--sage {
  background: var(--sage);
  color: var(--cream);
}
.btn--sage:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61,107,80,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,21,17,0.3);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,248,245,0.35);
}
.btn--outline-light:hover {
  background: rgba(250,248,245,0.1);
  border-color: rgba(250,248,245,0.65);
}

.btn--lg {
  font-size: 1rem;
  padding: 1.0625rem 2.375rem;
}


/* ════════════════════════════════════════════════════════════
   CUSTOM CURSOR (desktop only)
   ════════════════════════════════════════════════════════════ */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition:
    width  0.45s var(--ease-out),
    height 0.45s var(--ease-out),
    border-color 0.3s,
    background 0.3s;
  mix-blend-mode: multiply;
  will-change: transform;
}

.cursor--expanded {
  width: 48px;
  height: 48px;
  background: rgba(61,107,80,0.08);
  border-color: var(--sage);
}

.cursor--on-dark {
  border-color: rgba(250,248,245,0.55);
  mix-blend-mode: normal;
}

@media (hover: none) { .cursor { display: none; } }


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(52px);
  transition:
    opacity  var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

[data-reveal='fade']  { transform: none; }
[data-reveal='scale'] { transform: scale(0.95) translateY(28px); }
[data-reveal='left']  { transform: translateX(-52px); }
[data-reveal='right'] { transform: translateX(52px); }

[data-reveal].revealed,
[data-reveal='fade'].revealed,
[data-reveal='scale'].revealed,
[data-reveal='left'].revealed,
[data-reveal='right'].revealed {
  opacity: 1;
  transform: none;
}

[data-delay='1'] { transition-delay: 0.12s; }
[data-delay='2'] { transition-delay: 0.24s; }
[data-delay='3'] { transition-delay: 0.36s; }
[data-delay='4'] { transition-delay: 0.48s; }
[data-delay='5'] { transition-delay: 0.60s; }
[data-delay='6'] { transition-delay: 0.72s; }


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--gutter) 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__bg-circle-1 {
  position: absolute;
  width: clamp(500px, 60vw, 900px);
  height: clamp(500px, 60vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,107,80,0.07) 0%, transparent 70%);
  top: -20%;
  right: -15%;
  pointer-events: none;
}

.hero__bg-circle-2 {
  position: absolute;
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,115,58,0.055) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero__pre {
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFadeUp 1.3s var(--ease-out) 0.5s forwards;
}

.hero__sub {
  font-size: var(--lead);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 1.6s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--ink-ghost), transparent);
  animation: scrollPulse 2.8s ease-in-out 2.2s infinite;
}

.hero__scroll-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
}


/* ════════════════════════════════════════════════════════════
   OPENING STATEMENT — dark, immersive
   ════════════════════════════════════════════════════════════ */

.statement {
  padding: var(--section-v) var(--gutter);
  background: var(--void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(61,107,80,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.statement__inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 3.375rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: rgba(250,248,245,0.88);
  letter-spacing: -0.01em;
  max-width: 100%;
}

.statement__text strong {
  font-style: normal;
  color: var(--sage-mid);
  font-weight: 600;
}

.statement__rule {
  width: 2.5rem;
  height: 1px;
  background: rgba(250,248,245,0.18);
  margin: 2.5rem auto;
}


/* ════════════════════════════════════════════════════════════
   THE OBJECT — Physical card (split layout)
   ════════════════════════════════════════════════════════════ */

.object-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90svh;
}

.object-section__photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.object-section__photo .photo-placeholder {
  position: absolute;
  inset: 0;
  min-height: unset;
}

.object-section__text {
  padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.object-section__eyebrow { margin-bottom: 1.25rem; }

.object-section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  max-width: 18ch;
}

.object-section__body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.object-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.object-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.object-feature__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.object-feature__text {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 100%;
}

@media (max-width: 768px) {
  .object-section { grid-template-columns: 1fr; min-height: auto; }
  .object-section__photo { min-height: 55vw; }
  .object-section__text { padding: 3rem var(--gutter); }
}


/* ════════════════════════════════════════════════════════════
   THE JOURNEY — 4 steps
   ════════════════════════════════════════════════════════════ */

.journey-section {
  padding: var(--section-v) var(--gutter);
  background: var(--cream-warm);
}

.journey-section__header {
  text-align: center;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.journey-section__eyebrow { margin-bottom: 1rem; }

.journey-section__title {
  font-size: clamp(2rem, 4vw, 3.375rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* Connecting thread */
.journey-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-mid), transparent);
  opacity: 0.4;
  z-index: 0;
}

.journey-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.journey-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.journey-step__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.625rem;
}

.journey-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.journey-step__body {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 22ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  .journey-steps::before { display: none; }
}

@media (max-width: 480px) {
  .journey-steps { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   EDITORIAL — Full bleed photo + quote
   ════════════════════════════════════════════════════════════ */

.editorial {
  min-height: 88svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.editorial__photo {
  position: absolute;
  inset: 0;
}

.editorial__photo .photo-placeholder {
  position: absolute;
  inset: 0;
  min-height: unset;
}

.editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(19,15,11,0.1) 0%,
    rgba(19,15,11,0.5) 50%,
    rgba(19,15,11,0.85) 100%
  );
}

.editorial__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.editorial__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4.5vw, 3.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  max-width: 17ch;
  margin-bottom: 1.5rem;
}

.editorial__caption {
  font-size: var(--small);
  color: rgba(250,248,245,0.45);
  letter-spacing: 0.06em;
}


/* ════════════════════════════════════════════════════════════
   RECIPIENTS — Who it's for
   ════════════════════════════════════════════════════════════ */

.recipients {
  padding: var(--section-v) var(--gutter);
  background: var(--cream);
}

.recipients__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.recipients__header {
  margin-bottom: clamp(4rem, 7vw, 6rem);
  max-width: 680px;
}

.recipients__eyebrow { margin-bottom: 1.25rem; }

.recipients__title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.recipients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.recipient-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-deep);
}

.recipient-card__photo {
  position: absolute;
  inset: 0;
}

.recipient-card__photo .photo-placeholder {
  position: absolute;
  inset: 0;
  min-height: unset;
  border-radius: 0;
  padding: 1.25rem;
  align-items: flex-end;
}

.recipient-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,15,11,0.75) 0%, transparent 55%);
  z-index: 1;
}

/* Hide placeholder labels inside photo cards — art direction is in HTML comments */
.recipient-card .photo-placeholder::before { display: none; }
.recipient-card .photo-placeholder__caption { display: none; }

.recipient-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 1;
}

.recipient-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.375rem;
}

.recipient-card__desc {
  font-size: 0.8125rem;
  color: rgba(250,248,245,0.62);
  line-height: 1.55;
  max-width: 100%;
}

@media (max-width: 768px) {
  .recipients__grid { grid-template-columns: 1fr 1fr; }
  .recipient-card:last-child { display: none; }
}

@media (max-width: 480px) {
  .recipients__grid { grid-template-columns: 1fr; }
  .recipient-card:last-child { display: block; }
  .recipient-card { aspect-ratio: 4/3; }
}


/* ════════════════════════════════════════════════════════════
   VOICES — Testimonials
   ════════════════════════════════════════════════════════════ */

.voices {
  padding: var(--section-v) var(--gutter);
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.voices__decor {
  position: absolute;
  top: -2rem;
  left: calc(var(--gutter) - 0.5rem);
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 28vw, 22rem);
  line-height: 1;
  color: rgba(250,248,245,0.04);
  pointer-events: none;
  user-select: none;
  font-weight: 700;
}

.voices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.voices__eyebrow-row {
  grid-column: 1 / -1;
}

.voices__eyebrow-row .eyebrow { color: rgba(250,248,245,0.3); }

.voice-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(250,248,245,0.88);
  margin-bottom: 1.875rem;
  max-width: 100%;
}

.voice-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250,248,245,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-card__role {
  font-size: 0.8125rem;
  color: rgba(250,248,245,0.22);
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .voices__inner { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   THE SET — 31 cards visual
   ════════════════════════════════════════════════════════════ */

.the-set {
  padding: var(--section-v) var(--gutter);
  background: var(--cream-warm);
  text-align: center;
}

.the-set__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.the-set__eyebrow { margin-bottom: 1.5rem; }

.the-set__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.the-set__sub {
  font-size: var(--lead);
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 50ch;
  margin: 0 auto 5rem;
}

/* Card fan */
.cards-fan {
  position: relative;
  height: 260px;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-card {
  position: absolute;
  width: 130px;
  height: 182px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(26,21,17,0.12);
  border: 1px solid rgba(26,21,17,0.08);
  overflow: hidden;
  transform-origin: bottom center;
}

.fan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 55%);
}

.fan-card:nth-child(1) { transform: rotate(-21deg) translateY(-10px); background: #EAF0EC; }
.fan-card:nth-child(2) { transform: rotate(-14deg) translateY(-5px);  background: #F5EDE0; }
.fan-card:nth-child(3) { transform: rotate(-7deg)  translateY(-2px);  background: #EEF0F6; }
.fan-card:nth-child(4) { transform: rotate(0deg)   translateY(0);     background: var(--cream); z-index: 4; }
.fan-card:nth-child(5) { transform: rotate(7deg)   translateY(-2px);  background: #EAF0EC; }
.fan-card:nth-child(6) { transform: rotate(14deg)  translateY(-5px);  background: #F5EDE0; }
.fan-card:nth-child(7) { transform: rotate(21deg)  translateY(-10px); background: #EEF0F6; }

.fan-card__inner {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.fan-card__num {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fan-card__divider {
  height: 1px;
  background: var(--cream-deep);
  margin-bottom: 0.875rem;
}

.fan-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}

.the-set__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.theme-tag {
  display: inline-block;
  padding: 0.4375rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  font-size: 0.8125rem;
  color: var(--ink-mid);
  font-weight: 400;
  transition: all var(--dur-fast);
}

.theme-tag:hover {
  background: var(--sage-pale);
  border-color: var(--sage-mid);
  color: var(--sage-dark);
}


/* ════════════════════════════════════════════════════════════
   THE INVITATION — CTA
   ════════════════════════════════════════════════════════════ */

.invitation {
  padding: clamp(8rem, 15vw, 14rem) var(--gutter);
  background: var(--cream);
  text-align: center;
  position: relative;
}

.invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(61,107,80,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(168,115,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.invitation__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.invitation__eyebrow { margin-bottom: 1.75rem; }

.invitation__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 6.5vw, 6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.invitation__sub {
  font-size: var(--lead);
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 42ch;
  margin: 0 auto 3rem;
}

.invitation__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-ghost);
  max-width: 100%;
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */

.footer {
  background: var(--void);
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 2.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(250,248,245,0.08);
  margin-bottom: 2rem;
}

.footer__brand .hk-logo__mark { background: rgba(250,248,245,0.1); }
.footer__brand .hk-logo__text { color: rgba(250,248,245,0.88); }

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(250,248,245,0.38);
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 28ch;
}

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.28);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(250,248,245,0.52);
  transition: color var(--dur-fast);
}

.footer__links a:hover { color: rgba(250,248,245,0.88); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(250,248,245,0.2);
  max-width: 100%;
}

@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}


/* ════════════════════════════════════════════════════════════
   CARD PAGE — Sacred, minimal, light
   ════════════════════════════════════════════════════════════ */

.card-page {
  background: var(--cream);
  min-height: 100svh;
}

/* Reading progress */
.card-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--sage), var(--sage-mid));
  z-index: 200;
  transition: width 0.1s linear;
}

/* Minimal card nav */
.card-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), background 0.4s, box-shadow 0.4s;
}

.card-nav--visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,21,17,0.07);
}

.card-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color var(--dur-fast);
}
.card-back:hover { color: var(--ink); }

/* Card main content */
.card-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--gutter) clamp(4rem, 7vw, 6rem);
}

/* Card header */
.card-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.card-number {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.card-theme-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 700;
}

/* Video */
.card-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--void);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  box-shadow: var(--shadow-lg);
}

.card-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--void);
}

.card-video-placeholder__icon { color: rgba(250,248,245,0.2); }
.card-video-placeholder__text {
  font-size: 0.875rem;
  color: rgba(250,248,245,0.3);
  max-width: 100%;
  letter-spacing: 0.04em;
}

/* Play overlay */
.card-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--dur-fast);
}

.card-play-overlay.hidden { opacity: 0; pointer-events: none; }

.card-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(250,248,245,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(250,248,245,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast), background var(--dur-fast);
}

.card-play-btn:hover {
  transform: scale(1.1);
  background: rgba(250,248,245,0.22);
}

.card-play-btn svg { transform: translateX(2px); }

/* Controls */
.card-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  transition: opacity var(--dur-med);
}

.card-controls.hidden { opacity: 0; }

.card-progress {
  height: 3px;
  background: rgba(250,248,245,0.2);
  border-radius: 99px;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.card-progress__fill {
  height: 100%;
  background: var(--sage-mid);
  border-radius: 99px;
  width: 0%;
  transition: width 0.1s linear;
}

.card-controls__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-ctrl {
  color: rgba(250,248,245,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast), transform var(--dur-fast);
  padding: 0.25rem;
}
.card-ctrl:hover { color: #fff; transform: scale(1.12); }

.card-time {
  font-size: 0.8125rem;
  color: rgba(250,248,245,0.5);
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}

/* Affirmation */
.card-affirmation-block {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.card-affirmation-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.card-affirmation-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.625rem, 4vw, 2.875rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin: 0 auto;
}

/* Practice */
.card-practice {
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.card-practice-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.875rem;
}

.card-practice-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 100%;
}

/* Card footer nav */
.card-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-deep);
  margin-bottom: 2rem;
}

.card-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: opacity var(--dur-fast);
}
.card-nav-link:hover { opacity: 0.62; }

.card-nav-link__dir {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-nav-link__theme {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-mid);
}

.card-nav-link--next { text-align: right; }

.card-home-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-ghost);
  transition: color var(--dur-fast);
}
.card-home-link:hover { color: var(--ink-mid); }

/* Loading skeleton */
.card-skel {
  background: linear-gradient(90deg, var(--cream-warm) 25%, var(--cream-deep) 50%, var(--cream-warm) 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skel 1.8s ease-in-out infinite;
}

@keyframes skel {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Card page footer */
.card-page-footer {
  padding: 2rem var(--gutter);
  text-align: center;
  border-top: 1px solid var(--cream-deep);
}
.card-page-footer p { font-size: 0.8125rem; color: var(--ink-ghost); max-width: 100%; }
.card-page-footer a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }


/* ════════════════════════════════════════════════════════════
   INNER PAGES
   ════════════════════════════════════════════════════════════ */

.page-hero {
  padding: clamp(6rem, 12vw, 11rem) var(--gutter) clamp(4rem, 7vw, 6rem);
  background: var(--cream-warm);
  border-bottom: 1px solid var(--cream-deep);
}

.page-hero__inner { max-width: 680px; }
.page-hero__eyebrow { margin-bottom: 1.25rem; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: var(--lead);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 52ch;
}

.page-body {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
}

.page-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.page-body h2:first-child { margin-top: 0; }

.page-body p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.125rem;
  max-width: 65ch;
}

.page-body a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }

.pullquote {
  background: var(--void);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin: 3rem 0;
}

.pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(250,248,245,0.9);
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}


/* ── Contact form ── */
.contact-who {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid var(--cream-deep);
}

.contact-who__item { background: var(--cream); padding: 1.5rem; }

.contact-who__title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  max-width: 100%;
}

.contact-who__desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 100%;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-ghost); }

.form-input:focus, .form-textarea:focus {
  border-color: var(--sage-mid);
  box-shadow: 0 0 0 3px rgba(92,138,112,0.14);
}

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-note { font-size: 0.8125rem; color: var(--ink-ghost); max-width: 100%; }

.status {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.status--success { background: var(--sage-pale); color: var(--sage-dark); border: 1px solid rgba(61,107,80,0.2); }
.status--error   { background: #FEF2F2; color: #991B1B; border: 1px solid rgba(153,27,27,0.15); }

.contact-direct { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--cream-deep); }
.contact-direct__label { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 0.375rem; }
.contact-direct__email { font-size: 1.0625rem; font-weight: 600; color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }


/* ════════════════════════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════════════════════════ */

.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  text-align: center;
  background: var(--cream);
}

.not-found__ghost {
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 25vw, 18rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-deep);
  margin-bottom: -2rem;
  user-select: none;
}

.not-found__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.not-found__body {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
  max-width: 100%;
}


/* ════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════════════════════ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 500;
  z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
