/* ───────────────────────────────────────────────────────────
   Adriele Parker — shared stylesheet
   Base design system carried over verbatim from the original
   single-page build, with additions for the multi-page layout.
─────────────────────────────────────────────────────────── */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #1a1a2e;
  background: #F8F8FF;
  overflow-x: hidden;
}

/* ── COLORS ───────────────────────────────────────────────── */
:root {
  --purple:      #6A5ACD;
  --purple-deep: #5040b0;
  --purple-bg:   #6A5ACD;
  --gold:        #FFA500;
  --gold-light:  #ffba3b;
  --ink:         #333333;
  --ink2:        #555566;
  --ink3:        #A9A9A9;
  --light-bg:    #F8F8FF;
  --white:       #ffffff;
  --accent-blue: #87CEEB;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 4%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(91,79,207,0.1);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--purple); letter-spacing: 0.01em;
  line-height: 1;
}
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 1rem; font-weight: 400;
  color: var(--ink2); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--purple); }
.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta.active { color: white !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ── SHARED SHELL ─────────────────────────────────────────── */
main { display: block; }
.page-top { padding-top: 6rem; }         /* clears the fixed nav on interior pages */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 10rem 4% 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.hero-left { padding-right: 1rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 1.5px; background: var(--gold);
}
.hero-h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  line-height: 1.08; margin-bottom: 1.25rem; font-weight: 700;
}
.hero-h1 .line-1 { color: var(--purple); display: block; white-space: nowrap; }
.hero-h1 .line-2 {
  display: block; white-space: nowrap;
  background: linear-gradient(90deg, #FFA500 0%, #6A5ACD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; line-height: 1.85;
  color: var(--ink2); max-width: 480px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: white;
  padding: 1rem 2.2rem; border-radius: 99px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold svg { width: 14px; height: 14px; }

.hero-right { position: relative; }
.hero-img-box {
  border-radius: 18px; overflow: hidden;
  background: #ddd8f5; aspect-ratio: 4/5;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.hero-img-box img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #ddd8f5 0%, #b8b0e8 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.hero-img-placeholder span {
  font-size: 0.75rem; color: var(--purple-deep);
  opacity: 0.6; letter-spacing: 0.05em;
}
.badge {
  position: absolute; background: white;
  border-radius: 12px; padding: 0.75rem 1rem;
  box-shadow: 0 4px 24px rgba(91,79,207,0.15);
  display: flex; flex-direction: column;
}
.badge-tl { top: 1.5rem; right: -1rem; align-items: flex-end; }
.badge-br { bottom: -1rem; left: 1.5rem; }
.badge-num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.badge-label {
  font-size: 0.85rem; color: var(--ink3);
  font-weight: 400; line-height: 1.4; max-width: 90px;
}

/* ── MARQUEE / TRUSTED BY ─────────────────────────────────── */
.trusted-strip {
  background: var(--white); padding: 2.75rem 0;
  border-top: 1px solid rgba(91,79,207,0.08);
  border-bottom: 1px solid rgba(91,79,207,0.08);
  overflow: hidden;
}
.marquee-container { overflow: hidden; position: relative; }
.trusted-label-row {
  text-align: center; font-size: 0.875rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 1.25rem;
}
.marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-logo-wrap { display: flex; align-items: center; padding: 0 2.25rem; }
.marquee-logo-wrap img { height: 26px; width: auto; opacity: 0.55; filter: grayscale(1); }
.marquee-text-fallback {
  display: none; font-size: 1.05rem; font-weight: 600;
  color: var(--ink3); letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── SECTION HELPERS ──────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.875rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 0.875rem; display: block;
}
.section-h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--purple); margin-bottom: 0.75rem; font-weight: 700;
}
.section-sub {
  font-size: 1.1rem; color: var(--ink2);
  line-height: 1.8; max-width: 620px; font-weight: 300; margin-bottom: 3.5rem;
}
.section-rule { width: 54px; height: 3px; background: var(--gold); border: none; margin: 1rem 0 2.5rem; border-radius: 2px; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section { padding: 7.5rem 4%; max-width: 1400px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  padding: 2.5rem 2rem; border: 1px solid rgba(91,79,207,0.12);
  border-radius: 16px; transition: all 0.25s; background: var(--white);
}
.service-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(91,79,207,0.1);
  transform: translateY(-3px);
}
.svc-num { font-size: 1.4rem; color: var(--ink3); letter-spacing: 0.1em; margin-bottom: 1rem; font-weight: 400; }
.svc-title { font-family: 'Nunito Sans', sans-serif; font-size: 1.3rem; color: var(--purple); margin-bottom: 0.875rem; font-weight: 600; }
.svc-body { font-size: 1.05rem; color: var(--ink2); line-height: 1.85; font-weight: 300; }

