/* The Coaching ARC — refined rebuild
 * Brand: deep teal / cream / gold accent. DM Sans throughout.
 * Intersecting line pattern. Punch-list edits applied. */

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

:root {
  --paper: #FFFFFF;
  --paper-soft: #F2F0EC;
  --paper-deep: #E9E5DC;
  --ink: #1B1B1F;
  --ink-soft: #2A2A2D;
  --ink-mid: #555558;
  --ink-dim: #8A8A8C;
  --rule: rgba(27,27,31,0.10);
  --rule-soft: rgba(27,27,31,0.06);

  --teal: #1A4A50;
  --teal-deep: #103539;
  --teal-soft: #2A5F66;
  --teal-mid: #3A7178;
  --cream: #F5F1E6;

  --gold: #C9A551;
  --gold-deep: #A88234;
  --gold-soft: #E5D49E;

  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-display: clamp(46px, 6.4vw, 84px);
  --t-h1: clamp(36px, 4.6vw, 56px);
  --t-h2: clamp(28px, 3.4vw, 40px);
  --t-h3: 22px;
  --t-h4: 17px;
  --t-eyebrow: 12px;
  --t-body: 17px;

  --s-section: clamp(72px, 9vw, 128px);
  --s-block:   clamp(40px, 5vw,  72px);
  --s-stack-l: 32px;
  --s-stack-m: 20px;
  --s-stack-s: 12px;

  --max-w: 1280px;
  --max-w-prose: 720px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 400; color: var(--ink-soft); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--gold-soft); color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── NAV — full-width dark teal band ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--teal);
  color: var(--cream);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: inline-flex; flex-direction: column;
  font-family: var(--sans); font-weight: 500;
  font-size: 22px; letter-spacing: -0.005em;
  color: var(--cream); line-height: 1.1;
  position: relative;
}
.nav-brand .arc { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.nav-brand::after {
  content: ''; display: block;
  height: 8px; margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 Q 100 -2 198 8' stroke='%23C9A551' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 13px; letter-spacing: 0.06em; font-weight: 500; text-transform: uppercase;
}
.nav-link { color: var(--cream); transition: color 0.15s; opacity: 0.92; }
.nav-link:hover, .nav-link.active { color: var(--gold); opacity: 1; }
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream);
  background: transparent; border: 1px solid var(--cream);
  padding: 11px 22px; border-radius: 0;
  transition: all 0.15s;
}
.nav-cta:hover { background: var(--cream); color: var(--teal); }
.nav-toggle { display: none; color: var(--cream); }
@media (max-width: 1000px) {
  .nav-inner { padding: 18px 24px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--teal); flex-direction: column; gap: 0; padding: 16px 24px;
    border-bottom: 1px solid rgba(245,241,230,0.1); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid rgba(245,241,230,0.08); width: 100%; }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-toggle { display: block; font-size: 22px; }
}

