/* Obedient K9 Academy — conversion rebuild
   Direction: urban editorial. Warm paper + graphite ink + one signal green.
   Type: Bricolage Grotesque (display) / Instrument Sans (body) */

:root {
  --paper: #f7f4ee;
  --paper-2: #efeae1;
  --ink: #14150f;
  --ink-2: #2a2c24;
  --muted: #6b6d62;
  --line: rgba(20, 21, 15, 0.10);
  --green: #2fae44;
  --green-deep: #0d4d24;
  --green-tint: rgba(47, 174, 68, 0.12);
  --gold: #b58a2b;

  --f-display: "Bricolage Grotesque", Georgia, serif;
  --f-body: "Instrument Sans", -apple-system, sans-serif;

  --shell: 1180px;
  --pad: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--green); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 15px 26px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background .14s ease, border-color .14s ease, color .14s ease;
}
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--green); color: #06210e; box-shadow: 0 1px 0 rgba(0,0,0,.14); }
.btn-primary:hover { background: #35c04d; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(20,21,15,.22); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(20,21,15,.04); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 16px; }

/* ---------- header ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: 12.5px;
  letter-spacing: .01em;
}
.topbar .shell { display: flex; align-items: center; justify-content: center; gap: 22px; height: 38px; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar .sep { opacity: .3; }
.topbar .t-hide { display: none; }

header.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,244,238,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.nav .shell { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: none; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--ink-2); padding: 6px 0; border-bottom: 1.5px solid transparent; transition: border-color .15s, color .15s; }
.nav-links a:hover { color: var(--ink); border-color: var(--green); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-links + .nav-cta { margin-left: 0; }
.nav-phone { display: none; font-family: var(--f-display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; text-decoration: none; }
.nav-phone span { display: block; font-family: var(--f-body); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.call-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 5px; color: var(--ink);
  border: 1px solid rgba(20,21,15,.22); text-decoration: none;
  transition: border-color .14s, background .14s;
}
.call-icon:hover { border-color: var(--ink); background: rgba(20,21,15,.04); }
.nav-book { padding: 13px 18px; font-size: 14.5px; }
.nb-short { display: inline; }
.nb-long { display: none; }
@media (min-width: 980px) {
  .call-icon { display: none; }
  .nav-book { padding: 15px 26px; font-size: 15px; }
  .nb-short { display: none; }
  .nb-long { display: inline; }
}
@media (max-width: 400px) {
  .nav-book { padding: 12px 13px; font-size: 13.5px; }
  .brand img { height: 36px; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-media img { animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.02); } to { transform: scale(1.11); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,13,9,.95) 0%, rgba(12,13,9,.78) 46%, rgba(12,13,9,.42) 100%),
    linear-gradient(to top, rgba(12,13,9,.9), rgba(12,13,9,0) 45%);
}
.hero .shell { position: relative; z-index: 2; display: grid; gap: 44px; padding-top: 58px; padding-bottom: 58px; }

.hero-copy h1 {
  font-size: clamp(40px, 7.4vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-copy h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: clamp(16px, 2vw, 18.5px); color: rgba(255,255,255,.76); max-width: 34em; margin: 0 0 26px; }
.hero-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 10px; }
.hero-list li { position: relative; padding-left: 27px; font-size: 15.5px; color: rgba(255,255,255,.88); }
.hero-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 8px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.stars { color: #ffc53d; letter-spacing: 2px; font-size: 14px; }
.proof-chip { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.74); }
.proof-chip b { color: #fff; font-weight: 600; }

/* form card */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
  border-top: 4px solid var(--green);
}
.form-card h2 { font-size: 25px; letter-spacing: -.03em; margin-bottom: 6px; }
.form-card .fine { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 15.5px; color: var(--ink);
  background: #fff; border: 1px solid rgba(20,21,15,.16); border-radius: 5px;
  padding: 13px 14px; transition: border-color .14s, box-shadow .14s;
}
.field textarea { min-height: 82px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(20,21,15,.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint);
}
.field.err input, .field.err select { border-color: #c0392b; }
.field .msg { display: none; font-size: 12px; color: #c0392b; margin-top: 5px; }
.field.err .msg { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; line-height: 1.5; }
.form-done { display: none; text-align: center; padding: 26px 8px; }
.form-done h3 { font-size: 24px; margin-bottom: 10px; }
.form-done p { color: var(--muted); margin: 0; }

/* ---------- award strip ---------- */
.awards { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.awards .shell { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 20px; padding-top: 26px; padding-bottom: 26px; }
.awards .aw {
  height: 78px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 12px 18px;
}
.awards .aw img { height: 100%; width: auto; max-width: 220px; object-fit: contain; }
.awards .aw-label {
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); width: 100%; text-align: center; margin-bottom: 4px;
}

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.sec-head { max-width: 40rem; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(30px, 4.6vw, 48px); margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 17px; margin: 0; }
.dark { background: var(--ink); color: #fff; }
.dark .sec-head p { color: rgba(255,255,255,.62); }
.dark h2, .dark h3 { color: #fff; }

/* problem */
.problem-grid { display: grid; gap: 40px; align-items: center; }
.pain { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 2px; }
.pain li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: 16.5px; color: rgba(255,255,255,.86);
}
.pain li:last-child { border-bottom: 0; }
.pain .no { font-family: var(--f-display); font-size: 13px; color: var(--green); padding-top: 3px; min-width: 22px; }
.problem-media { position: relative; }
.problem-media img { border-radius: 8px; }
.problem-media .tag {
  position: absolute; left: -10px; bottom: 22px; background: var(--green); color: #06210e;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 3px;
}

/* video wall */
.vid-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.vid {
  position: relative; border-radius: 8px; overflow: hidden; background: #000;
  aspect-ratio: 16 / 10; cursor: pointer;
}
.vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.05));
  transition: opacity .2s ease;
}
.vid.playing .play { opacity: 0; pointer-events: none; }
.vid .play span {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.4); transition: transform .16s ease;
}
.vid:hover .play span { transform: scale(1.07); }
.vid .play span::after {
  content: ""; border-left: 15px solid var(--ink); border-top: 9px solid transparent;
  border-bottom: 9px solid transparent; margin-left: 4px;
}
.vid .cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .01em; text-shadow: 0 1px 6px rgba(0,0,0,.8);
  transition: opacity .2s ease;
}
.vid.playing .cap { opacity: 0; }

