/* ============================================================
   Amber Zain — amberzain.bio
   Palette: fall amber, royal blue, red, baby pink
   Type: Cormorant Garamond (display serif) + Manrope (body)
   ============================================================ */

:root {
  /* Color: warm amber base with royal blue as secondary accent */
  --cream-50: #fdfaf5;
  --cream-100: #f7f0e4;
  --cream-200: #efe5d1;
  --sand-300: #e2d1b4;
  --ink-900: #1a1512;
  --ink-800: #2b241f;
  --ink-700: #3f3630;
  --ink-500: #6b5f56;
  --ink-400: #8a7d72;

  --amber-400: #d68a3c;
  --amber-500: #b8621b;      /* primary accent */
  --amber-600: #9a4d13;
  --amber-700: #7a3a0d;

  --royal-500: #1e3a8a;
  --royal-600: #172d6b;

  --red-500: #b91c1c;
  --pink-300: #f8c1c8;
  --pink-400: #f0a3ad;

  --bg: var(--cream-50);
  --bg-alt: var(--cream-100);
  --bg-cream: #f9f2e5;
  --bg-dark: #1a1512;
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: rgba(26, 21, 18, 0.12);
  --border-light: rgba(26, 21, 18, 0.08);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem);
  --text-2xl: clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  --text-3xl: clamp(2.75rem, 2rem + 3.4vw, 4.25rem);
  --text-hero: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);

  /* Spacing */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --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;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(26,21,18,.06), 0 2px 8px rgba(26,21,18,.04);
  --shadow-md: 0 6px 24px rgba(26,21,18,.08), 0 2px 6px rgba(26,21,18,.05);
  --shadow-lg: 0 24px 48px rgba(26,21,18,.12), 0 8px 16px rgba(26,21,18,.06);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.serif-display { font-family: var(--font-serif); font-weight: 400; }
.italic { font-style: italic; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-primary {
  background: var(--ink-900);
  color: var(--cream-50);
}
.btn-primary:hover { background: var(--amber-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink-900); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-900);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.site-nav {
  display: none;
  gap: var(--space-8);
}
.site-nav a {
  font-size: var(--text-sm);
  color: var(--ink-700);
  transition: color .2s var(--ease);
}
.site-nav a:hover { color: var(--amber-500); }

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(184, 98, 27, 0.12), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30, 58, 138, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}

.eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber-600);
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.hero .eyebrow {
  font-size: 1.125rem;
  letter-spacing: 0.28em;
  font-weight: 600;
}
@media (min-width: 900px) {
  .hero .eyebrow { font-size: 1.35rem; }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
}
.hero-title .italic {
  color: var(--amber-500);
  font-weight: 300;
}
.hero-tagline {
  font-size: var(--text-base);
  color: var(--ink-700);
  max-width: 36rem;
  margin-bottom: var(--space-6);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.hero-tagline-line {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--amber-600);
}
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--ink-800);
  margin-bottom: var(--space-8);
  line-height: 1.35;
  border-left: 2px solid var(--amber-500);
  padding-left: 1.25rem;
}
.hero-motto {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--amber-700, #a54d10);
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin: -0.75rem 0 var(--space-8);
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, rgba(184, 98, 27, 0.08), rgba(184, 98, 27, 0.02));
  border-left: 3px solid var(--amber-600);
  border-radius: 0 6px 6px 0;
}
.hero-motto em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber-600);
}
@media (min-width: 900px) {
  .hero-motto { font-size: 1.55rem; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-8);
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.hero-contact a { transition: color .2s var(--ease); border-bottom: 1px dotted currentColor; padding-bottom: 1px;}
.hero-contact a:hover { color: var(--amber-500); }

/* Hero image */
.hero-image {
  position: relative;
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-200);
  box-shadow: var(--shadow-lg);
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border: 1px solid var(--amber-500);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.badge-year {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--amber-400);
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--cream-100);
}
.badge-npn {
  font-size: 0.7rem;
  color: rgba(253, 250, 245, 0.5);
  letter-spacing: 0.05em;
}
@media (min-width: 900px) {
  .hero-badge { bottom: 1.5rem; right: -1.5rem; }
}

/* ============================================================
   Manifesto
   ============================================================ */