/* ─── LAYOUT ─── */
.section { padding: var(--s-section) 32px; background: var(--paper); position: relative; }
.section.alt { background: var(--paper-soft); }
.section.dark { background: var(--teal); color: var(--cream); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--cream); }
.section.dark p { color: rgba(245,241,230,0.85); }
.section.dark .eyebrow { color: var(--gold); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.prose { max-width: var(--max-w-prose); margin: 0 auto; }
.center { text-align: center; }

/* ─── BACKGROUND LINE PATTERN ─── */
.lines-bg { position: relative; }
.lines-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("assets/lines.svg") center / cover no-repeat;
  opacity: 1; pointer-events: none; z-index: 0;
}
.lines-bg > * { position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
h1 { font-size: var(--t-h1); font-weight: 500; }
h2 { font-size: var(--t-h2); font-weight: 500; }
h3 { font-size: var(--t-h3); font-weight: 600; }
h4 { font-size: var(--t-h4); letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); }
.display { font-size: var(--t-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.eyebrow {
  font-family: var(--sans); font-size: var(--t-eyebrow); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
  margin-bottom: var(--s-stack-m); display: inline-block;
}
.eyebrow.gold { color: var(--gold-deep); }
p { font-size: var(--t-body); color: var(--ink-soft); }
p + p { margin-top: var(--s-stack-m); }
.lead { font-size: 21px; line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.gold { color: var(--gold-deep); }
.teal { color: var(--teal); }
ul, ol { padding-left: 0; list-style: none; }

/* ─── HERO — split with diagonal image cut + line pattern ─── */
.hero {
  position: relative; padding: 0;
  min-height: 600px; background: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("assets/lines.svg") center / cover no-repeat;
  opacity: 0.9; pointer-events: none; z-index: 0;
}
.hero-inner {
  width: 100%; margin: 0;
  display: grid; grid-template-columns: 1.15fr 1fr;
  align-items: stretch; min-height: inherit;
  position: relative; z-index: 1;
}
.hero-text {
  padding: clamp(72px, 9vw, 128px) clamp(32px, 4vw, 60px) clamp(72px, 9vw, 128px) max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
  display: flex; flex-direction: column; justify-content: center;
  max-width: none;
}
.hero-text > * { max-width: 700px; }
.hero-display {
  font-size: var(--t-display); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink); font-family: var(--sans);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px; color: var(--ink-mid); line-height: 1.55;
  max-width: 540px; margin-bottom: 36px;
}
.hero-image {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E5DFD0, #C9BFA8);
  min-height: 520px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { padding: 64px 32px 40px; max-width: 100%; }
  .hero-image { clip-path: none; min-height: 360px; aspect-ratio: 4/3; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 0; transition: all 0.18s; cursor: pointer;
  border: 1px solid transparent; font-family: var(--sans);
}
.btn-primary { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-ghost { background: var(--paper); color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-arrow::after { content: '→'; font-size: 14px; transition: transform 0.18s; }
.btn:hover .btn-arrow::after { transform: translateX(3px); }

/* ─── AUDIENCE LIST — with custom icons ─── */
.audience-list { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 640px; margin: 0; }
.audience-list li {
  font-size: var(--t-body); color: var(--ink-soft);
  padding-left: 44px; position: relative;
  line-height: 1.5;
}
.audience-list li svg {
  position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px;
  color: var(--teal); stroke: currentColor; fill: none; stroke-width: 1.4;
}

/* ─── FOR SECTION — split layout (photo left, list right) ─── */
.for-section {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.for-photo {
  position: relative; aspect-ratio: 4/5;
  background: var(--ink); overflow: hidden;
}
.for-photo img { width: 100%; height: 100%; object-fit: cover; }
.for-photo-caption {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  color: var(--cream); z-index: 2;
}
.for-photo-caption h4 {
  font-size: 28px; font-weight: 600; color: var(--cream);
  letter-spacing: -0.01em; text-transform: none;
  margin-bottom: 10px; line-height: 1.2;
}
.for-photo-caption p {
  font-size: 14px; line-height: 1.5;
  color: rgba(245,241,230,0.85);
}
.for-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  z-index: 1;
}
.for-content h2 { margin-bottom: var(--s-stack-l); }
@media (max-width: 800px) {
  .for-section { grid-template-columns: 1fr; gap: 40px; }
  .for-photo { max-width: 480px; }
}

/* ─── GRIDS ─── */
.grid-4, .grid-6, .grid-3 { display: grid; gap: 32px; margin-top: var(--s-block); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) { .grid-4 { grid-template-columns: 1fr; } .grid-6 { grid-template-columns: 1fr; } }

.tile { padding: 28px 0; border-top: 1px solid var(--rule); }
.tile-icon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--teal); }
.tile-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.tile h3 { font-size: 19px; margin-bottom: 8px; font-weight: 600; }
.tile p { font-size: 15px; line-height: 1.55; color: var(--ink-mid); }

/* ─── PROCESS STEPS ─── */
.steps { display: grid; gap: 0; margin-top: var(--s-block); }
.step {
  display: grid; grid-template-columns: 100px 1fr; gap: 32px;
  padding: 36px 0; border-top: 1px solid var(--rule); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-size: 56px; font-weight: 500; color: var(--teal);
  line-height: 1; letter-spacing: -0.03em;
}
.step-body h3 { font-size: 24px; margin-bottom: 10px; color: var(--ink); font-weight: 600; }
.step-body p { font-size: 16px; color: var(--ink-mid); max-width: 560px; }
@media (max-width: 700px) {
  .step { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .step-num { font-size: 40px; } .step-body h3 { font-size: 20px; }
}

/* ─── SERVICES ─── */
.services { display: grid; gap: 0; margin-top: var(--s-block); }
.service {
  display: grid; grid-template-columns: 1fr 200px 160px; gap: 32px;
  padding: 36px 0; border-top: 1px solid var(--rule); align-items: center;
}
.service:last-child { border-bottom: 1px solid var(--rule); }
.service-name h3 { font-size: 22px; margin-bottom: 6px; color: var(--ink); font-weight: 600; }
.service-name p { font-size: 15px; color: var(--ink-mid); margin: 0; }
.service-meta { font-size: 14px; color: var(--ink-mid); letter-spacing: 0.04em; }
.service-fee { font-size: 28px; font-weight: 500; color: var(--teal); text-align: right; letter-spacing: -0.02em; }
.service-fee.tbd { font-style: italic; color: var(--ink-dim); font-size: 18px; }
@media (max-width: 800px) {
  .service { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .service-fee { text-align: left; font-size: 22px; }
}

/* ─── TESTIMONIALS ─── */
.testimonials { display: grid; gap: 32px; margin-top: var(--s-block); }
.testimonial {
  padding: 44px 40px;
  border-top: 3px solid var(--teal);
  background: var(--paper);
  border-radius: 0;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonial-quote {
  font-size: 22px; line-height: 1.5; color: var(--ink);
  margin-bottom: 28px; font-weight: 500; letter-spacing: -0.005em;
}
.testimonial-quote::before { content: '"'; color: var(--gold); margin-right: 4px; }
.testimonial-quote::after { content: '"'; color: var(--gold); }
.testimonial-attr { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--rule); }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 14px; color: var(--ink-mid); }
.testimonial-name::after { content: '|'; margin: 0 10px; color: var(--gold); }
@media (max-width: 700px) { .testimonial { padding: 32px 24px; } .testimonial-quote { font-size: 19px; } }

/* ─── BLOG GRID (3-column per brief) ─── */
.blog-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: var(--s-block); }
.blog-cat { padding: 40px 32px; border: 1px solid var(--rule); background: var(--paper); transition: all 0.18s; }
.blog-cat:hover { border-color: var(--teal); transform: translateY(-2px); }
.blog-cat-icon { width: 44px; height: 44px; color: var(--teal); margin-bottom: 22px; }
.blog-cat-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.blog-cat h3 { font-size: 22px; margin-bottom: 10px; font-weight: 600; }
.blog-cat p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }
.blog-list { margin-top: 18px; }
.blog-list li { padding: 8px 0; font-size: 13px; color: var(--ink-mid); border-top: 1px solid var(--rule-soft); }
.blog-list li:hover { color: var(--teal); cursor: pointer; }
@media (max-width: 800px) { .blog-categories { grid-template-columns: 1fr; } }

.blog-post-card { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--rule); }
.blog-post-card:last-child { border-bottom: 1px solid var(--rule); }
.blog-post-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--paper-soft), var(--paper-deep)); }
.blog-post-meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.blog-post-title { font-size: 24px; color: var(--ink); margin-bottom: 12px; line-height: 1.25; font-weight: 600; }
.blog-post-excerpt { font-size: 15px; color: var(--ink-mid); line-height: 1.55; }
@media (max-width: 700px) { .blog-post-card { grid-template-columns: 1fr; gap: 16px; } }

