/* ============================================================
   Kirk's Tire x WPCA "Wheels on Fire" - Landing page styles
   ------------------------------------------------------------
   Scoped to the /wpca/ sub-page only.
   ============================================================ */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  color: var(--fg-on-cream);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; }

/* ============================================================
   Header
   ============================================================ */
.kt-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-600);
}
.kt-header__brand { display: flex; align-items: center; }
.kt-header__brand--left   { justify-self: start; }
.kt-header__brand--center { justify-self: center; }
.kt-header__brand--right  { justify-self: end; }

/* Brand marks (all PNG, sized per role). */
.kt-header__mark { display: block; width: auto; height: auto; }
.kt-header__mark--wof      { height: 104px; }
.kt-header__mark--wpca     { height: 68px;  }
.kt-header__lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kt-header__mark--wordmark { height: 56px; }
.kt-header__mark--badge    { height: 88px; }

/* ============================================================
   Hero
   ============================================================ */
.kt-hero {
  position: relative;
  min-height: 640px;
  background: var(--ink-900);
  overflow: hidden;
}
.kt-hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1a0e08 0%, #3a1e10 40%, #6a3010 75%, #d27a2a 100%);
  background-size: cover;
  background-position: center;
}
.kt-hero__media--photo {
  background: #1a0e08 url("assets/photos/hero-chuckwagon.jpg") center/cover no-repeat;
}
.kt-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.75) 35%, rgba(11,11,12,0.15) 60%, rgba(11,11,12,0) 80%),
    linear-gradient(180deg, rgba(11,11,12,0.30) 0%, rgba(11,11,12,0) 30%, rgba(11,11,12,0) 70%, rgba(11,11,12,0.55) 100%);
  pointer-events: none;
}
.kt-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 40px 80px;
}
.kt-hero__copy { max-width: 620px; }
.kt-hero__headline {
  margin: 0 0 28px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: var(--fs-hero);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: var(--tracking-display);
}
.kt-hero__headline > span { display: block; }
.kt-hero__script {
  font-family: var(--ff-script) !important;
  font-weight: 400;
  text-transform: none !important;
  color: var(--kirks-red-bright);
  font-size: 1.25em;
  line-height: 0.85;
  margin-top: 0.05em;
  transform: rotate(-3deg);
  transform-origin: left center;
  display: inline-block !important;
  letter-spacing: -0.01em;
}
.kt-hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-on-dark-2);
  margin: 0 0 32px;
  max-width: 520px;
}
.kt-hero__sub-emph { color: var(--kirks-red-bright); font-weight: 600; }
.kt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Built for the Road
   ============================================================ */
.kt-road {
  background: var(--ink-800);
  background-image:
    radial-gradient(at 10% 0%, rgba(200,16,46,0.06) 0%, transparent 50%),
    radial-gradient(at 90% 100%, rgba(210,168,90,0.04) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  border-top: 1px solid var(--ink-600);
  border-bottom: 1px solid var(--ink-600);
}
.kt-road__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 64px;
  align-items: start;
}
.kt-road__title { color: #fff; margin: 0 0 20px; }
.kt-road__copy p { margin: 0 0 16px; }
.kt-road__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
}
.kt-road__feature {
  position: relative;
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--fg-on-dark-2);
}
.kt-road__feature + .kt-road__feature::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--ink-500);
}
.kt-road__icon {
  color: var(--gold-500);
  margin-bottom: 16px;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.kt-road__icon img { width: 56px; height: 56px; }
.kt-road__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}
.kt-road__label > div + div {
  font-weight: 500;
  color: var(--fg-on-dark-2);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   WPCA Community Tire Program (cream)
   ============================================================ */
.kt-program {
  background: var(--cream-100);
  color: var(--fg-on-cream);
  padding: 72px 0;
}
.kt-program__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.kt-program__title {
  color: var(--fg-on-cream);
  margin: 0 0 56px;
  font-size: clamp(32px, 3.4vw, 44px);
}
.kt-program__grid {
  display: grid;
  /* Middle column gets 1.6fr (was 1.1fr) so "(403) 539-7788" at
     the clamp(28px, 3.4vw, 38px) display-font size fits on one
     line without wrapping. Side bullet columns stay 1fr each;
     the 200px visual columns stay - they only host the tire and
     alloy-wheel SVGs which scale to fit. */
  grid-template-columns: 200px 1fr 1.6fr 1fr 200px;
  gap: 32px;
  align-items: center;
}
.kt-program__visual {
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.kt-program__visual--left  { justify-content: flex-start; }
.kt-program__visual--right { justify-content: flex-end; }
.kt-program__visual svg { max-height: 360px; }

.kt-program__col-title {
  color: var(--kirks-red);
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.kt-program__col-lead { margin: 0 0 16px; color: var(--fg-on-cream); font-weight: 500; }
.kt-bullets {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-on-cream);
}
.kt-bullets li {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}
.kt-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  background: var(--kirks-red);
  border-radius: 50%;
}

.kt-program__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}
.kt-program__form-title {
  text-align: center;
  color: var(--fg-on-cream);
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.kt-select-wrap { position: relative; }
.kt-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.kt-select-chevron {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  pointer-events: none;
  opacity: 0.55;
}
.kt-program__submit {
  width: 100%;
  justify-content: center;
  height: 50px;
  font-size: 15px;
  margin-top: 4px;
}
.kt-program__success {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--r-2);
  padding: 24px;
  text-align: center;
  color: var(--fg-on-cream);
  font-size: 15px;
  line-height: 1.5;
}
.kt-program__error {
  background: #fff5f5;
  border: 1px solid #f5c2c7;
  border-radius: var(--r-2);
  padding: 12px 14px;
  color: #842029;
  font-size: 14px;
  line-height: 1.45;
}

