:root {
  --bg-cream: #fffaf5;
  --bg-warm: #ffe9d8;
  --bg-mint: #dbf6ec;
  --bg-sky: #dceeff;
  --text-main: #2f2a2b;
  --text-soft: #5a5153;
  --card: rgba(255, 255, 255, 0.74);
  --card-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(69, 50, 58, 0.1);
  --accent: #ff7f67;
  --accent-strong: #f9634a;
  --shadow: 0 18px 45px -24px rgba(255, 127, 103, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", "Trebuchet MS", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 10%, var(--bg-warm), transparent 42%),
    radial-gradient(circle at 88% 20%, var(--bg-mint), transparent 40%),
    radial-gradient(circle at 65% 90%, var(--bg-sky), transparent 45%),
    var(--bg-cream);
  min-height: 100%;
}

body {
  position: relative;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.6;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-one {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(140deg, #ffd5c6, #ffc8ea);
  top: -70px;
  right: -70px;
}

.orb-two {
  width: 260px;
  height: 260px;
  border-radius: 44% 56% 62% 38% / 48% 51% 49% 52%;
  background: linear-gradient(150deg, #b4f5df, #9dd8ff);
  left: -75px;
  bottom: 10vh;
  animation-delay: 1.5s;
}

.container {
  width: min(1060px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2rem 0 3.4rem;
}

.hero {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
}

h1,
h2 {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  line-height: 1.2;
}

h1 {
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  max-width: 14ch;
}

h1 span {
  color: #4f6f6a;
}

.hero-copy {
  margin: 1rem 0 1.45rem;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.cta-btn {
  border: none;
  cursor: pointer;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Nunito", "Segoe UI", sans-serif;
  background: linear-gradient(130deg, var(--accent), #ff907a);
  color: #fff;
  box-shadow: 0 14px 28px -15px rgba(249, 99, 74, 0.85);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px -16px rgba(249, 99, 74, 0.95);
}

.cta-btn:focus-visible {
  outline: 2px solid #ffb8aa;
  outline-offset: 3px;
}

.grid-section {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.stormy-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: clamp(1rem, 2.8vw, 1.6rem);
  box-shadow: 0 18px 34px -30px rgba(66, 46, 53, 0.5);
}

.card p,
.stormy-card p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.card ul {
  margin: 0.95rem 0 0;
  padding-left: 1.1rem;
  color: #4c4446;
}

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

.stormy-wrap {
  margin-top: 1rem;
}

.stormy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.8), rgba(255, 244, 228, 0.78)),
    var(--card);
}

.paw-badge {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 127, 103, 0.25);
  transform: rotate(-8deg);
}

.site-footer {
  width: min(1060px, calc(100% - 2.4rem));
  margin: 0 auto 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  color: #5d5a5b;
  font-size: 0.93rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #3d6f76;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(14px) rotate(4deg);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1060px, calc(100% - 1.4rem));
    padding-top: 1.2rem;
  }

  .grid-section {
    grid-template-columns: 1fr;
  }

  .stormy-card {
    grid-template-columns: 1fr;
  }

  .paw-badge {
    width: 56px;
    height: 56px;
  }

  .site-footer {
    width: min(1060px, calc(100% - 1.4rem));
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.4rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
