/* ============================================================
   VIRTUAL ANTONY — styles.css
   Structure:
     1. Variables & Reset
     2. Background Glows
     3. Navigation
     4. Hero
     5. Stats Bar
     6. Services
     7. About
     8. Process
     9. Testimonials
    10. Contact
    11. Footer
    12. Animations & Scroll Reveal
    13. Media Queries
   ============================================================ */


/* ── 1. VARIABLES & RESET ── */
:root {
  --navy:        #1e3768;
  --navy-mid:    #243f7a;
  --navy-dark:   #172d58;
  --navy-card:   #2c4a8a;
  --gold:        #ffd54f;
  --gold-light:  #ffe082;
  --gold-dim:    rgba(255, 213, 79, 0.2);
  --cream:       #f5f0e8;
  --cream-dim:   rgba(245, 240, 232, 0.65);
  --cream-faint: rgba(245, 240, 232, 0.12);

  /* Hybrid light sections */
  --section-light-bg:   #f5f0e8;
  --section-light-text: #1e3768;
  --section-light-sub:  #4a5f8a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

strong.highlight {
  color: var(--cream);
  font-weight: 600;
}


/* ── 2. BACKGROUND GLOWS ── */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--gold {
  background: #ffd54f;
  top: -150px;
  right: -100px;
}

.bg-glow--blue {
  background: #3a5a9f;
  bottom: -200px;
  left: -100px;
}


/* ── 3. NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

nav.scrolled {
  border-color: var(--cream-faint);
  background: rgba(26, 39, 68, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--navy-card);
  border-radius: 50%;
  border: 2px solid rgba(255, 213, 79, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

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

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 213, 79, 0.5);
  padding: 8px 22px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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


/* ── 4. HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 120px;
  height: 120px;
  background: var(--navy-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.1s forwards;
}

.hero-logo span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
}

.hero-logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 213, 79, 0.3);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.25s forwards;
}

.hero-title strong {
  font-weight: 700;
  color: var(--gold);
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(240, 236, 228, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.4s forwards;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.55s forwards;
}

.hero-message {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 236, 228, 0.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.85s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255, 213, 79, 0.5);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

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


/* ── 5. STATS BAR ── */
.stats-bar {
  background: var(--navy-dark);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--cream-faint);
}

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

.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}


/* ── SHARED SECTION STYLES ── */
section { position: relative; z-index: 1; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 52px;
  letter-spacing: 1px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
}


/* ── 6. SERVICES ── */
#services { padding: 100px 48px;
            padding-top: 140px;
}

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

.service-card {
  background: var(--navy-mid);
  padding: 40px 32px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.service-card:hover { background: var(--navy-card); border-color: var(--gold-dim); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.service-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
}


/* ── 7. ABOUT ── */
#about {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--navy-card);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--cream-dim);
  font-style: italic;
}

.about-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 213, 79, 0.3);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 213, 79, 0.4);
  padding: 16px 22px;
}

.about-badge-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}

.about-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 14px;
}

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

.tools-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--cream-dim);
}

.tool-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}


/* ── 8. PROCESS ── */
#process {
  padding: 100px 48px;
  background: var(--navy-dark);
}

.process-steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
}

.process-step { padding-right: 28px; }

.step-num {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 213, 79, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-desc {
  font-size: 12px;
  line-height: 1.85;
  color: var(--cream-dim);
}


/* ── 9. TESTIMONIALS ── */
#testimonials { padding: 100px 48px; }

.testimonials-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.testimonial {
  background: var(--navy-mid);
  padding: 44px 40px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.testimonial:hover { border-color: var(--gold-dim); }

.t-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.t-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid rgba(255, 213, 79, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.t-name { font-size: 12px; font-weight: 600; }

.t-role {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}


/* ── 10. CONTACT ── */
#contact {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
}

.contact-intro-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 36px;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.c-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 213, 79, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.c-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.c-val { font-size: 13px; color: var(--cream); }

.form-field { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--cream-faint);
  color: var(--cream);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 13px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus { border-color: rgba(255, 213, 79, 0.5); }

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

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(240, 236, 228, 0.2); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}


/* ── 11. FOOTER ── */
footer {
  border-top: 1px solid var(--cream-faint);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(240, 236, 228, 0.25);
  letter-spacing: 2px;
}

.footer-copy a { color: var(--gold); text-decoration: none; }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.25s;
}

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


/* ── 12. ANIMATIONS & SCROLL REVEAL ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── HOMEPAGE: SERVICES PREVIEW ── */
#services-preview { padding: 100px 48px; }

