/* ===== CSS Variables ===== */
:root {
  --coral: #E07A5F;
  --coral-light: #F4A593;
  --coral-dark: #C45D42;
  --teal: #1D3D3D;
  --teal-light: #2A5555;
  --cream: #FDF8F4;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-200: #EEEEEE;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --gray-800: #333333;
  
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  
  --header-height: 80px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--teal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h1 em, h2 em {
  font-style: italic;
  color: var(--coral);
}

p {
  margin-bottom: 1rem;
}

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

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-2xl) 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

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

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

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

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

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--coral);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 6px;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, #FEF5F0 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--coral-light) 0%, transparent 70%);
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(29, 61, 61, 0.2);
}

/* ===== Section Headers ===== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.section-eyebrow.center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ===== Message Section ===== */
.message-section {
  background: var(--teal);
  color: var(--white);
}

.message-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.message-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

.message-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Talks Preview ===== */
.talks-preview {
  background: var(--cream);
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.talk-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--coral);
  transition: all var(--transition);
}

.talk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.talk-card h3 {
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

.talk-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== Proof Section ===== */
.proof-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.proof-content h2 {
  margin-bottom: var(--space-md);
}

.proof-content > p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.proof-stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: var(--space-xs);
}

.proof-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(29, 61, 61, 0.15);
}

/* ===== Testimonial ===== */
.testimonial-section {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--teal);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--coral);
  font-weight: 600;
}

/* ===== Gallery ===== */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-row: span 2;
}

/* ===== Press Section ===== */
.press-section {
  background: var(--gray-100);
  padding: var(--space-xl) 0;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-md);
}

.press-logos span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--teal);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
}

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

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--coral-light);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Page Hero (for inner pages) ===== */
.page-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About Page ===== */
.about-intro {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(29, 61, 61, 0.15);
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

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

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.credential-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 12px;
  text-align: center;
}

.credential-card h3 {
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.credential-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== Speaking Page ===== */
.speaking-topics {
  background: var(--white);
}

.topic-card {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: 16px;
  margin-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.topic-card:nth-child(even) {
  direction: rtl;
}

.topic-card:nth-child(even) > * {
  direction: ltr;
}

.topic-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
}

.topic-content h3 {
  font-size: 1.75rem;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

.topic-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.topic-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audiences-section {
  background: var(--teal);
  color: var(--white);
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.audience-card {
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-lg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-card h3 {
  color: var(--coral-light);
  margin-bottom: var(--space-sm);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ===== Work Page ===== */
.work-intro {
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.work-content h2 {
  margin-bottom: var(--space-md);
}

.work-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.impact-section {
  background: var(--coral);
  color: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.impact-stat {
  padding: var(--space-md);
}

.impact-stat .stat-number {
  font-size: 3.5rem;
  color: var(--white);
}

.impact-stat .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.community-gallery {
  background: var(--cream);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.community-grid img {
  border-radius: 12px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== Contact Page ===== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.contact-details {
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 1.1rem;
  color: var(--teal);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: 16px;
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  transition: border-color var(--transition);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto var(--space-lg);
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 600px;
    margin: var(--space-xl) auto 0;
  }
  
  .proof-grid,
  .about-grid,
  .work-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-image {
    order: -1;
  }
  
  .talks-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item.large {
    grid-row: span 1;
    grid-column: span 2;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .credentials-grid,
  .audiences-grid {
    grid-template-columns: 1fr;
  }
  
  .topic-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .topic-card:nth-child(even) {
    direction: ltr;
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 3rem;
    --space-3xl: 5rem;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav a {
    font-size: 1.25rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }
  
  .proof-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .press-logos {
    gap: var(--space-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
}
