/* ============================================================
   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-white); 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: PRIVATE SESSIONS — HERO
   ============================================================ */
.ps-hero {
  background: var(--white);
  padding: 72px var(--page-pad) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ps-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.12;
  color: var(--navy); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards;
}

.ps-hero-body {
  font-size: 15px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.6s 0.3s ease forwards;
}

.ps-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  opacity: 0; animation: fadeUp 0.6s 0.45s ease forwards;
}

/* Hero 2×2 mosaic */
.ps-hero-images {
  opacity: 0; animation: fadeIn 0.9s 0.5s ease forwards;
}

.ps-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 460px;
}

.ps-mosaic-item { border-radius: 10px; overflow: hidden; }
.ps-mosaic-item img { width: 100%; height: 100%; object-fit: cover; }
.ps-mosaic-item:first-child { border-radius: 14px 4px 4px 4px; }
.ps-mosaic-item:nth-child(2) { border-radius: 4px 14px 4px 4px; }
.ps-mosaic-item:nth-child(3) { border-radius: 4px 4px 4px 14px; }
.ps-mosaic-item:last-child  { border-radius: 4px 4px 14px 4px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.ps-testimonials {
  background: var(--navy);
  padding: 60px var(--page-pad);
  position: relative; overflow: hidden;
}
.ps-testimonials::before { content: '\201C'; position: absolute; top: -30px; left: 36px; font-family: var(--serif); font-size: 220px; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }
.ps-t-head { text-align: center; margin-bottom: 36px; }
.ps-t-head h2 { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: var(--white); }
.ps-t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ps-t-card { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px 20px; transition: background 0.2s; }
.ps-t-card:hover { background: rgba(255,255,255,0.085); }
.ps-t-card--highlight { background: var(--teal); border-color: var(--teal); }
.ps-t-quote { font-family: var(--serif); font-size: 13px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.92); margin-bottom: 12px; }
.ps-t-who { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-lt); }

/* ── PAIN POINTS ──────────────────────────────────────────── */
.ps-pain {
  background: var(--off-white);
  padding: var(--section-v) var(--page-pad);
}
.ps-pain-inner { max-width: 900px; }
.ps-pain-header { margin-bottom: 40px; }
.ps-pain-header h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.2; }
.ps-pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.ps-pain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(42,127,143,0.1);
  font-size: 14px; line-height: 1.5; color: var(--text);
  transition: box-shadow 0.2s;
}
.ps-pain-list li:hover { box-shadow: 0 4px 16px rgba(28,54,69,0.08); }
.ps-pain-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--amber); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; font-family: var(--serif);
}

/* ── MID-PAGE CTA ─────────────────────────────────────────── */
.ps-mid-cta {
  background: var(--teal);
  padding: 64px var(--page-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.ps-mid-cta-text h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.ps-mid-cta-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
.ps-mid-cta-image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.ps-mid-cta-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── SHARED SPLIT ─────────────────────────────────────────── */
.ps-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  padding: var(--section-v) var(--page-pad);
}
.ps-feeling { background: var(--white); }
.ps-session { background: var(--off-white); }
.ps-split-text h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 18px; }
.ps-split-text p { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }
.ps-split-text p:last-child { margin-bottom: 0; }
.ps-split-image img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; box-shadow: 0 12px 40px rgba(28,54,69,0.12); }

/* Inline CTA within feeling section */
.ps-inline-cta { background: rgba(42,127,143,0.06); border: 1px solid rgba(42,127,143,0.18); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; padding: 20px 22px; margin-top: 24px; }
.ps-inline-cta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.ps-inline-cta p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px !important; }
.ps-inline-cta .btn-teal { font-size: 13px; padding: 11px 22px; min-height: 44px; }

/* ── WELLBEING BALANCE ────────────────────────────────────── */
.ps-balance {
  background: var(--white);
  padding: var(--section-v) var(--page-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ps-balance-text h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.ps-balance-text > p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; }
.ps-elements { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.ps-elements li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--navy); }
.ps-element-badge {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: var(--serif);
}
.ps-element-badge--amber { background: var(--amber); color: var(--navy); }
.ps-balance-note { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; padding: 14px 18px; background: rgba(42,127,143,0.05); border-left: 3px solid var(--teal); border-radius: 0 6px 6px 0; }
.ps-balance-images { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; height: 440px; }
.ps-balance-img { border-radius: 10px; overflow: hidden; }
.ps-balance-img img { width: 100%; height: 100%; object-fit: cover; }
.ps-balance-img--top  { border-radius: 12px 12px 4px 12px; }
.ps-balance-img--bottom { border-radius: 4px 12px 12px 12px; }

