/* ============================================================
   THE ELEVATING COACH — Global Stylesheet v2 (QA-fixed)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

/* ── tokens — Violet Tide palette ── */
:root {
  /* Structural */
  --ink:    #1E1B3A;   /* deep indigo — dark sections, nav */
  --ink-mid:#2E2A52;   /* violet mid — mid-dark sections  */
  --paper:  #F4F3FA;   /* lavender fog — light bg          */
  --mist:   #E8E6F5;   /* violet mist — tint bg, dividers  */
  --white:  #FFFFFF;

  /* Accent system */
  --accent:     #5EC4B0;  /* seafoam — primary bold accent (CTAs, highlights) */
  --accent-dark:#3A9E8D;  /* seafoam dark — hover states                      */
  --warm:       #F2A63A;  /* amber — secondary warmth, stars, trust numbers    */

  /* Text */
  --sage:   #7A7A9D;   /* muted violet-grey — body secondary text */
  --text:   #1E1B3A;   /* same as ink for on-light-bg body text   */

  /* Legacy aliases so existing references keep working */
  --coral:  var(--accent);
  --gold:   var(--warm);
  --teal:   var(--ink-mid);

  --display: 'Clash Display', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --max: 1200px;
  --radius: 6px;
  --radius-lg: 14px;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── skip link (a11y) ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: var(--ink);
  padding: .65rem 1.2rem; border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--display); font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  z-index: 999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── utilities ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .8rem; /* FIX: was .72rem — bumped for mobile legibility */
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── buttons — all min 44px height for mobile ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 2rem; /* FIX: was .85rem — ensures 44px+ tap height */
  min-height: 44px; /* explicit minimum */
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(94,196,176,.45); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 14px 32px -8px rgba(94,196,176,.55); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #222; }
.btn-ghost { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-ghost:hover { background: var(--coral); color: var(--white); }

/* ── nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(30,27,58,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: .65rem var(--pad);
}
.nav-logo {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: .01em; color: var(--white);
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span {
  font-size: .68rem; /* FIX: was .6rem */
  font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral);
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .83rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s; position: relative;
  padding: .5rem 0; /* FIX: increase vertical tap area on desktop */
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1.5px; background: var(--coral); transition: right .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; border-radius: 2px; }
.nav-book { margin-left: .5rem; }

/* ── hamburger: 44×44px tap target ── */
.menu-btn {
  display: none;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; /* FIX: explicit 44px tap target */
  border-radius: var(--radius);
  padding: 0;
  flex-shrink: 0;
}
.menu-btn:focus-visible { outline: 2px solid var(--coral); }
.menu-btn-inner { display: flex; flex-direction: column; gap: 5px; }
.menu-btn span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── mobile nav drawer — slide in from right with animation ── */
.nav-drawer {
  display: flex; /* always flex — visibility controlled by transform */
  flex-direction: column; align-items: flex-start; justify-content: center;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--ink);
  padding: 5rem var(--pad) var(--pad);
  gap: .25rem;
  /* FIX: slide animation instead of display:none snap */
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); pointer-events: auto; }
.nav-drawer a {
  font-family: var(--display);
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -.01em; opacity: .85;
  transition: opacity .2s, color .2s;
  padding: .5rem 0; /* tap target height */
  display: block; width: 100%;
}
.nav-drawer a:hover { opacity: 1; color: var(--coral); }
.nav-drawer a:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }
.nav-drawer .drawer-cta { margin-top: 1.5rem; opacity: 1; }
.nav-drawer-divider { width: 40px; height: 2px; background: rgba(255,255,255,.12); margin: .75rem 0; }

/* ── hero ── */
.hero {
  background: var(--ink); min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem var(--pad) 5rem;
}
.hero-bg-noise {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 85% 50%, rgba(242,166,58,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(46,42,82,.65) 0%, transparent 70%);
}
.hero-slash {
  position: absolute; right: -4%; top: -10%; bottom: -10%;
  width: 55%; z-index: 1;
  background: var(--ink-mid);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-slash img { width: 100%; height: 100%; object-fit: cover; opacity: .35; mix-blend-mode: luminosity; }
.hero-slash-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,27,58,.75) 0%, rgba(46,42,82,.2) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 600px; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: .97;
  letter-spacing: -.03em; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: var(--coral); }