.manifesto {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ink-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 800px) {
  .manifesto-inner { grid-template-columns: minmax(0, 0.85fr) 1fr; }
}
.manifesto-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a1930;
}
.manifesto-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.manifesto-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.manifesto-quote p {
  margin: 0 0 var(--space-6);
}
.manifesto-quote footer {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--amber-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-tinted { background: var(--cream-100); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--ink-900); color: var(--cream-100); }

.section-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber-600);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.eyebrow-light { color: var(--amber-400); }

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: var(--space-10);
  max-width: 20ch;
}
.section-title .italic { color: var(--amber-500); }
.section-title-light {
  color: var(--cream-50);
}
.section-title-light .italic { color: var(--amber-400); }

.section-lede {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 55ch;
  margin-bottom: var(--space-12);
  font-style: italic;
}

/* ============================================================
   About Section
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.4fr 1fr; }
}
.attribute-list {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.attribute-list li {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-800);
  padding: 0.35rem 0;
}
.about-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--amber-500);
  line-height: 1.3;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
.about-block {
  margin-bottom: var(--space-10);
}
.about-block h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--amber-600);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.about-block p {
  color: var(--ink-700);
  line-height: 1.7;
  max-width: 60ch;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.timeline-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.timeline-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(160deg, var(--cream-200), var(--cream-100));
}
.timeline-item-tall img {
  aspect-ratio: 3/4;
  object-fit: contain;
  background: linear-gradient(160deg, var(--cream-200), var(--cream-100));
  padding: 0.5rem;
}
.timeline-item-contain img {
  aspect-ratio: 3/4;
  object-fit: contain;
  background: linear-gradient(160deg, var(--cream-200), var(--cream-100));
  padding: 0.5rem;
}
.timeline-item figcaption {
  padding: 0.75rem 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-500);
  text-align: center;
  background: var(--cream-50);
}

@media (min-width: 900px) {
  .about-timeline {
    position: sticky;
    top: 5rem;
    align-self: start;
  }
}

/* ============================================================
   Favorites Grid
   ============================================================ */
.favorites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 700px) {
  .favorites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .favorites-grid { grid-template-columns: repeat(3, 1fr); }
  .favorite-card-wide { grid-column: 1 / -1; }
  .favorite-card-large { grid-column: span 2; }
  .favorite-card-large .dreams-gallery { grid-template-columns: repeat(3, 1fr); }
  .favorite-card-large .dream-photo-wide { grid-column: span 3; }
}
.favorite-card {
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.favorite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.favorite-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-light);
  letter-spacing: -0.005em;
}
.favorite-card h3 .serif-display {
  font-size: 1.15em;
  color: var(--amber-500);
  font-weight: 400;
}
.favorite-card ul li {
  padding: 0.5rem 0;
  color: var(--ink-700);
  line-height: 1.55;
  font-size: var(--text-sm);
}
.favorite-card ul li strong { color: var(--ink-900); font-weight: 600; }

.color-list li { display: flex; align-items: center; gap: 0.75rem; }
.swatch {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}
.swatch-amber { background: var(--amber-500); }
.swatch-royal { background: var(--royal-500); }
.swatch-red { background: var(--red-500); }
.swatch-pink { background: var(--pink-300); }
.favorite-note {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--border-light);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.favorite-image {
  margin: var(--space-6) 0 0;
  padding-top: var(--space-5);
  border-top: 1px dashed var(--border-light);
}
.favorite-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(26, 21, 18, 0.08);
}
.favorite-image figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--amber-600);
  text-align: center;
}
.favorite-image-wide img {
  max-width: 620px;
  margin: 0 auto;
}
.favorite-image-small img {
  max-width: 220px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(26, 21, 18, 0.15);
}

/* Zenith headline */
.zenith-headline {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.005em;
  color: #1e40af;
  margin: 0.5rem 0 0.35rem;
  line-height: 1.3;
}

