/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   MMA — Manika Mohnot & Associates
   Shared Stylesheet  |  styles.css
   ============================================================
   TABLE OF CONTENTS
   1.  CSS Variables (Theme Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Helpers
   5.  Eyebrow Label
   6.  Buttons
   7.  Cards
   8.  Tags / Pills
   9.  Icon Boxes
   10. Divider
   11. Navbar
   12. Mobile Menu
   13. Footer
   14. Page Hero (inner pages)
   15. Grid Helpers
   16. Section Themes
   17. Hero Pattern
   18. Stats Bar
   19. Process Steps
   20. Quote Card
   21. Check List
   22. Contact Form
   23. Scroll Animations
   24. Responsive / Media Queries
   ============================================================ */


/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #f7f4ee;
  --bg-alt:       #eeeae0;
  --surface:      #ffffff;

  /* Brand Palette */
  --navy:         #14213d;
  --blue:         #2154a8;
  --blue-light:   #3a74d4;
  --gold:         #b8862a;
  --gold-light:   #d4a84b;
  --gold-pale:    #f5e9cc;
  --gold-glow:    rgba(184, 134, 42, 0.15);

  /* Text */
  --text:         #1a2540;
  --text-mid:     #4a5568;
  --text-light:   #8a96a8;
  --white:        #ffffff;

  /* UI */
  --border:       #ddd8cc;

  /* Border Radius */
  --r-sm:         4px;
  --r-md:         10px;
  --r-lg:         16px;

  /* Transitions */
  --ease:         0.26s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(20, 33, 61, 0.08);
  --shadow-md:    0 8px 32px rgba(20, 33, 61, 0.12);
  --shadow-lg:    0 20px 60px rgba(20, 33, 61, 0.16);
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold); }

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


/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem);  letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw,   1.5rem); }

p {
  color: var(--text-mid);
}


/* ── 4. LAYOUT HELPERS ────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}


/* ── 5. EYEBROW LABEL ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}


/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.8rem;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}


/* ── 7. CARDS ─────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Gold-to-blue underline that animates on hover */
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}

.card:hover::after {
  transform: scaleX(1);
}


/* ── 8. TAGS / PILLS ──────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(33, 84, 168, 0.08);
  border: 1px solid rgba(33, 84, 168, 0.2);
  border-radius: 20px;
  padding: 0.18rem 0.65rem;
  margin: 0.15rem 0.1rem 0 0;
}


/* ── 9. ICON BOXES ────────────────────────────────────────── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.icon-box-gold {
  background: var(--gold-pale);
  border: 1.5px solid rgba(184, 134, 42, 0.3);
}

.icon-box-blue {
  background: rgba(33, 84, 168, 0.08);
  border: 1.5px solid rgba(33, 84, 168, 0.2);
}


/* ── 10. DIVIDER ──────────────────────────────────────────── */
.div-gold {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}

.gold-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}


/* ── 11. NAVBAR ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(247, 244, 238, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nb img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.nl {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nl a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.nl a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--ease);
}

.nl a:hover,
.nl a.act {
  color: var(--navy);
}

.nl a:hover::after,
.nl a.act::after {
  width: 100%;
}

.nb-tog {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nb-tog span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
  transition: var(--ease);
}


/* ── 12. MOBILE MENU ──────────────────────────────────────── */
#mob-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(247, 244, 238, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-md);
}

#mob-menu.open {
  display: flex;
}

#mob-menu a {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

#mob-menu a:last-child {
  border-bottom: none;
}


/* ── 13. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 0 2rem;
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.fc p,
.fc ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.fc ul {
  list-style: none;
}

.fc ul li {
  margin-bottom: 0.55rem;
}

.fc ul li a,
.fc a {
  transition: var(--ease);
}

.fc ul li a:hover,
.fc a:hover {
  color: var(--gold-light);
}

.fb {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ── 14. PAGE HERO (inner pages) ──────────────────────────── */
.pg-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--bg) 100%);
  overflow: hidden;
}

.pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(33, 84, 168, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(184, 134, 42, 0.08) 0%, transparent 50%);
  pointer-events: none;
}


/* ── 15. GRID HELPERS ─────────────────────────────────────── */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}


/* ── 16. SECTION THEMES ───────────────────────────────────── */
.section-navy {
  background: var(--navy);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy p {
  color: rgba(255, 255, 255, 0.55);
}

.section-navy .eyebrow {
  color: var(--gold-light);
}

.section-navy .eyebrow::before {
  background: var(--gold-light);
}

.section-alt {
  background: var(--bg-alt);
}


/* ── 17. HERO PATTERN ─────────────────────────────────────── */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 42, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}


/* ── 18. STATS BAR ────────────────────────────────────────── */
.stat-item {
  text-align: center;
  padding: 1.8rem 1rem;
  border-right: 1px solid var(--border);
}

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

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}


/* ── 19. PROCESS STEPS ────────────────────────────────────── */
.proc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: monospace;
  margin: 0 auto 1.1rem;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}


/* ── 20. QUOTE CARD ───────────────────────────────────────── */
.quote-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}


/* ── 21. CHECK LIST ───────────────────────────────────────── */
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.93rem;
}

.check-item::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}


/* ── 22. CONTACT FORM ─────────────────────────────────────── */
.cg {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

.fg-group {
  margin-bottom: 1.3rem;
}

.fg-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.42rem;
}

.fg-group input,
.fg-group textarea,
.fg-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: var(--ease);
}

.fg-group input:focus,
.fg-group textarea:focus,
.fg-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.fg-group textarea {
  min-height: 130px;
  resize: vertical;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.7rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.12rem;
}

.ci-text p {
  font-size: 0.95rem;
  color: var(--text);
}


/* ── 23. SCROLL ANIMATIONS ────────────────────────────────── */
.an {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.an.vis {
  opacity: 1;
  transform: translateY(0);
}


/* ── 24. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .g3            { grid-template-columns: repeat(2, 1fr); }
  .fg            { grid-template-columns: 1fr 1fr; }
  #floating-card { display: none; }
  #why-grid      { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

@media (max-width: 640px) {
  .g3, .g2, .cg  { grid-template-columns: 1fr; }
  .fg             { grid-template-columns: 1fr; }
  section         { padding: 4rem 0; }

  #stats-row      { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item      { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  #navbar         { padding: 0.9rem 1.2rem; }
  .nl,
  .nb-cta-wrap    { display: none !important; }
  .nb-tog         { display: flex !important; }

  .fb             { flex-direction: column; gap: 0.5rem; text-align: center; }
}
