:root {
  --bg: #fff9f7;
  --white: #ffffff;
  --text: #332b34;
  --muted: #6f6571;
  --pink: #ee8ba0;
  --pink-dark: #d86e85;
  --peach: #ffe1d5;
  --mint: #d8f1ea;
  --mint-deep: #a9ddd0;
  --lavender: #f5eef8;
  --line: #eadde2;
  --shadow: 0 18px 38px rgba(79, 52, 66, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(238, 139, 160, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 241, 234, 0.65), transparent 26%),
    linear-gradient(180deg, #fffaf8 0%, #fff7f4 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.success-banner {
  background: linear-gradient(90deg, #d7f1ea, #eefaf6);
  color: #23443d;
  border-bottom: 1px solid #c4e4db;
  padding: 14px 0;
  text-align: center;
  font-size: 0.96rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 247, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 221, 226, 0.75);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  font-weight: 700;
  color: var(--muted);
}

.nav a:hover {
  color: var(--pink-dark);
}

.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1f4;
  border: 1px solid #f1d5dd;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  margin: 18px 0 16px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 1.12rem;
  max-width: 640px;
  margin-bottom: 10px;
}

.hero-sub,
.muted,
.section-head p,
.mini-note p,
.request-copy p,
.quote-small,
.parents-copy p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(238, 139, 160, 0.28);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #fff3ef;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.logo-card {
  min-height: 365px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 225, 213, 0.92), transparent 42%),
    radial-gradient(circle at bottom right, rgba(216, 241, 234, 0.95), transparent 38%),
    linear-gradient(180deg, #fffefe 0%, #fff7f3 100%);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-height: 245px;
  width: auto;
  object-fit: contain;
}

.mini-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(79, 52, 66, 0.05);
}

.mini-note strong {
  display: block;
  margin-bottom: 6px;
}

.intro-band {
  padding: 10px 0 6px;
}

.intro-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,241,236,0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(245, 238, 248, 0.70), rgba(255,255,255,0.7));
  border-top: 1px solid rgba(234, 221, 226, 0.8);
  border-bottom: 1px solid rgba(234, 221, 226, 0.8);
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.panel-pet {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(232, 249, 244, 0.95));
}

.panel-kids {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255, 241, 244, 0.95));
}

.panel-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--muted);
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -1px;
  color: var(--pink-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fit-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.fit-good {
  background: linear-gradient(180deg, #ffffff 0%, #edf9f5 100%);
}

.fit-no {
  background: linear-gradient(180deg, #ffffff 0%, #fff2ef 100%);
}

.parents-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-pills span {
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--lavender);
  border: 1px solid #e9ddeee;
  font-weight: 700;
}

.quote-box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(216, 241, 234, 0.28), transparent 34%),
    linear-gradient(180deg, #fffdfd 0%, #fff4f6 100%);
  box-shadow: var(--shadow);
  padding: 34px 30px;
}

.quote-mark {
  margin: 0 0 12px;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--pink);
  font-weight: 900;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 0 0 14px;
  font-weight: 700;
}

.request-section {
  background:
    radial-gradient(circle at top left, rgba(255, 225, 213, 0.44), transparent 34%),
    linear-gradient(180deg, #fff4ef 0%, #fffaf8 100%);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.request-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(238, 139, 160, 0.14);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(234, 221, 226, 0.82);
  background: rgba(255,255,255,0.55);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .service-grid,
  .fit-grid,
  .parents-grid,
  .request-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-tags {
    flex-direction: column;
  }

  .hero-tags span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .panel,
  .fit-box,
  .request-card,
  .quote-box,
  .intro-card {
    padding: 22px;
  }
}