/* ============================================================
   Edy Garfinkiel Coaching — "Find Your Authentic Voice"
   Static rebuild of the Squarespace site.
   Palette: soft blue + gold accents; Raleway + Roboto.
   ============================================================ */

:root {
  --blue:       #5c9ecf;   /* primary accent */
  --blue-dark:  #4785b5;   /* hover / darker */
  --blue-soft:  #eef4fa;   /* light section wash */
  --gold:       #b8924f;   /* gold accent line / rules */
  --ink:        #2e2e2e;   /* headings / dark text */
  --body:       #545454;   /* body text */
  --muted:      #7a7a7a;   /* secondary text */
  --line:       #e6e6e6;   /* hairlines */
  --white:      #ffffff;
  --wash:       #f7f9fb;   /* alt section background */

  --maxw: 1140px;
  --narrow: 760px;
  --radius: 8px;
  --shadow: 0 14px 40px -20px rgba(46, 46, 46, 0.35);

  --font-head: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 600; }

p { margin: 0 0 1.1rem; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
/* height:auto lets width/height attrs set aspect-ratio (prevents layout shift)
   without stretching; images that want a fixed height set it in their own rule. */
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.narrow { max-width: var(--narrow); margin-inline: auto; }
.center { text-align: center; }

.sr-only, .hp-field {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Gold divider (mirrors the site's gold line) */
.gold-rule {
  width: 90px; height: 3px; border: 0; margin: 1.4rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.76rem; font-weight: 700; color: var(--blue);
  margin: 0 0 0.9rem;
}

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 1.9rem; border-radius: 4px; border: 2px solid var(--blue);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue-dark); }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue-dark); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; }

