/* ========================================
   HOMIRA LIVING — Global Styles
   www.homiraliving.io
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1E2D52;
  --navy-light: #2a3a66;
  --gold: #B8945A;
  --gold-dark: #8a6f42;
  --light-blue: #8DA3B5;
  --cream: #fafaf6;
  --cream-warm: #f0ede4;
  --bg-base: #f5f4f0;
  --text-primary: #1E2D52;
  --text-secondary: #5a6478;
  --text-muted: #8b8678;
  --border-light: #e8e6df;
  --white: #ffffff;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

/* ========================================
   LOGO COMPONENT
   ======================================== */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-icon svg { width: 100%; height: 100%; display: block; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--navy);
  line-height: 1;
}

.logo-name .living {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.25em;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 45, 82, 0.08);
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.site-nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav-link {
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  border: none;
}

.nav-cta:hover { background: var(--gold); }

/* ========================================
   HERO
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 45, 82, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.tagline-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--navy);
}

.hero-cta:hover {
  background: transparent;
  color: var(--navy);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 4rem auto 0;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--navy);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.1) 0%, transparent 70%);
}

.stat {
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 7rem 3rem;
  background: var(--white);
}

.section-thesis {
  background: var(--bg-base);
  padding: 7rem 3rem;
}

.section-cta {
  background: var(--cream);
  padding: 7rem 3rem;
  text-align: center;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  color: var(--navy);
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-headline em {
  color: var(--gold);
  font-style: italic;
}

/* ========================================
   GAP CARDS (HOME PAGE)
   ======================================== */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gap-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s;
}

.gap-card.middle {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
  position: relative;
  border: 1px solid var(--navy);
}

.gap-card.middle::before {
  content: 'HOMIRA';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 5px 18px;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

.gap-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.gap-card.middle .gap-price { color: var(--gold); }

.gap-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.gap-card.middle .gap-label { color: rgba(255, 255, 255, 0.6); }

.gap-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.gap-card.middle .gap-desc { color: rgba(255, 255, 255, 0.85); }

/* ========================================
   THESIS SECTION
   ======================================== */
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.thesis-image {
  height: 480px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  position: relative;
  overflow: hidden;
}

.thesis-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.thesis-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.thesis-text .section-eyebrow { text-align: left; }

.thesis-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.thesis-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.thesis-text p:last-child {
  font-style: italic;
  color: var(--gold);
  margin-top: 2rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.how-item { text-align: center; }

.how-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--bg-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid var(--border-light);
}

.how-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.how-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.how-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.section-founder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 7rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-founder::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.15) 0%, transparent 70%);
}

.founder-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founder-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.founder-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3rem;
  max-width: 700px;
}

.founder-headline em {
  font-style: italic;
  color: var(--gold);
}

.founder-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  margin-top: 2rem;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}

.founder-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.founder-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.cred-item {
  font-size: 14px;
  line-height: 1.7;
}

.cred-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}

.cred-text { color: rgba(255, 255, 255, 0.85); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.cta-headline em {
  font-style: italic;
  color: var(--gold);
}

.cta-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-name { color: var(--white); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

.footer-tagline {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
}

/* ========================================
   PAGE HERO (for sub-pages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 6rem 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ========================================
   TIMELINE (Founder Page)
   ======================================== */
.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
}

.timeline-entry {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 3rem;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
}

.timeline-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.timeline-entry h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.timeline-entry p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========================================
   TEAM PAGE
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover { border-color: var(--gold); }

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--bg-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid var(--border-light);
}

.team-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-card:hover { border-color: var(--gold); }

.faq-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-card h3 span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-card.open h3 span { transform: rotate(45deg); }

.faq-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-card.open p { max-height: 500px; padding-top: 0.5rem; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-block {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
}

.contact-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-value {
  font-size: 15px;
  color: var(--navy);
  word-break: break-word;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077b5;
  color: var(--white);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
}

.linkedin-btn:hover { background: #005f8e; }

.form-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  max-width: 700px;
  margin: 3rem auto 0;
}

.form-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  background: var(--cream);
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
}

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

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--text-secondary);
}

.form-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
  transition: all 0.3s;
  font-weight: 500;
}