/* ── TAILORED SECTION (navy full-width) ───────────────────── */
.ps-tailored {
  background: var(--navy);
  padding: 72px var(--page-pad);
  position: relative; overflow: hidden;
}
.ps-tailored::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,127,143,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.ps-tailored-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.ps-tailored-inner h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.ps-tailored-inner p { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.ps-tailored-inner p:last-child { margin-bottom: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.ps-faq {
  background: var(--off-white);
  padding: var(--section-v) var(--page-pad);
}
.ps-faq-inner { max-width: 800px; }
.ps-faq-inner h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 36px; }
.ps-faq-list { display: flex; flex-direction: column; gap: 0; }

.ps-faq-item {
  border-bottom: 1px solid rgba(42,127,143,0.15);
}
.ps-faq-item:first-child { border-top: 1px solid rgba(42,127,143,0.15); }

.ps-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4;
  min-height: 60px;
  transition: color 0.2s;
}
.ps-faq-q::-webkit-details-marker { display: none; }
.ps-faq-q:hover { color: var(--teal); }

.ps-faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--teal); transition: transform 0.25s ease;
}

details[open] .ps-faq-icon { transform: rotate(180deg); }
details[open] .ps-faq-q { color: var(--teal); }

.ps-faq-a {
  padding: 0 0 20px;
}
.ps-faq-a p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.ps-contact { background: var(--white); padding: var(--section-v) var(--page-pad); }
.ps-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ps-contact-form-col h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.ps-contact-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.ps-form { display: flex; flex-direction: column; gap: 16px; }
.ps-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ps-form-group { display: flex; flex-direction: column; gap: 6px; }
.ps-form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.ps-form-group input, .ps-form-group textarea { font-family: var(--sans); font-size: 14px; color: var(--text); background: var(--off-white); border: 1.5px solid rgba(42,127,143,0.2); border-radius: 6px; padding: 12px 16px; min-height: 48px; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical; }
.ps-form-group input:focus, .ps-form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,127,143,0.1); background: var(--white); }
.ps-form-group textarea { min-height: 130px; }
.ps-form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.ps-contact-info-col {}
.ps-address { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ps-address-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.ps-address-item svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; margin-top: 2px; fill: none; }
.ps-address-item a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
.ps-address-item a:hover { color: var(--teal-dark); }
.ps-map { border-radius: 10px; overflow: hidden; border: 1px solid rgba(42,127,143,0.15); }

/* ============================================================
   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; }
  .ps-hero { gap: 44px; }
  .ps-hero-mosaic { height: 380px; }
  .ps-t-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ps-pain-list { grid-template-columns: 1fr; gap: 10px; }
  .ps-mid-cta { gap: 40px; }
  .ps-split { gap: 48px; }
  .ps-balance { gap: 48px; }
  .ps-balance-images { height: 360px; }
  .ps-contact-inner { gap: 48px; }
  .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; }

  /* Hero */
  .ps-hero { grid-template-columns: 1fr; gap: 28px; padding: 44px var(--page-pad) 36px; }
  .ps-hero-images { order: -1; }
  .ps-hero-mosaic { height: 220px; }
  .ps-hero-actions { flex-direction: column; }
  .ps-hero-actions .btn-amber,
  .ps-hero-actions .btn-outline { width: 100%; justify-content: center; }

  /* Testimonials */
  .ps-testimonials { padding: 44px var(--page-pad); }
  .ps-t-grid { grid-template-columns: 1fr; gap: 14px; }
  .ps-t-quote { font-size: 13px; }

  /* Pain points */
  .ps-pain { padding: var(--section-v) var(--page-pad); }
  .ps-pain-list { grid-template-columns: 1fr; gap: 10px; }
  .ps-pain-list li { padding: 12px 14px; }

  /* Mid CTA */
  .ps-mid-cta { grid-template-columns: 1fr; gap: 28px; padding: 48px var(--page-pad); }
  .ps-mid-cta-image { display: none; }
  .ps-mid-cta-text .btn-amber { width: 100%; justify-content: center; }

  /* Splits */
  .ps-split { grid-template-columns: 1fr; gap: 28px; }
  .ps-split-text h2 { font-size: clamp(22px, 7vw, 28px); }
  .ps-split-image img { aspect-ratio: 16/9; max-height: 240px; border-radius: 10px; }

  /* Balance section */
  .ps-balance { grid-template-columns: 1fr; gap: 28px; }
  .ps-balance-images { height: auto; grid-template-rows: auto; grid-template-columns: 1fr 1fr; gap: 10px; }
  .ps-balance-img { height: 150px; }
  .ps-balance-img img { height: 100%; }
  .ps-balance-img--top, .ps-balance-img--bottom { border-radius: 10px; }

  /* Tailored */
  .ps-tailored { padding: 52px var(--page-pad); }
  .ps-tailored-inner { text-align: left; }

  /* FAQ */
  .ps-faq { padding: var(--section-v) var(--page-pad); }
  .ps-faq-q { font-size: 14px; }

  /* Contact */
  .ps-contact { padding: var(--section-v) var(--page-pad); }
  .ps-contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .ps-form-row { grid-template-columns: 1fr; gap: 16px; }
  .ps-form-submit { width: 100%; justify-content: center; }
  .ps-map { display: none; }

  /* 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; }
}

@media (max-width: 389px) {
  .ps-hero-h1 { font-size: 26px; }
  .ps-hero-mosaic { height: 180px; }
}
