/* ═══════════════════════════════════════════
   BLISS TO BUSINESS — Patricia von Papstein
   Style System
═══════════════════════════════════════════ */

@import url('fonts/fonts.css');


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

/* ── TOKENS ── */
:root {
  --yolk: #F5C800;
  --yolk-deep: #E8A800;
  --amber: #D4700A;
  --amber-light: #F08030;
  --shell: #FEF9EC;
  --shell2: #FDF3D0;
  --shell3: #FAE8A0;
  --cream: #FDFBE8;
  --warm-dark: #3D3220;
  --warm-mid: #6B5A3A;
  --muted: #7A6A52;
  --line: #EDE0C0;
  --line2: #E5D5A8;
  --sans: 'Plus Jakarta Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --nav-h: 74px;
  --max: 1000px;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--warm-dark);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* ── PAGES (legacy, keep for any old refs) ── */
.page {
  display: block;
}

.page.active {
  display: block;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background: rgba(253, 252, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

/* ── BURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE DROPDOWN MENU ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(253, 252, 247, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.nav-mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile-menu a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
  display: block;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--amber);
}

/* ── SECTION REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION WRAPPER ── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider {
  height: 1px;
  background: var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

/* ══════════════════════════════════
   HOME — HERO
══════════════════════════════════ */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}

.hero-img {
  width: 100%;
  max-height: 95vh;
  min-height: 400px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6rem 3rem 3.5rem;
  background: linear-gradient(to top, rgba(253, 252, 247, 0.97) 50%, transparent);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--warm-dark);
  max-width: 900px;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

.hl {
  color: var(--amber);
}

.hero-title .hl {
  color: var(--amber);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(253, 252, 247, 0.85);
  border: 1px solid var(--line2);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  min-width: 200px;
  backdrop-filter: blur(8px);
}

.hero-btn:hover {
  background: var(--yolk);
  border-color: var(--yolk-deep);
  transform: translateY(-2px);
}

.hero-btn-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-dark);
  font-weight: 600;
  line-height: 1.4;
}

/* ══════════════════════════════════
   HOME — CAROUSEL (Trick & Care)
══════════════════════════════════ */
.carousel-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto 3rem;
}


.carousel-viewport {
  overflow: hidden;
  border-radius: 500px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* image-only carousel slide */
.c-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.c-egg {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  padding: 3.5rem 2.5rem 4rem;
  text-align: center;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 6px 36px rgba(196, 120, 0, 0.07);
  transition: background 0.3s;
}

.c-egg:hover {
  background: #FFF5C0;
}

.c-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.c-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--warm-dark);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.c-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.3rem;
}

.c-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 340px;
  margin: 0 auto;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.carousel-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-nav button.active {
  background: var(--amber);
  transform: scale(1.3);
}

.carousel-arrows {
  position: absolute;
  top: 45%;
  left: -45px;
  right: -45px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0.5rem;
}

.carousel-arrows button {
  pointer-events: all;
  background: rgba(253, 252, 247, 0.9);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--warm-mid);
  transition: background 0.2s, color 0.2s;
}

.carousel-arrows button:hover {
  background: var(--yolk);
  color: var(--warm-dark);
}

/* ══════════════════════════════════
   HOME — EGG CLUSTER (What If)
══════════════════════════════════ */
.egg-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin: 0 auto 1rem;
  max-width: 820px;
}

.egg {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  width: 150px;
  height: 188px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.egg:hover {
  background: var(--yolk);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 30px rgba(196, 120, 0, 0.15);
}

.egg-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.egg-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.egg-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   HOME — WORKSHOPS (When)
══════════════════════════════════ */
/* ── SECTION HELPERS ── */
.section-heading {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: var(--warm-dark);
  white-space: nowrap;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  max-width: 560px;
  line-height: 1.8;
}

.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ── BLOG TILES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-tile {
  display: flex;
  flex-direction: column;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  min-height: 160px;
}

.blog-tile:hover {
  background: var(--yolk);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(196, 120, 0, 0.13);
}

.blog-tile-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: block;
}

.blog-tile-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--warm-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  display: block;
}

.blog-tile-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  display: block;
}