.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,.7); max-width: 48ch;
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
}
.hero-trust-item { display: flex; align-items: center; gap: .5rem; }
.hero-trust-item strong { font-family: var(--display); font-size: 1.35rem; font-weight: 700; color: var(--white); }
.hero-trust-item span { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.3; max-width: 10ch; }

/* ── section spacing ── */
.section    { padding: 5rem var(--pad); }
.section-sm { padding: 3rem var(--pad); }
.section-lg { padding: 7rem var(--pad); }
.bg-ink  { background: var(--ink); color: var(--white); }
.bg-ink  .section-title { color: var(--white); }
.bg-teal { background: var(--teal); color: var(--white); }
.bg-teal .section-title { color: var(--white); }
.bg-mist { background: var(--mist); }

/* ── trust bar ── */
.trustbar { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: .3rem;
  padding: 2rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-num { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--coral); line-height: 1; }
.trust-label { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; }

/* ── tracklist ── */
.tracklist { display: flex; flex-direction: column; }
.track-item {
  display: grid; grid-template-columns: 3.5rem 1fr auto;
  align-items: center; gap: 1.5rem;
  /* FIX: added horizontal padding so full row is tappable */
  padding: 1.2rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: background .2s, padding-left .2s;
  min-height: 64px; /* FIX: ensure tall enough tap target */
}
.track-item:hover { background: rgba(255,255,255,.04); padding-left: 1.25rem; }
.track-item:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.track-num { font-family: var(--display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.3); text-align: right; }
.track-info { display: flex; flex-direction: column; gap: .15rem; }
.track-name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.track-sub { font-size: .84rem; color: rgba(255,255,255,.45); }
.track-arrow { color: var(--coral); opacity: 0; transition: opacity .2s; }
.track-item:hover .track-arrow { opacity: 1; }

/* ── services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--mist); }
.service-card {
  background: var(--paper); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 100%;
  height: 3px; background: var(--coral); transition: right .35s ease;
}
.service-card:hover { background: var(--white); }
.service-card:hover::before { right: 0; }
.service-name { font-family: var(--display); font-size: 1.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
.service-desc { font-size: .92rem; color: var(--sage); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--coral);
  margin-top: auto; padding: .35rem 0; /* tap area */
}
.service-link svg { transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ── testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tcard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.tcard-stars { display: flex; gap: 3px; }
.tcard-stars svg { fill: var(--gold); color: var(--gold); }
.tcard-body { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.75); flex: 1; }
.tcard-author { display: flex; gap: .75rem; align-items: center; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink-mid); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: .85rem;
  color: var(--white); flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: .88rem; color: var(--white); }
.tcard-role { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── cta band ── */
.cta-band { background: var(--accent); padding: 5rem var(--pad); text-align: center; }
.cta-band .section-title { color: var(--ink); }
.cta-band p { color: rgba(30,27,58,.75); margin: 1rem auto 2.5rem; max-width: 50ch; font-size: 1.05rem; }
.cta-band .btn-dark { background: var(--ink); color: var(--white); }
.cta-band .btn-dark:hover { background: var(--ink-mid); color: var(--white); }

/* ── footer ── */
.footer { background: #14122B; color: rgba(255,255,255,.55); padding: 4rem var(--pad) 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.6);
  margin-bottom: .7rem; transition: color .2s;
  padding: .2rem 0; /* slightly more tap area */
}
.footer-col a:hover { color: var(--white); }
.footer-col a:focus-visible { outline: 2px solid var(--coral); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.2rem; }
.footer-social {
  width: 44px; height: 44px; border-radius: 50%; /* FIX: 44px tap target */
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: border-color .2s, color .2s;
}
.footer-social:hover { border-color: var(--coral); color: var(--coral); }
.footer-social:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── service page hero ── */
.svc-hero {
  background: var(--ink); padding: 9rem var(--pad) 5rem;
  position: relative; overflow: hidden;
}
.svc-hero-bg {
  position: absolute; inset: 0; background: var(--svc-accent, var(--teal));
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 40% 100%); opacity: .25;
}
.svc-hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.svc-hero-title {
  font-family: var(--display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: .97; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.2rem;
}
.svc-hero-title em { font-style: normal; color: var(--svc-color, var(--coral)); }
.svc-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; }
.svc-hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--teal); }
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }

/* ── benefits grid ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card {
  border: 1px solid var(--mist); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .25s, box-shadow .25s;
}
.benefit-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px -12px rgba(94,196,176,.18); }
.benefit-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: var(--ink); }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-name { font-family: var(--display); font-size: 1rem; font-weight: 700; }
.benefit-desc { font-size: .9rem; color: var(--sage); line-height: 1.6; }

/* ── approach section ── */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.approach-text .section-title { margin-bottom: 1.5rem; }
.approach-text p { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 1rem; }
.approach-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; background: var(--teal); position: relative; }
.approach-img img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.approach-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--coral); color: var(--white);
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: var(--radius);
}

/* ── contact & form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .9rem 1rem; /* FIX: taller fields for mobile */
  min-height: 48px; /* FIX: 48px minimum for form fields */
  color: var(--white); font-family: var(--body); font-size: 1rem; /* FIX: 16px prevents iOS zoom */
  width: 100%; transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); background: rgba(255,255,255,.09);
}
/* FIX: error state styles */
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #E85C3A;
}
.field-error {
  font-size: .8rem; color: #ff7c60; margin-top: .25rem; display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #E85C3A; }
.field textarea { min-height: 130px; resize: vertical; font-size: 1rem; }
.field select option { background: var(--ink); }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.06);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--coral); }
.contact-info-label { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .25rem; }
.contact-info-value { font-size: .95rem; color: var(--white); }

/* ── about page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; background: var(--teal); }
.about-img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.about-text p { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.02rem; }
.creds-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.cred-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.7);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  border-left: 3px solid var(--coral); padding: 1.5rem 1.5rem 1.5rem 1.8rem;
  background: rgba(255,255,255,.03); border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── page header ── */
.page-header {
  background: var(--ink); padding: 8rem var(--pad) 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--coral);
}
.page-header-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -.02em; line-height: 1; margin-bottom: .75rem;
}
.page-header-lead { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 52ch; margin: 0 auto; }

/* ── scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile-first corrections
   ══════════════════════════════════════════ */

/* ── 1024px: tablet landscape ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── 768px: tablet portrait / large mobile ── */
@media (max-width: 768px) {
  /* hide hero diagonal slash — too complex on small screen */
  .hero-slash { display: none; }
  /* service hero: stack */
  .svc-hero .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .svc-hero-img { display: none; }
  /* services grid: 1 col */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  /* benefits: 2 col */
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  /* approach: stack */
  .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* about values: 2 col */
  .values-grid { grid-template-columns: 1fr; }
  /* testimonials: 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* footer: 2 col */
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* form row: stack */
  .form-row { grid-template-columns: 1fr; }
  /* trust bar: 2-col wrap */
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  /* tracklist: remove number col */
  .track-num { display: none; }
  .track-item { grid-template-columns: 1fr auto; }
  /* always show track arrow on mobile (no hover) */
  .track-arrow { opacity: 1; }
  /* hide desktop nav, show hamburger */
  .nav-links { display: none; }
  .nav-book { display: none; }
  .menu-btn { display: flex; }
  /* section padding tighter */
  .section { padding: 3.5rem var(--pad); }
  .section-lg { padding: 4.5rem var(--pad); }
  /* tracklist two-col layout: full width */
  .services-tracklist-grid { grid-template-columns: 1fr !important; }
  /* why section: 1 col */
  .why-grid { grid-template-columns: 1fr !important; }
  /* about soundcamp section */
  .soundcamp-grid { grid-template-columns: 1fr !important; }
}

/* ── 560px: small phones ── */
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 1.2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-item { flex: 0 0 100%; }
  .cta-band { padding: 3.5rem var(--pad); }
  .cta-band .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  /* make the "other services" buttons wrap neatly */
  .other-services-row { gap: .6rem !important; }
  .other-services-row .btn { font-size: .78rem; padding: .7rem 1.2rem; }
  /* page header tighter */
  .page-header { padding: 6rem var(--pad) 3rem; }
  /* svc hero tighter */
  .svc-hero { padding: 7rem var(--pad) 3.5rem; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .nav-drawer { transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