.form-submit:hover { background: var(--gold); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero h1 { font-size: 36px; }
  .section, .section-thesis, .section-cta, .section-founder { padding: 4rem 1.5rem; }
  .section-headline { font-size: 28px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .gap-grid, .how-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .gap-card.middle { transform: scale(1); }
  .thesis-grid { grid-template-columns: 1fr; gap: 2rem; }
  .thesis-image { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem 2rem; }
  .founder-credentials { grid-template-columns: 1fr; }
  .founder-card { padding: 1.5rem; }
  .timeline-wrapper { padding-left: 0; }
  .timeline-wrapper::before { left: 10px; }
  .timeline-entry { padding-left: 2.5rem; margin-bottom: 2.5rem; }
  .timeline-entry::before { left: 3px; top: 6px; width: 14px; height: 14px; z-index: 1; }
  .timeline-year { font-size: 12px; letter-spacing: 0.15em; }
  .timeline-entry h3 { font-size: 18px; line-height: 1.3; }
  .timeline-entry p { font-size: 13px; }
  .page-hero h1 { font-size: 36px; }
}

/* ============================================
   FOOTER DISCLAIMER (Reg D 506(b) compliance)
   ============================================ */
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 1rem 2rem;
  margin: 1.5rem auto 0;
  max-width: 900px;
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   VISUAL POLISH LAYER — May 2026
   Adds: increased spacing, refined hover states,
   Cormorant Garamond optimizations
   ============================================ */

/* --- Cormorant Garamond weight optimization (it's a delicate serif, needs slightly heavier weights) --- */
.hero h1,
.section-headline,
.founder-headline,
.cta-headline,
.page-hero h1 {
  font-weight: 500;
}

.hero h1 em,
.section-headline em,
.founder-headline em,
.cta-headline em,
.page-hero h1 em {
  font-weight: 500;
}

/* --- Hero: more breathing room --- */
.hero {
  padding: 8rem 3rem 7rem;
}

.hero h1 {
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-sub {
  margin: 0 auto 3rem;
  font-size: 19px;
  line-height: 1.8;
}

.tagline-quote {
  margin: 2.5rem 0;
}

/* --- Page hero (Founder/Team/FAQ/Contact): more space --- */
.page-hero {
  padding: 7rem 3rem 6rem;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero p {
  margin-top: 1.5rem;
  line-height: 1.8;
}

/* --- Sections: more breathing room --- */
.section {
  padding: 7rem 3rem;
}

.section-thesis,
.section-cta,
.section-founder {
  padding: 7rem 3rem;
}

.section-headline {
  margin-bottom: 4rem;
}

/* --- Gap cards: refined hover with lift --- */
.gap-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(30, 45, 82, 0.15);
}

.gap-card.middle:hover {
  box-shadow: 0 25px 50px -15px rgba(30, 45, 82, 0.4);
}

/* --- How-it-works items: gentle lift on hover --- */
.how-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-item:hover {
  transform: translateY(-4px);
}

.how-item:hover .how-icon {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* --- Team cards: subtle lift --- */
.team-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(30, 45, 82, 0.12);
  border-color: var(--gold);
}

/* --- Founder card on homepage: subtle hover glow --- */
.founder-card {
  transition: box-shadow 0.4s ease;
}

.founder-card:hover {
  box-shadow: 0 20px 50px -10px rgba(184, 148, 90, 0.25);
}

/* --- Cred items: gentle highlight on hover --- */
.cred-item {
  transition: background 0.3s ease, transform 0.3s ease;
}

.cred-item:hover {
  background: rgba(184, 148, 90, 0.08);
  transform: translateX(4px);
}

/* --- Hero CTA: enhanced hover --- */
.hero-cta {
  transition: background 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(30, 45, 82, 0.4);
}

/* --- Nav CTA: refined hover --- */
.nav-cta {
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

/* --- Nav links: subtle underline on hover --- */
.site-nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav-link:hover::after,
.site-nav-link.active::after {
  width: 100%;
}

/* --- Timeline entries: subtle hover --- */
.timeline-entry {
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.timeline-entry:hover {
  transform: translateX(4px);
  background: rgba(184, 148, 90, 0.04);
}

/* --- FAQ items: smoother accordion --- */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px -4px rgba(184, 148, 90, 0.15);
}

.faq-q {
  transition: color 0.2s ease;
}

.faq-q .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Contact blocks --- */
.contact-block {
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.contact-block:hover {
  box-shadow: 0 15px 30px -10px rgba(30, 45, 82, 0.1);
  transform: translateY(-2px);
}

/* --- Form inputs: refined focus state --- */
.form-input,
.form-select {
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 148, 90, 0.1);
}

/* --- Form submit: enhanced hover --- */
.form-submit {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(30, 45, 82, 0.3);
}

/* --- Logo: gentle hover effect --- */
.logo-mark {
  transition: opacity 0.2s ease;
}

.logo-mark:hover {
  opacity: 0.85;
}

/* --- Smooth all transitions for elegance --- */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Selection color: brand-aligned --- */
::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   SAFARI / CROSS-BROWSER COMPATIBILITY FIXES
   ============================================ */

/* Ensure Inter is set globally and inherited everywhere */
html, body, input, select, textarea, button {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* All headlines explicitly use Cormorant Garamond */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

/* Safari-specific font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Force font loading on Safari by using a class that Safari respects */
.cormorant {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

.inter {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Prevent FOUT (Flash of Unstyled Text) - Safari sometimes shows fallback briefly */
.hero h1, .section-headline, .founder-headline, .cta-headline, .page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-display: swap;
}

/* Italic em elements - Safari sometimes loses italic if font isn't loaded */
em {
  font-family: inherit;
  font-style: italic;
}

/* ============================================
   FOUNDER PORTRAIT STYLES
   ============================================ */

/* Round avatar for homepage founder card */
.founder-avatar {
  overflow: hidden;
  position: relative;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  display: block;
}

/* Team page avatar */
.team-avatar {
  overflow: hidden;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  display: block;
}

/* Founder page hero portrait — circular, elegant, prominent */
.founder-portrait-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 2rem;
}

.founder-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  border: 4px solid #fff;
  box-shadow: 
    0 0 0 1px rgba(184, 148, 90, 0.3),
    0 20px 40px -10px rgba(30, 45, 82, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.founder-portrait:hover {
  transform: scale(1.03);
  box-shadow: 
    0 0 0 1px rgba(184, 148, 90, 0.5),
    0 25px 50px -10px rgba(30, 45, 82, 0.3);
}

@media (max-width: 768px) {
  .founder-portrait {
    width: 140px;
    height: 140px;
  }
}

/* ============================================
   BOOK COVER STYLES — Dr. CarePreneur Trilogy
   ============================================ */

.trilogy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card:hover {
  transform: translateY(-6px);
}

.book-cover-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 2 / 3;
  margin-bottom: 1.2rem;
  perspective: 1000px;
  position: relative;
}

.book-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 
    0 4px 8px -2px rgba(0, 0, 0, 0.15),
    0 12px 24px -8px rgba(0, 0, 0, 0.25),
    -2px 0 6px -2px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
  position: relative;
  display: block;
}

.book-card:hover .book-cover {
  transform: rotateY(-3deg) translateY(-2px);
  box-shadow: 
    0 8px 16px -4px rgba(0, 0, 0, 0.2),
    0 24px 40px -12px rgba(0, 0, 0, 0.3),
    -4px 0 12px -4px rgba(0, 0, 0, 0.15);
}

/* Subtle book "spine" effect */
.book-cover-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
  border-radius: 2px 0 0 2px;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.book-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: #B8945A;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.book-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: #1E2D52;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.book-subtitle {
  font-size: 12px;
  color: #5a6478;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.8rem;
  max-width: 240px;
}

.book-description {
  font-size: 12px;
  color: #5a6478;
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
}

@media (max-width: 768px) {
  .trilogy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .book-cover-wrap {
    max-width: 180px;
  }
}

/* ============================================
   FOUNDER LINKEDIN LINK — Elegant inline pill
   ============================================ */

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 9px 18px;
  border: 1px solid rgba(184, 148, 90, 0.4);
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #1E2D52;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-linkedin:hover {
  background: #1E2D52;
  color: #fff;
  border-color: #1E2D52;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(30, 45, 82, 0.3);
}

.founder-linkedin svg {
  transition: transform 0.3s ease;
}

.founder-linkedin:hover svg {
  transform: scale(1.1);
}

/* ============================================
   LOGO IMAGE STYLES
   ============================================ */

.logo-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-mark:hover {
  opacity: 0.85;
}

/* Navigation logo (white background) */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* Footer logo (dark background) */
.logo-img-footer {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }
  .logo-img-footer {
    height: 40px;
  }
}

