/* ============================================================
   INFINITY WELLBEING AND COACHING — style.css
   Private Sessions page
   Shared design system + page-specific styles
   Breakpoints: Mobile < 768px | Tablet 768–1199px | Desktop 1200px+
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --teal:       #2a7f8f;
  --teal-dark:  #1e5f6e;
  --teal-deep:  #163f4a;
  --navy:       #1c3645;
  --amber:      #e8a020;
  --amber-lt:   #f5b840;
  --off-white:  #f7f5f2;
  --white:      #ffffff;
  --text:       #1e2d35;
  --text-mid:   #4a5f6a;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --page-pad:   60px;
  --nav-h:      66px;
  --section-v:  96px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--off-white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-amber, .btn-teal, .btn-white, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap; min-height: 48px;
}
.btn-amber  { background: var(--amber);  color: var(--navy);      border-color: var(--amber);  }
.btn-amber:hover  { background: var(--amber-lt); border-color: var(--amber-lt); transform: translateY(-1px); }
.btn-teal   { background: var(--teal);   color: var(--white);     border-color: var(--teal);   }
.btn-teal:hover   { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-white  { background: var(--white);  color: var(--teal-dark); border-color: var(--white);  }
.btn-white:hover  { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-amber svg, .btn-teal svg, .btn-white svg, .btn-outline svg { width: 14px; height: 14px; flex-shrink: 0; }

.eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 12px; }
.eyebrow-light { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.required { color: var(--teal); font-weight: 700; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 13px; height: 13px; fill: var(--amber); stroke: none; }

/* ============================================================
   NAVIGATION — shared
   ============================================================ */