/* ── HOMEPAGE: PROCESS SNAPSHOT ── */
#process-snapshot {
  padding: 100px 48px;
  background: var(--navy-dark);
}

/* ── HOMEPAGE: SECTION CTA LINK ── */
.section-cta {
  margin-top: 48px;
  text-align: center;
}

/* ── HOMEPAGE: CTA BANNER ── */
#cta-banner {
  background: var(--navy-card);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner-inner { max-width: 640px; margin: 0 auto; }

.cta-banner-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-banner-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 36px;
}

.cta-banner-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  padding: 160px 48px 80px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 12px 0 20px;
}

.page-hero-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}

.page-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 560px;
}

/* ── ACTIVE NAV LINK ── */
.nav-link--active {
  color: var(--gold) !important;
}

.nav-link--active::after {
  width: 100% !important;
}

/* ── PROCESS DETAIL STEPS ── */
#process {
  padding: 20px 48px 100px;
  position: relative;
  z-index: 1;
}

.process-detail-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--cream-faint);
}

.process-detail-step:last-child {
  border-bottom: none;
}

.process-detail-left {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.process-detail-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.process-detail-duration {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.process-detail-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 14px;
}

.process-detail-box {
  margin-top: 24px;
  background: var(--navy-mid);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
}

.process-detail-box-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.process-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-detail-list li {
  font-size: 13px;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.process-detail-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ── FAQ ── */
#faq {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.faq-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.faq-item {
  background: var(--navy-mid);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

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

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.faq-answer {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--navy-card);
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner-inner { max-width: 640px; margin: 0 auto; }

.cta-banner-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-banner-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 36px;
}

.cta-banner-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
  .page-hero { padding: 120px 24px 60px; }

  #process { padding: 20px 24px 80px; }

  .process-detail-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .process-detail-left { justify-content: flex-start; }

  #faq { padding: 72px 24px; }

  .faq-grid { grid-template-columns: 1fr; }

  #cta-banner { padding: 60px 24px; }
}

/* ── SERVICES PAGE ── */

#services-overview {
  padding: 0 48px 80px;
  position: relative;
  z-index: 1;
}

/* Clickable cards that scroll to detail */
.service-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.service-card-arrow {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.service-card--link:hover .service-card-arrow {
  transform: translateY(4px);
}

/* ── WHY OUTSOURCE ── */
#why-outsource {
  padding: 80px 48px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.why-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-item {
  background: var(--navy-mid);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.why-item:hover { border-color: var(--gold-dim); }

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.why-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.why-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
}

/* ── SERVICE DETAIL BLOCKS ── */
#services-detail {
  padding: 60px 48px 80px;
  position: relative;
  z-index: 1;
}

.service-detail-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-faint);
}

.service-detail-block:last-child { border-bottom: none; }

.service-detail-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
}

.service-detail-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

.service-detail-desc {
  font-size: 14px;
  line-height: 1.95;
  color: var(--cream-dim);
  margin-bottom: 28px;
}

.service-detail-includes {
  background: var(--navy-mid);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
}

.service-detail-box {
  background: var(--navy-mid);
  border: 1px solid var(--cream-faint);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.service-detail-box:last-child { margin-bottom: 0; }

.service-detail-box-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-detail-box-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
}

.service-detail-list,
.service-detail-tools {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-list li,
.service-detail-tools li {
  font-size: 13px;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-detail-list li::before,
.service-detail-tools li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ── PRICING ── */
#pricing {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.pricing-intro {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 560px;
  margin-top: -32px;
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pricing-card {
  background: var(--navy-mid);
  padding: 44px 36px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s;
}

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

.pricing-card--featured {
  background: var(--navy-card);
  border-color: rgba(255, 213, 79, 0.4) !important;
}

.pricing-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pricing-tier {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-hours {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pricing-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-faint);
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-includes li {
  font-size: 13px;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-includes li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--cream-dim);
  margin-top: 36px;
  font-style: italic;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
  #services-overview { padding: 0 24px 60px; }
  #why-outsource, #pricing { padding: 72px 24px; }
  #services-detail { padding: 40px 24px 60px; }

  .why-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .service-detail-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-header { flex-direction: column; gap: 8px; }
}

/* ── ABOUT PAGE ── */

/* Personal Story — two column layout matching existing about section */
#story {
  padding: 60px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-img-wrap { position: relative; }

.story-content p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.story-content p strong { color: var(--cream); font-weight: 600; }

/* ── INDUSTRIES ── */
#industries {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.industries-intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cream-dim);
  max-width: 560px;
  margin-top: -32px;
  margin-bottom: 52px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.industry-item {
  background: var(--navy-mid);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.industry-item:hover { border-color: var(--gold-dim); }

.industry-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.industry-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.industry-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-dim);
}

/* ── EDUCATION & CERTIFICATIONS ── */
#education {
  padding: 100px 48px;
  position: relative;
  z-index: 1;
}

