/* ==========================================================================
   Leyland Disc Golf — shared site chrome for the static content pages
   (About, Contact, Recaps, Videos, 404). Pairs with colors_and_type.css +
   ldg-components.css. Matches the header/footer/section vocabulary used by
   the React pages (home / coaching / fundamentals) so the whole site reads
   as one design.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); }
body {
  font-family: var(--font-body); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh; display: flex; flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); }
::selection { background: var(--amber); color: var(--teal-900); }
main { flex: 1; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--teal-900); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0; z-index: 100; font-family: var(--font-display); }
.skip-link:focus { left: 0; }

/* ---- container ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.prose-wrap { max-width: 52rem; }

/* ---- nav ---- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.lk-brand { display: inline-flex; align-items: center; }
.lk-brand img { height: 34px; }
.lk-nav { display: flex; align-items: center; gap: 1.35rem; }
.lk-navlink { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink);
  text-decoration: none; cursor: pointer; padding: .3rem 0; border-bottom: 2px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease); }
.lk-navlink:hover { color: var(--teal); }
.lk-navlink.is-active { color: var(--teal); border-color: var(--amber); }
.lk-burger { display: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: .45rem .7rem; font-size: 1.1rem; cursor: pointer; line-height: 1; }
@media (max-width: 920px) {
  .lk-burger { display: inline-flex; }
  .lk-nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: flex-start;
    gap: .3rem; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.4rem; display: none; }
  .lk-nav.is-open { display: flex; }
  .lk-nav .btn { margin-top: .5rem; }
}

/* ---- generic section ---- */
.section { padding-block: clamp(3rem, 6.5vw, 5.5rem); }
.section--cream { background: var(--cream); }
.section--teal { background: var(--teal-900); color: var(--on-teal); }
.section--tight { padding-block: clamp(2.2rem, 4vw, 3.2rem); }
.eyebrow-amber { color: var(--amber); }
.btn-ghost-dark { background: transparent; border-color: rgba(255,255,255,.28); color: var(--on-teal); }
.btn-ghost-dark:hover { border-color: #fff; color: #fff; }
.arr { display: inline-block; transition: transform .18s var(--ease); }

/* ---- HERO (deep teal band) ---- */
.phero { position: relative; overflow: hidden; background: var(--teal-900); color: var(--on-teal);
  padding-block: clamp(3rem, 6vw, 5.5rem); }
.phero__mono { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 40%; min-width: 300px;
  opacity: .05; pointer-events: none; z-index: 0; }
.phero .wrap { position: relative; z-index: 1; }
.phero__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: var(--tracking-display); line-height: .98; margin: .1rem 0 1.1rem;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem); color: var(--on-teal); max-width: 18ch; }
.phero__title .accent { color: var(--amber); }
.phero__lead { font-size: var(--fs-lead); color: var(--on-teal-muted); line-height: 1.55; max-width: 52ch; margin: 0 0 1.6rem; }
.phero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; }
.phero__chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.phero .chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: var(--on-teal); }
.phero .chip-flight { background: color-mix(in srgb, var(--amber) 22%, transparent);
  border-color: color-mix(in srgb, var(--amber) 50%, transparent); color: var(--amber); }

.crumb { font-family: var(--font-body); font-size: .82rem; color: var(--on-teal-muted); margin: 0 0 1.1rem;
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.crumb a { color: var(--on-teal-muted); text-decoration: none; }
.crumb a:hover { color: var(--amber); }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--on-teal); }

/* ---- section heads on light ---- */
.sechead { max-width: 62ch; margin: 0 0 2rem; }
.sechead .ldg-h2 { margin: 0 0 .6rem; }
.sechead .ldg-lead { margin: 0; }

/* ---- prose ---- */
.prose p { color: var(--ink-soft); line-height: 1.8; font-size: 1.06rem; margin: 0 0 1.15rem; max-width: 65ch; }
.prose p strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--teal); font-weight: 600; }
.prose a:hover { color: var(--orange); }
.prose h2 { font-family: var(--font-display); font-weight: 700; color: var(--ink); letter-spacing: var(--tracking-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.2; margin: 2.4rem 0 .7rem; }
.prose h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.2rem; margin: 1.7rem 0 .5rem; }
.prose ul, .prose ol { color: var(--ink-soft); line-height: 1.75; font-size: 1.04rem; margin: 0 0 1.2rem; padding-left: 1.3rem; max-width: 65ch; }
.prose li { margin: .4rem 0; }
.prose li strong { color: var(--ink); font-weight: 700; }

