:root {
  --bg: #fffaf3;
  --card: #ffffff;
  --text: #263238;
  --muted: #61707a;
  --brand: #f08a4b;
  --brand-dark: #c66027;
  --accent: #76b7a7;
  --shadow: 0 18px 45px rgba(38, 50, 56, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 50, 56, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { font-weight: 800; font-size: 1.15rem; }
.logo span { margin-right: 6px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.btn):hover { color: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.8rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(240, 138, 75, 0.25);
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-small { padding: 10px 16px; }
.btn-outline { background: transparent; color: var(--brand-dark); border: 2px solid rgba(198, 96, 39, 0.24); box-shadow: none; }
.btn-outline:hover { background: #fff0e6; color: var(--brand-dark); }

.hero { padding: 86px 0 46px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 50px; align-items: center; }
.eyebrow { color: var(--brand-dark); font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.7rem); letter-spacing: -0.06em; max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.04em; margin-bottom: 18px; }
h3 { font-size: 1.35rem; }
.hero-text { font-size: 1.18rem; color: var(--muted); max-width: 620px; margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  min-height: 420px;
  border-radius: 36px;
  background: linear-gradient(160deg, #fff 0%, #ffe4d2 48%, #d9f1eb 100%);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-card p { font-weight: 800; background: rgba(255,255,255,0.78); padding: 12px 16px; border-radius: 16px; width: fit-content; }
.sun { width: 100px; height: 100px; border-radius: 50%; background: #ffd166; position: absolute; right: 42px; top: 40px; box-shadow: 0 0 0 26px rgba(255, 209, 102, 0.15); }
.dog-scene { font-size: 6.5rem; display: flex; gap: 32px; align-items: end; position: absolute; bottom: 110px; left: 42px; }
.walker { transform: translateY(-8px); }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 30px 0 20px; }
.trust div { background: white; border-radius: 18px; padding: 22px; box-shadow: 0 10px 24px rgba(38,50,56,0.06); }
.trust strong { display: block; font-size: 1.45rem; }
.trust span { color: var(--muted); }

.section { padding: 84px 0; }
.cards, .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.card, .price-card, .quote-card, .contact-form { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 35px rgba(38,50,56,0.08); }
.icon { font-size: 2.2rem; margin-bottom: 18px; }
.card p, .price-card p, .split p { color: var(--muted); }
.alt { background: #eef8f5; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { margin: 12px 0; padding-left: 30px; position: relative; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.quote-card { font-size: 1.25rem; }
.quote-card span { color: var(--brand-dark); font-weight: 900; }
.price-card { border: 2px solid transparent; }
.price-card.featured { border-color: var(--brand); transform: translateY(-10px); }
.price { font-size: 3rem; color: var(--brand-dark) !important; font-weight: 900; margin: 20px 0 8px; }

.contact-section { background: linear-gradient(135deg, #263238 0%, #36545c 100%); color: white; }
.contact-section .eyebrow { color: #ffd9c3; }
.contact-section p { color: rgba(255,255,255,0.78); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.contact-info { margin-top: 26px; }
.contact-form { color: var(--text); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid #dbe2e6; border-radius: 14px; padding: 13px 14px; font: inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(118,183,167,0.28); border-color: var(--accent); }
.form-message { min-height: 24px; color: var(--brand-dark) !important; font-weight: 800; }
.footer { background: #1d282d; color: rgba(255,255,255,0.78); padding: 26px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { margin-left: 18px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 20px; right: 20px; background: white; border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card { min-height: 320px; }
  .dog-scene { font-size: 4.4rem; bottom: 90px; }
  .trust, .cards, .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