.education-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.edu-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--navy-mid);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.edu-block:hover { border-color: var(--gold-dim); }

.edu-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.edu-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.edu-detail {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 4px;
}

.edu-year {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.edu-note {
  text-align: center;
  font-size: 12px;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 32px;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
  #story {
    padding: 40px 24px 72px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #industries,
  #education { padding: 72px 24px; }

  .industries-grid { grid-template-columns: 1fr; }

  .education-grid { grid-template-columns: 1fr; }
}

/* ── HYBRID CREAM SECTIONS ── */
.section--cream {
  background: var(--section-light-bg) !important;
  color: var(--section-light-text) !important;
}

.section--cream .section-label { color: var(--navy); opacity: 0.55; }

.section--cream .section-heading {
  color: var(--navy);
}

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

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

.section--cream p,
.section--cream .story-content p {
  color: var(--section-light-sub) !important;
}

.section--cream .service-card,
.section--cream .edu-block,
.section--cream .industry-item,
.section--cream .why-item,
.section--cream .faq-item,
.section--cream .testimonial {
  background: #fff;
  border-color: rgba(30, 55, 104, 0.12) !important;
  color: var(--section-light-text);
}

.section--cream .service-card:hover,
.section--cream .edu-block:hover,
.section--cream .industry-item:hover,
.section--cream .why-item:hover,
.section--cream .faq-item:hover,
.section--cream .testimonial:hover {
  border-color: var(--navy) !important;
  box-shadow: 0 4px 24px rgba(30,55,104,0.08);
}

.section--cream .service-desc,
.section--cream .industry-desc,
.section--cream .edu-detail,
.section--cream .why-desc,
.section--cream .faq-answer,
.section--cream .t-text {
  color: var(--section-light-sub) !important;
}

.section--cream .service-num,
.section--cream .service-title,
.section--cream .industry-name,
.section--cream .edu-title,
.section--cream .why-title,
.section--cream .faq-question,
.section--cream .t-name {
  color: var(--navy) !important;
}

.section--cream .service-icon,
.section--cream .industry-icon,
.section--cream .edu-icon {
  border-color: rgba(30, 55, 104, 0.2) !important;
  color: var(--navy) !important;
}

.section--cream .stat-num { color: var(--navy) !important; }
.section--cream .stat-label { color: var(--section-light-sub) !important; }
.section--cream .stat { border-right-color: rgba(30,55,104,0.12) !important; }

.section--cream .about-badge {
  background: var(--navy);
  border-color: var(--gold);
}

.section--cream .about-badge-num { color: var(--gold); }
.section--cream .about-badge-text { color: rgba(245,240,232,0.7); }

.section--cream .t-avatar {
  background: var(--navy);
  border-color: var(--gold) !important;
}

.section--cream .t-role { color: var(--navy) !important; opacity: 0.6; }
.section--cream .t-mark { color: var(--navy) !important; }

/* Tools tags for cream sections */
.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,55,104,0.07);
  border: 1px solid rgba(30,55,104,0.15);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  margin: 4px;
  font-weight: 500;
  transition: all 0.2s;
}

.tool-tag:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.tool-tags-wrap { display: flex; flex-wrap: wrap; margin: -4px; }

/* Dark section tool tags */
.tool-tag--dark {
  background: var(--gold-dim);
  border-color: rgba(255,213,79,0.3);
  color: var(--cream);
}

.tool-tag--dark:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Skills grid */
.skills-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 52px;
}

.skills-col-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30,55,104,0.15);
  color: var(--navy);
}

.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skills-list li {
  font-size: 13px;
  color: var(--section-light-sub);
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--navy);
  flex-shrink: 0;
  opacity: 0.4;
}

/* Vision/Mission block */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}

.vm-block {
  padding: 48px 40px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.vm-block--navy {
  background: var(--navy);
  color: var(--cream);
}

.vm-block--cream {
  background: #fff;
  color: var(--navy);
}

.vm-block--navy:hover { border-color: var(--gold); }
.vm-block--cream:hover { border-color: var(--navy); box-shadow: 0 4px 24px rgba(30,55,104,0.08); }

.vm-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.vm-block--navy .vm-label { color: var(--gold); }
.vm-block--cream .vm-label { color: var(--navy); opacity: 0.5; }

.vm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.vm-block--navy .vm-heading { color: var(--cream); }
.vm-block--cream .vm-heading { color: var(--navy); }

.vm-text {
  font-size: 14px;
  line-height: 1.9;
}

.vm-block--navy .vm-text { color: var(--cream-dim); }
.vm-block--cream .vm-text { color: var(--section-light-sub); }

/* Upwork badge */
.upwork-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(30,55,104,0.15);
  padding: 10px 18px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}

