:root {
  --cream: #fff2de;
  --paper: #fff7eb;
  --ink: #3b2418;
  --muted: #75533d;
  --line: #e9cdb0;
  --orange: #de7300;
  --orange-dark: #a94d00;
  --gold: #ffb32d;
  --heart: #c96b45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 202, 119, 0.35), transparent 24rem),
    linear-gradient(180deg, #fff5e5 0%, #faead5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(115, 72, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 72, 36, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgba(128, 75, 30, 0.18);
  border-radius: 0 0 12px 12px;
  background: rgba(255, 248, 237, 0.92);
  box-shadow: 0 10px 26px rgba(87, 50, 20, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 0;
  width: 214px;
}

.brand img {
  width: 196px;
}

.brand span,
.tagline {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.brand span::before,
.brand span::after,
.tagline::before,
.tagline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 6px 3px;
  background: var(--orange);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 900;
}

nav a:first-child {
  color: var(--orange);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff8ef;
  background: linear-gradient(180deg, #ec870a, #d96c00);
  box-shadow: 0 8px 18px rgba(169, 77, 0, 0.25);
}

.nav-cta {
  padding: 0 20px;
}

.nav-cta::before,
.button.primary::before {
  content: "♥";
  margin-right: 8px;
}

.button {
  padding: 0 18px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(169, 77, 0, 0.26);
}

.button.ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 248, 238, 0.56);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 244, 225, 0.98) 0%, rgba(255, 244, 225, 0.88) 24%, rgba(255, 244, 225, 0.2) 55%, rgba(255, 244, 225, 0) 100%),
    radial-gradient(circle at 35% 45%, rgba(255, 246, 230, 0.58), transparent 22rem);
}

.hero-content {
  width: min(520px, calc(100% - 36px));
  padding: clamp(48px, 8vw, 92px) 0 72px;
  margin-left: clamp(18px, 8vw, 116px);
}

.hero-logo {
  width: min(420px, 100%);
  margin-bottom: 2px;
}

.tagline {
  width: min(380px, 100%);
  margin: 0 0 20px;
  font-size: 17px;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 500px;
  font-size: clamp(3rem, 6.8vw, 5.25rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 440px;
  margin: 20px 0 0;
  color: #4d3124;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.44;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.note-card {
  position: absolute;
  right: clamp(24px, 7vw, 116px);
  bottom: 72px;
  max-width: 190px;
  rotate: -2deg;
  border: 1px solid #d6ab83;
  border-radius: 4px;
  padding: 16px 18px;
  color: #61412e;
  background: rgba(255, 240, 215, 0.86);
  box-shadow: 0 8px 18px rgba(82, 42, 13, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: 1180px;
  margin: -34px auto 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(170, 107, 55, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 238, 214, 0.86)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(169, 99, 40, 0.05) 12px 13px);
  box-shadow: 0 18px 36px rgba(102, 61, 24, 0.12);
}

.video-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heart);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.video-copy span::before,
.video-copy span::after {
  content: "♥";
}

.video-copy h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.video-copy p {
  margin: 14px 0 0;
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.52;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(170, 107, 55, 0.26);
  border-radius: 8px;
  background: #3b2418;
  box-shadow: 0 14px 30px rgba(74, 36, 10, 0.16);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px clamp(18px, 5vw, 56px);
}

.section.compact {
  padding-top: 8px;
}

.section-heading {
  margin-bottom: 18px;
  text-align: center;
}

.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heart);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading span::before,
.section-heading span::after {
  content: "♥";
  color: var(--heart);
}

.section-heading h2 {
  margin-top: 4px;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1;
}

.section-heading > p {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.pet-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.pet-card,
.shop-card,
.steps article,
.adoption-banner {
  border: 1px solid rgba(170, 107, 55, 0.22);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.8);
  box-shadow: 0 10px 22px rgba(102, 61, 24, 0.1);
}

.pet-card {
  overflow: hidden;
  min-height: 252px;
  text-align: center;
}

.pet-card img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  object-position: center top;
  background: #f5dfc6;
}

