/* =====================================================
   Jake Fabry Author Site Styles
   White & Warm Tan Palette · Elegant Serif Typography
   ===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: #FAFAF8;
  color: #5C4A35;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  height: 70px;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 124, 0.18);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(61, 43, 26, 0.10);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3D2B1A;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5C4A35;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(201, 168, 124, 0.18);
  color: #3D2B1A;
}

.nav-ext-link {
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FAFAF8;
  background: #C9A87C;
  padding: 7px 18px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-ext-link:hover {
  background: #b8935a;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #3D2B1A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 124, 0.2);
  padding: 20px 32px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(61, 43, 26, 0.10);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 10px 14px;
  font-size: 1rem;
}

.mobile-menu .nav-ext-link {
  margin-top: 8px;
  text-align: center;
  padding: 10px 18px;
}

/* =====================================================
   WAVE UTILITY
   ===================================================== */

.wave-divider {
  display: block;
  width: calc(100% + 64px);
  overflow: hidden;
  line-height: 0;
  margin: 0;
  margin-left: -32px;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-warm {
  background: #C9A87C;
  color: #FAFAF8;
  box-shadow: 0 4px 18px rgba(201, 168, 124, 0.35);
}

.btn-warm:hover {
  background: #b8935a;
  box-shadow: 0 6px 24px rgba(201, 168, 124, 0.45);
}

.btn-outline {
  background: transparent;
  color: #3D2B1A;
  border: 1.5px solid #C9A87C;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(201, 168, 124, 0.12);
  box-shadow: 0 4px 14px rgba(201, 168, 124, 0.2);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #FAFAF8;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* =====================================================
   PHOTO PLACEHOLDER
   ===================================================== */

.photo-placeholder {
  border-radius: 50%;
  background: linear-gradient(145deg, #E8D9BF 0%, #D4C4A0 50%, #C9A87C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.photo-placeholder::after {
  content: '[ Photo ]';
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(61, 43, 26, 0.5);
  letter-spacing: 0.05em;
  z-index: 0;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FAFAF8 0%, #F5EEE0 40%, #E8D9BF 75%, #DDD0B3 100%);
  padding-top: 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-photo {
  width: 190px;
  height: 190px;
  border: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 48px rgba(61, 43, 26, 0.18);
  margin-bottom: 8px;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A7A68;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #3D2B1A;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: #8A7A68;
  letter-spacing: 0.03em;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, transparent, #C9A87C, transparent);
  border-radius: 2px;
}

.hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: #6B5B45;
  max-width: 520px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.15) 0%, transparent 70%);
}

.hero-deco-2 {
  width: 300px;
  height: 300px;
  bottom: 60px;
  left: -80px;
  background: radial-gradient(circle, rgba(232, 217, 191, 0.4) 0%, transparent 70%);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

/* =====================================================
   BOOK TEASER
   ===================================================== */

.book-teaser {
  background: #FAFAF8;
  padding: 88px 32px 80px;
  text-align: center;
  position: relative;
}

.book-teaser-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.book-label {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A87C;
}

.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #3D2B1A;
  line-height: 1.1;
  font-style: italic;
}

.book-hook {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: #3D2B1A;
  line-height: 1.6;
  max-width: 560px;
  text-align: center;
}

.book-subtitle {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: #8A7A68;
  line-height: 1.85;
  max-width: 540px;
  text-align: center;
}

.book-author-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A87C;
}

.book-wave-bottom {
  margin-top: 0;
}

/* =====================================================
   PILLARS
   ===================================================== */

.pillars {
  background: #F5EEE0;
  padding: 80px 32px 88px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 168, 124, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(61, 43, 26, 0.1);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3D2B1A;
  margin-bottom: 10px;
}

.pillar-body {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #8A7A68;
  line-height: 1.8;
}

/* =====================================================
   PULL QUOTE
   ===================================================== */

.pull-quote {
  background: #2A1F14;
  padding: 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote-deco {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: rgba(201, 168, 124, 0.06);
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.pull-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 0 56px;
}

.pull-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #C9A87C;
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: #F5EEE0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.pull-quote-attr {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A87C;
  margin-top: 28px;
  display: block;
}

/* =====================================================
   CONNECT
   ===================================================== */

.connect {
  background: #FAFAF8;
  padding: 88px 32px 96px;
  text-align: center;
}

.connect-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A87C;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #3D2B1A;
  line-height: 1.2;
}

.section-body {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: #8A7A68;
  line-height: 1.85;
  max-width: 560px;
}

.connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5EEE0;
  border: 1px solid rgba(201, 168, 124, 0.25);
  border-radius: 50px;
  padding: 11px 22px;
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3D2B1A;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.connect-card:hover {
  background: #E8D9BF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 43, 26, 0.1);
}

.connect-card svg {
  flex-shrink: 0;
  color: #C9A87C;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #2A1F14;
  padding: 48px 32px 36px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #E8D9BF;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 28px;
}

.footer-link {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(232, 217, 191, 0.65);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #C9A87C;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 124, 0.3);
  margin: 0 auto 24px;
}

.footer-copy {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: rgba(232, 217, 191, 0.4);
  letter-spacing: 0.04em;
}

/* =====================================================
   ABOUT PAGE HERO
   ===================================================== */

.about-hero {
  background: linear-gradient(150deg, #F5EEE0 0%, #E8D9BF 55%, #DDD0B3 100%);
  padding: 160px 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-deco-1 {
  width: 360px;
  height: 360px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.about-hero-deco-2 {
  width: 240px;
  height: 240px;
  bottom: 40px;
  right: -40px;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.18) 0%, transparent 70%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-hero-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A7A68;
}

.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: #3D2B1A;
  line-height: 1.05;
}

.about-hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-style: italic;
  color: #6B5B45;
  line-height: 1.75;
  max-width: 520px;
}

/* =====================================================
   ABOUT PAGE BIO
   ===================================================== */

.bio-section {
  background: #FAFAF8;
  padding: 88px 32px 80px;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.bio-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.bio-photo {
  width: 280px;
  height: 280px;
  border: 5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(61, 43, 26, 0.16);
}

.bio-photo-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: #8A7A68;
  text-align: center;
  line-height: 1.5;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #3D2B1A;
  line-height: 1.2;
  margin-bottom: 4px;
}

.bio-text p {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #5C4A35;
  line-height: 1.9;
}

.bio-text .bio-divider {
  width: 36px;
  height: 2px;
  background: #C9A87C;
  border-radius: 2px;
  margin: 8px 0;
}

/* =====================================================
   ABOUT PAGE TIMELINE
   ===================================================== */

.timeline-section {
  background: #F5EEE0;
  padding: 80px 32px 88px;
}

.timeline-section-inner {
  max-width: 780px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, #C9A87C, rgba(201, 168, 124, 0.15));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C9A87C;
  border: 2px solid #F5EEE0;
  box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.25);
}

.timeline-item.featured .timeline-dot {
  background: #3D2B1A;
  box-shadow: 0 0 0 4px rgba(61, 43, 26, 0.15);
}

.timeline-period {
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A87C;
  margin-bottom: 4px;
}

.timeline-role {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3D2B1A;
  line-height: 1.3;
  margin-bottom: 2px;
}

.timeline-org {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #8A7A68;
  margin-bottom: 6px;
}

.timeline-desc {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #6B5B45;
  line-height: 1.75;
}

/* =====================================================
   ABOUT PAGE LINKEDIN SECTION
   ===================================================== */

.linkedin-section {
  background: #F5EEE0;
  padding: 72px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/* =====================================================
   ABOUT PAGE FAMILY BAND
   ===================================================== */

.family-band {
  background: #2A1F14;
  padding: 0 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.family-band-deco {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 124, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.family-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.family-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.family-photo-side {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.family-photo-rect {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 4px solid rgba(232, 217, 191, 0.3);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.family-text-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 500px;
}

.family-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A87C;
}

.family-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: #F5EEE0;
  line-height: 1.2;
}

.family-details {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(232, 217, 191, 0.7);
  line-height: 1.75;
  max-width: 100%;
}

.family-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
}

.family-dot-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #E8D9BF;
  font-style: italic;
}

.family-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C9A87C;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-photo-wrap {
    position: static;
  }

  .bio-photo {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
  }

  .nav-links,
  .nav-ext-link {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero-photo {
    width: 150px;
    height: 150px;
  }

  .connect-links {
    flex-direction: column;
    align-items: center;
  }

  .connect-card {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .family-layout {
    flex-direction: column;
    gap: 18px;
  }

  .family-text-side {
    align-items: center;
    text-align: center;
  }

  .family-dots {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .hero-content {
    padding: 48px 20px 100px;
  }

  .pull-quote {
    padding: 0 20px;
  }

  .about-hero {
    padding: 140px 20px 0;
  }

  .wave-divider {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