#main-nav { position: sticky; top: 0; z-index: 200; background: rgba(247,245,242,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(42,127,143,0.13); padding: 0 var(--page-pad); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark { width: 40px; height: 40px; background: var(--off); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark svg { width: 24px; height: 15px; }
.nav-brand-name { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.25; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-item > a, .nav-links > li > a { display: flex; align-items: center; gap: 4px; font-size: 13.5px; font-weight: 400; color: var(--text-mid); text-decoration: none; transition: color 0.2s; padding: 8px 12px; border-radius: 5px; min-height: 44px; }
.nav-item > a:hover, .nav-links > li > a:hover { color: var(--teal); background: rgba(42,127,143,0.05); }
.nav-active { color: var(--teal) !important; font-weight: 500 !important; }
.nav-link-dropdown { cursor: pointer; }
.nav-chevron { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid rgba(42,127,143,0.15); border-radius: 8px; box-shadow: 0 8px 28px rgba(28,54,69,0.12); padding: 6px; min-width: 220px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s; z-index: 50; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown li a { display: flex; align-items: center; font-size: 13px; color: var(--text-mid); text-decoration: none; padding: 9px 14px; border-radius: 5px; transition: background 0.15s, color 0.15s; min-height: 40px; }
.nav-dropdown li a:hover, .nav-dropdown li a[aria-current="page"] { background: rgba(42,127,143,0.07); color: var(--teal); }
.nav-cta { display: inline-flex; align-items: center; background: var(--amber) !important; color: var(--navy) !important; padding: 9px 18px; border-radius: 5px; font-weight: 600 !important; font-size: 13.5px; min-height: 40px; margin-left: 8px; transition: background 0.2s !important; text-decoration: none; }
.nav-cta:hover { background: var(--amber-lt) !important; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; width: 44px; height: 44px; border-radius: 6px; transition: background 0.2s; }
.nav-hamburger:hover { background: rgba(42,127,143,0.08); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--navy); z-index: 300; padding: 20px 24px 32px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { align-self: flex-end; background: rgba(255,255,255,0.08); border: none; border-radius: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: rgba(255,255,255,0.7); transition: background 0.2s; margin-bottom: 24px; flex-shrink: 0; }
.mobile-menu-close:hover { background: rgba(255,255,255,0.14); color: white; }
.mobile-nav-group-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); padding: 12px 0 6px; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 4px; }
.mobile-menu nav > ul > li:first-child .mobile-nav-group-label { border-top: none; margin-top: 0; }
.mobile-nav-sub li a { display: flex; align-items: center; font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none; padding: 10px 12px; border-radius: 6px; min-height: 44px; transition: background 0.15s, color 0.15s; }
.mobile-nav-sub li a:hover { background: rgba(255,255,255,0.06); color: white; }
.mobile-nav-single { display: flex; align-items: center; font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.07); min-height: 48px; transition: color 0.2s; margin-top: 4px; }
.mobile-nav-single:hover { color: white; }
.mobile-menu-cta { display: flex; align-items: center; justify-content: center; background: var(--amber); color: var(--navy); font-size: 15px; font-weight: 700; padding: 16px 24px; border-radius: 8px; text-decoration: none; text-align: center; min-height: 54px; transition: background 0.2s; margin-top: 24px; margin-bottom: 12px; }
.mobile-menu-cta:hover { background: var(--amber-lt); }
.mobile-menu-phone { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; min-height: 40px; transition: color 0.2s; }
.mobile-menu-phone:hover { color: rgba(255,255,255,0.75); }
.mobile-menu-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 290; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── CTA BAND — shared ──────────────────────────────────────── */
.cta-band { background: var(--teal); padding: 68px var(--page-pad); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.cta-band p { font-size: 14.5px; color: rgba(255,255,255,0.75); max-width: 500px; }
.cta-side { flex-shrink: 0; }

/* ── FOOTER — shared ────────────────────────────────────────── */
footer { background: var(--navy); }
.footer-teal-rule { height: 3px; background: var(--teal); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 52px var(--page-pad) 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); }
.footer-logo-mark svg { width: 20px; height: 13px; }
.footer-brand-name { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.3; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 20px; max-width: 360px; }
.footer-nap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-nap-item { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; line-height: 1.5; transition: color 0.2s; min-height: 36px; }
.footer-nap-item:hover { color: rgba(255,255,255,0.85); }
.footer-nap-item svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-creds { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-cred { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; }
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; padding-top: 4px; }
.footer-col h4 { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col a { font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; min-height: 36px; }
.footer-col a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px var(--page-pad) 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── PAGE-SPECIFIC STYLES ──────────────────────────── */
      :root {
        --teal:      #2a7f8f;
        --teal-dark: #1e5f6e;
        --navy:      #1c3645;
        --amber:     #e8a020;
        --off-white: #f7f5f2;
        --white:     #ffffff;
        --text:      #1e2d35;
        --text-mid:  #4a5f6a;
        --serif:     'Playfair Display', Georgia, serif;
        --sans:      'DM Sans', system-ui, sans-serif;
        --page-pad:  60px;
      }

      .dpp-hero {
        background: var(--white);
        padding: 72px var(--page-pad) 64px;
        border-bottom: 1px solid rgba(42,127,143,0.1);
      }

      .dpp-hero-inner {
        max-width: 760px;
      }

      .dpp-eyebrow {
        display: block;
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 14px;
      }

      .dpp-h1 {
        font-family: var(--serif);
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.1;
        margin-bottom: 18px;
      }

      .dpp-intro {
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-mid);
        max-width: 600px;
      }

      /* ── DOCUMENTS SECTION ─────────────────────────────── */
      .dpp-documents {
        background: var(--off-white);
        padding: 72px var(--page-pad) 96px;
      }

      .dpp-documents-inner {
        max-width: 760px;
      }

      .dpp-section-label {
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--teal);
        display: block;
        margin-bottom: 28px;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(42,127,143,0.15);
      }

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

      .dpp-list-item a {
        display: flex;
        align-items: center;
        gap: 16px;
        background: var(--white);
        border: 1.5px solid rgba(42,127,143,0.12);
        border-radius: 10px;
        padding: 18px 22px;
        text-decoration: none;
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
        min-height: 72px;
      }

      .dpp-list-item a:hover {
        border-color: var(--teal);
        box-shadow: 0 4px 18px rgba(42,127,143,0.12);
        transform: translateX(3px);
      }

      .dpp-doc-icon {
        width: 40px;
        height: 40px;
        background: rgba(42,127,143,0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s;
      }

      .dpp-list-item a:hover .dpp-doc-icon {
        background: rgba(42,127,143,0.15);
      }

      .dpp-doc-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--teal);
        fill: none;
        flex-shrink: 0;
      }

      .dpp-doc-text {
        flex: 1;
        min-width: 0;
      }

      .dpp-doc-name {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.3;
        margin-bottom: 2px;
      }

      .dpp-doc-type {
        display: block;
        font-size: 11.5px;
        color: var(--text-mid);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 500;
      }

      .dpp-doc-arrow {
        width: 16px;
        height: 16px;
        stroke: var(--teal);
        fill: none;
        flex-shrink: 0;
        opacity: 0.5;
        transition: opacity 0.2s, transform 0.2s;
      }

      .dpp-list-item a:hover .dpp-doc-arrow {
        opacity: 1;
        transform: translateX(3px);
      }

      /* Contact nudge */
      .dpp-contact-nudge {
        margin-top: 48px;
        padding: 22px 24px;
        background: rgba(42,127,143,0.07);
        border: 1px solid rgba(42,127,143,0.18);
        border-left: 4px solid var(--teal);
        border-radius: 0 8px 8px 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--text-mid);
      }

      .dpp-contact-nudge a {
        color: var(--teal);
        font-weight: 600;
        text-decoration: none;
      }

      .dpp-contact-nudge a:hover {
        color: var(--teal-dark);
        text-decoration: underline;
      }

      /* ── RESPONSIVE ────────────────────────────────────── */
      @media (max-width: 1199px) {
        :root { --page-pad: 40px; }
      }

      @media (max-width: 767px) {
        :root { --page-pad: 20px; }

        .dpp-hero { padding: 48px var(--page-pad) 40px; }
        .dpp-documents { padding: 52px var(--page-pad) 72px; }

        .dpp-list-item a {
          padding: 14px 16px;
          gap: 12px;
        }

        .dpp-doc-icon { width: 36px; height: 36px; }
        .dpp-doc-icon svg { width: 18px; height: 18px; }
        .dpp-doc-name { font-size: 14px; }
      }