/* --------------------------- header --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.brand-fallback { font-family: var(--font-head); font-weight: 800; color: var(--blue-dark); font-size: 1.15rem; }

.nav-menu { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink);
}
.nav-menu a { position: relative; }
.nav-menu a:hover { color: var(--blue); }
.nav-menu a.active { color: var(--blue); }
.nav-menu a.active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-menu .nav-cta { padding: 0.5rem 1.1rem; border: 2px solid var(--blue); border-radius: 4px; color: var(--blue-dark); }
.nav-menu .nav-cta:hover { background: var(--blue); color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--line); border-radius: 8px; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--ink);
}
.nav-toggle-bar { top: 50%; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* --------------------------- sections --------------------------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-wash { background: var(--wash); }
.section-blue { background: var(--blue-soft); }
.section-head { max-width: 780px; margin: 0 auto 2.6rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* --------------------------- hero --------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(6rem, 12vw, 9rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../img/ss/hero-mountains.png") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(30,45,60,0.42) 0%, rgba(30,45,60,0.52) 50%, rgba(23,36,50,0.72) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 0.4rem; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.hero .gold-line-img { width: 220px; max-width: 60%; margin: 1.2rem auto; opacity: 0.95; }
.hero h4 { color: #fff; font-weight: 400; max-width: 640px; margin: 0 auto 1.8rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero .btn { margin-top: 0.5rem; }

/* Hero scroll-down cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; opacity: .85;
}
.scroll-cue:hover { opacity: 1; color: #fff; }
.scroll-cue .chevron {
  width: 13px; height: 13px; margin-top: -4px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg);
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: heroZoom 26s ease-in-out infinite alternate; }
  .hero > .container > * { opacity: 0; animation: heroIn .85s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero > .container > h1 { animation-delay: .12s; }
  .hero > .container > .gold-line-img { animation-delay: .30s; }
  .hero > .container > h4 { animation-delay: .46s; }
  .hero > .container > .btn { animation-delay: .62s; }
  .scroll-cue { animation: cueBounce 1.8s ease-in-out infinite; }
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes cueBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* --------------------------- intro --------------------------- */
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro-grid img.portrait { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.intro-lede p { font-size: 1.22rem; color: var(--ink); font-family: var(--font-head); font-weight: 500; line-height: 1.5; }
.intro-lede p + p { font-size: 1.08rem; color: var(--body); font-weight: 400; }

/* --------------------------- testimonial --------------------------- */
/* --------------------------- testimonial (isolated dark card) --------------------------- */
.testimonial {
  background: #2d2d2d;
  color: #fff;
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.6rem) clamp(1.4rem, 5vw, 4rem);
  max-width: 980px;
  margin: 2.5rem auto 0;
  text-align: center;
  box-shadow: 0 24px 55px -26px rgba(0,0,0,0.55);
}
.testimonial blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.55;
  color: #fff;
}
.testimonial .who {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 2rem; text-align: left;
}
.testimonial .who img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: none; }
.testimonial .who .t-meta { display: flex; flex-direction: column; }
.testimonial .who .t-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1.3; }
.testimonial .who .t-role { font-family: var(--font-body); font-weight: 400; color: #b0b0b0; font-size: 0.9rem; line-height: 1.35; }

/* --------------------------- numbered cards (who is this for) --------------------------- */
.num-cards { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto 1fr auto; column-gap: 0; margin-top: 2rem; }
.num-card {
  grid-row: span 4; display: grid; grid-template-rows: subgrid; row-gap: 1rem;
  color: #fff; padding: clamp(1.8rem, 2.6vw, 2.6rem); border: 0; box-shadow: none;
}
.num-card:nth-child(1) { background: #5aa0d0; }
.num-card:nth-child(2) { background: #4c8cc0; }
.num-card:nth-child(3) { background: #3e78a8; }
.num-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.num-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.num-badge { font-family: var(--font-head); font-weight: 700; line-height: 1; font-size: clamp(2.6rem, 5vw, 3.6rem); color: rgba(255,255,255,0.5); }
.num-card h3 { color: #fff; text-align: left; margin: 0; align-self: start; }
.num-card p { margin: 0; color: rgba(255,255,255,0.94); }
.num-card p:not(.resolve) { align-self: start; }
.num-card .resolve { color: #fff; font-weight: 700; font-family: var(--font-head); }

/* --------------------------- struggle / focus --------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.split > img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* About: photo with credential badge stacked beneath it */
.about-media { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.about-photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
/* Top-align the About row so the text starts near the top of the photo. */
#about .split { align-items: start; }
/* Top-align the two-column mission rows so short text doesn't float mid-photo. */
#help .split { align-items: start; }
.gold-rule--left { margin-inline: 0; }
.help-lead { font-size: 1.05rem; color: var(--body); }
.help-intro h3 { margin-top: 1.6rem; }
.struggle-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.struggle-list li { padding: 0.6rem 0 0.6rem 1.8rem; position: relative; border-bottom: 1px solid var(--line); }
.struggle-list li::before { content: ""; position: absolute; left: 0; top: 1.15em; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.struggle-list strong { color: var(--ink); font-family: var(--font-head); }

.focus-list {
  list-style: none; margin: 1.2rem 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.6rem;
}
.focus-list li {
  position: relative; padding-left: 2rem;
  color: var(--ink); font-family: var(--font-head); font-weight: 500;
  font-size: 1rem; line-height: 1.45;
}
.focus-list li::before {
  content: ""; position: absolute; left: 0; top: 0.1em; width: 20px; height: 20px;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%235c9ecf'/%3E%3Cpath d='M5.5 10.2l3 3 6-6.4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --------------------------- results (3 columns) --------------------------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2rem; }
.result-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.result-col:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(46,46,46,0.5); }
.result-col img { width: 100%; height: 180px; object-fit: cover; transition: transform .55s ease; }
.result-col:hover img { transform: scale(1.06); }
.result-col .result-body { padding: 1.4rem 1.4rem 1.6rem; }
.result-col h4 { color: var(--blue-dark); }
.result-col p { font-size: 0.98rem; margin-bottom: 0.8rem; }
.result-col p strong { color: var(--ink); font-family: var(--font-head); }

/* --------------------------- power of assertiveness --------------------------- */
.power-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-top: 2.5rem; }
.power-item { text-align: center; padding: 0 0.4rem; }
.power-icon { width: 56px; height: 56px; margin: 0 auto 1.1rem; color: var(--blue); }
.power-icon svg { width: 100%; height: 100%; display: block; }
.power-item h3 { font-family: var(--font-head); font-style: italic; font-weight: 600; color: #4a4a4a; font-size: 1.15rem; margin-bottom: 0.7rem; }
.power-item p { margin: 0; color: var(--body); font-size: 0.98rem; }

/* --------------------------- methodology --------------------------- */
.methodology-img { max-width: 900px; margin: 1.5rem auto 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --------------------------- work with me / pricing --------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 720px; margin: 2rem auto 1.5rem; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; text-align: center; box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--blue); }
.price-card .plan { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-dark); font-size: 0.9rem; }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); margin: 0.4rem 0 0.2rem; }
.price-card .terms { color: var(--muted); font-size: 0.95rem; margin: 0; }
.included { max-width: 720px; margin: 0 auto; background: var(--wash); border-radius: var(--radius); padding: 1.8rem 2rem; }
.included h4 { text-align: center; color: var(--blue-dark); }
.included ul { margin: 0; padding-left: 0; list-style: none; }
.included li { padding: 0.55rem 0 0.55rem 1.9rem; position: relative; border-bottom: 1px solid var(--line); }
.included li:last-child { border-bottom: 0; }
.included li::before { content: "✓"; position: absolute; left: 0; top: 0.5rem; color: var(--blue); font-weight: 700; }

/* --------------------------- coming soon / events --------------------------- */
.badge { display: inline-block; background: var(--gold); color: #fff; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1rem; }
.event-list { max-width: 780px; margin: 1.5rem auto 0; list-style: none; padding: 0; }
.event-list li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.event-list .when { color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }

/* Events two-column: list + signup */
.events-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.events-grid .event-list { max-width: none; margin: 0; }
.events-signup { background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.events-signup h3 { color: var(--blue-dark); margin-bottom: 0.4rem; }
.events-signup > p { color: var(--muted); font-size: 0.98rem; }
.events-signup .signup { max-width: none; margin: 0.6rem 0 0; }
.field-stack { display: flex; flex-direction: column; gap: 0.7rem; }
.field-stack input { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 0.8rem 0.9rem; transition: border-color .15s, box-shadow .15s; }
.field-stack input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,158,207,0.18); }
.field-stack .btn { width: 100%; margin-top: 0.2rem; }
.events-signup .signup-success { max-width: none; margin: 1rem 0 0; }
@media (max-width: 760px) { .events-grid { grid-template-columns: 1fr; } }

/* --------------------------- credential badge (GPCC) --------------------------- */
.credential-badge { display: block; width: 180px; height: auto; margin: 2rem auto 0; }

/* --------------------------- logos strip --------------------------- */
.logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 1.6rem; }
.logos img { height: 128px; width: auto; opacity: 0.9; }

/* Required-field marker on form labels/placeholders */
.req { color: #c0392b; font-weight: 700; margin-left: 0.15em; }

/* --------------------------- faq --------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-item h3 { color: var(--blue-dark); margin-bottom: 0.5rem; }

/* --------------------------- interest-list signup --------------------------- */
.signup { max-width: 600px; margin: 1.8rem auto 0; }
.signup-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.signup-row input {
  flex: 1 1 200px; min-width: 0;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.signup-row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,158,207,0.18); }
.signup-btn { display: block; width: 100%; margin-top: 0.7rem; }
.signup-note { font-size: 0.85rem; color: var(--muted); margin: 0.8rem 0 0; }
.signup-success {
  display: flex; align-items: center; gap: 0.9rem; text-align: left;
  max-width: 600px; margin: 1.8rem auto 0;
  background: #eef7f1; border: 1px solid #cfe6d6; border-left: 4px solid #3f9d6d;
  border-radius: 10px; padding: 1.1rem 1.3rem;
}
.signup-success[hidden] { display: none; }
.signup-success-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: #3f9d6d; color: #fff; display: grid; place-items: center;
}
.signup-success-icon svg { width: 20px; height: 20px; display: block; }
.signup-success p { margin: 0; color: #2f6b4a; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }

/* --------------------------- legal / privacy page --------------------------- */
.legal h1 { margin-bottom: 0.3rem; }
.legal h2 { font-size: 1.2rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }

/* --------------------------- contact form (secondary) --------------------------- */
.contact-form { max-width: 640px; margin: 1.6rem auto 0; text-align: left; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .field { margin-bottom: 1rem; }
.contact-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 0.75rem 0.85rem;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,158,207,0.18); }
.contact-form textarea { resize: vertical; }
#message .signup-success { max-width: 640px; }
@media (max-width: 520px) { .contact-form .field-row { grid-template-columns: 1fr; } }

/* --------------------------- contact --------------------------- */
.contact {
  position: relative; color: #fff; text-align: center; padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    radial-gradient(1100px 480px at 72% -25%, rgba(92,158,207,0.38), transparent 60%),
    linear-gradient(135deg, #2c4056 0%, #223040 55%, #1b2734 100%);
}
.contact h1, .contact h2 { color: #fff; }
.contact-title { font-size: clamp(2.1rem, 4.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em; }
.contact p { color: #eef4fa; max-width: 620px; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* --------------------------- footer --------------------------- */
.site-footer { background: #2b3946; color: #cdd7e0; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.site-footer a:not(.btn) { color: #e6ecf1; }
.site-footer a:not(.btn):hover { color: #fff; }
.footer-brand { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.3rem; margin-bottom: 0.2rem; }
.footer-tagline { color: var(--blue); font-family: var(--font-head); font-weight: 600; margin-bottom: 0.7rem; }
.footer-blurb { font-size: 0.92rem; color: #9fb0bf; max-width: 42ch; margin-bottom: 1rem; }
.footer-social { display: inline-flex; }
.footer-social svg { width: 22px; height: 22px; }
.footer-gpcc { display: block; width: 104px; height: auto; border-radius: 4px; margin-top: 1.2rem; }
.footer-cta-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-cta-col .footer-social { margin-top: auto; align-self: flex-start; padding-top: 1.4rem; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: #8ea0b2; margin-bottom: 0.9rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a { font-size: 0.95rem; }
.footer-cta-col .btn { padding: 0.62rem 1.3rem; font-size: 0.76rem; margin-bottom: 0.9rem; }
.footer-msg-link { margin: 0 0 0.6rem; }
.footer-location { color: #9fb0bf; font-size: 0.92rem; margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid #3a4a5a;
  font-size: 0.85rem; color: #8ea0b2;
}
.footer-bottom p { margin: 0; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* --------------------------- responsive --------------------------- */
/* --------------------------- lead-magnet popup --------------------------- */
.lead-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1.2rem;
}
.lead-modal[hidden] { display: none; }
.lead-overlay {
  position: absolute; inset: 0; background: rgba(20,30,40,0.55);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.lead-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  background: #fff; border-radius: 14px; text-align: center;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.55);
  max-height: 90vh; overflow-y: auto;
  animation: leadIn .3s ease;
}
@keyframes leadIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.lead-close {
  position: absolute; top: .7rem; right: .7rem; width: 38px; height: 38px;
  border: 0; background: transparent; font-size: 1.9rem; line-height: 1;
  color: var(--muted); cursor: pointer; border-radius: 8px;
}
.lead-close:hover { background: var(--wash); color: var(--ink); }
.lead-dialog h2 { font-size: clamp(1.35rem, 3.4vw, 1.85rem); margin-bottom: 0.8rem; }
.lead-dialog p { color: var(--body); }
.lead-sub { font-weight: 600; color: var(--ink); font-family: var(--font-head); margin-top: 1rem; }
.lead-form.signup { margin-top: 1rem; }
.lead-row { display: flex; gap: 0.6rem; }
.lead-row input {
  flex: 1 1 auto; min-width: 0; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 0.8rem 0.9rem;
  transition: border-color .15s, box-shadow .15s;
}
.lead-row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,158,207,0.18); }
.lead-row .btn { flex: 0 0 auto; white-space: nowrap; }
.lead-dialog .signup-success { text-align: left; margin: 1rem 0 0; }
@media (max-width: 520px) {
  .lead-row { flex-direction: column; }
  .lead-row .btn { width: 100%; }
}

/* --------------------------- header shadow on scroll --------------------------- */
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 22px -14px rgba(30,45,60,0.4);
}

/* --------------------------- back-to-top button --------------------------- */
.to-top {
  position: fixed; right: 1.1rem; bottom: 1.4rem; z-index: 95;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -12px rgba(30,45,60,0.55);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-dark); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .to-top { bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* --------------------------- sticky mobile booking bar --------------------------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(255,255,255,0.96);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border-top: 1px solid var(--line);
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 26px -18px rgba(0,0,0,0.5);
    transform: translateY(130%); transition: transform .32s ease;
  }
  .mobile-cta.show { transform: translateY(0); }
  .mobile-cta .btn { display: block; width: 100%; text-align: center; }
  body { padding-bottom: 4.5rem; }
}

/* --------------------------- scroll reveal --------------------------- */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-on .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  }
  html.reveal-on .reveal.is-visible { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0.5rem 1.5rem 1.2rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: 0; padding-top: 0.6rem; }
  .nav-menu a { display: block; padding: 0.85rem 0; }
  .nav-menu .nav-cta { text-align: center; }

  .intro-grid, .split { grid-template-columns: 1fr; }
  /* On mobile, move this row's image below its text (avoids two photos back-to-back). */
  .img-last-mobile > img { order: 2; }
  .results-grid { display: block; }
  .result-col {
    position: sticky; margin-bottom: 1.4rem;
    box-shadow: 0 -6px 20px -10px rgba(0,0,0,0.18), var(--shadow);
  }
  .result-col:nth-child(1) { top: 84px; }
  .result-col:nth-child(2) { top: 100px; }
  .result-col:nth-child(3) { top: 116px; }
  .result-col:last-child { margin-bottom: 0; }
  /* JS scales/fades covered cards from the top for the receding-ghost effect */
  .num-card, .result-col { transform-origin: top center; }
  .result-col { transition: none; }
  .num-cards { display: block; grid-template-columns: none; grid-template-rows: none; }
  .num-card {
    grid-row: auto; display: flex; flex-direction: column; gap: 0.9rem;
    position: sticky; margin-bottom: 1.4rem;
    box-shadow: 0 -6px 20px -10px rgba(0,0,0,0.18), var(--shadow);
  }
  .num-card:nth-child(1) { top: 84px; }
  .num-card:nth-child(2) { top: 100px; }
  .num-card:nth-child(3) { top: 116px; }
  .num-card:last-child { margin-bottom: 0; }
  /* full rounding when stacked; reset grid align-self for flex-column flow */
  .num-card, .num-card:first-child, .num-card:last-child { border-radius: var(--radius); }
  .num-card h3, .num-badge { align-self: auto; }
  .num-card p:not(.resolve) { align-self: auto; }
  .power-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.4rem; }
  .focus-list { grid-template-columns: 1fr; gap: 0.65rem; }
  .price-grid { grid-template-columns: 1fr; }
  .faq-cta { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   Scroll-driven coaching design process (#methodology)
   Markup in index.html (#dpRoot ...); scroll logic in main.js.
   Scoped to #dpRoot. Colours pull from the site tokens below, so
   change --blue / --gold / --ink / --body once and this follows.
   ------------------------------------------------------------
   Quick tuning (all on #dpRoot):
     --dp-vh-each : screen-heights of scroll per step (lower = faster)
   Destination star (.dp-node--dest): --dp-dest-size, --dp-dest-gap.
   ============================================================ */
#dpRoot{
  --dp-blue: var(--blue);      /* icon circles */
  --dp-accent: var(--gold);    /* numbers, step titles, progress line, star */
  --dp-ink: var(--ink);        /* icon lines, node outlines, rail */
  --dp-text: var(--body);      /* body copy */
  --dp-vh-each: 100;           /* screen-heights of scroll per step */
  --dp-steps: 6;

  position: relative;
  background: transparent;     /* sits on the white #methodology section */
  font-family: var(--font-body);
  color: var(--dp-text);
}
#dpRoot *{ box-sizing: border-box; }

/* ---- FALLBACK (no JS / reduced motion): clean stacked list ---- */
#dpRoot .dp-scroll{ position: relative; }
#dpRoot .dp-sticky{ position: relative; }
#dpRoot .dp-stage{ max-width: 900px; margin: 0 auto; padding: 8px 22px; }
#dpRoot .dp-rail{ display: none; }
#dpRoot .dp-step{
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line); text-align: left;
}
#dpRoot .dp-step:last-child{ border-bottom: 0; }
#dpRoot .dp-text{ max-width: 520px; }
#dpRoot .dp-kicker{
  margin: 0 0 10px; font-family: var(--font-head);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  font-size: clamp(15px, 2.4vw, 19px); line-height: 1.25; color: var(--dp-accent);
}
#dpRoot .dp-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.7em; height: 1.7em; margin-right: .5em; border-radius: 50%;
  background: var(--dp-accent); color: #fff; font-size: .8em; vertical-align: middle;
}
#dpRoot .dp-desc{ margin: 0; font-size: clamp(15px, 2vw, 17px); line-height: 1.6; }
#dpRoot .dp-icon{
  flex: 0 0 auto; display: grid; place-items: center;
  width: clamp(84px, 14vw, 120px); height: clamp(84px, 14vw, 120px); border-radius: 50%;
  background: var(--dp-blue); color: #fff;
}
#dpRoot .dp-icon svg{ width: 56%; height: 56%; }

/* ---- ANIMATED MODE (main.js adds .dp-on) ---- */
#dpRoot.dp-on .dp-scroll{ height: calc(var(--dp-steps) * var(--dp-vh-each) * 1vh); }
#dpRoot.dp-on .dp-sticky{
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
#dpRoot.dp-on .dp-stage{
  position: relative; width: 100%; max-width: 1040px; height: min(78vh, 620px); padding: 0 22px;
}

/* progress rail down the LEFT; content centred to its right */
#dpRoot.dp-on .dp-rail{
  display: block; position: absolute; left: clamp(22px, 8%, 96px); top: 6%; bottom: 6%;
  width: 2px; transform: none;
}
#dpRoot.dp-on .dp-rail-track{ position: absolute; inset: 0; background: var(--dp-ink); opacity: .85; }
#dpRoot.dp-on .dp-rail-fill{ position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--dp-accent); }
#dpRoot.dp-on .dp-node{
  position: absolute; left: 50%; top: calc(var(--p) / (var(--dp-steps) - 1) * 100%);
  transform: translate(-50%, -50%); width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; border: 2px solid var(--dp-ink);
  font-size: 12px; font-weight: 700; color: var(--dp-ink);
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
#dpRoot.dp-on .dp-node.is-on{
  background: var(--dp-accent); border-color: var(--dp-accent); color: #fff;
  transform: translate(-50%, -50%) scale(1.12);
}
/* final node = four-pointed STAR (matches the gold logo): hollow outline until
   reached, then fills. Hangs just below the line so it never crosses the "6".
   Tunables: --dp-dest-size (size), --dp-dest-gap (negative overlaps the line).
   Pointiness = the inner "37 / 63" pairs in the <path> (closer to 50 = sharper). */
