:root {
  --bg: #fdfcf8;
  --elevated: #ffffff;
  --sage: #e8efe8;
  --sage-ink: #3f5c4a;
  --lavender: #efedf4;
  --peach: #ffb7b2;
  --peach-deep: #e88984;
  --peach-soft: #fff5f4;
  --peach-line: #fee2e0;
  --ink: #292524;
  --muted: #78716c;
  --line: #e7e5e4;
  --radius: 24px;
  --shadow: 0 18px 40px rgba(41, 37, 36, 0.08);
  --font: "Outfit", "Nunito", system-ui, sans-serif;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(255, 183, 178, 0.35), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(232, 239, 232, 0.9), transparent 50%),
    linear-gradient(180deg, #fdfcf8 0%, #f7f4ee 48%, #fdfcf8 100%);
  min-height: 100vh;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sage-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--peach-deep);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(253, 252, 248, 0.86);
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 0;
  background: var(--peach);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(232, 137, 132, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(232, 137, 132, 0.34);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
  color: var(--sage-ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--sage);
  color: var(--sage-ink);
}

/* Landing hero — one composition, brand first */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(253, 252, 248, 0.18) 0%, rgba(41, 37, 36, 0.18) 42%, rgba(41, 37, 36, 0.72) 100%),
    linear-gradient(90deg, rgba(63, 92, 74, 0.28), transparent 55%);
}

.hero-copy {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 3.2rem;
  color: #fafaf9;
  animation: rise 0.9s ease both;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.hero-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero-copy p {
  margin: 0.9rem 0 0;
  max-width: 36ch;
  color: rgba(250, 250, 249, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
  animation: rise 0.8s ease both;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .features {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.feature-visual {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: rise 1s ease both;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid var(--peach);
  animation: rise 0.85s ease both;
}

.feature-item:nth-child(2) { animation-delay: 0.08s; border-left-color: var(--sage-ink); }
.feature-item:nth-child(3) { animation-delay: 0.16s; border-left-color: #9a8fc0; }
.feature-item:nth-child(4) { animation-delay: 0.24s; }

.feature-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.pets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .pets {
    grid-template-columns: 1fr;
  }
}

.pet {
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(232, 239, 232, 0.55));
  animation: rise 0.9s ease both;
}

.pet:nth-child(2) { animation-delay: 0.1s; }
.pet:nth-child(3) { animation-delay: 0.18s; }

.pet img {
  width: min(180px, 70%);
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 12px 18px rgba(63, 92, 74, 0.12));
  transition: transform 0.35s ease;
}

.pet:hover img {
  transform: translateY(-6px) rotate(-2deg);
}

.pet h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pet p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-strip {
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(232, 239, 232, 0.95), rgba(255, 245, 244, 0.9));
  display: grid;
  gap: 1rem;
  animation: rise 0.85s ease both;
}

@media (min-width: 760px) {
  .privacy-strip {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.privacy-strip h2 {
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
  font-size: 1.6rem;
}

.privacy-strip p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

/* Legal pages */
.legal-hero {
  padding: 3.2rem 0 1.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .legal-hero {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }
}

.legal-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.legal-hero .meta {
  margin: 0;
  color: var(--muted);
}

.legal-aside {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow);
  animation: rise 0.9s ease both;
}

.legal-aside img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.legal {
  padding-bottom: 4rem;
  max-width: 46rem;
}

.legal h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: #44403c;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.35rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
