/* The Canine Guru — colors from TCG logo + Wix page (phone #BADA55, theme forest/teal) */
:root {
  --black: #0a0908;
  --ink: #12100d;
  --panel: #1c1813;
  --panel-2: #241f18;
  --red: #fe1c1c;
  --gold: #c9992b;
  --gold-soft: #e0c06a;
  --lime: #bada55;
  --cream: #f4ead6;
  --paper: #ece2ce;
  --muted: #a39884;
  --line: rgba(201, 153, 43, 0.32);
  --teal: #0b7763;
  --forest: #053c32;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Figtree", system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--lime); }
h1, h2, h3, .display {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 8vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
p { margin: 0 0 1em; }
.serif { font-family: "Source Serif 4", Georgia, serif; }
.wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--lime); color: #111; padding: 0.5rem 1rem;
}
.skip:focus { left: 0.5rem; top: 0.5rem; z-index: 80; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.55rem 0;
}
.brand img { height: 52px; width: auto; }
.nav {
  display: flex; align-items: center; gap: 1.25rem;
}
.nav a { color: var(--cream); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--red); color: #fff !important;
  padding: 0.45rem 0.85rem; border-radius: 2px;
  text-decoration: none !important; font-weight: 700;
}
.nav-cta:hover { background: #e01010; color: #fff !important; }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--cream); padding: 0.4rem 0.65rem; font: inherit; cursor: pointer;
}

@media (max-width: 820px) {
  .menu-btn { display: inline-block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #110f0c; flex-direction: column; align-items: stretch;
    padding: 1rem var(--pad) 1.25rem; border-bottom: 1px solid var(--line);
    gap: 0.75rem;
  }
  .nav.open { display: flex; }
  .nav-cta { justify-content: center; }
}

/* hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 18% 40%;
  filter: saturate(0.92) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.75) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  padding: clamp(5rem, 12vw, 7rem) 0 3.2rem;
}
.kicker {
  display: inline-block;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}
.motto {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.55rem, 4.5vw, 2.35rem);
  color: var(--gold-soft);
  margin: 0 0 0.65rem;
  font-weight: 500;
}
.lede {
  max-width: 38rem;
  font-size: 1.12rem;
  color: var(--paper);
}
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.78rem 1.15rem; font-weight: 700; text-decoration: none;
  border-radius: 2px; border: 1px solid transparent;
}
.btn-red { background: var(--red); color: #fff !important; }
.btn-red:hover { background: #e01010; color: #fff !important; }
.btn-ghost { border-color: var(--gold); color: var(--gold-soft) !important; }
.btn-ghost:hover { background: rgba(201,153,43,.12); }

.phone-row {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}
.phone-row a { color: var(--lime); font-weight: 700; text-decoration: none; font-size: 1.2rem; }
.phone-row a:hover { text-decoration: underline; }

/* sections */
section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.band-dark { background: var(--ink); }
.band-panel { background: var(--panel); }
.band-forest {
  background: linear-gradient(160deg, #053c32 0%, #0a1f1c 55%, #0a0908 100%);
}
.rule {
  width: 4rem; height: 3px; background: var(--gold); border: 0; margin: 0 0 1.2rem;
}
.subhead { color: var(--muted); max-width: 40rem; }

.split {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 840px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3.2rem; }
  .split.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse .copy { order: 2; }
}
.frame {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.frame img { width: 100%; }
.frame figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: #100e0b;
}

.specials {
  display: grid; gap: 1rem;
}
@media (min-width: 720px) { .specials { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.1rem;
}
.card h3 { color: var(--gold); margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }

.methods {
  display: grid; gap: 1rem;
}
@media (min-width: 720px) { .methods { grid-template-columns: 1fr 1fr; } }
.method {
  border-left: 3px solid var(--red);
  padding: 0.2rem 0 0.2rem 1rem;
}

.cities {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.55rem;
  list-style: none; padding: 0; margin: 1rem 0 0;
}
.cities li {
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* rates */
.rate-list { display: grid; gap: 0.85rem; }
.rate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.rate h3 { margin: 0; text-transform: none; letter-spacing: 0.02em; font-size: 1.15rem; }
.price {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.rate p { grid-column: 1 / -1; margin: 0.15rem 0 0; color: var(--paper); }
.note { font-size: 0.92rem; color: var(--muted); }

/* notes */
.note-grid { display: grid; gap: 1rem; }
@media (min-width: 760px) { .note-grid { grid-template-columns: 1fr 1fr; } }
.note-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--ink); border: 1px solid var(--line); padding: 1.2rem;
}
.note-card:hover { border-color: var(--gold); color: inherit; }
.note-card h3 { color: var(--gold-soft); text-transform: none; letter-spacing: 0; font-size: 1.35rem; }
.article { max-width: 42rem; }
.article p, .article li { font-family: "Source Serif 4", Georgia, serif; font-size: 1.12rem; }
.article h2, .article h3 { margin-top: 1.6em; }

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
  background: #070706;
  color: var(--muted);
  font-size: 0.95rem;
}
.site-footer strong { color: var(--cream); }
.site-footer a { color: var(--lime); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-grid {
  display: grid; gap: 1.4rem;
}
@media (min-width: 700px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.motto-sm { color: var(--gold); font-style: italic; font-family: "Source Serif 4", Georgia, serif; }

.call-dock {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--red); color: #fff; text-align: center;
  padding: 0.8rem; font-weight: 800; text-decoration: none;
}
.call-dock:hover { color: #fff; background: #e01010; }
@media (max-width: 820px) {
  .call-dock { display: block; }
  body { padding-bottom: 3.6rem; }
}

.page-hero { padding: 3.2rem 0 1.2rem; }
.page-hero .motto { font-size: clamp(1.3rem, 3vw, 1.8rem); }