.upwork-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a800;
  flex-shrink: 0;
}

.upwork-badge .badge-star { color: #14a800; font-size: 14px; }

@media (max-width: 860px) {
  .vision-mission-grid,
  .skills-cols { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */

#contact {
  padding: 40px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left,
.contact-right { display: flex; flex-direction: column; gap: 0; }

/* ── SOCIAL LINKS ── */
.contact-social { margin-top: 36px; }

.contact-social-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 13px;
  transition: color 0.25s;
}

.social-link:hover { color: var(--cream); }

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.social-link:hover .social-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ── WHAT TO EXPECT ── */
.contact-expect { margin-top: 36px; }

.contact-expect-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.expect-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expect-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.expect-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(255,213,79,0.3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expect-steps li strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.expect-steps li p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--cream-dim);
}

.expect-steps li p strong {
  display: inline;
  font-size: inherit;
  color: var(--cream);
}

/* ── CALENDLY BLOCK ── */
.calendly-block {
  background: var(--navy-mid);
  border: 1px solid rgba(255,213,79,0.3);
  padding: 32px 28px;
  margin-bottom: 0;
}

.calendly-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.calendly-heading {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.calendly-heading em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}

.calendly-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 20px;
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.calendly-note {
  font-size: 11px;
  color: var(--cream-dim);
  font-style: italic;
}

/* ── FORM DIVIDER ── */
.contact-form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form-divider::before,
.contact-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-faint);
}

/* ── CONTACT FAQ ── */
#contact-faq {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
  #contact {
    padding: 40px 24px 72px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  #contact-faq { padding: 72px 24px; }
}

/* ── 13. MEDIA QUERIES ── */
@media (max-width: 860px) {
  nav          { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }

  .nav-links,
  .nav-cta { display: none; }

  #hero { padding: 100px 24px 60px; }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--cream-faint);
    padding: 16px;
  }

  .stat:nth-child(odd)      { border-right: 1px solid var(--cream-faint); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  #services,
  #testimonials,
  #process { padding: 72px 24px; }

  .services-grid { grid-template-columns: 1fr; }

  #about,
  #contact {
    padding: 72px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge { left: 0; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .process-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title   { font-size: 2rem; }
  .hero-logo    { width: 90px; height: 90px; }
  .hero-logo span { font-size: 2.2rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAVIGATION — Hamburger + Drawer
   ══════════════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* Animated X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 38, 0.65);
  backdrop-filter: blur(4px);
  z-index: 700;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* Slide-in drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--navy-dark);
  border-left: 1px solid rgba(255,213,79,0.15);
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

/* Drawer header row */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
  flex-shrink: 0;
}

.nav-drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
  line-height: 1;
}
.nav-drawer-close:hover { color: var(--gold); }

/* Drawer nav links */
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.nav-drawer-links li a {
  display: block;
  padding: 15px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer-links li a:hover {
  color: var(--gold);
  padding-left: 36px;
}
.nav-drawer-links li a.nav-link--active { color: var(--gold); }

/* Drawer CTA button */
.nav-drawer-cta {
  display: block;
  margin: 24px 28px 0;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-drawer-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Drawer contact info */
.nav-drawer-contact {
  margin: 20px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer-contact span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* Show hamburger on mobile, hide desktop nav items */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
}


/* ══════════════════════════════════════════════════════════
   FOOTER — Updated Styles
   ══════════════════════════════════════════════════════════ */

footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,213,79,0.1);
  padding: 64px 48px 0;
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex; align-items: center; gap: 12px;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--navy-card);
  border-radius: 50%;
  border: 1px solid rgba(255,213,79,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.5px;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
}

.footer-socials {
  display: flex; gap: 12px; margin-top: 4px;
}
.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: rgba(255,213,79,0.12);
  border-color: rgba(255,213,79,0.35);
  color: var(--gold);
}

.footer-nav-group { display: flex; flex-direction: column; gap: 0; }

.footer-nav-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-links--contact a {
  font-size: 0.8rem;
  word-break: break-word;
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

.footer-upwork-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.footer-upwork-dot {
  width: 7px; height: 7px;
  background: #14a800;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer mobile */
@media (max-width: 860px) {
  footer { padding: 48px 24px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
  }
}