/* honeypot field - hidden from sighted users + AT */
.kt-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ============================================================
   Schedule
   ============================================================ */
.kt-schedule {
  background: var(--ink-900);
  background-image:
    radial-gradient(at 50% 0%, rgba(200,16,46,0.05), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  padding: 64px 0;
}
.kt-schedule__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.kt-schedule__title { color: #fff; margin: 0 0 40px; }
/* NOTE: the .kt-schedule__grid layout rule lives further down in
   the "Schedule horizontal scroller" section. The original 5-col
   `display: grid; grid-template-columns: repeat(5, 1fr)` rule
   that used to live here was DELETED on 2026-05-29 - it shared a
   selector with the scroller rule but the cascade only overrode
   the properties it re-declared (`display`, `gap`), so the old
   `grid-template-columns: repeat(5, 1fr)` was still applying.
   Combined with the new `grid-auto-flow: column`, that created
   5 explicit 1fr columns + 6 implicit columns and the 1fr cols
   collapsed to ~0 width, hiding cards 1-5 at x=0 while 6-10
   filled the viewport. */
.kt-event {
  display: flex;
  flex-direction: column;
  background: var(--ink-700);
  border-radius: var(--r-2);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 22px rgba(0,0,0,0.35);
}
.kt-event__media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.kt-event__media--light {
  background:
    radial-gradient(circle at 50% 40%, #FFFFFF 0%, #F2EDE4 70%, #DCD3BE 100%);
}
.kt-event__media--dark {
  background:
    radial-gradient(circle at 50% 40%, #2A2A2C 0%, #141415 70%, #0B0B0C 100%);
}
.kt-event__media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.kt-event__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.kt-event__logo img {
  max-width: 90%;
  max-height: 90%;
  width: auto; height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* ============================================================
   Trusted Since 1936
   ============================================================ */
.kt-trusted {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.kt-trusted__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 32px 48px;
  align-items: start;
  position: relative;
}
.kt-trusted__copy { grid-column: 1; grid-row: 1; max-width: 460px; }
.kt-trusted__title {
  margin: 0 0 16px;
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: var(--tracking-display);
}
.kt-trusted__white { color: #fff; }
.kt-trusted__red   { color: var(--kirks-red); }
.kt-trusted__stats {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-self: end;
}
.kt-trusted__stat {
  position: relative;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.kt-trusted__stat + .kt-trusted__stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--ink-500);
}
.kt-trusted__icon {
  color: var(--gold-500);
  height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.kt-trusted__icon img { width: 56px; height: 56px; }
.kt-trusted__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.kt-trusted__label > div + div {
  font-weight: 500;
  color: var(--fg-on-dark-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.kt-trusted__photo {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  align-self: stretch;
  min-height: 360px;
  background: linear-gradient(120deg, #1a1410 0%, #3a2818 50%, #5a3820 100%);
}
.kt-trusted__photo--photo {
  background: #1a1410 url("assets/photos/trusted-truck.jpg") center/cover no-repeat;
}
.kt-trusted__photo-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,0.6) 0%, rgba(11,11,12,0.15) 30%, rgba(11,11,12,0) 60%);
  pointer-events: none;
}
.kt-trusted__bottom {
  border-top: 1px solid var(--ink-600);
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-on-dark-3);
  max-width: var(--container);
  margin: 0 auto;
}
.kt-trusted__bottom a {
  color: var(--fg-on-dark-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kt-trusted__bottom a:hover { color: #fff; }

/* ============================================================
   Icons (mask-image so SVG stroke colour follows parent text)
   ------------------------------------------------------------
   Switched from <img> to CSS mask-image on 2026-05-29 because
   SVGs loaded via <img> can't see parent CSS - their internal
   `currentColor` falls back to black, which made every icon
   render black on the dark sections. With mask-image, the SVG
   becomes an alpha mask and `background-color: currentColor`
   takes the icon colour from whatever the parent text colour
   is - gold-500 on the dark sections, white on the red CTA,
   etc.
   ============================================================ */
.kt-icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.kt-icon--handshake    { -webkit-mask-image: url("assets/icons/handshake.svg");    mask-image: url("assets/icons/handshake.svg"); }
.kt-icon--tag          { -webkit-mask-image: url("assets/icons/tag.svg");          mask-image: url("assets/icons/tag.svg"); }
.kt-icon--cowboy-hat   { -webkit-mask-image: url("assets/icons/cowboy-hat.svg");   mask-image: url("assets/icons/cowboy-hat.svg"); }
.kt-icon--gift         { -webkit-mask-image: url("assets/icons/gift.svg");         mask-image: url("assets/icons/gift.svg"); }
.kt-icon--map-pin      { -webkit-mask-image: url("assets/icons/map-pin.svg");      mask-image: url("assets/icons/map-pin.svg"); }
.kt-icon--badge-90     { -webkit-mask-image: url("assets/icons/badge-90.svg");     mask-image: url("assets/icons/badge-90.svg"); }
.kt-icon--alberta      { -webkit-mask-image: url("assets/icons/alberta.svg");      mask-image: url("assets/icons/alberta.svg"); }
.kt-icon--tire         { -webkit-mask-image: url("assets/icons/tire.svg");         mask-image: url("assets/icons/tire.svg"); }
.kt-icon--arrow-right  { -webkit-mask-image: url("assets/icons/arrow-right.svg");  mask-image: url("assets/icons/arrow-right.svg"); }

/* Per-slot icon sizing. Selector targets the icon span inside
   the existing icon-box wrappers; old `img` rules retained
   below in case anything else still uses an <img>. */
.kt-road__icon .kt-icon    { width: 56px; height: 56px; }
.kt-trusted__icon .kt-icon { width: 56px; height: 56px; }
.kt-btn__icon              { width: 18px; height: 18px; }

/* ============================================================
   Sales contact card (cream program section centre column).
   Replaces the original lead form on 2026-05-29.
   ============================================================ */
.kt-contact {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--r-2);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.kt-contact__eyebrow {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--kirks-red);
  margin: 0 0 8px;
}
.kt-contact__title {
  color: var(--fg-on-cream);
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.kt-contact__lead {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-on-cream-2);
  margin: 0 0 18px;
}
.kt-contact__phone {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: 0.02em;
  color: var(--kirks-red);
  text-decoration: none;
  line-height: 1.1;
  margin: 4px 0 4px;
  /* Defensive: at the smallest container widths the calc above
     might still come in under the rendered number width. nowrap
     guarantees it stays on one line; if the container is truly
     too narrow the number stays one line and crops rather than
     breaking into two lines. */
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.kt-contact__phone:hover  { color: var(--kirks-red-deep); }
.kt-contact__phone:focus-visible {
  outline: 3px solid rgba(200,16,46,0.35);
  outline-offset: 4px;
  border-radius: var(--r-1);
}
.kt-contact__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--fg-on-cream-3);
}
.kt-contact__divider::before,
.kt-contact__divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--cream-200);
}
.kt-contact__email {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-on-cream);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px solid var(--cream-200);
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  word-break: break-all;
}
.kt-contact__email:hover {
  color: var(--kirks-red);
  border-bottom-color: var(--kirks-red);
}
.kt-contact__at {
  /* Pre-JS state: the [at] stand-in for the missing @ sign.
     wpca.js replaces the entire span's textContent with the
     real address on load, so this rule only styles the
     no-JS fallback. */
  color: var(--fg-on-cream-3);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   Schedule horizontal scroller
   ------------------------------------------------------------
   The .kt-schedule__grid was a 5-column CSS grid in the
   original 5-event design. With 11 events it becomes a
   horizontally-scrolling row whose card width is computed
   from a --visible CSS variable - 5 / 3 / 1.5 at the desktop
   / tablet / mobile breakpoints below.
   ============================================================ */
.kt-schedule__scroller {
  position: relative;
}
.kt-schedule__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  /* `proximity` instead of `mandatory`: `mandatory` forced a snap
     on every layout, and combined with any horizontal padding the
     leftmost card's start-aligned snap point would be negative
     relative to scrollLeft - the browser would then snap to the
     RIGHT edge on first paint, hiding the first 5 cards. With
     `proximity`, snap only kicks in once the user is already
     scrolling, which is what we actually want. */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* No horizontal padding - keeps the leftmost card's snap point
     at scrollLeft 0. The round nav buttons overlap the viewport
     intentionally; cards under them are visible through their
     drop-shadowed circles. */
  padding: 4px 0 8px;
}
.kt-schedule__viewport::-webkit-scrollbar { display: none; }
/* Flexbox instead of grid + grid-auto-flow: column. Chrome
   handles percentage-sized grid-auto-columns inside an overflow
   parent inconsistently with Firefox (the grid container's
   intrinsic width feeds back into the calc), and the safer
   pattern for "horizontal scroller of equal-width cards" is
   flexbox with explicit flex-basis. min-width: 0 on the cards
   prevents the default `min-width: auto` from forcing the card
   wider than its flex-basis if a logo image happens to be big. */
.kt-schedule__grid {
  --visible: 5;
  --gap: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
}
.kt-schedule__grid .kt-event {
  flex: 0 0 calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible));
  min-width: 0;
  scroll-snap-align: start;
}

.kt-schedule__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--kirks-red);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  transition: background-color var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  padding: 0;
}
.kt-schedule__nav:hover:not([disabled]) { background: var(--kirks-red-deep); }
.kt-schedule__nav:focus-visible        { outline: 3px solid rgba(255,255,255,0.6); outline-offset: 2px; }
.kt-schedule__nav[disabled],
.kt-schedule__nav.is-disabled {
  opacity: 0.25;
  cursor: default;
  background: var(--ink-500);
}
.kt-schedule__nav--prev { left: 4px; }
.kt-schedule__nav--next { right: 4px; }
.kt-schedule__nav svg   { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .kt-program__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "form form"
      "left right"
      "vl vr";
  }
  .kt-program__form        { grid-area: form; order: -1; max-width: 480px; margin: 0 auto 16px; width: 100%; }
  .kt-program__col--left   { grid-area: left; }
  .kt-program__col--right  { grid-area: right; }
  .kt-program__visual--left  { grid-area: vl; }
  .kt-program__visual--right { grid-area: vr; }
  .kt-program__visual svg { max-height: 200px; }

  .kt-schedule__grid { --visible: 3; }
  .kt-road__inner    { grid-template-columns: 1fr; gap: 40px; }
  .kt-trusted__inner { grid-template-columns: 1fr; }
  .kt-trusted__photo { grid-column: 1; grid-row: 3; min-height: 280px; }
}