#dpRoot.dp-on .dp-node--dest{
  --dp-dest-size: 54px; --dp-dest-gap: -3px;
  width: var(--dp-dest-size); height: var(--dp-dest-size);
  border: none; background: transparent;
  transform: translate(-50%, var(--dp-dest-gap)); color: var(--dp-ink);
}
#dpRoot.dp-on .dp-node--dest .dp-star-svg{ position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: visible; }
#dpRoot.dp-on .dp-node--dest .dp-star-svg path{
  fill: #fff; stroke: var(--dp-ink); stroke-width: 3.5; stroke-linejoin: round;
  transition: fill .3s ease, stroke .3s ease;
}
#dpRoot.dp-on .dp-node--dest b{ position: relative; z-index: 1; display: block; font-weight: 700; }
#dpRoot.dp-on .dp-node--dest.is-on{ background: transparent; border-color: transparent; color: #fff; transform: translate(-50%, var(--dp-dest-gap)) scale(1.06); }
#dpRoot.dp-on .dp-node--dest.is-on .dp-star-svg path{ fill: var(--dp-accent); stroke: var(--dp-accent); }

/* one step visible at a time; slides + fades between. The transition is
   time-based (CSS), so it always settles on a solid step and can never freeze
   mid-fade as a ghost — main.js just toggles .is-current / .is-past. */
#dpRoot.dp-on .dp-step{
  position: absolute; inset: 0; border: 0;
  padding: 0 22px 0 clamp(60px, 14%, 150px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; text-align: center;
  opacity: 0; transform: translateY(28px); pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
#dpRoot.dp-on .dp-step.is-current{ opacity: 1; transform: translateY(0); pointer-events: auto; }
#dpRoot.dp-on .dp-step.is-past{ opacity: 0; transform: translateY(-28px); }
#dpRoot.dp-on .dp-step .dp-icon{ order: -1; }
#dpRoot.dp-on .dp-step .dp-text{ max-width: 480px; }
#dpRoot.dp-on .dp-step .dp-num{ display: none; }
#dpRoot.dp-on .dp-kicker{ color: var(--dp-accent); }

@media (max-width: 680px){
  #dpRoot.dp-on .dp-stage{ height: min(82vh, 600px); padding: 0 16px; }
  #dpRoot.dp-on .dp-rail{ left: 26px; }
  #dpRoot.dp-on .dp-step{ padding: 0 16px 0 62px; gap: 18px; }
  #dpRoot.dp-on .dp-step .dp-icon{ width: clamp(78px, 20vw, 110px); height: clamp(78px, 20vw, 110px); }
}