.blog-tile-arrow {
  font-size: 1.1rem;
  color: var(--amber);
  margin-top: 1rem;
  transition: transform 0.2s;
  align-self: flex-end;
  display: block;
}

.blog-tile:hover .blog-tile-arrow {
  transform: translateX(4px);
}

/* ── WORKSHOP TILES ── */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.w-tile {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  min-height: 160px;
  text-decoration: none;
  color: inherit;
}

.w-tile:hover {
  background: var(--yolk);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(196, 120, 0, 0.13);
}

.w-tile.featured {
  background: var(--shell3);
  border-color: var(--line2);
}

.w-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.w-charm {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.w-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.w-tile-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 1rem;
  display: block;
  transition: letter-spacing 0.2s;
}

.w-tile:hover .w-tile-link {
  letter-spacing: 0.16em;
}

.w-offer-preview {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line2);
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.w-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}

.w-offer-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

/* ══════════════════════════════════
   HOME — CONTACT
══════════════════════════════════ */
.contact-text {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  color: var(--warm-dark);
  white-space: nowrap;
}

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: var(--warm-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 40px;
  transition: background 0.2s, transform 0.2s;
}

.contact-link:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   WHO PAGE
══════════════════════════════════ */
.who-hero {
  margin-top: var(--nav-h);
  background: var(--shell2);
  border-bottom: 1px solid var(--line);
  padding: 5rem 3rem 4rem;
}

.who-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: center;
}

.who-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.who-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--warm-dark);
  margin-bottom: 0.5rem;
}

.who-title .hl {
  color: var(--amber);
}

.who-subtitle {
  font-family: var(--mono);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.who-portrait {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 1;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 720px;
}

.body-h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: var(--warm-dark);
}

.body-h2 .hl {
  color: var(--amber);
}

.body-text {
  font-size: 1.0rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0;
}

.pull-quote {
  border-left: 3px solid var(--yolk);
  padding: 0.6rem 0 0.6rem 1.5rem;
  margin: 0.6rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-dark);
  font-style: italic;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.inset-box {
  background: var(--shell);
  border: 1px solid var(--line);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.inset-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.inset-box p {
  font-size: 1.0rem;
  font-style: italic;
  color: var(--warm-dark);
  line-height: 1.75;
}

/* ══════════════════════════════════
   WHY PAGE
══════════════════════════════════ */
.why-hero {
  margin-top: var(--nav-h);
  background: var(--shell2);
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--line);
}

.why-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.why-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.why-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--warm-dark);
  max-width: 700px;
}

.why-title .hl {
  color: var(--amber);
}

.cta-strip {
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  background: rgba(245, 200, 0, 0.05);
  border: 1px solid rgba(196, 120, 0, 0.2);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-strip p {
  font-size: 1.0rem;
  color: var(--warm-mid);
  max-width: 480px;
  line-height: 1.7;
}

/* ══════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════ */
.btn-pill {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--warm-dark);
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-pill:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-dark);
  background: transparent;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  border: 1px solid var(--line2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: var(--yolk);
  border-color: var(--yolk-deep);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
}

.footer-name {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-shiver {
  font-family: var(--mono);
  font-size: 11px;
  font-style: italic;
  color: var(--amber);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════
   FAN (What If)
══════════════════════════════════ */
.fan {
  display: flex;
  gap: 0.75rem;
  height: 400px;
  width: 100%;
}

.fan-egg {
  flex: 1;
  min-width: 64px;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-egg:hover {
  flex: 6;
  background: var(--yolk);
}

/* collapsed label — rotated vertically */
.fan-closed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.2s;
  pointer-events: none;
  padding: 1rem 0.25rem;
  overflow: hidden;
}

.fan-egg:hover .fan-closed {
  opacity: 0;
}

.fan-closed-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.fan-closed-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--warm-dark);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  line-height: 1.2;
}

/* expanded content */
.fan-open {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  opacity: 0;
  transition: opacity 0.25s 0.25s;
  pointer-events: none;
  overflow: hidden;
}

.fan-egg:hover .fan-open {
  opacity: 1;
}