.pet-card h3 {
  margin: 15px 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.pet-card p {
  margin: 2px 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.pet-card p::after {
  content: "♥";
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 24px 18px 20px;
  text-align: center;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 19px;
}

.steps h3,
.shop-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.steps p,
.shop-card p,
footer p,
footer span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.overlooked-section {
  overflow: hidden;
}

.slider-shell {
  position: relative;
}

.pooz-slider {
  display: flex;
  gap: 18px;
  margin-right: calc(clamp(18px, 5vw, 56px) * -1);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px clamp(18px, 5vw, 56px) 16px 2px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(169, 77, 0, 0.28);
  border-radius: 999px;
  color: #fff8ef;
  background: linear-gradient(180deg, #ec870a, #d96c00);
  box-shadow: 0 10px 24px rgba(102, 61, 24, 0.2);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.slider-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(102, 61, 24, 0.26);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

.pooz-slider::-webkit-scrollbar {
  display: none;
}

.pooz-card {
  flex: 0 0 220px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(170, 107, 55, 0.22);
  border-radius: 8px;
  background: rgba(255, 249, 239, 0.84);
  box-shadow: 0 10px 22px rgba(102, 61, 24, 0.1);
  text-align: center;
}

.pooz-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center;
  background: #f3dec4;
}

.pooz-card h3 {
  margin: 14px 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.pooz-card p {
  min-height: 42px;
  margin: 4px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.pooz-card p::after {
  content: "♥";
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 17px;
}

.adoption-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1150px;
  margin: 20px auto 36px;
  padding: 24px clamp(18px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(255, 247, 235, 0.92), rgba(255, 238, 213, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(169, 99, 40, 0.05) 12px 13px);
}

.adoption-banner span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.adoption-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 34px clamp(18px, 7vw, 106px);
  border-top: 1px solid rgba(128, 75, 30, 0.16);
  background: rgba(255, 239, 218, 0.72);
}

footer img {
  width: 210px;
}

footer .busybam-brand img {
  width: 150px;
}

footer h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

footer a,
footer span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.privacy-pop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(620px, calc(100vw - 36px));
  border: 1px solid rgba(170, 107, 55, 0.28);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.96);
  box-shadow: 0 18px 42px rgba(74, 42, 18, 0.2);
  backdrop-filter: blur(14px);
}

.privacy-pop.is-hidden {
  display: none;
}

.privacy-pop strong {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.privacy-pop p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.privacy-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.privacy-actions .button {
  min-height: 40px;
  border-width: 1px;
}

.privacy-actions button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 1040px) {
  nav {
    display: none;
  }

  .pet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
  }

  .brand {
    width: 174px;
  }

  .brand img {
    width: 164px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    position: relative;
    height: 315px;
    object-position: 68% center;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(255, 244, 225, 0) 0%, rgba(255, 244, 225, 0.96) 44%, rgba(255, 244, 225, 1) 100%);
  }

  .hero-content {
    width: auto;
    margin: -72px 18px 0;
    padding: 0 0 38px;
  }

  .hero-logo {
    width: min(320px, 92vw);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  .note-card {
    display: none;
  }

  .video-section {
    grid-template-columns: 1fr;
    margin: -8px 18px 18px;
    padding: 20px;
  }

  .video-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .pet-grid,
  .steps {
    display: flex;
    gap: 14px;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 18px 12px;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pet-grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar {
    display: none;
  }

  .pet-card,
  .steps article {
    flex: 0 0 min(76vw, 270px);
    scroll-snap-align: start;
  }

  .pooz-slider {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 58px;
    padding-right: 58px;
  }

  .pooz-card {
    flex-basis: min(72vw, 250px);
  }

  .slider-arrow {
    top: 38%;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .slider-arrow.prev {
    left: 0;
  }

  .slider-arrow.next {
    right: 0;
  }

  .adoption-banner {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 18px;
    margin-right: 18px;
  }

  .privacy-pop {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-actions {
    flex-wrap: wrap;
  }
}
