/* ========================================
   CE CAFE — Dark Academia meets Biophilic Luxury
   ======================================== */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* === DESIGN TOKENS === */
:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* CE Cafe Palette */
  --color-bg: #0F0D0A;
  --color-surface: #1A1510;
  --color-surface-2: #231C14;
  --color-surface-offset: #2C2218;
  --color-border: #3D3027;
  --color-divider: #2A2018;

  --color-text: #F0E8D8;
  --color-text-muted: #A89880;
  --color-text-faint: #6B5A48;

  --color-primary: #C4933F;
  --color-primary-hover: #D4A855;
  --color-primary-active: #E8C070;
  --color-primary-highlight: #2A2010;

  --color-cognac: #8B5E3C;
  --color-cognac-hover: #9E6E4A;

  --color-forest: #2D4A35;
  --color-cream: #F5EDD9;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm amber tint */
  --shadow-sm: 0 1px 3px rgba(15, 13, 10, 0.4);
  --shadow-md: 0 4px 16px rgba(15, 13, 10, 0.5);
  --shadow-lg: 0 12px 40px rgba(15, 13, 10, 0.6);
  --shadow-warm: 0 8px 32px rgba(196, 147, 63, 0.08);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
}

/* === BODY === */
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

::selection {
  background: rgba(196, 147, 63, 0.25);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], [role='link'] {
  transition: color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

.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;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

/* === GRAIN TEXTURE (applied globally) === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  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");
  background-size: 256px 256px;
}

/* === SECTION DIVIDER === */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary) 20%, var(--color-primary) 80%, transparent);
  opacity: 0.2;
}

/* === FADE IN ON SCROLL === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

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

/* === EYEBROW LABEL === */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* === SECTION LABEL === */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 147, 63, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--outline:hover {
  background: rgba(196, 147, 63, 0.08);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 147, 63, 0.1);
}

.btn--text {
  background: transparent;
  color: var(--color-primary);
  border: none;
  padding: var(--space-2) 0;
  font-weight: 500;
}
.btn--text:hover {
  color: var(--color-primary-hover);
}
.btn--text .arrow {
  transition: transform var(--transition-interactive);
}
.btn--text:hover .arrow {
  transform: translateX(4px);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) 0;
  box-shadow: 0 1px 0 rgba(61, 48, 39, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo {
  width: 28px;
  height: 35px;
  flex-shrink: 0;
}

.header__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1;
}

.header__wordmark-the {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.header__wordmark-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
}
.header__nav-link:hover {
  color: var(--color-primary);
}

.header__cta {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-6);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 13, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--color-primary); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* dark overlay so text stays legible */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 5, 0.72) 0%,
    rgba(10, 8, 5, 0.65) 40%,
    rgba(10, 8, 5, 0.55) 65%,
    rgba(10, 8, 5, 0.80) 100%
  );
  pointer-events: none;
}

/* warm gold ambient glow over the image */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196, 147, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--space-32) var(--space-6) var(--space-16);
}

.hero__eyebrow {
  margin-bottom: var(--space-8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: var(--space-2);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.1;
  margin-bottom: var(--space-10);
  padding-left: 15%;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 16px;
  height: 16px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === SECTIONS (generic) === */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  position: relative;
}

.section--surface {
  background: var(--color-surface);
}

.section--surface-2 {
  background: var(--color-surface-2);
}

.section__header {
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.1;
}

.section__title--italic {
  font-style: italic;
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-top: var(--space-4);
  line-height: 1.7;
}

/* === BITE-SIZE CE SECTION === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 147, 63, 0.06);
}

.feature-card__primary {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}

.feature-card__secondary {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.feature-card__tertiary {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* === THIS WEEK SPOTLIGHT === */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-12);
  align-items: center;
}

.spotlight__chip {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border: 1px solid rgba(196, 147, 63, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.spotlight__meta {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.spotlight__credits {
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.spotlight__image-wrapper {
  display: flex;
  justify-content: center;
}

.spotlight__image {
  width: 260px;
  height: 260px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 40px rgba(196, 147, 63, 0.1);
}

/* === ON DEMAND SECTION === */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.feature-point {
  text-align: center;
}

.feature-point__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
}

.feature-point__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}

.feature-point__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 280px;
  margin: 0 auto;
}

.nbcc-disclosure {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 720px;
  margin: var(--space-10) auto 0;
  text-align: center;
  line-height: 1.6;
}

/* === PRIVATE PRACTICE === */
.pp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.pp-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
  border-color: var(--color-cognac);
}

.pp-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}

.pp-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.pp-card__link {
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.pp-card__link:hover { color: var(--color-primary-hover); }
.pp-card__link .arrow {
  transition: transform var(--transition-interactive);
}
.pp-card__link:hover .arrow {
  transform: translateX(3px);
}

/* === ABOUT / PHILOSOPHY === */
.about-section {
  text-align: center;
}

.pullquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  max-width: 800px;
  margin: 0 auto var(--space-12);
  line-height: 1.3;
  position: relative;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: -0.05em;
  font-size: 3em;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}

.about-bio {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.nbcc-credential {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(196,147,63,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
  max-width: 640px;
  margin: 0 auto;
}

.nbcc-credential__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.nbcc-badge {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.8);
  opacity: 0.9;
}

/* === FOOTER === */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-12);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer__brand-logo {
  width: 22px;
  height: 28px;
  flex-shrink: 0;
}

.footer__brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.footer__brand-the {
  font-family: var(--font-display);
  font-size: 8px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-cream);
  text-transform: uppercase;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__nav {
  display: flex;
  gap: var(--space-8);
  list-style: none;
  justify-content: center;
}

.footer__nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--color-primary); }

.footer__contact {
  text-align: right;
}

.footer__contact p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.footer__contact a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__contact a:hover {
  color: var(--color-primary-hover);
}

.footer__bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  text-align: center;
}

.footer__disclosure {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 800px;
  margin: 0 auto var(--space-4);
  line-height: 1.6;
}

.footer__production {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-faint);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header__nav-links { display: none; }
  .header__cta.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero__content {
    padding: var(--space-24) var(--space-4) var(--space-12);
  }

  .hero__subtitle {
    padding-left: 5%;
  }

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

  .spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .spotlight__image-wrapper {
    order: -1;
  }
  .spotlight__image {
    width: 200px;
    height: 200px;
  }
  .spotlight__chip { margin-left: auto; margin-right: auto; }

  .features-row {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .pp-layout {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__contact { text-align: center; }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-6);
  }

  .pullquote {
    font-size: var(--text-xl);
  }
  .pullquote::before {
    position: static;
    display: block;
    margin-bottom: var(--space-2);
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* === WEEK LABEL === */
.week-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* On demand CTA center */
.on-demand-cta {
  text-align: center;
}

/* PP heading desc */
.pp-heading__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
}