/* Work portrait — Rising Above headshot */
/* Work portrait — floated on right side of Rising Above card, text wraps around it */
.work-portrait {
  float: right;
  margin: 0 0 1rem 1.5rem;
  width: 180px;
  text-align: center;
}
.work-portrait img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(26, 21, 18, 0.18);
}
.work-portrait figcaption {
  margin-top: 0.5rem;
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-700, #4a3f36);
  line-height: 1.35;
}
@media (max-width: 640px) {
  .work-portrait {
    float: none;
    margin: 0 auto 1.25rem;
    width: 60%;
    max-width: 220px;
  }
  .work-portrait img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

/* Dreams gallery — responsive grid, easy to extend */
.dreams-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 1.25rem;
}
.dream-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(26, 21, 18, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dream-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 21, 18, 0.14);
}
.dream-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: linear-gradient(160deg, var(--cream-100, #fbf5eb), var(--cream-50, #fdfaf5));
  padding: 0.5rem;
  flex: 0 0 auto;
}
.dream-photo figcaption {
  flex: 1 1 auto;
}
.dream-photo figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-700, #4a3f36);
  text-align: center;
  line-height: 1.4;
}
.dream-photo-wide {
  grid-column: span 2;
}
.dream-photo-tall img {
  aspect-ratio: 3 / 4;
}
.dream-photo-wide img {
  aspect-ratio: 16 / 9;
}
.dream-photo-small img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: linear-gradient(160deg, var(--cream-100, #fbf5eb), var(--cream-50, #fdfaf5));
  padding: 0.5rem;
}
@media (max-width: 480px) {
  .dreams-gallery { grid-template-columns: 1fr; }
  .dream-photo-wide { grid-column: auto; }
}

/* Analogy caption in Favorites card */
.analogy-caption {
  margin-top: 0.85rem;
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-800, #2a231d);
}
.analogy-caption p {
  margin: 0 0 0.6rem;
}
.analogy-caption p:last-child {
  margin-bottom: 0;
}
.analogy-caption p:first-child em {
  font-style: italic;
  color: var(--amber-500, #b8621b);
  font-size: 1.05rem;
}

/* Song section */
.song-section {
  text-align: center;
}
.song-container {
  max-width: 720px;
  margin: 0 auto;
}
.song-title {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--ink-900, #1a1512);
  margin: 0.75rem 0 0.75rem;
  line-height: 1.15;
}
.song-note {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--ink-700, #4a3f36);
  font-size: 1.1rem;
  margin: 0 0 2rem;
}
.song-embed {
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(26, 21, 18, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.song-embed iframe {
  display: block;
}

/* Zenith invite line */
.zenith-invite {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #b8621b;
  line-height: 1.5;
  margin: 0.75rem 0 1rem;
  max-width: 40rem;
}

/* AtoZindagi strip */
.atoz-strip {
  background: #fdfaf5;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(184, 98, 27, 0.2);
}
.atoz-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.atoz-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 10px 34px rgba(26, 21, 18, 0.28);
}
.atoz-tagline {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0;
  color: #1a1512;
}
.atoz-tagline-lead {
  color: #c1272d;
  font-weight: 500;
  font-style: italic;
}
.atoz-tagline-name {
  color: #b8621b;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .atoz-strip { padding: 1.75rem 0; }
  .atoz-strip-inner { gap: 1.25rem; }
  .atoz-logo { width: 200px; height: 200px; }
  .atoz-tagline { font-size: 1.4rem; }
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.topic-chips span {
  background: var(--cream-100);
  color: var(--ink-800);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  border: 1px solid var(--border-light);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.topic-chips span:hover { background: var(--amber-500); color: var(--cream-50); border-color: var(--amber-500); }

/* ============================================================
   Work Section
   ============================================================ */
.work-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}
.work-card {
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  transition: border-color .3s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work-card:hover {
  border-color: var(--amber-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.work-featured {
  background: linear-gradient(160deg, var(--cream-50), var(--cream-100));
  border-color: var(--amber-500);
}
.work-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--amber-500);
  font-weight: 300;
  line-height: 1;
  min-width: 3ch;
}
.work-role {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-600);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.work-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}
.work-tagline {
  color: var(--ink-800);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  max-width: 62ch;
}
.work-detail {
  color: var(--ink-500);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 62ch;
}
.work-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}
.work-meta div { margin: 0; }
.work-meta dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  margin-bottom: 0.25rem;
}
.work-meta dd {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-800);
}
.work-meta a {
  color: var(--amber-600);
  border-bottom: 1px dotted currentColor;
  transition: color .2s var(--ease);
}
.work-meta a:hover { color: var(--amber-500); }

/* Insightful teaching callout */
.teaching {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-7);
  background: linear-gradient(180deg, rgba(184,98,27,0.06), rgba(184,98,27,0.02));
  border-left: 3px solid var(--amber-500);
  border-radius: 6px;
}
.teaching-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.teaching-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.teaching-body {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: var(--space-4);
}
.teaching-body em {
  font-style: italic;
  color: var(--amber-600);
  font-weight: 500;
}
.teaching-takeaway {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--amber-600);
  line-height: 1.5;
  margin: var(--space-5) 0 var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(184,98,27,0.2);
}
.teaching-signoff {
  font-size: var(--text-base);
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.teaching-tags {
  font-size: var(--text-sm);
  color: var(--amber-600);
  font-weight: 500;
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}
.teaching-signature {
  font-size: var(--text-sm);
  color: var(--ink-700);
}
.teaching-signature a {
  color: var(--amber-600);
  border-bottom: 1px dotted currentColor;
}

/* PFA CTA */
.pfa-cta {
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Nested variant — CTA sits directly under the Rising Above card */
.pfa-cta-nested {
  margin-top: calc(var(--space-6) * -1 + 0.5rem);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.pfa-cta-nested::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--amber-500);
  border-radius: 0 0 3px 3px;
}
.pfa-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 10%, rgba(184, 98, 27, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 90%, rgba(30, 58, 138, 0.18), transparent 65%);
  pointer-events: none;
}
.pfa-cta > * { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber-400);
  margin-bottom: var(--space-4);
}
.cta-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  max-width: 24ch;
  margin-inline: auto;
}
.cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--amber-400);
  line-height: 1;
}
.price-note {
  font-size: var(--text-sm);
  color: rgba(253, 250, 245, 0.65);
  letter-spacing: 0.05em;
}
.cta-benefits {
  margin: 0 auto var(--space-10);
  max-width: 48ch;
  text-align: left;
}
.cta-benefits li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: rgba(253, 250, 245, 0.85);
  border-bottom: 1px solid rgba(253, 250, 245, 0.08);
  font-size: var(--text-sm);
}
.cta-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
}
.cta-benefits li:last-child { border-bottom: none; }
.pfa-cta .btn-primary {
  background: var(--amber-500);
  color: var(--cream-50);
}
.pfa-cta .btn-primary:hover { background: var(--amber-400); color: var(--ink-900); }

