:root {
  --blue: #3A6FA8;
  --blue-dark: #2D5A8A;
  --sky: #7AADD0;
  --mist: #DCE9F5;
  --cloud: #F2F7FC;
  --midnight: #1A2E42;
  --green: #2E7D5E;
  --green-light: #D0EDE0;
  --amber: #F0B429;
  --border: #C8DDF0;
  --input: #A8C8E8;
  --white: #ffffff;
  --ink-soft: rgba(26, 46, 66, 0.72);
  --shadow: 0 26px 90px rgba(26, 46, 66, 0.14);
  --shadow-soft: 0 18px 45px rgba(58, 111, 168, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--midnight);
  background:
    radial-gradient(circle at 12% 12%, rgba(122, 173, 208, 0.24), transparent 34%),
    radial-gradient(circle at 88% 2%, rgba(208, 237, 224, 0.52), transparent 30%),
    linear-gradient(180deg, var(--cloud) 0%, #fff 42%, var(--cloud) 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-shell { width: min(1200px, calc(100% - 36px)); margin: 18px auto 0; }
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(200, 221, 240, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(26, 46, 66, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--blue-dark); }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; background: #fff; padding: 4px; border: 1px solid var(--border); }
nav { display: flex; align-items: center; gap: 8px; font-weight: 800; }
nav a { padding: 10px 14px; border-radius: 999px; color: rgba(26, 46, 66, 0.72); }
nav a:hover { background: var(--cloud); color: var(--blue-dark); }
.nav-pill { background: var(--blue); color: #fff; }
.nav-pill:hover { background: var(--blue-dark); color: #fff; }

main { padding-bottom: 64px; }
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: 720px;
  padding: 84px 0 48px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
}
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: clamp(48px, 7.2vw, 86px); max-width: 780px; }
h2 { font-size: clamp(32px, 4.2vw, 54px); }
h3 { font-size: 21px; line-height: 1.4; }
.lede { margin: 24px 0 0; max-width: 620px; font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(58, 111, 168, 0.25); }
.button.primary:hover { background: var(--blue-dark); }
.button.ghost, .button.secondary { background: rgba(255,255,255,0.88); border-color: var(--border); color: var(--blue-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.62); font-weight: 800; color: var(--blue-dark); font-size: 13px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-orb {
  width: min(510px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: linear-gradient(140deg, #fff, var(--mist));
  border: 1px solid rgba(200, 221, 240, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo-orb img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.logo-orb::before, .logo-orb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(122, 173, 208, 0.22);
  z-index: -1;
}
.logo-orb::before { width: 260px; height: 260px; right: 20px; top: 30px; }
.logo-orb::after { width: 190px; height: 190px; left: 6px; bottom: 50px; background: rgba(208, 237, 224, 0.72); }
.floating-card {
  position: absolute;
  width: min(280px, 72%);
  padding: 18px;
  border: 1px solid rgba(200, 221, 240, 0.9);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { margin-top: 5px; line-height: 1.3; }
.floating-card small { margin-top: 8px; color: var(--ink-soft); }
.mini-label { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.card-care { left: 0; bottom: 68px; }
.card-products { right: 0; top: 72px; }

.split-section, .why-section, .instagram-section, .contact-card {
  margin-top: 34px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(200, 221, 240, 0.84);
  border-radius: 38px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 50px rgba(26,46,66,0.07);
}
.split-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { min-height: 260px; padding: 24px; border-radius: 28px; background: #fff; border: 1px solid var(--border); }
.feature-grid p { margin: 12px 0 0; color: var(--ink-soft); }
.icon { display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 18px; border-radius: 18px; background: var(--mist); font-size: 24px; }

.product-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 42px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-band .eyebrow { color: var(--mist); }
.product-copy p { max-width: 620px; margin: 18px 0 26px; color: rgba(255,255,255,0.78); font-size: 18px; }
.product-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; transform: rotate(-3deg); }
.product-tile { display: grid; place-items: center; min-height: 150px; border-radius: 28px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.24); font-family: "Playfair Display", Georgia, serif; font-size: 32px; }
.product-tile.tall { grid-row: span 2; min-height: 314px; background: rgba(255,255,255,0.24); }

.section-kicker { max-width: 760px; }
.why-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; background: var(--midnight); color: #fff; }
.why-section .eyebrow { color: var(--mist); }
.why-list { display: grid; gap: 14px; }
.why-list div { padding: 20px; border-radius: 24px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); }
.why-list strong, .why-list span { display: block; }
.why-list span { margin-top: 4px; color: rgba(255,255,255,0.74); }

.instagram-section { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 34px; align-items: center; }
.instagram-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.instagram-card { min-height: 220px; padding: 24px; border-radius: 30px; background: linear-gradient(135deg, #fff, var(--cloud)); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.instagram-card span, .instagram-card strong, .instagram-card small { display: block; }
.instagram-card span { color: var(--blue-dark); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.instagram-card strong { margin-top: 34px; font-size: 24px; }
.instagram-card small { margin-top: 10px; color: var(--ink-soft); }

.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: #fff; }
.contact-card p { max-width: 680px; margin: 14px 0 0; color: var(--ink-soft); }
footer { display: flex; justify-content: space-between; gap: 18px; width: min(1200px, calc(100% - 36px)); margin: 0 auto; padding: 28px 0 36px; color: rgba(26,46,66,0.66); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
footer a { color: var(--blue-dark); font-weight: 800; }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; border-radius: 28px; flex-direction: column; }
  nav { width: 100%; flex-wrap: wrap; }
  .hero, .split-section, .product-band, .why-section, .instagram-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-visual { min-height: 480px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .product-stack { transform: none; }
}

@media (max-width: 620px) {
  .page-shell, footer { width: min(100% - 24px, 1200px); }
  nav a { padding: 9px 10px; font-size: 14px; }
  .brand span { font-size: 15px; }
  .hero-actions .button, .contact-card .button { width: 100%; }
  .trust-row span { width: 100%; text-align: center; }
  .hero-visual { min-height: 430px; }
  .floating-card { position: static; width: 100%; margin-top: 12px; }
  .logo-orb { border-radius: 30px; }
  .instagram-grid, .product-stack { grid-template-columns: 1fr; }
  .product-tile.tall { min-height: 170px; }
  .contact-card, footer { flex-direction: column; align-items: flex-start; }
}

.photo-panel { position: absolute; border-radius: 30px; overflow: hidden; border: 1px solid rgba(200,221,240,0.9); box-shadow: var(--shadow-soft); background: #fff; }
.photo-panel svg { width: 100%; height: 100%; display: block; }
.dog-panel { width: 280px; height: 202px; left: 20px; top: 20px; transform: rotate(-5deg); }
.cat-panel { width: 210px; height: 165px; right: 16px; bottom: 28px; transform: rotate(6deg); }
.logo-orb { z-index: 1; }
.floating-card { z-index: 3; }
@media (max-width: 620px) { .photo-panel { display: none; } }
