/* ============================================================
   GAIL'S DRAGONFLY LLC — styles.css
   Brand spec v1.3 · gailsdragonfly.com
   ============================================================ */

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

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  /* PRIMARY PALETTE */
  --terracotta:        #bf6230;
  --terracotta-deep:   #a0501e;
  --terracotta-bright: #d4782a;
  --canvas:            #d0c0a8;
  --cream:             #fff8e6;
  --cream-soft:        rgba(255,248,230,0.95);
  --cream-muted:       rgba(255,248,230,0.80);
  --cream-faint:       rgba(255,248,230,0.40);

  /* EXPANDED ACCENT */
  --teal:              #51A3A3;
  --teal-deep:         #3d8080;
  --navy:              #102542;

  /* KORU GRADIENT */
  --koru-light:        #f0e8d4;
  --koru-mid:          #e4d8bc;
  --koru-warm:         #d4c4a0;
  --koru-deep:         #c0a87c;
  --koru-anchor:       #a88c60;

  /* DRAGONFLY */
  --dragonfly-body:    #e8dcc0;
  --dragonfly-stroke:  #a88c60;

  /* STRUCTURAL */
  --white:             #ffffff;
  --white-soft:        rgba(255,255,255,0.92);
  --white-rule:        rgba(255,255,255,0.40);

  /* DOCUMENT / LIGHT MODE */
  --ink:               #1c1a16;
  --ink-mid:           #3d3830;
  --paper:             #faf7f2;

  /* TYPE */
  --font-serif:        'Cormorant Garamond', serif;
  --font-sc:           'Cormorant SC', serif;

  /* SPACING */
  --sp-xs:   6px;
  --sp-sm:   12px;
  --sp-md:   24px;
  --sp-lg:   48px;
  --sp-xl:   80px;
  --sp-2xl:  120px;

  /* LAYOUT */
  --max-w:         1100px;
  --max-w-narrow:  720px;
  --nav-h:         72px;
}

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

body {
  font-family: var(--font-serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-deep);
}

/* ── GRAIN TEXTURE MIXIN (used via ::before on hero sections) */
/* SVG noise data URI — 22% opacity per brand spec */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  z-index: 1;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-lg);
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--koru-warm);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(28,26,22,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-sc);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 0.5px solid transparent;
}

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

.nav-cta {
  font-family: var(--font-sc) !important;
  font-size: 11px !important;
  letter-spacing: 0.26em !important;
  background: var(--terracotta) !important;
  color: var(--cream) !important;
  padding: 10px 20px !important;
  border-radius: 2px !important;
  border-bottom: none !important;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--terracotta-deep) !important;
  color: var(--cream) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 1;
}

/* Inset rule frame */
.hero::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 0.5px solid var(--white-rule);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-xl);
  align-items: center;
  width: 100%;
}

.hero-text {
  padding: var(--sp-lg) 0;
}

.hero-eyebrow {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--cream-muted);
  display: block;
  margin-bottom: var(--sp-md);
}

.hero-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.0;
  margin-bottom: var(--sp-sm);
}

.hero-credentials {
  font-family: var(--font-sc);
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.38em;
  color: var(--cream);
  display: block;
  margin-bottom: var(--sp-lg);
}

.hero-rule {
  width: 56px;
  height: 0.5px;
  background: var(--white-rule);
  margin-bottom: var(--sp-lg);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--cream-soft);
  letter-spacing: 0.06em;
  line-height: 1.45;
  max-width: 520px;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  align-items: center;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.30em;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 0.5px solid var(--white-rule);
}

.btn-outline-light:hover {
  background: var(--cream-faint);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 0.5px solid var(--koru-anchor);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--cream);
}

.btn-terracotta:hover {
  background: var(--terracotta-deep);
  color: var(--cream);
}

/* ── HERO PHOTO ───────────────────────────────────────────── */
.hero-photo {
  position: relative;
  align-self: end;
}

.hero-photo-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}

.hero-photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(12%) contrast(1.04);
}

.hero-photo-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--cream-muted);
  margin-top: var(--sp-sm);
  text-align: right;
}