/* ============================================
   THREE ELEMENTS PHOTO CARDS
   ============================================ */

.how-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  margin-top: -2rem;
  position: relative;
  background: #1E2D52;
}

.how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-item:hover .how-photo img {
  transform: scale(1.04);
}

.how-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30, 45, 82, 0.15) 100%);
  pointer-events: none;
}

/* Adjust how-item to fit photo */
.how-item {
  overflow: hidden;
}

/* ============================================
   THREE ELEMENTS — CUSTOM ILLUSTRATIONS
   ============================================ */

.how-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin: -2rem -1.5rem 1.5rem -1.5rem;
  background: linear-gradient(135deg, #FAF7F0, #F0EBE0);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-item:hover .how-illustration svg {
  transform: scale(1.03);
}

.how-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(30, 45, 82, 0.06) 100%);
  pointer-events: none;
}

/* Adjust how-item to fit illustration */
.how-item {
  overflow: hidden;
  padding-top: 0 !important;
}

.how-item .how-number {
  margin-top: 0.5rem;
}

/* ============================================
   FOUNDER PAGE — CLOSING CONNECT SECTION
   Warm, dignified invitation after "Why Homira Now"
   ============================================ */

.founder-connect {
  background: linear-gradient(180deg, #FAF7F0, #F5F1E8);
  padding: 5rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-connect::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #B8945A;
}

.founder-connect-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.connect-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #B8945A;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.connect-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  color: #1E2D52;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.connect-headline em {
  font-style: italic;
  color: #B8945A;
  font-weight: 500;
}