/* ============================================================
   Wellness Grid
   ============================================================ */
.wellness-motto {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--amber-700, #a54d10);
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin: 1.25rem 0 var(--space-8);
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(184, 98, 27, 0.09), rgba(184, 98, 27, 0.02));
  border-left: 3px solid var(--amber-600);
  border-radius: 0 6px 6px 0;
  max-width: 780px;
}
.wellness-motto em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber-600);
}
@media (min-width: 900px) {
  .wellness-motto { font-size: 1.55rem; }
}
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
.wellness-card {
  background: var(--cream-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.wellness-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-500);
}
.wellness-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.wellness-card p {
  color: var(--ink-500);
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-grow: 1;
}
.wellness-link {
  margin-top: var(--space-4);
  align-self: flex-start;
  font-size: var(--text-sm);
  color: var(--amber-600);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s var(--ease);
}
.wellness-link:hover { color: var(--amber-500); }

/* ============================================================
   Connect
   ============================================================ */
.section-dark .section-eyebrow { color: var(--amber-400); }

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  padding-block: var(--space-8);
  border-top: 1px solid rgba(253, 250, 245, 0.12);
  border-bottom: 1px solid rgba(253, 250, 245, 0.12);
}
.connect-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 245, 0.5);
  margin-bottom: var(--space-2);
}
.connect-value {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--cream-50);
  transition: color .2s var(--ease);
}
a.connect-value { border-bottom: 1px dotted rgba(253, 250, 245, 0.3); padding-bottom: 2px; }
a.connect-value:hover { color: var(--amber-400); }