/* ── APPROACH (purple bg) ─────────────────────────────────── */
.approach-section { background: var(--purple-bg); padding: 7.5rem 4%; }
.approach-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 4rem; align-items: stretch; }
.approach-left { width: 340px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
.approach-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.approach-left .section-eyebrow { color: var(--gold-light); }
.approach-tagline {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: white; font-weight: 700; line-height: 1.15; margin-bottom: 0.75rem;
}
.approach-sub { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }
.approach-body p { font-size: 1.15rem; line-height: 1.9; color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; font-weight: 300; }
.approach-body p strong { color: white; font-weight: 600; }
.approach-body p:last-child { margin-bottom: 0; }
.approach-divider { width: 1px; background: rgba(255,255,255,0.25); align-self: stretch; flex-shrink: 0; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip { padding: 6.5rem 4%; text-align: center; background: var(--light-bg); }
.cta-strip-icon {
  width: 44px; height: 44px; background: rgba(106,90,205,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--purple);
}
.cta-strip h2 { font-family: 'Nunito Sans', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--purple); margin-bottom: 0.875rem; font-weight: 700; }
.cta-strip p { font-size: 1.05rem; color: var(--ink2); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300; }

/* ── QUOTES ───────────────────────────────────────────────── */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card { background: white; border-radius: 16px; padding: 2rem 2rem 1.75rem; border: 1px solid rgba(106,90,205,0.1); }
.quote-mark { font-size: 3rem; line-height: 1; color: var(--gold); font-family: 'Wix Madefor Display', sans-serif; margin-bottom: 0.5rem; }
.quote-card p { font-size: 1rem; color: var(--ink2); line-height: 1.75; font-style: italic; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  max-width: 1160px; margin: 0 auto;
  padding: 4rem 4% 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}
.about-hero h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  color: var(--purple); font-weight: 700; line-height: 1.1; margin-bottom: 1.75rem;
}
.about-hero p { font-size: 1.02rem; color: var(--ink2); line-height: 1.8; margin-bottom: 1.1rem; font-weight: 300; }
.about-photo {
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #ddd8f5 0%, #b8b0e8 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-photo span { font-size: 0.8rem; color: var(--purple-deep); opacity: 0.6; }

.panel-tint { background: #EEEBFB; }
.about-block { max-width: 1160px; margin: 0 auto; padding: 5.5rem 4%; }
.about-block h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--purple); font-weight: 700; margin-bottom: 0.5rem;
}
.about-block .lead { font-size: 1.05rem; color: var(--ink2); line-height: 1.8; font-weight: 300; margin: 1.75rem 0 2rem; }
.about-block .closing-note { font-size: 1.05rem; color: var(--ink2); line-height: 1.8; font-weight: 300; margin-top: 2rem; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 3rem; }
.check-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.check-item .dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(106,90,205,0.12); color: var(--purple);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-item p { font-size: 1.02rem; color: var(--ink2); line-height: 1.6; font-weight: 300; }