.fan-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.fan-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--warm-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.fan-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.fan-body {
  font-size: 0.85rem;
  color: var(--warm-mid);
  line-height: 1.8;
  max-width: 260px;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════
   DECORATIVE EGGS
══════════════════════════════════ */
.deco-egg {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  user-select: none;
  animation: eggFloat 9s ease-in-out infinite;
  transition: opacity 1.2s ease;
}

/* Triggered by JS when #whatif scrolls into view */
body.eggs-visible .deco-egg {
  opacity: 0.35;
}

#degg1 {
  width: 80px;
  top: 10vh;
  left: 2vw;
  animation-delay: 0s;
  animation-duration: 9s;
}

#degg2 {
  width: 55px;
  top: 38vh;
  right: 2vw;
  animation-delay: 1.5s;
  animation-duration: 11s;
}

#degg3 {
  width: 95px;
  top: 66vh;
  left: 4vw;
  animation-delay: 3s;
  animation-duration: 8s;
}

#degg4 {
  width: 65px;
  top: 16vh;
  right: 4vw;
  animation-delay: 0.8s;
  animation-duration: 12s;
}

#degg5 {
  width: 50px;
  top: 78vh;
  right: 7vw;
  animation-delay: 2.5s;
  animation-duration: 10s;
}

#degg6 {
  width: 85px;
  top: 52vh;
  left: 0.5vw;
  animation-delay: 4s;
  animation-duration: 9.5s;
}

@keyframes eggFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  /* Hide desktop nav links, show burger */
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* Hero: taller image area, overlay only at very bottom */
  .hero {
    min-height: 85svh;
  }

  .hero-img {
    max-height: 100svh;
    min-height: 50svh;
    width: 100%;
    object-position: center 15%;
  }

  .hero-overlay {
    padding: 14rem 1.5rem 2.5rem;
    background: linear-gradient(to top, rgba(253, 252, 247, 0.98) 30%, rgba(253, 252, 247, 0.2) 60%, transparent);
  }

  .hero-title {
    white-space: normal;
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    min-width: unset;
    width: 100%;
    max-width: 360px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .who-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .who-portrait {
    max-width: 240px;
  }

  .workshops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .section-heading {
    white-space: normal;
    font-size: 1.3rem;
  }

  .contact-text {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem);
    white-space: normal;
  }

  .cta-strip {
    flex-direction: column;
  }

  .egg-cluster {
    gap: 0.75rem;
  }

  .egg {
    width: 130px;
    height: 163px;
  }

  footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem;
  }

  /* Footer links stack below shiver on mobile */
  footer > div {
    flex-direction: column;
    gap: 0.5rem;
  }

  .deco-egg {
    opacity: 0.1;
  }

  #degg1 {
    width: 52px;
  }

  #degg2 {
    width: 38px;
  }

  #degg3 {
    width: 62px;
  }

  #degg4 {
    width: 44px;
  }

  #degg5 {
    width: 34px;
  }

  #degg6 {
    width: 56px;
  }
}

@media (max-width: 480px) {
  /* Nav logo: shrink so it never overflows on small phones */
  .nav-logo {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

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

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

  .hero-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .contact-text {
    font-size: 1.4rem;
    white-space: normal;
  }

  /* hide decorative eggs on very small screens */
  .deco-egg {
    display: none;
  }
}

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(253, 251, 232, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--warm-dark);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line2);
  padding: 0.6rem 1.25rem;
  border-radius: 40px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

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

@media (max-width: 600px) {
  #cookie-banner {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    /* Prevent any horizontal overflow */
    box-sizing: border-box;
    width: 100%;
  }

  .cookie-text {
    max-width: 100%;
    font-size: 10px;
  }

  .cookie-buttons {
    width: 100%;
    display: flex;
    gap: 0.6rem;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    padding: 0.55rem 0.75rem;
  }
}
/* ── Article topbar: mobile fix (padding reduced, text truncated) ── */
@media (max-width: 600px) {
  .article-topbar {
    padding: 0.75rem 1.25rem;
    font-size: 11px;
  }
  .article-topbar a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .blog-series-bar {
    padding: 0.6rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .site-header-series {
    font-size: 9px;
  }
}
