@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream:    #F5F0E8;
  --cream-dk: #EDE6D8;
  --navy:     #1C2340;
  --blue:     #2B4A8C;
  --amber:    #C07A3A;
  --muted:    #6B6B7B;
  --border:   #DDD8CC;
  --white:    #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

/* ─── HERO ─── */
.hero {
  padding: 9rem 5% 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.8rem;
  max-width: 820px;
}

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

.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }

.btn-secondary {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); transform: translateY(-1px); }

/* ─── DIVIDER ─── */
.divider {
  width: 90%; max-width: 1060px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

/* ─── SECTION ─── */
section {
  padding: 6rem 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-heading em { font-style: italic; color: var(--blue); }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--cream-dk);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--white); }

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

/* ─── SPEAKING SECTION ─── */
.speaking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.speaking-content .talk-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.speaking-content .talk-subtitle {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.speaking-content .talk-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.talk-takeaways {
  list-style: none;
  margin-bottom: 2.2rem;
}

.talk-takeaways li {
  font-size: 0.92rem;
  color: var(--navy);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.talk-takeaways li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--amber);
  font-size: 0.85rem;
}

.also-available {
  background: var(--cream-dk);
  border-left: 3px solid var(--blue);
  padding: 2rem 2rem;
}

.also-available h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.also-available ul {
  list-style: none;
}

.also-available li {
  font-size: 0.93rem;
  color: var(--navy);
  padding: 0.4rem 0;
  font-weight: 500;
}

.also-available li span {
  font-weight: 300;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ─── ABOUT ─── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dk);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.about-photo-placeholder span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-sidebar-fact {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.about-sidebar-fact .fact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.about-sidebar-fact .fact-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2E3048;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-body p strong {
  font-weight: 600;
  color: var(--navy);
}

.about-body blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--navy);
  padding: 6rem 5%;
  max-width: none;
}

.contact-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-left .section-label { color: var(--amber); }

.contact-left .section-heading {
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-left p {
  color: rgba(245,240,232,0.65);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.45);
  width: 80px;
  flex-shrink: 0;
}

.contact-item-value {
  font-size: 0.98rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-value:hover { color: var(--amber); }

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: flex; gap: 1rem; }

.contact-right input,
.contact-right textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 0.9rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 1px;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: rgba(245,240,232,0.35);
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: rgba(255,255,255,0.35);
}

.contact-right textarea { min-height: 130px; resize: vertical; }

.btn-submit {
  background: var(--amber);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
  border-radius: 1px;
}
.btn-submit:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: #141728;
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
}

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

.footer-links a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(245,240,232,0.7); }

/* ─── LEGAL PAGES ─── */
.legal-hero {
  padding: 6rem 5% 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-hero .updated {
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5% 6rem;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 0.8rem;
}

.legal-body p, .legal-body li {
  font-size: 0.97rem;
  color: #3A3D52;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.legal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-body a {
  color: var(--blue);
  text-decoration: none;
}
.legal-body a:hover { text-decoration: underline; }

.legal-body .service-list {
  background: var(--cream-dk);
  border-left: 3px solid var(--blue);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  list-style: none;
  padding-left: 1.5rem;
}

.legal-body .service-list li {
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .speaking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }
  nav { padding: 0 4%; }
  .nav-links { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .form-row { flex-direction: column; }
  footer { flex-direction: column; align-items: flex-start; }
}

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

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1      { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub     { animation: fadeUp 0.6s 0.2s ease both; }
.hero-ctas    { animation: fadeUp 0.6s 0.3s ease both; }