/* purple quote panel on About */
.about-approach { background: var(--purple-bg); padding: 6rem 4%; }
.about-approach-inner { max-width: 1160px; margin: 0 auto; }
.about-approach h2 { font-family: 'Nunito Sans', sans-serif; color: white; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 2.5rem; }
.about-approach blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem; margin: 0 0 1.75rem;
  color: white; font-size: 1.2rem; line-height: 1.7; font-weight: 600; max-width: 760px;
}
.about-approach blockquote:last-of-type { margin-bottom: 2.5rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { padding: 7.5rem 4%; max-width: 740px; margin: 0 auto; }
.contact-section.centered { text-align: center; }
.contact-section h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--purple); font-weight: 700; margin-bottom: 1.25rem; line-height: 1.08;
}
.contact-section .section-sub { max-width: 640px; margin: 0 auto 3rem; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 1rem 1.1rem;
  border: 1.5px solid rgba(91,79,207,0.15); border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 300;
  color: var(--ink); background: white;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); background: white; }
.form-group textarea { min-height: 150px; resize: vertical; }
.btn-submit {
  background: var(--gold); color: white; border: none; border-radius: 99px;
  padding: 1.1rem 2.4rem; font-family: 'Nunito Sans', sans-serif;
  font-size: 1.05rem; font-weight: 600; cursor: pointer; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.9rem; color: var(--ink2); margin-top: 1.25rem; font-weight: 300; }
.form-error { background: #fff3f3; border: 1px solid #ffd0d0; color: #a12; padding: 0.85rem 1.1rem; border-radius: 10px; margin-bottom: 1.25rem; font-size: 0.95rem; display: none; }

/* ── LEGAL / SIMPLE PAGES ─────────────────────────────────── */
.doc { max-width: 780px; margin: 0 auto; padding: 4rem 4% 5rem; }
.doc h1 { font-family: 'Nunito Sans', sans-serif; color: var(--purple); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
.doc h2 { color: var(--purple-deep); font-size: 1.3rem; margin: 2rem 0 0.75rem; font-weight: 600; }
.doc p, .doc li { color: var(--ink2); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.doc ul { padding-left: 1.25rem; }
.doc a { color: var(--purple); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--purple-bg); padding: 4rem 4%; color: rgba(255,255,255,0.7); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 4.5rem; align-items: start; }
.footer-brand-name { font-family: 'Nunito Sans', sans-serif; font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 0.4rem; }
.footer-brand-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-col h4 { font-size: 0.875rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.875rem; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }
.footer-bottom {
  max-width: 1160px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem; color: rgba(255,255,255,0.4); font-weight: 300; text-align: center;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hamburger { display: block; }
  nav { padding: 1rem 4%; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(91,79,207,0.1); padding: 0.5rem 0;
    z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 5%; border-bottom: 1px solid rgba(91,79,207,0.06); font-size: 1rem; }
  .nav-cta { margin: 0.75rem 5% 0.5rem !important; display: inline-block !important; border-radius: 99px !important; text-align: center; }

  .hero { grid-template-columns: 1fr; padding: 6rem 4% 3rem; gap: 2rem; }
  .hero-right { order: -1; }
  .hero-img-box { aspect-ratio: 3/2; }
  .hero-h1 .line-1, .hero-h1 .line-2 { white-space: normal; }
  .badge-tl { right: 0.5rem; top: 0.75rem; }
  .badge-br { display: none; }
  .hero-sub { font-size: 1rem; }

  .trusted-strip { padding: 2rem 0; }
  .services-section { padding: 4rem 4%; }
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { padding: 1.75rem 1.5rem; }

  .approach-section { padding: 4rem 4%; }
  .approach-inner { flex-direction: column; gap: 2rem; }
  .approach-left, .approach-body { width: 100%; }
  .approach-divider { display: none; }

  .quotes-grid { grid-template-columns: 1fr; gap: 1rem; }

  .about-hero { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; }
  .about-hero .about-photo { order: -1; }
  .about-block { padding: 3.5rem 4%; }
  .check-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-approach { padding: 4rem 4%; }

  .contact-section { padding: 5rem 4% 4rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 4%; }
}