.connect-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 700px) {
  .connect-links { grid-template-columns: 1fr 1fr; }
}
.links-heading {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-400);
  margin-bottom: var(--space-4);
}
.links-block ul li { padding: 0.4rem 0; }
.links-block a {
  color: var(--cream-100);
  font-size: var(--text-base);
  border-bottom: 1px dotted transparent;
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.links-block a:hover { color: var(--amber-400); border-bottom-color: currentColor; }
.links-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(253, 250, 245, 0.5);
  font-style: italic;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(253, 250, 245, 0.6);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(253, 250, 245, 0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-brand .serif-display {
  font-size: 1.25rem;
  color: var(--cream-50);
}
.footer-tag {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--amber-400);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: var(--text-xs);
  margin: 0;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Favorite Quotes gallery ============ */
.favorite-card-quotes .quotes-intro {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.quotes-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.quote-tile {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f0e4, #fdfaf5);
  box-shadow: 0 6px 18px rgba(45, 30, 20, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.quote-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 30, 20, 0.12);
}
.quote-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 0.5rem;
  background: linear-gradient(160deg, #f7f0e4, #fdfaf5);
}

/* Uniform grid — tiles bumped up again (~240px) */
.favorite-card-large.favorite-card-quotes .quotes-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.1rem;
  padding: 0.25rem 0 0.5rem;
  overflow: visible;
}
.favorite-card-large.favorite-card-quotes .quote-tile {
  width: auto;
  max-width: 280px;
  justify-self: center;
  margin: 0;
}
.favorite-card-large.favorite-card-quotes .quote-tile img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.35rem;
}

@media (max-width: 720px) {
  .favorite-card-large.favorite-card-quotes .quotes-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .favorite-card-large.favorite-card-quotes .quote-tile { max-width: 240px; }
}
@media (max-width: 480px) {
  .favorite-card-large.favorite-card-quotes .quotes-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .favorite-card-large.favorite-card-quotes .quote-tile { max-width: none; }
}
.quotes-scroll-hint { display: none; }

/* ============ REFLECTION SECTION ============ */
.reflection-section {
  background: linear-gradient(180deg, #f7f1ea 0%, #efe6dc 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.reflection-container {
  max-width: 780px;
}
.reflection-quote {
  margin: 2.5rem 0 0;
  padding: 2.75rem 2.5rem;
  background: #fdfaf6;
  border-left: 3px solid #8b6b4a;
  border-radius: 4px;
  box-shadow: 0 24px 60px -30px rgba(60, 40, 20, 0.28);
  font-family: var(--font-serif);
  color: #2c2418;
}
.reflection-quote p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0 0 1.2rem;
}
.reflection-lede {
  font-size: 1.55rem !important;
  line-height: 1.4 !important;
  font-style: italic;
  color: #6b4a2b;
  margin-bottom: 1.6rem !important;
  font-family: var(--font-serif);
}
.reflection-subhead {
  font-family: var(--font-sans);
  font-size: 0.85rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b6b4a;
  margin: 1.8rem 0 1rem !important;
  font-weight: 600;
}
.reflection-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.reflection-list li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  padding-left: 1.4rem;
  position: relative;
}
.reflection-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 1px;
  background: #8b6b4a;
}
.reflection-list li strong {
  color: #6b4a2b;
  font-weight: 600;
}
.reflection-closer {
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  color: #6b4a2b;
  text-align: center;
  margin: 2rem 0 1.5rem !important;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(139, 107, 74, 0.2);
  border-bottom: 1px solid rgba(139, 107, 74, 0.2);
}
.reflection-attribution {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #8b6b4a;
  text-align: right;
  margin-top: 1.5rem;
  font-style: normal;
}
.reflection-attribution a {
  color: #6b4a2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 74, 43, 0.3);
  transition: border-color 0.2s;
}
.reflection-attribution a:hover {
  border-bottom-color: #6b4a2b;
}

@media (max-width: 720px) {
  .reflection-section { padding-top: 4rem; padding-bottom: 4rem; }
  .reflection-quote { padding: 1.75rem 1.4rem; }
  .reflection-quote p { font-size: 1.05rem; }
  .reflection-lede { font-size: 1.3rem !important; }
  .reflection-list li { font-size: 1rem; }
  .reflection-closer { font-size: 1.1rem !important; }
}

.reflection-caption {
  max-width: 620px;
  margin: 1rem auto 2.5rem;
  text-align: center;
}
.reflection-caption a {
  color: #6b4a2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 74, 43, 0.35);
}
.reflection-caption a:hover { border-bottom-color: #6b4a2b; }
.reflection-embed {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.reflection-embed .instagram-media { margin: 0 auto !important; }

/* ============ CONNECT CARD (Blinq) ============ */
.connect-block-card { grid-column: span 2; }
.connect-card-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  text-decoration: none;
  color: #fdfaf6;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: 0.35rem;
}
.connect-card-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.connect-card-cta {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.connect-card-hint {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}
@media (max-width: 720px) {
  .connect-block-card { grid-column: auto; }
}