/* ---- generic CTA row ---- */
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ---- photo placeholder (stands in for brand photography) ---- */
.ph { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--teal-800); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; }
.ph--light { background: var(--teal-100); border-color: var(--border-teal); }
.ph__mark { width: 38%; opacity: .1; filter: brightness(0) invert(1); }
.ph--light .ph__mark { opacity: .16; filter: none; }
.ph__cap { position: absolute; bottom: 12px; left: 14px; font-family: var(--font-mono);
  font-size: 11px; color: rgba(255,255,255,.6); }
.ph--light .ph__cap { color: var(--muted); }

/* ---- stat / credibility band ---- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.stat { padding: 1.6rem 1.4rem; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; color: var(--teal); line-height: 1;
  font-size: clamp(2rem, 3.2vw, 2.8rem); letter-spacing: -.02em; }
.stat__num .u { color: var(--amber); }
.stat__label { margin: .5rem 0 0; font-size: .82rem; color: var(--muted); line-height: 1.35; }
@media (max-width: 720px) {
  .statband { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}

/* ---- two-column feature grid ---- */
.feat { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.feat--media-left { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 860px) { .feat, .feat--media-left { grid-template-columns: 1fr; } }

/* ---- reason cards ("why work with me") ---- */
.reasons { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .reasons { grid-template-columns: 1fr; } }
.reason { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem;
  border-top: 3px solid var(--teal-300); }
.reason__n { font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--amber); letter-spacing: .08em; }
.reason h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.2rem; margin: .35rem 0 .5rem; }
.reason p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: .96rem; }
.reason p a { color: var(--teal); font-weight: 600; }
.reason p a:hover { color: var(--orange); }

/* ---- pull quote ---- */
.pullquote { font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: var(--tracking-display); line-height: 1.02; font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--on-teal); margin: 0; max-width: 16ch; }
.pullquote .accent { color: var(--amber); }

/* ---- empty / coming-soon state ---- */
.empty { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--amber);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.6rem); }
.empty__badge { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--on-flight);
  background: var(--amber); border-radius: var(--radius-pill); padding: .32rem .8rem; margin-bottom: 1rem; }
.empty h2 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 .6rem; }
.empty p { margin: 0 0 1.1rem; color: var(--ink-soft); line-height: 1.7; font-size: 1.02rem; max-width: 56ch; }

/* ---- upcoming topic chips grid (videos / recaps roadmap) ---- */
.topicgrid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1.4rem; }
.topic { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.topic__k { font-family: var(--font-display); font-weight: 800; font-size: .72rem; color: var(--amber); letter-spacing: .1em; }
.topic h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; margin: .3rem 0 .3rem; }
.topic p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

/* ---- footer ---- */
.foot { background: var(--teal-900); color: var(--on-teal); padding-block: 3rem; margin-top: auto; }
.foot__grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr repeat(3, 1fr); }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot__brand img { height: 44px; filter: brightness(0) invert(1); }
.foot__brand p { color: var(--on-teal-muted); font-size: .9rem; margin-top: 1.1rem; max-width: 26ch; line-height: 1.6; }
.foot h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin: 0 0 .7rem; color: var(--on-teal); }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.foot a { color: var(--on-teal-muted); text-decoration: none; font-size: .9rem; }
.foot a:hover { color: var(--amber); }
.foot__bottom { margin-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem;
  color: var(--on-teal-muted); font-size: .82rem; }

/* ---- reveal (content always visible; transform-only entrance) ---- */
.reveal { opacity: 1; }
html.js-motion .reveal[data-rv="in"] { animation: rvIn .55s var(--ease) both; }
@keyframes rvIn { from { transform: translateY(20px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none !important; transform: none !important; opacity: 1 !important; }
}
