/* ============================================
   UTOPIAN VISIONS — styles.css
   Brand: Fraunces (display) / Inter (body)
   Palette: Navy / Gold / Green / Coral
   Parent brand — editorial, grounded, warm
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Custom Properties --- */
:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --navy-dark: #111c33;
  --gold: #d4a24e;
  --gold-light: #e8c374;
  --gold-muted: #c49a4a;
  --green: #3a7d5c;
  --green-light: #4a9970;
  --green-muted: #2e6349;
  --coral: #e07c5a;
  --coral-light: #f09878;
  --coral-muted: #c46a4a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --warm-gray: #6b6560;
  --warm-gray-light: #9e9892;
  --text-primary: #2a2522;
  --text-secondary: #5c5652;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 4px 14px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 8px 30px rgba(26, 39, 68, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --max-width: 1100px;
  --max-width-narrow: 700px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--cream);
}

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

a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
a:hover { color: var(--green-muted); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 1.85rem; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--cream {
  background: var(--cream-dark);
}

.prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.prose strong { color: var(--text-primary); }

/* --- Header --- */
.site-header {
  background: var(--navy);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo span {
  color: var(--gold);
}
.site-logo:hover { color: var(--gold-light); }

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

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 1px;
  transition: 0.2s;
}

/* --- Hero --- */
.hero {
  background: var(--navy);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(212, 162, 78, 0.12), transparent 70%);
  pointer-events: none;
}

.hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.hero .subtitle {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.hero--short {
  padding: 3.5rem 0 3rem;
}

/* Section divider */
.section-divider {
  height: 3px;
  border: none;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, var(--coral) 100%);
  opacity: 0.3;
}

/* --- Home Hero (special) --- */
.home-hero {
  padding: 5.5rem 0 0;
  text-align: center;
}

.home-hero .hero-name {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.home-hero .hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.home-hero .hero-statement {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.home-hero .hero-roots {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  max-width: 540px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* --- Section Heading --- */
.section-heading {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: inline-block;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold);
}

/* --- Work Grid (staggered) --- */
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.work-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.work-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.work-item--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  padding: 2.5rem 2rem;
}

.work-item--wide h3 { grid-column: 1 / -1; }
.work-item--wide p { grid-column: 1 / -1; }
.work-item--wide .card-link { grid-column: 1 / -1; }

.work-item-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.work-item-accent--gold { background: var(--gold); }
.work-item-accent--green { background: var(--green); }
.work-item-accent--coral { background: var(--coral); }

.work-item h3 {
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
}

.work-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 0.75rem;
}

.work-item .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  padding-left: 0.75rem;
}
.work-item .card-link:hover {
  text-decoration: underline;
}

/* --- Pull Quote --- */
.pullquote-section {
  background: var(--navy);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.pullquote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.pullquote {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pullquote::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: -1.5rem;
}

.pullquote p {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin: 0;
}

/* --- Moment Block (157K) --- */
.moment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.moment-text h2 {
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--gold);
}

.moment-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.moment-text strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.moment-note {
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--warm-gray) !important;
  margin-top: 0.5rem;
}

/* --- Photo Carousel --- */
.carousel {
  position: relative;
  margin-top: 3rem;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 6px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 39, 68, 0.6);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(26, 39, 68, 0.85);
}

.carousel-btn--prev { left: 1rem; }
.carousel-btn--next { right: 1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-dot:hover {
  border-color: var(--gold-light);
}

/* --- Service Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  border-top: 3px solid transparent;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--gold { border-top-color: var(--gold); }
.card--green { border-top-color: var(--green); }
.card--coral { border-top-color: var(--coral); }

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
}
.card .card-link:hover {
  text-decoration: underline;
}

/* --- Stat Block --- */
.stat-block {
  text-align: center;
  padding: 3rem 2rem;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.stat-context {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 0.25rem;
}

/* --- Video Embed --- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Publications Bar --- */
.pub-bar {
  background: var(--navy-dark);
  padding: 2rem 0 1.5rem;
  text-align: center;
  overflow: hidden;
}

.pub-bar-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  padding: 0 0.25rem;
}

.ticker-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.2rem;
  padding: 0 1.25rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-muted);
  color: var(--white);
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
}
.btn--coral:hover {
  background: var(--coral-muted);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- CTA Simple (full-width bar) --- */
.cta-simple {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-simple p {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.cta-simple .btn {
  position: relative;
  z-index: 1;
}

/* --- About Page --- */
.about-portrait {
  width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  float: right;
  margin: 0 0 1.5rem 2rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* --- Speaking Page --- */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.engagement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
}

.engagement-card--gold { border-left-color: var(--gold); }
.engagement-card--green { border-left-color: var(--green); }
.engagement-card--coral { border-left-color: var(--coral); }

.engagement-card h3 {
  margin-bottom: 0.75rem;
}

.topic-list {
  list-style: none;
  padding: 0;
}

.topic-list li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.topic-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Media section */
.media-block {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.media-caption {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
}

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

.media-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.media-card h4 {
  margin-bottom: 0.25rem;
}

.media-card .media-source {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}

.media-card a {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Appearances list */
.appearances-list {
  list-style: none;
  padding: 0;
}

.appearances-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.appearances-list li:last-child { border-bottom: none; }

.appearance-event {
  font-weight: 500;
  color: var(--text-primary);
}

.appearance-role {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

/* --- Form --- */
.form-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group--end {
  display: flex;
  align-items: flex-end;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

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

/* --- Info Box --- */
.info-box {
  padding: 1.25rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.info-box p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin: 0;
}
.info-box strong { color: var(--text-primary); }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-brand .site-logo {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.25rem;
}

.footer-social-row a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
}

.footer-social-row a:hover {
  color: var(--gold);
}

.footer-social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease-out both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .home-hero .hero-name { font-size: 2.4rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero--short { padding: 2.5rem 0 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .footer-links ul { flex-wrap: wrap; justify-content: center; }
  .carousel-track { height: 320px; }
  .about-portrait { float: none; width: 200px; margin: 0 auto 1.5rem; }
  .appearances-list li { flex-direction: column; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item--wide { grid-column: 1; }
  .moment-block { grid-template-columns: 1fr; gap: 2rem; }
  .pullquote p { font-size: 1.25rem; }
  .pullquote-section { padding: 2.5rem 0; }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .site-header .container {
    position: relative;
    flex-wrap: nowrap;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 100;
    width: 100vw;
    margin-left: -1.5rem;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-track { height: 240px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-coral { color: var(--coral); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.form-group--end {
  display: flex;
  align-items: flex-end;
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.btn--full { width: 100%; }