/* programs */
.prog-grid { display: grid; gap: 18px; }
.prog {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 30px 26px 26px; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.prog:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,21,15,.09); }
.prog.feature { border-color: var(--green); box-shadow: 0 12px 30px rgba(47,174,68,.14); }
.prog .badge {
  align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; background: var(--green-tint); color: var(--green-deep);
  padding: 6px 11px; border-radius: 3px; margin-bottom: 16px;
}
.prog h3 { font-size: 26px; margin-bottom: 8px; }
.prog .who { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.prog ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.prog li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink-2); }
.prog li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.prog .price { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.prog .price b { font-family: var(--f-display); font-size: 22px; letter-spacing: -.03em; }
.prog .price span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.prog .btn { margin-top: 16px; }

.price-note {
  margin-top: 26px; padding: 20px 24px; background: var(--paper-2);
  border-left: 3px solid var(--green); border-radius: 0 6px 6px 0;
  font-size: 15px; color: var(--ink-2);
}
.price-note b { font-weight: 600; }

/* issues */
.issues { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.11); border-radius: 8px; overflow: hidden; }
.issue { background: var(--ink); padding: 26px 20px; }
.issue h3 { font-size: 18px; margin-bottom: 7px; }
.issue p { font-size: 14px; color: rgba(255,255,255,.58); margin: 0; line-height: 1.5; }

/* screened */
.screened-grid { display: grid; gap: 36px; align-items: center; }
.screened-body p { font-size: 16.5px; color: var(--ink-2); margin: 0 0 16px; }
.screened-body .kicker {
  font-family: var(--f-display); font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: -.03em; color: var(--ink); margin: 24px 0 8px;
}
.creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.creds span {
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid var(--line); background: #fff; padding: 8px 13px; border-radius: 3px;
}
.screened-media { display: grid; gap: 12px; }
.screened-media img { border-radius: 6px; border: 1px solid var(--line); }

