/* ============================================================
   ANGEL MAKEOVER & ACADEMY — Design tokens
   Deep Navy #0A234A | Warm Peach #E7A477 | Soft Beige #D8D1C7
   Light Neutral #F8F6F2 | Charcoal #363636 | Muted Gold #B08B68
   ============================================================ */

:root {
  --navy: #0A234A;
  --peach: #E7A477;
  --beige: #D8D1C7;
  --neutral: #F8F6F2;
  --charcoal: #363636;
  --gold: #B08B68;

  --navy-rgb: 10, 35, 74;
  --gold-rgb: 176, 139, 104;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1200px;
  --section-pad: clamp(48px, 6vw, 88px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--neutral);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--navy); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 720px;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--neutral);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--neutral);
}

.btn-outline-light {
  background: transparent;
  color: var(--neutral);
  border-color: var(--peach);
}
.btn-outline-light:hover {
  background: var(--peach);
  color: var(--navy);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(var(--navy-rgb), 0.08);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; border-radius: 50%; transition: height 0.3s ease; }
.site-header.scrolled .logo-img { height: 46px; }

.main-nav {
  display: flex;
  gap: 34px;
}

.nav-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

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

.header-cta { padding: 12px 26px; font-size: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}
.menu-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  background: url('../assets/images/hero.jpg') no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
}

.hero-text-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    background-position: center top;
    padding: 40px 20px;
  }

  .hero-content {
    display: none;
  }

  .hero-text-mobile {
    display: block;
    position: absolute;
    top: 12%;
    left: 24px;
    max-width: 300px;
    text-align: left;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s;
  }

  .hero-text-mobile .tagline {
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0A234A;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .hero-text-mobile h1 {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.35;
    color: #0A234A;
    font-weight: 500;
  }

  .hero-text-mobile h1 .line1,
  .hero-text-mobile h1 .line2 {
    display: block;
  }

  .hero-text-mobile h1 .line2 {
    margin-top: 8px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,35,74,0.35) 0%, rgba(10,35,74,0.05) 45%, rgba(10,35,74,0) 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: clamp(24px, 7vw, 90px);
  max-width: 520px;
  padding: clamp(32px, 4vw, 44px);
  background: rgba(248, 246, 242, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(248, 246, 242, 0.32);
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(var(--gold-rgb), 0.12), 0 20px 50px rgba(0,0,0,0.22);
  text-align: center;
  animation: heroFadeIn 1.4s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0A234A;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue {
  0% { top: 8px; opacity: 1; }
  70% { top: 24px; opacity: 0; }
  100% { top: 24px; opacity: 0; }
}

@media (max-width: 640px) {
  /* .hero-content sizing is now handled by the 768px mobile hero fix above */
}

/* ============================================================
   SUB-HEADLINE
   ============================================================ */

.subhead-section {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--section-pad) 32px 16px;
  text-align: center;
}

.subhead-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */

.stats-section {
  padding: 32px 32px 64px;
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  font-weight: 600;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 600;
}
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--beige);
  padding: 40px 32px;
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   SHARED SECTION WRAPPER
   ============================================================ */

.about-section,
.services-section,
.certificates-section,
.gallery-section,
.faq-section,
.contact-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.about-body { color: var(--charcoal); font-size: 1.02rem; }

.about-est {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.about-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  border-top: 1px solid var(--gold);
  padding-top: 20px;
}
.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.pillar p { font-size: 0.95rem; }

@media (max-width: 768px) {
  .about-pillars { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOUNDER
   ============================================================ */

.founder-section {
  background: var(--navy);
  padding: var(--section-pad) 32px;
}

.founder-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.founder-image-wrap { display: flex; justify-content: center; }

.founder-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 10px rgba(var(--gold-rgb), 0.12);
}

.founder-content .section-eyebrow { color: var(--peach); }
.founder-content .section-title { color: var(--neutral); }
.founder-content p { color: rgba(248,246,242,0.82); margin-bottom: 16px; font-size: 0.98rem; }

.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--peach);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.5;
}
.quote-mr {
  display: block;
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(231,164,119,0.75);
}

