/* ====================================================
   BubbieCare — Shared Site Styles
   CSS variables, base, buttons, nav, mobile menu, reveal
   ==================================================== */

/* =====================================================
       DESIGN 4 — SERENE / EDITORIAL HOMEPAGE
       BubbieCare palette, muted where noted.
       Inspired by warm editorial lifestyle sites.
       Marcia font → using Cormorant Garamond italic as stand-in.
       Replace font-family: 'Cormorant Garamond' with 'Marcia'
       once font files are embedded via @font-face.
    ===================================================== */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: #fff9e9;
      color: #103e54;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── TOKENS ─────────────────────────────────────── */
    :root {
      --orange:       #f16a33;
      --orange-muted: #f5956a;   /* slightly softer for backgrounds */
      --orange-pale:  #fdeee6;   /* very light tint */
      --teal:         #103e54;
      --teal-mid:     #1a5470;
      --teal-light:   #e6f0f4;   /* section bg variant */
      --cream:        #fff9e9;
      --cream-warm:   #fdf3e7;   /* slightly warmer than cream */
      --mint:         #98d6cc;
      --mint-muted:   #b8ddd9;
      --white:        #ffffff;
      --body-text:    #4a5568;
      --gray:         #6b7280;
      --radius:       14px;
      --radius-lg:    28px;
      --shadow:       0 4px 28px rgba(16,62,84,0.08);
      --shadow-lg:    0 16px 56px rgba(16,62,84,0.14);
      --ease:         all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --max-w:        1220px;
    }

    /* ── TYPE ───────────────────────────────────────── */
    .display {
      font-family: 'Cormorant Garamond', serif; /* → Marcia */
      font-style: italic;
      font-weight: 600;
      line-height: 1.1;
    }
    h1,h2,h3,h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      line-height: 1.15;
      color: var(--teal);
    }
    p { color: var(--body-text); line-height: 1.85; font-size: 1.125rem; }
    .eyebrow {
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 16px;
    }
    .eyebrow.light { color: var(--mint-muted); }
    .eyebrow.muted { font-size: 1rem; color: var(--teal); opacity: 0.55; letter-spacing: 0.06em; text-transform: none; font-weight: 700; }

    /* ── LAYOUT ─────────────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
    section { padding: 100px 0; }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

    /* ── BUTTONS ─────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 16px 36px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
      font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
      border: 2px solid transparent; transition: var(--ease); white-space: nowrap;
    }
    .btn-primary { background: var(--orange); color: white; box-shadow: 0 6px 28px rgba(241,106,51,0.3); }
    .btn-primary:hover { background: #d95a22; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(241,106,51,0.4); }
    .btn-outline { background: transparent; color: var(--teal); border-color: rgba(16,62,84,0.25); }
    .btn-outline:hover { border-color: var(--teal); background: var(--teal); color: white; }
    .btn-white { background: white; color: var(--teal); }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
    .btn-outline-white:hover { background: white; color: var(--teal); border-color: white; }
    .btn-lg { padding: 18px 44px; font-size: 0.82rem; }

    /* ── IMAGE PLACEHOLDERS ─────────────────────────── */
    .ph {
      background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream-warm) 100%);
      border: 2px dashed rgba(16,62,84,0.18);
      border-radius: var(--radius-lg);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      text-align: center; padding: 32px 24px;
    }
    .ph-icon { font-size: 1.75rem; opacity: 0.35; margin-bottom: 10px; }
    .ph-tag {
      font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 0.16em; color: rgba(16,62,84,0.35); margin-bottom: 10px;
    }
    .ph-prompt {
      font-size: 0.75rem; color: rgba(16,62,84,0.45); font-style: italic;
      line-height: 1.6; max-width: 280px;
    }
    .ph-prompt strong { font-style: normal; font-weight: 700; color: rgba(16,62,84,0.55); display: block; margin-bottom: 4px; }

    /* ── REVEAL ANIMATION ───────────────────────────── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════════════════════
       UTILITY BAR
    ══════════════════════════════════════════════════ */
    .utility-bar {
      background: var(--teal);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .utility-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
      height: 42px; display: flex; align-items: center;
      justify-content: flex-end; gap: 16px;
    }
    .utility-phone {
      font-size: 0.78rem; font-weight: 700;
      color: rgba(255,255,255,0.7);
    }
    .utility-phone a { color: rgba(255,255,255,0.7); transition: var(--ease); }
    .utility-phone a:hover { color: white; }
    .util-sep {
      display: inline-block; width: 1px; height: 14px;
      background: rgba(255,255,255,0.22); vertical-align: middle;
    }
    .btn-util-outline {
      background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.35);
      padding: 5px 18px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.09em; text-transform: uppercase;
      transition: var(--ease); white-space: nowrap;
    }
    .btn-util-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
    .btn-util-primary {
      background: var(--orange); color: white;
      border: 1.5px solid transparent;
      padding: 5px 18px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.09em; text-transform: uppercase;
      transition: var(--ease); white-space: nowrap;
    }
    .btn-util-primary:hover { background: #d95a22; }
    @media (max-width: 768px) { .utility-bar { display: none; } }

    /* ══════════════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════════════ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,249,233,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(16,62,84,0.07);
      transition: var(--ease);
      display: flex; flex-direction: column;
    }
    .navbar.scrolled { box-shadow: 0 2px 28px rgba(16,62,84,0.09); }
    .nav-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
      height: 78px; display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }
    .nav-logo img { height: 40px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      padding: 8px 13px; font-size: 0.8rem; font-weight: 700;
      color: var(--teal); border-radius: 8px; transition: var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--orange); }
    /* NAV DROPDOWN */
    .nav-item-drop { position: relative; }
    .nav-drop-trigger {
      padding: 8px 13px; font-size: 0.8rem; font-weight: 700;
      color: var(--teal); border-radius: 8px; transition: var(--ease);
      display: flex; align-items: center; gap: 5px; cursor: default;
      user-select: none;
    }
    .nav-drop-trigger:hover, .nav-drop-trigger.active { color: var(--orange); }
    .nav-caret { font-size: 0.58rem; transition: transform 0.2s ease; display: inline-block; }
    .nav-item-drop:hover .nav-caret { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute; top: 100%; left: 0;
      background: white; border-radius: var(--radius);
      box-shadow: 0 16px 56px rgba(16,62,84,0.14); min-width: 172px;
      opacity: 0; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      border: 1px solid rgba(16,62,84,0.08);
      padding: 8px 0; z-index: 200;
    }
    .nav-item-drop:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .nav-dropdown a {
      display: block; padding: 11px 20px;
      font-size: 0.8rem; font-weight: 700; color: var(--teal);
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-dropdown a:hover { color: var(--orange); background: #fff9e9; }
    .nav-dropdown a.active { color: var(--orange); }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-phone { font-size: 0.82rem; font-weight: 700; color: var(--teal); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; padding: 8px; cursor: pointer; z-index: 1001;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: var(--ease); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      position: fixed; inset: 0; background: var(--teal); z-index: 999;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
      transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a { font-size: 1.4rem; font-weight: 800; color: white; transition: var(--ease); }
    .mobile-menu a:hover { color: var(--orange); }
    .mobile-menu .m-phone { font-size: 1.1rem; font-weight: 700; color: var(--mint-muted); margin-top: 8px; }
    /* MOBILE ACCORDION */
    .m-accordion { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .m-accord-trigger {
      background: none; border: none; cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800;
      color: white; display: flex; align-items: center; gap: 10px;
      transition: color 0.35s cubic-bezier(0.4,0,0.2,1); padding: 0;
    }
    .m-accord-trigger:hover,
    .m-accord-trigger[aria-expanded="true"] { color: var(--orange); }
    .m-accord-caret { font-size: 0.85rem; transition: transform 0.3s ease; display: inline-block; }
    .m-accord-trigger[aria-expanded="true"] .m-accord-caret { transform: rotate(180deg); }
    .m-accord-panel {
      display: flex; flex-direction: column; align-items: center; gap: 18px;
      padding-top: 14px; width: 100%;
    }
    .m-accord-panel[hidden] { display: none; }
    .m-accord-panel a { font-size: 1.15rem !important; color: var(--mint-muted) !important; }
    .m-accord-panel a:hover { color: var(--orange) !important; }

    /* ══════════════════════════════════════════════════