/* reviews */
.rev-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; margin-bottom: 34px; }
.rev-score { font-family: var(--f-display); font-size: 56px; letter-spacing: -.04em; line-height: 1; }
.rev-meta { font-size: 14.5px; color: var(--muted); }
.rev-grid { display: grid; gap: 16px; }
.rev {
  background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 26px 24px;
  display: flex; flex-direction: column;
}
.rev blockquote { margin: 12px 0 20px; font-size: 16.5px; line-height: 1.55; color: var(--ink-2); }
.rev .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.rev .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 15px; letter-spacing: -.01em;
}
.rev .who b { display: block; font-size: 14.5px; font-weight: 600; }
.rev .who small { color: var(--muted); font-size: 13px; }

.shots { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
.shots img {
  border-radius: 6px; border: 1px solid var(--line); background: #fff;
  width: 100%; height: 190px; object-fit: cover; object-position: 50% 0;
}
.shots-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; }

/* faq */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.q { border-bottom: 1px solid var(--line); }
.q summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--f-display); font-size: clamp(18px, 2.3vw, 21px); letter-spacing: -.02em;
}
.q summary::-webkit-details-marker { display: none; }
.q summary::after {
  content: ""; position: absolute; right: 6px; top: 30px; width: 11px; height: 11px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(45deg); transition: transform .2s ease;
}
.q[open] summary::after { transform: rotate(-135deg); top: 34px; }
.q .a { padding: 0 30px 24px 0; color: var(--ink-2); font-size: 16px; }
.q .a p { margin: 0 0 10px; }
.q .a p:last-child { margin: 0; }

/* closer */
.closer { background: var(--green-deep); color: #fff; }
.closer .shell { display: grid; gap: 40px; align-items: center; }
.closer h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.closer p { color: rgba(255,255,255,.76); font-size: 17px; margin: 0 0 24px; }
.closer .steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.closer .steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,.88); }
.closer .steps .n {
  min-width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--green);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; margin-top: 1px;
}

/* footer */
footer { background: var(--ink); color: rgba(255,255,255,.62); font-size: 14.5px; padding: 56px 0 28px; }
.f-grid { display: grid; gap: 34px; }
footer img.f-logo { height: 52px; width: auto; margin-bottom: 16px; }
footer h4 { font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); margin: 0 0 14px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
footer a { text-decoration: none; transition: color .14s; }
footer a:hover { color: var(--green); }
footer .f-phone { font-family: var(--f-display); font-size: 26px; color: #fff; letter-spacing: -.03em; text-decoration: none; display: block; margin-bottom: 6px; }
.f-bot { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* sticky mobile bar */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,21,15,.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(110%); transition: transform .26s ease;
}
.mbar.show { transform: translateY(0); }
.mbar .btn { padding: 13px 10px; font-size: 14.5px; }

/* reveal */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: none; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: rgba(20,21,15,.24); border-radius: 6px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: rgba(20,21,15,.38); }

/* ---------- responsive ---------- */
@media (min-width: 700px) {
  .topbar .t-hide { display: inline; }
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
  .shots { grid-template-columns: repeat(2, 1fr); }
  .issues { grid-template-columns: repeat(3, 1fr); }
  .form-card { padding: 32px 30px 28px; }
  .f-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-phone { display: block; }
  .mbar { display: none; }
  .hero .shell { grid-template-columns: 1.15fr .85fr; gap: 56px; padding-top: 76px; padding-bottom: 84px; align-items: center; }
  .problem-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; }
  .vid-grid { grid-template-columns: repeat(3, 1fr); }
  .prog-grid { grid-template-columns: repeat(3, 1fr); }
  .screened-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .screened-media { grid-template-columns: 1fr; }
  .closer .shell { grid-template-columns: 1.1fr .9fr; gap: 64px; }
  .shots { grid-template-columns: repeat(3, 1fr); }
  .shots img { height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