/* ── SECTION STRUCTURE ────────────────────────────────────── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
}

.section-container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
}

.section-eyebrow {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.section-rule {
  width: 48px;
  height: 0.5px;
  background: var(--koru-warm);
  margin-bottom: var(--sp-lg);
}

.section-body {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.9;
  max-width: 620px;
}

/* ── SOCIAL PROOF / TOPICS SECTION ───────────────────────── */
.topics-section {
  background: var(--white);
  border-top: 0.5px solid var(--koru-warm);
  border-bottom: 0.5px solid var(--koru-warm);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.topic-card {
  padding: var(--sp-xl) var(--sp-lg);
  border-right: 0.5px solid var(--koru-warm);
  position: relative;
}

.topic-card:last-child {
  border-right: none;
}

.topic-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 52px;
  color: var(--koru-mid);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  font-weight: 300;
}

.topic-title {
  font-family: var(--font-sc);
  font-size: 14px;
  letter-spacing: 0.26em;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  font-weight: 400;
}

.topic-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ── PULL QUOTE SECTION ───────────────────────────────────── */
.quote-section {
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--cream-faint);
  line-height: 0.6;
  display: block;
  margin-bottom: var(--sp-md);
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: var(--sp-lg);
}

.quote-attribution {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cream-muted);
}

/* ── BOOK SECTION ─────────────────────────────────────────── */
.book-section {
  background: var(--paper);
}

.book-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.book-cover-wrap {
  position: relative;
}

.book-cover-img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 12px 18px 48px rgba(28,26,22,0.22);
}

/* Cover placeholder when no image */
.book-cover-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--terracotta);
  border-radius: 2px;
  box-shadow: 12px 18px 48px rgba(28,26,22,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-cover-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.book-cover-placeholder-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: var(--sp-sm);
}

.book-cover-placeholder-author {
  position: relative;
  z-index: 1;
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--cream-muted);
}

.book-text .section-eyebrow {
  margin-bottom: var(--sp-xs);
}

.book-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.book-subtitle {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--koru-anchor);
  margin-bottom: var(--sp-lg);
  font-weight: 400;
}

.book-rule {
  width: 48px;
  height: 0.5px;
  background: var(--koru-warm);
  margin-bottom: var(--sp-lg);
}

.book-desc {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: var(--sp-lg);
  max-width: 480px;
}

.book-actions {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  flex-wrap: wrap;
}

/* ── SPEAKING CTA SECTION ─────────────────────────────────── */
.speaking-cta-section {
  background: var(--paper);
  border-top: 0.5px solid var(--koru-warm);
}

.speaking-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-lg);
}

.speaking-cta-text .section-eyebrow {
  margin-bottom: var(--sp-xs);
}

.speaking-cta-text h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.speaking-cta-text p {
  font-size: 15px;
  color: var(--ink-mid);
  max-width: 520px;
  line-height: 1.8;
}

.speaking-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
  flex-shrink: 0;
}

/* ── TOPICS (full speaking page) ──────────────────────────── */
.speaking-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.speaking-topic-card {
  background: var(--white);
  border: 0.5px solid var(--koru-warm);
  border-top: 3px solid var(--terracotta);
  padding: var(--sp-lg);
  border-radius: 0 0 2px 2px;
}

.speaking-topic-card .topic-title {
  font-size: 13px;
  margin-bottom: var(--sp-sm);
}

.speaking-topic-card .topic-desc {
  font-size: 14px;
}

.speaking-topic-card.accent-teal {
  border-top-color: var(--teal);
}

/* ── ABOUT PAGE LAYOUT ────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-lg));
}

.about-photo-wrap img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 8px 12px 40px rgba(28,26,22,0.18);
}

.about-credentials {
  margin-top: var(--sp-md);
  padding: var(--sp-md);
  background: var(--white);
  border: 0.5px solid var(--koru-warm);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 2px 2px 0;
}

.about-credentials li {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink-mid);
  padding: 4px 0;
  list-style: none;
  border-bottom: 0.5px solid var(--koru-light);
  line-height: 1.5;
}

.about-credentials li:last-child {
  border-bottom: none;
}

.about-credentials li strong {
  font-weight: 400;
  color: var(--ink);
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  display: block;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: var(--sp-md);
}

/* ── PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-lg) var(--sp-xl);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 0.5px solid var(--white-rule);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--cream-muted);
  display: block;
  margin-bottom: var(--sp-sm);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}

.page-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
  max-width: 560px;
  line-height: 1.55;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-form-group {
  margin-bottom: var(--sp-md);
}

.contact-form-group label {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-mid);
  display: block;
  margin-bottom: var(--sp-xs);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  background: var(--white);
  border: 0.5px solid var(--koru-warm);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--teal);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a88c60' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Honeypot — visually hidden */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  tab-index: -1;
}