.connect-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #5a6478;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.connect-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #1E2D52;
  color: #fff;
  text-decoration: none;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px -8px rgba(30, 45, 82, 0.3);
}

.connect-button:hover {
  background: #B8945A;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -8px rgba(184, 148, 90, 0.4);
}

.connect-button svg {
  transition: transform 0.4s ease;
}

.connect-button:hover svg {
  transform: scale(1.15);
}

.connect-handle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8a94a8;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (max-width: 768px) {
  .founder-connect {
    padding: 4rem 1.5rem;
  }
  .connect-headline {
    font-size: 32px;
  }
  .connect-text {
    font-size: 14px;
  }
  .connect-button {
    padding: 14px 24px;
    font-size: 11px;
  }
}

/* ============================================
   HOMEPAGE — DEEP REVISION
   Dorothy narrative, thesis chart, dual-path CTA
   ============================================ */

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.hero-cta-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1E2D52;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  transition: color 0.3s ease;
}

.hero-cta-secondary::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: #B8945A;
  transform: scaleX(0.6);
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover {
  color: #B8945A;
}

.hero-cta-secondary:hover::after {
  transform: scaleX(1);
}

/* Dorothy narrative section */
.dorothy-section {
  background: linear-gradient(180deg, #fff, #FAF7F0);
  padding: 6rem 1.5rem;
  position: relative;
}

.dorothy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #B8945A;
}

.dorothy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.dorothy-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #B8945A;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.dorothy-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  line-height: 1.7;
  color: #1E2D52;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}

.dorothy-text em {
  font-style: italic;
  color: #B8945A;
  font-weight: 500;
}

.dorothy-conclusion {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  line-height: 1.5;
  color: #1E2D52;
  font-weight: 500;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 148, 90, 0.3);
  text-align: center;
  font-style: italic;
}

.dorothy-conclusion strong {
  font-weight: 600;
  color: #B8945A;
  font-style: normal;
  letter-spacing: -0.01em;
}

