/* PawDesk — warm professional landing (US groomers + boarding) */
:root {
  --forest: #1A2F23;
  --forest-mid: #243D2E;
  --ink: #1C1917;
  --muted: #5C534C;
  --line: #E5D9CC;
  --cream: #F7F1E8;
  --cream-deep: #EFE6D8;
  --terracotta: #C45C26;
  --terracotta-dark: #A3481C;
  --clay: #E8A87C;
  --sage: #6B8F71;
  --sage-soft: #D9E8DC;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(26, 47, 35, 0.12);
  --radius: 14px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--terracotta); }
h1, h2, h3 {
  color: var(--forest);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.05rem, 4.8vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  padding: 15px 26px;
  border-radius: 10px;
  border: 2px solid var(--terracotta);
  font-size: 1.02rem;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s, transform 0.15s, background 0.15s;
}
.btn:hover { filter: brightness(0.96); transform: translateY(-1px); }
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--cream-deep); filter: none; }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); filter: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.08rem; }

/* Top bar + header */
.announce {
  background: var(--forest);
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-weight: 600;
  padding: 10px 16px;
  font-size: 0.92rem;
}
.announce strong { color: var(--clay); }
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--forest); }
.nav-cta { display: none; }
@media (min-width: 880px) {
  .nav-cta { display: inline-flex; padding: 10px 16px; font-size: 0.92rem; }
  .nav-toggle { display: none; }
}
.nav-toggle {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--forest);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 0 18px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(232, 168, 124, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(107, 143, 113, 0.18), transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 span { color: var(--terracotta); }
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}
.hero-checks li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-weight: 600;
  color: var(--forest-mid);
}
.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: inset 0 0 0 4px var(--sage);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Conversation mock */
.phone {
  background: var(--forest);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 380px;
  margin: 0 auto;
}
.phone-notch {
  width: 96px;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  margin: 4px auto 14px;
}
.phone-screen {
  background: var(--cream);
  border-radius: 18px;
  padding: 18px 16px 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.chat-meta strong { display: block; color: var(--forest); font-size: 0.95rem; }
.chat-meta span { font-size: 0.78rem; color: var(--sage); font-weight: 600; }
.bubbles { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bubble {
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.4;
  animation: rise 0.45s ease both;
}
.bubble.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble.user {
  align-self: flex-end;
  background: var(--forest);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble .tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}
.bubble:nth-child(1) { animation-delay: 0.1s; }
.bubble:nth-child(2) { animation-delay: 0.35s; }
.bubble:nth-child(3) { animation-delay: 0.6s; }
.bubble:nth-child(4) { animation-delay: 0.85s; }
.bubble:nth-child(5) { animation-delay: 1.1s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.chat-status {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Sections */
section { padding: 72px 0; }
.band { background: var(--cream-deep); }
.band-forest {
  background: var(--forest);
  color: rgba(255,255,255,0.9);
}
.band-forest h2, .band-forest h3 { color: #fff; }
.band-forest .lead, .band-forest .muted { color: rgba(255,255,255,0.72); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Demo CTA */
.demo-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
@media (max-width: 780px) {
  .demo-panel { grid-template-columns: 1fr; padding: 24px; }
}
.demo-badge {
  display: inline-block;
  background: var(--sage-soft);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* How it works */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}
.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--terracotta);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.steps h3 { margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Package */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.pkg-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--sage-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.pkg-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .price-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.price-card .ribbon {
  position: absolute;
  top: 18px;
  right: -36px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 6px;
}
.price-amount b {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount span { color: var(--muted); font-weight: 600; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}
.price-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 560;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}
.price-aside {
  background: var(--forest);
  color: rgba(255,255,255,0.88);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
}
.price-aside h3 { color: #fff; margin-bottom: 12px; }
.price-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.price-aside li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}
.price-aside li:last-child { border-bottom: 0; }

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.trust-card .label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.trust-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--sage-soft);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--forest-mid);
}

/* Compliance */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 700px) {
  .comp-grid { grid-template-columns: 1fr; }
}
.comp-item {
  border-left: 4px solid var(--clay);
  padding: 4px 0 4px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
}
.comp-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.comp-item p { margin: 0; font-size: 0.95rem; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
}
.why-portrait {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-portrait .initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.why-portrait h3 { color: #fff; margin-bottom: 4px; }
.why-portrait p { margin: 0; opacity: 0.8; font-size: 0.95rem; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.why-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 800;
}
.why-list li:last-child { border-bottom: 0; }

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px;
  border-top: 4px solid var(--terracotta);
}
.pain-card.boarding { border-top-color: var(--sage); }
.pain-card h3 { margin-bottom: 12px; }
.pain-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-card li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--muted);
}
.pain-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--terracotta);
  font-weight: 800;
}
.pain-card.boarding li::before { color: var(--sage); }

/* Math */
.math-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) {
  .math-grid { grid-template-columns: 1fr; }
}
.math-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.math-card b {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--forest);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.math-card span { color: var(--muted); font-size: 0.95rem; }
.math-src {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--forest);
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--terracotta);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Lead form */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 860px) {
  .form-shell { grid-template-columns: 1fr; }
}
.form-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 650;
  margin: 12px 0 6px;
  color: var(--forest);
  font-size: 0.92rem;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
textarea { min-height: 96px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }
.form-success {
  display: none;
  background: var(--sage-soft);
  border: 1px solid var(--sage);
  border-radius: 12px;
  padding: 22px;
  color: var(--forest);
}
.form-success.show { display: block; }
.form-card.submitted form { display: none; }

/* Footer */
footer.site {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand strong {
  display: block;
  color: var(--forest);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--forest); }
.legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  max-width: 72ch;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--terracotta);
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

/* Privacy page */
.privacy-page { padding: 48px 0 80px; }
.privacy-page .back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.privacy-page h1 { margin-bottom: 8px; }
.privacy-page h2 {
  font-size: 1.2rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.privacy-page ul { color: var(--muted); }

/* Cute pup band */
.pup-band {
  padding: 28px 0 56px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.pup-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.pup-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
  background: var(--forest);
}
.pup-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pup-copy h2 { margin-bottom: 12px; }
@media (max-width: 820px) {
  .pup-grid { grid-template-columns: 1fr; gap: 22px; }
  .pup-photo { order: -1; max-width: 420px; margin: 0 auto; }
}