.contact-sidebar-card {
  background: var(--white);
  border: 0.5px solid var(--koru-warm);
  padding: var(--sp-lg);
  border-radius: 2px;
  margin-bottom: var(--sp-md);
}

.contact-sidebar-card h3 {
  font-family: var(--font-sc);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--terracotta);
  margin-bottom: var(--sp-sm);
}

.contact-sidebar-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
}

/* ── LINK HUB ─────────────────────────────────────────────── */
.linkhub-section {
  background: var(--terracotta);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.linkhub-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.linkhub-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
}

.linkhub-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--white-rule);
  margin: 0 auto var(--sp-md);
}

.linkhub-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-xs);
}

.linkhub-title {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--cream-muted);
  margin-bottom: var(--sp-xl);
}

.linkhub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.linkhub-links a {
  display: block;
  background: var(--cream-faint);
  border: 0.5px solid var(--white-rule);
  color: var(--white);
  font-family: var(--font-sc);
  font-size: 12px;
  letter-spacing: 0.28em;
  padding: 16px var(--sp-md);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}

.linkhub-links a:hover {
  background: rgba(255,248,230,0.18);
  color: var(--white);
}

.linkhub-rule {
  width: 36px;
  height: 0.5px;
  background: var(--white-rule);
  margin: var(--sp-xl) auto var(--sp-lg);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
  margin-bottom: var(--sp-lg);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
  text-decoration: none;
}

.footer-brand-name {
  font-family: var(--font-sc);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--cream);
}

.footer-brand-name span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,248,230,0.60);
  font-weight: 300;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,248,230,0.55);
  letter-spacing: 0.10em;
  line-height: 1.7;
}

.footer-nav-label {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--sp-md);
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer-nav-links a {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(255,248,230,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--cream);
}

.footer-contact-label {
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--teal);
  display: block;
  margin-bottom: var(--sp-md);
}

.footer-contact-info {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(255,248,230,0.65);
  line-height: 1.8;
}

.footer-contact-info a {
  color: var(--teal);
  text-decoration: none;
}

.footer-contact-info a:hover {
  color: var(--teal-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.footer-copy {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,248,230,0.35);
  letter-spacing: 0.06em;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.koru-rule {
  width: 48px;
  height: 0.5px;
  background: var(--koru-warm);
  margin: var(--sp-md) 0;
}

.koru-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }
.fade-up-5 { animation-delay: 0.7s; opacity: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --sp-xl: 64px;
    --sp-2xl: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
    text-align: center;
  }

  .hero-tagline {
    margin: 0 auto var(--sp-lg);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo {
    display: none;
  }

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

  .topic-card {
    border-right: none;
    border-bottom: 0.5px solid var(--koru-warm);
  }

  .topic-card:last-child {
    border-bottom: none;
  }

  .book-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--sp-lg);
  }

  .speaking-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .speaking-cta-actions {
    flex-direction: row;
    justify-content: center;
  }

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

  .about-photo-wrap {
    position: static;
    max-width: 340px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .speaking-topics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
    --sp-lg: 36px;
    --sp-xl: 48px;
    --sp-2xl: 64px;
  }

  .site-nav {
    padding: 0 var(--sp-md);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-md) var(--sp-lg);
    gap: var(--sp-md);
    border-bottom: 0.5px solid var(--koru-warm);
    box-shadow: 0 8px 24px rgba(28,26,22,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .section-container,
  .section-container--narrow {
    padding: var(--sp-xl) var(--sp-md);
  }

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

  .book-cover-wrap {
    max-width: 240px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
