/* Florida's Finest K9 site styles */
:root {
  --palm: #1e3a2f;
  --palm-2: #264a3c;
  --sunset: #f07a1a;
  --sunset-soft: #fde6d2;
  --shell: #f2f5f1;
  --paper: #ffffff;
  --ink: #15211b;
  --muted: #4b5a52;
  --sea: #2f7d80;
  --line: rgba(21, 33, 27, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Big Shoulders Display", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1140px;
  --radius-lg: 18px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--shell);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-underline-offset: 3px; }
a:hover { color: var(--palm); }
:focus-visible { outline: 3px solid var(--sunset); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.85rem); font-weight: 700; }
p { margin: 0 0 1em; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.35em; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--sunset); color: var(--ink); padding: 0.6rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
}
.btn-primary { background: var(--sunset); color: var(--ink); }
.btn-primary:hover { background: #ff8a2e; color: var(--ink); }
.btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: inherit; }
.on-light .btn-ghost:hover { background: rgba(21, 33, 27, 0.05); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Header */
.site-header { background: var(--palm); color: #fff; position: relative; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; color: #fff; text-decoration: none; }
.brand img { width: 56px; height: 56px; }
.brand span { white-space: nowrap; font-family: var(--display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.brand small { display: block; font-family: var(--body); font-weight: 500; font-size: 0.8rem; opacity: 0.8; margin-top: 0.2rem; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav ul { list-style: none; display: flex; gap: 1.2rem; margin: 0; padding: 0; }
.nav a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.97rem; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--sunset); }
.nav .btn { color: var(--ink); }
.nav-phone { color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.menu-toggle {
  display: none; background: none; border: 2px solid var(--line-light); color: #fff;
  border-radius: var(--radius-sm); padding: 0.5rem 0.75rem; font: 600 0.95rem var(--body); cursor: pointer;
}

@media (max-width: 1120px) {
  .menu-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--palm); flex-direction: column; align-items: stretch;
    padding: 0.5rem 1.25rem 1.5rem; gap: 1rem; border-top: 1px solid var(--line-light);
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--line-light); }
  .nav-phone { display: none; }
}

/* Hero */
.hero { background: var(--palm); color: #fff; padding: 3.5rem 0 4.5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; max-width: 12ch; }
.hero .lede { color: rgba(255, 255, 255, 0.85); }
.hero-photo { position: relative; }
.hero-photo img { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero-photo .hero-badge {
  aspect-ratio: 1; object-fit: contain; border-radius: 50%;
  position: absolute; left: -28px; bottom: -28px; width: 128px; height: 128px;
  background: var(--palm); border-radius: 50%; padding: 8px;
}
.proof { list-style: none; padding: 0; margin: 2.25rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.proof li { display: flex; align-items: center; gap: 0.5rem; }
.proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sunset); }

@media (max-width: 860px) {
  .hero { padding: 2rem 0 3.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo { max-width: 460px; margin-left: 28px; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .hero-photo .hero-badge { width: 100px; height: 100px; }
}

/* Page hero (inner pages) */
.page-hero { background: var(--palm); color: #fff; padding: 3rem 0 3.25rem; }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.25rem); max-width: 16ch; }
.page-hero .lede { color: rgba(255, 255, 255, 0.85); }
.crumbs { font-size: 0.9rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.7); }
.crumbs a { color: rgba(255, 255, 255, 0.85); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-white { background: var(--paper); }
.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Steps (real sequence) */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.steps li { counter-increment: step; border-top: 2px solid var(--ink); padding-top: 1rem; }
.steps li::before {
  content: counter(step); display: block; font-family: var(--display); font-weight: 800;
  font-size: 2.75rem; line-height: 1; color: var(--sea); margin-bottom: 0.5rem;
}
.steps h3 { margin-bottom: 0.35em; }
.steps p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Signature: the leash comes off */
.leash { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.stage { padding: 2.25rem 1.75rem 0 0; position: relative; }
.stage::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 0;
  border-top: 5px solid var(--sunset);
}
.stage:first-child::after {
  content: ""; position: absolute; top: -9px; left: 0; width: 18px; height: 18px;
  border-radius: 50%; border: 5px solid var(--sunset); background: var(--shell);
}
.section-white .stage:first-child::after { background: var(--paper); }
.stage-2::before { border-top-style: dashed; }
.stage-3::before {
  border-top: 5px dotted var(--sunset);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 85%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 85%);
}
.stage-name { font-family: var(--display); font-weight: 800; font-size: 2.25rem; line-height: 1; margin: 0 0 0.25rem; }
.stage-tag { font-weight: 700; color: var(--sea); margin-bottom: 0.9rem; }
.stage p { color: var(--muted); }
.stage img { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 1.1rem; width: 100%; }
.stage .price { font-weight: 700; color: var(--ink); }
.skills { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skills li { background: var(--sunset-soft); color: var(--ink); border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.9rem; font-weight: 600; }
@media (max-width: 860px) {
  .leash { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage { padding-right: 0; }
}

/* Two-column feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split img { border-radius: var(--radius-lg); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* Problem list */
.problems { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 3rem; }
.problems li { break-inside: avoid; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.problems strong { display: block; font-size: 1.05rem; }
.problems span { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 700px) { .problems { columns: 1; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review { background: var(--paper); border-left: 5px solid var(--sunset); padding: 1.5rem 1.5rem 1.25rem; margin: 0; }
.section-white .review { background: var(--shell); }
.review blockquote { margin: 0 0 1rem; }
.review blockquote p { margin: 0; }
.review figcaption { font-weight: 700; }
.review figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: 0.9rem; }
.stars { color: var(--sunset); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 0.6rem; }

/* Areas */
.areas { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.areas li { border: 1.5px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem; font-weight: 600; background: var(--paper); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.12rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 1.6rem; line-height: 1; color: var(--sea); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); max-width: 68ch; }

/* CTA band */
.cta-band { background: var(--sunset); color: var(--ink); padding: 3.5rem 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.cta-band h2 { margin: 0; max-width: 18ch; }
.cta-band p { margin: 0.4rem 0 0; font-weight: 500; }
.cta-band .btn-dark { background: var(--ink); color: #fff; }
.cta-band .btn-dark:hover { background: var(--palm); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(21, 33, 27, 0.08); }

/* Pricing notes */
.notes { background: var(--paper); border-radius: var(--radius-lg); padding: 1.75rem 2rem; }
.notes ul { margin: 0; padding-left: 1.2em; color: var(--muted); }
.notes li { margin-bottom: 0.35rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.contact-card { background: var(--palm); color: #fff; border-radius: var(--radius-lg); padding: 2rem; }
.contact-card a { color: #fff; font-weight: 700; }
.contact-card h2 { color: #fff; font-size: 2rem; }
.contact-card dl { margin: 0; }
.contact-card dt { font-size: 0.9rem; opacity: 0.75; margin-top: 1rem; }
.contact-card dd { margin: 0.15rem 0 0; font-size: 1.1rem; }
.form { background: var(--paper); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: var(--shell);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0.75rem 0.85rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(47, 125, 128, 0.2); }
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 1rem 0 0; font-weight: 600; }
.form-status.ok { color: var(--sea); }
.form-status.err { color: #b3261e; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 1.5rem; }
}

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.8); padding: 3.5rem 0 6rem; font-size: 0.97rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.75rem; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.social a:hover { border-color: var(--sunset); }
.social svg { width: 18px; height: 18px; fill: #fff; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.88rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
@media (min-width: 1121px) { .site-footer { padding-bottom: 2.5rem; } }

/* Mobile action bar */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: none; grid-template-columns: 1fr 1fr 1.3fr; gap: 0.5rem;
  background: var(--palm); padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-light);
}
.action-bar a { padding: 0.7rem 0.5rem; font-size: 0.95rem; }
.action-bar .btn-ghost { color: #fff; }
@media (max-width: 1120px) { .action-bar { display: grid; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (max-width: 520px) {
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 1.35rem; }
  .brand small { display: none; }
}
.section-head { max-width: 780px; }
