*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #ffffff;
  --blush:   #CA9084;
  --teal:    #115562;
  --ink:     #000000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: var(--teal);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--blush); font-style: italic; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  opacity: 0.8;
}
.nav-link:hover,
.nav-link.active { opacity: 1; }
.nav-cta {
  background: var(--blush);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #d9a396; transform: translateY(-1px); }

/* ── SHARED ── */
section { padding: 6rem 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--blush); }

.btn-primary {
  background: var(--blush);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #d9a396; transform: translateY(-2px); }

/* ── ABOUT HERO ── */
.about-hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,85,98,0.1);
}
.about-hero::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,85,98,0.07);
}
.about-hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--blush); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  max-width: 440px;
}

/* ── PHOTO ── */
.about-hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame {
  position: relative;
  width: 360px;
  height: 440px;
}
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
  background: rgba(17,85,98,0.08);
}
.photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 1;
}

/* ── BACKGROUND ── */
.background { background: var(--teal); color: var(--cream); }
.background .section-eyebrow { color: rgba(255,255,255,0.7); }
.background-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.background-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.background-card:hover { background: rgba(255,255,255,0.11); }
.bg-card-icon {
  width: 44px; height: 44px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.bg-card-icon svg { width: 20px; height: 20px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
.background-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.degree-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.85rem;
}
.background-card p { font-size: 0.875rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.8); }
.background-card p em { font-style: italic; color: var(--blush); }

/* ── GOALS ── */
.goals { background: var(--cream); }
.goals-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.goals-text .section-title { margin-bottom: 2.5rem; }
.goal-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(17,85,98,0.1);
}
.goal-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.goal-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--blush);
  line-height: 1;
  min-width: 40px;
  padding-top: 0.15rem;
}
.goal-body h3 { font-size: 1rem; font-weight: 500; color: var(--teal); margin-bottom: 0.5rem; }
.goal-body p { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--ink); }

/* ── GOALS ASIDE ── */
.goals-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 6rem;
}
.goals-quote { background: var(--teal); border-radius: 4px; padding: 2rem; }
.goals-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
}
.goals-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gs-stat {
  background: rgba(17,85,98,0.05);
  border: 1px solid rgba(17,85,98,0.1);
  border-radius: 4px;
  padding: 1.25rem 0.75rem;
  text-align: center;
}
.gs-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--teal); line-height: 1; margin-bottom: 0.4rem; }
.gs-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blush); line-height: 1.3; }

/* ── ABOUT CTA ── */
.about-cta {
  background: var(--teal);
  text-align: center;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-cta::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 450px; height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.about-cta .section-eyebrow { color: rgba(255,255,255,0.7); }
.about-cta .section-title { color: var(--cream); position: relative; z-index: 2; }
.about-cta .section-title em { color: var(--blush); }
.about-cta .cta-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}
.about-cta .btn-primary { position: relative; z-index: 2; }

/* ── FOOTER ── */
footer {
  background: var(--teal);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); }
.footer-logo span { color: var(--blush); font-style: italic; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-hero-text > * {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub      { animation-delay: 0.4s; }
.about-hero-photo {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* ══════════════════════════════
   TABLET  (≤ 1024px)
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .about-hero { padding: 7rem 2.5rem 4rem; gap: 2.5rem; }
  .goals-inner { grid-template-columns: 1fr 300px; gap: 3rem; }
  .background-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════
   MOBILE  (≤ 768px)
══════════════════════════════ */
@media (max-width: 768px) {

  /* NAV — hamburger */
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--teal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; opacity: 0.85; }
  .nav-cta { font-size: 0.9rem; padding: 0.7rem 1.5rem; width: 100%; text-align: center; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
  }
  .nav-overlay.open { display: block; }

  /* HERO */
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6rem 1.5rem 3rem;
    gap: 2.5rem;
  }
  .about-hero-photo { justify-content: center; }
  .photo-frame { width: 260px; height: 320px; }
  .photo-accent { bottom: -10px; right: -10px; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.975rem; max-width: 100%; }

  /* SECTIONS */
  section { padding: 4rem 1.5rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* BACKGROUND */
  .background-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* GOALS */
  .goals-inner { grid-template-columns: 1fr; gap: 3rem; }
  .goals-aside { position: static; }
  .goals-stats { grid-template-columns: repeat(3, 1fr); }
  .gs-num { font-size: 1.3rem; }
  .gs-label { font-size: 0.6rem; }

  /* CTA */
  .about-cta { padding: 4rem 1.5rem; }

  /* FOOTER */
  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 2rem 1.5rem; }
}

/* ══════════════════════════════
   SMALL PHONES  (≤ 420px)
══════════════════════════════ */
@media (max-width: 420px) {
  .photo-frame { width: 220px; height: 270px; }
  .goal-item { flex-direction: column; gap: 0.5rem; }
  .goal-num { font-size: 1.4rem; }
  .goals-stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .about-cta .btn-primary { width: 100%; text-align: center; }
}