/* Thesis visual replacing gold rectangle */
.thesis-visual {
  background: linear-gradient(135deg, #FAF7F0, #F0EBE0);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(30, 45, 82, 0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.thesis-visual:hover {
  transform: translateY(-4px);
}

.thesis-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Dual-path CTA */
.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.cta-path-primary,
.cta-path-secondary {
  display: block;
  padding: 1.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.cta-path-primary {
  background: #1E2D52;
  color: #fff;
}

.cta-path-primary:hover {
  background: #B8945A;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(184, 148, 90, 0.4);
}

.cta-path-secondary {
  background: #fff;
  color: #1E2D52;
  border: 1px solid #e8e6df;
}

.cta-path-secondary:hover {
  border-color: #B8945A;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(30, 45, 82, 0.1);
}

.cta-path-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

.cta-path-primary .cta-path-label {
  color: #B8945A;
}

.cta-path-secondary .cta-path-label {
  color: #B8945A;
}

.cta-path-action {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Founder card "Meet Dr. SIM" CTA */
.founder-card-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8945A;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing 0.3s ease;
  border-bottom: 1px solid rgba(184, 148, 90, 0.4);
  padding-bottom: 4px;
}

.founder-card-cta:hover {
  letter-spacing: 0.2em;
  border-bottom-color: #B8945A;
}

@media (max-width: 768px) {
  .dorothy-text {
    font-size: 18px;
  }
  .dorothy-conclusion {
    font-size: 22px;
  }
  .cta-paths {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   FOUNDER TEASER — homepage version
   Differentiated from Founder page (which goes deep)
   ============================================ */

.founder-teaser {
  max-width: 980px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid #e8e6df;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-teaser:hover {
  border-color: rgba(184, 148, 90, 0.5);
  box-shadow: 0 20px 50px -20px rgba(30, 45, 82, 0.15);
}

.founder-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #B8945A;
}

.founder-teaser-portrait {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 1px rgba(184, 148, 90, 0.3),
    0 20px 40px -10px rgba(30, 45, 82, 0.2);
}

.founder-teaser-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.founder-teaser-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  color: #1E2D52;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.founder-teaser-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #B8945A;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.founder-teaser-bio {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a6478;
  font-weight: 300;
  margin-bottom: 2rem;
}

.founder-teaser-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e8e6df;
  border-bottom: 1px solid #e8e6df;
  margin-bottom: 1.8rem;
}

.teaser-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid #e8e6df;
}

.teaser-stat:last-child {
  border-right: none;
}

.teaser-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: #B8945A;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-style: italic;
}

.teaser-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #5a6478;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
}

.founder-teaser-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1E2D52;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid #B8945A;
}

.founder-teaser-cta:hover {
  color: #B8945A;
  letter-spacing: 0.22em;
}