/* ============================================================
   RESPONSIVE — TABLET (768–1199px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --page-pad: 40px; --nav-h: 62px; --section-v: 72px; }

  .nav-brand-name { font-size: 13px; }
  .nav-links { gap: 2px; }
  .nav-item > a, .nav-links > li > a { padding: 8px 10px; font-size: 13px; }

  /* Contact */
  .cw-contact-inner { gap: 48px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-tagline { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --page-pad: 20px; --nav-h: 58px; --section-v: 56px; }

  /* ── NAV ────────────────────────────────────── */
  #main-nav { padding: 0 var(--page-pad); }
  .nav-brand-name { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── CTA BAND ───────────────────────────────── */
  .cta-band { grid-template-columns: 1fr; padding: 52px var(--page-pad); gap: 24px; text-align: center; }
  .cta-band p { max-width: 100%; }
  .cta-side { display: flex; justify-content: center; }
  .cta-side .btn-white { width: 100%; justify-content: center; max-width: 320px; }

  /* ── FOOTER ─────────────────────────────────── */
  .footer-main { padding: 44px var(--page-pad) 36px; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-nav-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-creds { gap: 5px; }
  .footer-bottom { padding: 16px var(--page-pad) 24px; }
}

/* ── TINY SCREENS ───────────────────────────────────────────── */
@media (max-width: 389px) {
  .cw-hero-h1 { font-size: 26px; }
}