/* ─── FORM ─── */
.form-card { max-width: 640px; margin: var(--s-block) auto 0; padding: 56px 48px; background: var(--paper); border: 1px solid var(--rule); }
.form-title { font-size: 24px; margin-bottom: 8px; color: var(--ink); font-weight: 600; }
.form-subtitle { font-size: 14px; color: var(--ink-mid); margin-bottom: 32px; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 15px;
  color: var(--ink); background: var(--paper); border: 1px solid var(--rule); border-radius: 0;
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--teal); }
.form-row textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-card { padding: 36px 24px; } .form-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ─── */
.faq { margin-top: var(--s-block); max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border-top: 1px solid var(--rule); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { font-size: 18px; color: var(--ink); cursor: pointer; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; color: var(--teal); font-size: 24px; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; font-size: 15px; color: var(--ink-mid); line-height: 1.55; margin-top: 14px; max-width: 600px; }
.faq-item.open .faq-a { display: block; }

/* ─── CONCEPT CALL CLOSER (dark teal band before footer) ─── */
.concept-band {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(40px, 6vw, 72px) 32px;
}
.concept-band-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.concept-band-text { font-size: 22px; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.concept-band-text .arc { color: var(--gold-deep); }

/* ─── FOOTER — dark teal with line pattern ─── */
.footer {
  background: var(--teal-deep); color: rgba(245,241,230,0.78);
  padding: 80px 32px 40px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background: url("assets/lines.svg") center / cover no-repeat;
  opacity: 0.18; pointer-events: none;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.footer-brand-block .nav-brand { font-size: 28px; }
.footer-brand-block .nav-brand .arc { color: var(--gold); }
.footer-brand-block .nav-brand::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14'><path d='M2 10 Q 120 -2 238 10' stroke='%23C9A551' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
  height: 10px;
}
.footer-desc {
  font-size: 14px; line-height: 1.65;
  color: rgba(245,241,230,0.6);
  max-width: 360px; margin-top: 28px;
}
.footer h4 {
  color: var(--cream); margin-bottom: 18px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
}
.footer ul li { padding: 6px 0; }
.footer ul li a {
  font-size: 14px; color: rgba(245,241,230,0.78);
  transition: color 0.15s;
}
.footer ul li a:hover, .footer ul li a.active { color: var(--gold); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,241,230,0.22);
  color: var(--cream); transition: all 0.18s;
}
.footer-socials a:hover { background: var(--gold); color: var(--teal-deep); border-color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  max-width: var(--max-w); margin: 56px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(245,241,230,0.12);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(245,241,230,0.5);
  position: relative; z-index: 1;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── UTILITIES ─── */
.section-head { text-align: center; margin-bottom: var(--s-block); }
.section-head .eyebrow { display: block; }
.section-head h2 { margin-bottom: var(--s-stack-m); }
.section-head p { color: var(--ink-mid); max-width: 640px; margin: 0 auto; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 540px) { .cta-row { flex-direction: column; align-items: stretch; } .cta-row .btn { justify-content: center; } }