@media (max-width: 900px) {
  .founder-teaser {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  .founder-teaser-portrait {
    width: 180px;
    height: 180px;
  }
  .founder-teaser-name {
    font-size: 28px;
  }
  .founder-teaser-bio {
    text-align: left;
  }
  .teaser-stat {
    padding: 0 0.5rem;
  }
  .teaser-stat-value {
    font-size: 22px;
  }
  .teaser-stat-label {
    font-size: 9px;
  }
}

@media (max-width: 600px) {
  .founder-teaser-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .teaser-stat {
    border-right: none;
    border-bottom: 1px solid #e8e6df;
    padding-bottom: 1rem;
  }
  .teaser-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ============================================
   MOBILE TIMELINE FIX — prevent year/circle collision
   ============================================ */

/* Body-level safety against any horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tighter, cleaner timeline on mobile */
@media (max-width: 768px) {
  .timeline-wrapper {
    padding: 0;
    margin: 0;
  }
  .timeline-wrapper::before {
    left: 8px;
  }
  .timeline-entry {
    padding-left: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .timeline-entry::before {
    left: 2px;
    top: 7px;
    width: 12px;
    height: 12px;
    z-index: 0;
  }
  .timeline-year {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
  }
  .timeline-entry h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  .timeline-entry p {
    font-size: 13px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .timeline-entry {
    padding-left: 2rem;
  }
  .timeline-year {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* ============================================
   TIMELINE — DEFINITIVE FIX
   Higher specificity + clear mobile breakpoints
   ============================================ */

/* Force generous left padding on desktop too */
.timeline-wrapper .timeline-entry {
  padding-left: 5rem !important;
  position: relative;
}

.timeline-wrapper .timeline-entry::before {
  left: 22px;
  z-index: 0;
}

.timeline-wrapper .timeline-year,
.timeline-wrapper .timeline-entry h3,
.timeline-wrapper .timeline-entry p {
  position: relative;
  z-index: 2;
}

/* Tablet */
@media (max-width: 900px) {
  .timeline-wrapper .timeline-entry {
    padding-left: 3.5rem !important;
  }
  .timeline-wrapper::before {
    left: 12px !important;
  }
  .timeline-wrapper .timeline-entry::before {
    left: 5px !important;
    width: 14px !important;
    height: 14px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .timeline-wrapper .timeline-entry {
    padding-left: 3rem !important;
  }
  .timeline-wrapper::before {
    left: 10px !important;
  }
  .timeline-wrapper .timeline-entry::before {
    left: 4px !important;
    width: 12px !important;
    height: 12px !important;
    top: 8px;
  }
  .timeline-wrapper .timeline-year {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
  }
  .timeline-wrapper .timeline-entry h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .timeline-wrapper .timeline-entry p {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .timeline-wrapper .timeline-entry {
    padding-left: 2.5rem !important;
  }
  .timeline-wrapper::before {
    left: 8px !important;
  }
  .timeline-wrapper .timeline-entry::before {
    left: 2px !important;
  }
  .timeline-wrapper .timeline-year {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* Page hero mobile padding */
@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 1.5rem;
  }
  .page-hero p {
    font-size: 15px;
  }
}

/* ============================================
   FEATURED IN — PRESS SECTION (Founder Page)
   Restrained, editorial, premium
   ============================================ */

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.press-card {
  display: block;
  background: #fff;
  border: 1px solid #e8e6df;
  border-radius: 6px;
  padding: 2rem 1.8rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle gold corner accent */
.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #B8945A;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 148, 90, 0.5);
  box-shadow: 0 20px 40px -15px rgba(30, 45, 82, 0.12);
}

.press-card:hover::before {
  width: 100%;
}

.press-pub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #B8945A;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-style: italic;
}

.press-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  color: #1E2D52;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.4rem;
  letter-spacing: -0.005em;
  min-height: 80px;
}

.press-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid #f0ebe0;
  gap: 1rem;
  flex-wrap: wrap;
}

.press-author {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #8a94a8;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.press-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #B8945A;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: letter-spacing 0.3s ease;
}

.press-card:hover .press-cta {
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-card {
    padding: 1.6rem 1.4rem;
  }
  .press-headline {
    font-size: 17px;
    min-height: auto;
  }
  .press-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

/* ============================================
   PREMIUM PAGE TRANSITIONS
   Subtle fade + lift between pages
   ============================================ */

/* Default state — body should fade smoothly */
body {
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Entry state — page is just landing */
body.page-entering {
  opacity: 0;
  transform: translateY(8px);
}

/* Loaded state — page is fully visible */
body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Exit state — page is leaving */
body.page-exiting {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
  pointer-events: none; /* prevent further clicks during exit */
}

/* Make sure nav stays still during transitions (so the click anchor doesn't move) */
body.page-exiting .site-nav,
body.page-entering .site-nav {
  opacity: 1;
  transform: none;
}

/* Hero CTA buttons get smoother press feel */
.hero-cta,
.nav-cta,
.cta-path-primary,
.cta-path-secondary,
.po-final-cta,
.connect-button,
.founder-linkedin,
.founder-teaser-cta,
.founder-card-cta,
.hero-cta-secondary {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              letter-spacing 0.3s ease;
}

/* Active state for tactile click feedback */
.hero-cta:active,
.nav-cta:active,
.cta-path-primary:active,
.cta-path-secondary:active,
.po-final-cta:active,
.connect-button:active,
.founder-linkedin:active,
.founder-teaser-cta:active {
  transform: scale(0.97) !important;
  transition: transform 0.1s ease-out;
}

/* Site nav links get smoother hover */
.site-nav-link {
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Don't transition if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  body, body.page-entering, body.page-loaded, body.page-exiting {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