.founder-signature {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neutral) !important;
}
.founder-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-quote { text-align: left; }
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 4px;
  border-bottom: 3px solid var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--navy-rgb), 0.1);
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.93rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.service-list { list-style: none; }
.service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--peach);
  border-radius: 50%;
}

.services-footer {
  margin-top: 40px;
  text-align: center;
}
.services-footer p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 26px;
}

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

/* ============================================================
   ACADEMY
   ============================================================ */

.academy-section {
  background: var(--navy);
  padding: var(--section-pad) 32px;
}

.academy-section .section-eyebrow { color: var(--peach); max-width: var(--container); margin: 0 auto 18px; }
.academy-section .section-title { color: var(--neutral); max-width: var(--container); margin: 0 auto 24px; }
.academy-lead {
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(248,246,242,0.8);
  font-size: 1.02rem;
  text-align: left;
}

.academy-lead-left {
  margin-left: 0;
  margin-right: auto;
}

.academy-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}

.academy-item {
  border-top: 1px solid rgba(176,139,104,0.35);
  padding-top: 24px;
}

.academy-icon {
  width: 44px;
  height: 44px;
  color: var(--peach);
  margin-bottom: 18px;
}
.academy-icon svg { width: 100%; height: 100%; }

.academy-item h3 {
  color: var(--neutral);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.academy-item p {
  color: rgba(248,246,242,0.72);
  font-size: 0.92rem;
}

.academy-footer {
  max-width: var(--container);
  margin: 44px auto 0;
  text-align: center;
  border-top: 1px solid rgba(176,139,104,0.35);
  padding-top: 32px;
}
.academy-footer p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--neutral);
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  .academy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .academy-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CAROUSEL (shared: certificates + gallery)
   ============================================================ */

.cert-lead {
  max-width: 640px;
  margin-bottom: 40px;
  color: var(--charcoal);
}

.cert-carousel-wrap,
.gallery-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-carousel,
.gallery-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  flex: 1;
}
.cert-carousel::-webkit-scrollbar,
.gallery-carousel::-webkit-scrollbar { display: none; }

.cert-card {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 300px);
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--navy-rgb), 0.08);
  scroll-snap-align: start;
}
.cert-card img { width: 100%; height: 100%; object-fit: contain; }

.gallery-item {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 280px);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral);
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
  box-shadow: 0 10px 30px rgba(var(--navy-rgb), 0.08);
}
.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-carousel, .gallery-carousel { scroll-snap-type: x mandatory; }

.carousel-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.carousel-btn:hover { background: var(--navy); color: #fff; }

@media (max-width: 640px) {
  .carousel-btn { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
}

.faq-item {
  border-bottom: 1px solid var(--beige);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-plus {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 22px;
}

.faq-answer p { font-size: 0.93rem; color: var(--charcoal); margin-bottom: 10px; }
.faq-answer ul { padding-left: 20px; margin-bottom: 10px; }
.faq-answer li { font-size: 0.93rem; margin-bottom: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-lead {
  max-width: 500px;
  margin-bottom: 48px;
  color: var(--charcoal);
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 60px rgba(var(--navy-rgb), 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 26px; }

.form-group label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--beige);
  border-radius: 4px;
  background: var(--neutral);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: 18px;
  font-style: italic;
}
.form-success.show { display: block; }

.contact-details {
  max-width: 720px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail-item a { font-size: 0.92rem; color: var(--navy); }

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
}

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

.site-footer {
  background: var(--navy);
  color: rgba(248,246,242,0.75);
  padding: 56px 32px 0;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo { height: 60px; border-radius: 50%; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neutral);
  margin-bottom: 12px;
}
.footer-sub { font-size: 0.85rem; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--peach); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(248,246,242,0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.brand-credit a { color: var(--peach); text-decoration: underline; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 100px 44px;
    transition: right 0.4s ease;
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav .nav-link { color: var(--neutral); font-size: 15px; }
  .main-nav .nav-link::after { background: var(--peach); }

  .header-cta { display: none; }
  .menu-toggle { display: flex; }

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