@media (max-width: 720px) {
  .kt-header { grid-template-columns: 1fr; gap: 16px; padding: 16px 20px; text-align: center; }
  .kt-header__brand { justify-self: center !important; }

  /* Mobile header marks: smaller so all three lockups fit in
     stacked column without dominating the viewport. */
  .kt-header__mark--wof      { height: 80px; }
  .kt-header__mark--wpca     { height: 56px; }
  .kt-header__mark--wordmark { height: 42px; }
  .kt-header__mark--badge    { height: 64px; }

  .kt-hero__inner { padding: 40px 20px 56px; }
  .kt-hero__cta { flex-direction: column; align-items: stretch; }
  .kt-hero__cta .kt-btn { justify-content: center; }

  .kt-road__inner, .kt-program__inner, .kt-schedule__inner, .kt-trusted__inner { padding-left: 20px; padding-right: 20px; }
  .kt-road__features { grid-template-columns: 1fr 1fr; }
  .kt-road__feature:nth-child(odd)::before { display: none; }
  .kt-road__feature + .kt-road__feature::before {
    top: auto; bottom: auto; left: 0; right: 0; top: 0;
    width: auto; height: 1px;
  }

  .kt-program__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "left"
      "right";
  }
  .kt-program__visual { display: none; }

  /* Schedule: show 1.5 cards (a peek of the next) so users
     understand they can scroll. Hide the round nav buttons on
     mobile - touch swipe handles it. */
  .kt-schedule__grid { --visible: 1.5; }
  .kt-schedule__nav  { display: none; }

  .kt-trusted__stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .kt-trusted__stat:nth-child(odd)::before { display: none; }
  .kt-trusted__bottom { flex-direction: column; gap: 8px; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }
