/* PET FAMILY — shared visual system */
:root {
  --navy: #082b57;
  --navy-deep: #061d3a;
  --pink: #ec1763;
  --pink-dark: #bd0e4a;
  --pink-action: #d10f54;
  --pink-soft: #f8d7e4;
  --blue: #58b7e8;
  --blue-soft: #ddf3fc;
  --cream: #fff8f3;
  --paper: #fffdfb;
  --white: #ffffff;
  --ink: #111820;
  --muted: #626d78;
  --line: rgba(8, 43, 87, 0.14);
  --shadow: 0 22px 70px rgba(6, 29, 58, 0.12);
  --shadow-small: 0 12px 34px rgba(6, 29, 58, 0.1);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Nunito Sans", "Segoe UI", Arial, sans-serif;
  --radius-sm: 14px;
  --radius: 26px;
  --radius-lg: 44px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 10vw, 150px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection { background: var(--pink); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: none; }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section-tight { padding-block: clamp(60px, 7vw, 104px); }
.section-navy { background: var(--navy); color: var(--white); }
.section-blue { background: var(--blue-soft); }
.section-white { background: var(--white); }
.section-pink-soft { background: var(--pink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--pink-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #ff82af; }
.kicker {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.04; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.045em; }
h1 { font-size: clamp(3.15rem, 8.5vw, 7.8rem); }
h2 { font-size: clamp(2.5rem, 5.7vw, 5.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -0.025em; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.lede { max-width: 730px; margin: 26px 0 0; font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.5; }
.text-muted { color: var(--muted); }
.text-pink { color: var(--pink); }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.serif-italic { font-family: var(--display); font-style: italic; }
.balance { text-wrap: balance; }
.measure { max-width: 66ch; }
.micro { font-size: 0.8rem; line-height: 1.5; }

.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--pink-action);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 0 var(--pink-dark);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button::after { content: "↗"; font-size: 1.05rem; transition: transform 0.18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 11px 0 var(--pink-dark); }
.button:hover::after { transform: translate(2px, -2px); }
.button:active { transform: translateY(4px); box-shadow: 0 4px 0 var(--pink-dark); }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--navy); box-shadow: none; }
.button-secondary:hover { background: var(--navy); color: var(--white); box-shadow: none; }
.button-light { background: var(--white); color: var(--navy); box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2); }
.button-light:hover { box-shadow: 0 11px 0 rgba(0, 0, 0, 0.2); }
.button-quiet { background: var(--blue-soft); color: var(--navy); box-shadow: 0 8px 0 #9bd2eb; }
.button-quiet:hover { box-shadow: 0 11px 0 #9bd2eb; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.72rem; box-shadow: 0 6px 0 var(--pink-dark); }

/* Header */
.site-header {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  padding: 13px var(--gutter);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.menu-open .site-header .brand img { content: url("../logo-light.svg"); filter: none !important; }
.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }

.site-header.is-scrolled {
  padding-block: 9px;
  background: rgba(255, 248, 243, 0.94);
  box-shadow: 0 8px 30px rgba(6, 29, 58, 0.09);
  backdrop-filter: blur(14px);
}

.has-dark-hero .site-header:not(.is-scrolled) .brand img { content: url("../logo-light.svg"); filter: none; }
.has-dark-hero .site-header:not(.is-scrolled) .desktop-nav a:not(.button) { color: var(--white); }

.header-inner {
  display: flex;
  width: min(100%, 1380px);
  margin-inline: auto;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: block; width: 178px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; aspect-ratio: 170 / 54; }
.desktop-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 31px); }
.desktop-nav a:not(.button) {
  position: relative;
  padding: 7px 0;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.desktop-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.has-dark-hero .site-header:not(.is-scrolled) .menu-button { background: var(--pink); }

.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Shared editorial hero */
.page-hero {
  min-height: min(880px, 100svh);
  padding-top: clamp(140px, 16vw, 205px);
  padding-bottom: clamp(82px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}

.page-hero-short { min-height: 660px; }
.page-hero-navy { background: var(--navy); color: var(--white); }
.page-hero-navy h1 { color: var(--white); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr); gap: clamp(35px, 7vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lede { max-width: 620px; }
.hero-title-line { display: block; }
.hero-title-script { color: var(--pink); font-style: italic; }
.hero-note {
  display: inline-flex;
  margin-top: 36px;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-note::before { content: ""; width: 44px; height: 1px; background: currentColor; opacity: 0.4; }

.home-hero { background: var(--cream); }
.home-hero h1 { font-size: clamp(3.15rem, 6vw, 5.4rem); }
.home-hero .hero-title-line:not(.hero-title-script) { white-space: nowrap; }
.home-hero::before {
  content: "FAMILY";
  position: absolute;
  left: -0.05em;
  bottom: -0.2em;
  color: rgba(8, 43, 87, 0.045);
  font-family: var(--sans);
  font-size: clamp(8rem, 24vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.pet-portrait {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.94;
  margin-left: auto;
}

.portrait-blob {
  position: absolute;
  inset: 6% 0 2% 3%;
  border: 3px solid var(--navy);
  border-radius: 45% 55% 42% 58% / 48% 39% 61% 52%;
  background: var(--blue-soft);
  transform: rotate(3deg);
  box-shadow: 18px 18px 0 var(--pink-soft);
}

.pet-portrait svg,
.pet-portrait > img { position: absolute; z-index: 2; inset: 8% 2% 0 4%; width: 94%; height: 92%; }
.portrait-sticker {
  position: absolute;
  z-index: 3;
  right: -4%;
  top: 5%;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  padding: 15px;
  border: 2px solid var(--navy);
  border-radius: 46% 54% 51% 49%;
  background: var(--pink-action);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  box-shadow: 7px 7px 0 var(--navy);
}

.portrait-tag {
  position: absolute;
  z-index: 3;
  bottom: 4%;
  left: -5%;
  padding: 10px 16px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.tail { transform-origin: 380px 305px; animation: tail-wag 2.4s ease-in-out infinite; }
@keyframes tail-wag { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(8deg); } }

/* Marquee */
.marquee { overflow: hidden; border-block: 2px solid var(--navy); background: var(--blue); color: var(--navy); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { padding: 16px 28px; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.marquee-track span::after { content: "●"; margin-left: 56px; color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Home worlds */
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr); gap: 40px; align-items: end; margin-bottom: clamp(42px, 7vw, 80px); }
.section-heading p { margin: 0; }
.worlds { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 38px); align-items: start; }
.world-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 2px solid var(--navy);
  color: var(--navy);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.world-card:hover { box-shadow: 0 30px 90px rgba(6, 29, 58, 0.16); }
.world-card-grooming { grid-column: 1 / span 7; border-radius: 40px 40px 130px 40px; background: var(--navy); color: var(--white); }
.world-card-shop { grid-column: 8 / span 5; min-height: 545px; margin-top: 84px; border-radius: 120px 40px 40px 40px; background: var(--pink-soft); }
.world-content { position: relative; z-index: 2; display: flex; height: 100%; min-height: inherit; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 62px); }
.world-card h3 { max-width: 650px; margin-top: 22px; font-family: var(--display); font-size: clamp(3rem, 5.8vw, 6rem); font-weight: 600; line-height: 0.94; }
.world-card-grooming h3 { color: var(--white); }
.world-number { font-family: var(--display); font-size: 1.1rem; font-style: italic; opacity: 0.64; }
.world-card-grooming .world-number { color: var(--blue); opacity: 1; }
.world-description { max-width: 430px; margin: 28px 0 0; font-size: 1.08rem; }
.world-link { display: inline-flex; min-height: 44px; align-items: center; gap: 12px; align-self: flex-start; margin-top: 40px; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.world-link span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--pink); color: var(--white); transition: transform 0.2s ease; }
.world-link:hover span { transform: translate(4px, -4px) rotate(8deg); }
.bubble-cluster { position: absolute; right: -24px; bottom: -20px; width: 280px; height: 270px; opacity: 0.95; }
.bubble { position: absolute; border: 2px solid var(--blue); border-radius: 50%; }
.bubble:nth-child(1) { width: 190px; height: 190px; right: 5px; bottom: 0; background: var(--blue-soft); }
.bubble:nth-child(2) { width: 94px; height: 94px; left: 12px; top: 25px; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 95px; top: 0; background: var(--pink); border-color: var(--pink); }
.shop-tags { position: absolute; inset: auto -34px 22px auto; display: grid; gap: 10px; transform: rotate(-8deg); }
.shop-tags span { padding: 10px 24px; border: 2px solid var(--navy); background: var(--white); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

/* Reviews */
.review-feature { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.quote-mark { color: var(--pink); font-family: var(--display); font-size: 10rem; line-height: 0.45; }
.feature-quote { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(2rem, 4.3vw, 4.5rem); line-height: 1.12; letter-spacing: -0.035em; }
.review-author { display: block; margin-top: 28px; color: var(--blue); font-size: 0.76rem; font-style: normal; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.review-intro {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 34px 120px 34px 34px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 -7px 0 rgba(88,183,232,.65);
  text-align: left;
}
.review-intro::before {
  content: "AVALIAÇÕES PÚBLICAS";
  position: absolute;
  top: 34px;
  left: clamp(34px, 4vw, 52px);
  color: var(--pink-soft);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
}
.review-intro::after {
  content: "01";
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--pink);
  font-family: var(--sans);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  opacity: .8;
}
.review-intro .big-word {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3.7rem, 6vw, 6.25rem);
  font-style: italic;
  line-height: .88;
  letter-spacing: -.045em;
}
.review-intro p { position: relative; z-index: 1; max-width: 30ch; margin: 24px 0 0; }
.review-intro .button { position: relative; z-index: 1; align-self: flex-start; margin-top: 30px; }
.review-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.review-card { padding: clamp(25px, 3vw, 38px); border: 2px solid var(--navy); border-radius: var(--radius); background: var(--white); box-shadow: 8px 8px 0 var(--blue-soft); }
.review-card:nth-child(1) { grid-column: 1 / span 7; }
.review-card:nth-child(2) { grid-column: 8 / span 5; margin-top: 65px; background: var(--pink-soft); box-shadow: 8px 8px 0 var(--pink); }
.review-card:nth-child(3) { grid-column: 2 / span 5; }
.review-card:nth-child(4) { grid-column: 7 / span 6; margin-top: 45px; background: var(--blue-soft); }
.review-card:nth-child(5) { grid-column: 1 / span 6; }
.review-card:nth-child(6) { grid-column: 7 / span 5; margin-top: 50px; }
.review-card blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.38; }
.review-card cite { display: block; margin-top: 24px; color: var(--pink-dark); font-size: 0.7rem; font-style: normal; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.review-source { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }

/* Story and stats */
.story-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.story-copy p { max-width: 57ch; }
.signature-card { position: relative; min-height: 520px; padding: clamp(34px, 5vw, 64px); overflow: hidden; border: 2px solid var(--navy); border-radius: 42px 110px 42px 42px; background: var(--blue-soft); box-shadow: var(--shadow); }
.signature-card::before { content: "15+"; position: absolute; right: -0.08em; bottom: -0.22em; color: rgba(8,43,87,.1); font-family: var(--sans); font-size: clamp(10rem, 24vw, 20rem); font-weight: 900; letter-spacing: -0.1em; }
.signature-card .stat { position: relative; z-index: 1; color: var(--pink); font-family: var(--display); font-size: clamp(6rem, 12vw, 11rem); font-weight: 600; letter-spacing: -0.08em; line-height: 0.8; }
.signature-card .stat-label { position: relative; z-index: 1; display: block; max-width: 260px; margin-top: 18px; color: var(--navy); font-size: 0.9rem; font-weight: 900; letter-spacing: 0.1em; line-height: 1.4; text-transform: uppercase; }
.signatures { position: absolute; z-index: 2; right: 38px; bottom: 32px; display: flex; gap: 16px; }
.signature { display: grid; width: 120px; aspect-ratio: 1.2; place-items: center; border: 2px solid var(--navy); border-radius: 50%; background: var(--cream); color: var(--navy); font-family: var(--display); font-size: 1.4rem; font-style: italic; transform: rotate(-6deg); }
.signature:last-child { background: var(--pink-action); color: var(--white); transform: rotate(7deg); }

/* Convenience cards */
.perks-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 1fr; gap: 22px; }
.perk-card { display: flex; min-height: 360px; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3.3vw, 44px); border: 2px solid var(--navy); border-radius: var(--radius); background: var(--white); color: var(--navy); }
.perk-card:nth-child(1) { border-radius: 34px 34px 110px 34px; background: var(--pink-action); color: var(--white); }
.perk-card:nth-child(1) h3 { color: var(--white); }
.perk-card:nth-child(2) { transform: translateY(38px); background: var(--blue-soft); }
.perk-card:nth-child(3) { border-radius: 90px 34px 34px 34px; }
.perk-icon { display: grid; width: 64px; height: 64px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: 1.6rem; font-style: italic; }
.perk-card h3 { margin-top: 40px; }
.perk-card p { margin-bottom: 0; }
.perk-card a { display: inline-flex; min-height: 44px; align-items: center; font-weight: 900; }

/* CTA */
.cta-panel { position: relative; overflow: hidden; padding: clamp(50px, 7vw, 92px); border: 2px solid var(--navy); border-radius: 42px 130px 42px 42px; background: var(--pink-soft); box-shadow: var(--shadow); }
.cta-panel::after { content: "♥"; position: absolute; right: 5%; bottom: -0.4em; color: var(--pink); font-family: var(--display); font-size: clamp(10rem, 24vw, 24rem); line-height: 1; opacity: 0.13; transform: rotate(12deg); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 900px; }
.cta-panel .lede { max-width: 600px; }
.cta-panel-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-panel-navy h2 { color: var(--white); }

/* Inner-page decorative heroes */
.grooming-hero { background: var(--navy); color: var(--white); }
.grooming-hero h1 { max-width: 980px; color: var(--white); }
.hero-sidecard { position: relative; max-width: 410px; margin-left: auto; padding: 36px; border: 2px solid rgba(255,255,255,.5); border-radius: 150px 150px 32px 32px; background: var(--pink-action); color: var(--white); transform: rotate(2deg); }
.hero-sidecard::before { content: ""; position: absolute; width: 70px; height: 70px; top: -25px; left: -28px; border: 2px solid var(--white); border-radius: 50%; background: var(--blue); }
.hero-sidecard .sidecard-line { display: block; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 0.82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-sidecard .sidecard-line:last-child { border: 0; }
.hero-orbit { position: absolute; right: -130px; bottom: -230px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; inset: 80px; border: inherit; border-radius: inherit; }
.hero-orbit::after { inset: 170px; background: var(--blue); border: 0; opacity: .16; }

.shop-hero { background: var(--pink-soft); }
.shop-hero::after { content: "LOJA"; position: absolute; right: -0.05em; bottom: -0.08em; color: rgba(236,23,99,.08); font-size: clamp(10rem, 29vw, 28rem); font-weight: 900; letter-spacing: -.1em; line-height: .8; }
.shop-shelf { position: relative; min-height: 450px; }
.product-tag { position: absolute; display: flex; width: 210px; min-height: 270px; flex-direction: column; justify-content: space-between; padding: 26px; border: 2px solid var(--navy); background: var(--white); color: var(--navy); box-shadow: 10px 10px 0 var(--navy); }
.product-tag::before { content: ""; width: 22px; height: 22px; align-self: center; border: 2px solid var(--navy); border-radius: 50%; background: var(--cream); }
.product-tag:nth-child(1) { left: 2%; top: 45px; transform: rotate(-8deg); background: var(--blue-soft); }
.product-tag:nth-child(2) { left: 34%; top: 5px; z-index: 2; transform: rotate(3deg); background: var(--pink-action); color: var(--white); }
.product-tag:nth-child(2)::before { border-color: var(--white); }
.product-tag:nth-child(3) { right: 2%; top: 68px; transform: rotate(9deg); }
.product-tag strong { font-family: var(--display); font-size: 2rem; line-height: 1; }
.product-tag span { font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.about-hero { background: var(--blue-soft); }
.about-hero .hero-grid { grid-template-columns: 1.12fr .88fr; }
.names-composition { position: relative; min-height: 430px; }
.name-card { position: absolute; display: grid; width: 280px; aspect-ratio: 1; place-items: center; border: 2px solid var(--navy); border-radius: 48% 52% 60% 40%; background: var(--pink); color: var(--white); font-family: var(--display); font-size: 3.8rem; font-style: italic; box-shadow: 12px 12px 0 var(--navy); }
.name-card:first-child { left: 4%; top: 0; transform: rotate(-8deg); }
.name-card:last-child { right: 2%; bottom: 0; background: var(--cream); color: var(--navy); transform: rotate(8deg); }
.name-amp { position: absolute; z-index: 3; left: 50%; top: 45%; color: var(--blue); font-family: var(--display); font-size: 7rem; line-height: 1; text-shadow: 3px 3px 0 var(--navy); transform: translate(-50%, -50%) rotate(-8deg); }

.reviews-hero { background: var(--cream); }
.reviews-hero h1 { max-width: 1020px; }
.quote-cloud { position: relative; min-height: 390px; }
.quote-bubble { position: absolute; max-width: 260px; padding: 22px 26px; border: 2px solid var(--navy); border-radius: 30px 30px 30px 4px; background: var(--white); box-shadow: 7px 7px 0 var(--blue); font-family: var(--display); font-size: 1.25rem; line-height: 1.25; }
.quote-bubble:nth-child(1) { top: 10px; left: 5%; transform: rotate(-5deg); }
.quote-bubble:nth-child(2) { top: 115px; right: 1%; border-radius: 30px 30px 4px 30px; background: var(--pink-soft); box-shadow-color: var(--pink); transform: rotate(4deg); }
.quote-bubble:nth-child(3) { bottom: 0; left: 16%; background: var(--blue-soft); transform: rotate(2deg); }

.contact-hero { background: var(--navy); color: var(--white); }
.contact-hero h1 { color: var(--white); }
.contact-stamp { display: grid; width: min(100%, 400px); aspect-ratio: 1; margin-left: auto; place-items: center; border: 2px dashed var(--blue); border-radius: 50%; color: var(--white); text-align: center; transform: rotate(6deg); }
.contact-stamp span { display: block; }
.contact-stamp .stamp-big { color: var(--pink); font-family: var(--display); font-size: 4.7rem; font-style: italic; line-height: .9; }
.contact-stamp .stamp-small { max-width: 230px; margin: 18px auto 0; font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

/* Grooming */
.manifesto { max-width: 1050px; margin: auto; text-align: center; }
.manifesto h2 { font-size: clamp(3rem, 7vw, 7rem); }
.manifesto h2 em { color: var(--pink); font-weight: inherit; }
.manifesto p { max-width: 660px; margin: 34px auto 0; font-size: 1.2rem; }
.service-strips { display: grid; gap: 14px; margin-top: 70px; }
.service-strip { display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; padding: 25px 30px; border: 2px solid var(--navy); border-radius: 999px; background: var(--white); color: var(--navy); transition: transform .2s ease, background .2s ease; }
.service-strip:nth-child(even) { margin-left: 8%; background: var(--blue-soft); }
.service-strip:hover { transform: translateX(7px); background: var(--pink-soft); }
.service-index { color: var(--pink); font-family: var(--display); font-size: 1.5rem; font-style: italic; }
.service-strip strong { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.5rem); }
.service-strip span:last-child { font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.care-card { min-width: 0; min-height: 330px; padding: 32px; border: 2px solid rgba(255,255,255,.25); border-radius: var(--radius); }
.care-card:nth-child(2) { transform: translateY(35px); border-radius: 90px 28px 28px 28px; background: rgba(88,183,232,.12); }
.care-card:nth-child(3) { border-radius: 28px 28px 90px 28px; background: rgba(236,23,99,.15); }
.care-card .care-word { color: var(--blue); font-family: var(--display); font-size: 3rem; font-style: italic; }
.care-card p { margin-top: 50px; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 70px; }
.process-step { position: relative; min-height: 300px; padding: 28px 20px; border-top: 2px solid var(--navy); }
.process-step::before { content: ""; position: absolute; top: -9px; left: 20px; width: 16px; height: 16px; border: 2px solid var(--navy); border-radius: 50%; background: var(--pink); }
.process-step:nth-child(even)::before { background: var(--blue); }
.process-number { display: block; margin-top: 18px; color: var(--pink); font-family: var(--display); font-size: 1.4rem; font-style: italic; }
.process-step h3 { margin-top: 30px; font-size: 1.35rem; }
.process-step p { font-size: .94rem; }
.price-note { display: grid; grid-template-columns: 0.42fr 1fr; gap: 40px; padding: clamp(35px, 5vw, 65px); border: 2px solid var(--navy); border-radius: var(--radius-lg); background: var(--white); }
.price-note .question { color: var(--pink); font-family: var(--display); font-size: clamp(4rem, 9vw, 8rem); font-style: italic; line-height: .8; }

/* Shop */
.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.category-card { position: relative; min-height: 430px; overflow: hidden; padding: clamp(30px, 4vw, 48px); border: 2px solid var(--navy); background: var(--white); }
.category-card:nth-child(1) { grid-column: 1 / span 6; border-radius: 34px 110px 34px 34px; background: var(--navy); color: var(--white); }
.category-card:nth-child(1) h3 { color: var(--white); }
.category-card:nth-child(2) { grid-column: 7 / span 6; border-radius: 110px 34px 34px 34px; background: var(--pink-soft); }
.category-card:nth-child(3) { grid-column: 3 / span 8; min-height: 350px; border-radius: 34px; background: var(--blue-soft); }
.category-card h3 { margin-top: 20px; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.5rem); }
.category-card p { position: relative; z-index: 2; max-width: 440px; margin-top: 30px; }
.category-shape { position: absolute; right: -40px; bottom: -60px; width: 230px; height: 230px; border: 2px solid currentColor; border-radius: 48% 52% 60% 40%; opacity: .22; transform: rotate(25deg); }
.advice-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.advice-list { display: grid; gap: 14px; }
.advice-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.advice-item strong { display: block; color: var(--navy); font-family: var(--display); font-size: 1.6rem; }
.delivery-ticket { position: relative; padding: clamp(38px, 5vw, 64px); border: 2px solid var(--navy); background: var(--pink-action); color: var(--white); clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 90% 92%, 85% 100%, 80% 92%, 75% 100%, 70% 92%, 65% 100%, 60% 92%, 55% 100%, 50% 92%, 45% 100%, 40% 92%, 35% 100%, 30% 92%, 25% 100%, 20% 92%, 15% 100%, 10% 92%, 5% 100%, 0 92%); }
.delivery-ticket h2 { color: var(--white); }
.ticket-stats { display: flex; gap: 50px; margin-top: 45px; }
.ticket-stat strong { display: block; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1; }
.ticket-stat span { display: block; margin-top: 8px; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

/* About */
.values-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 55px; }
.value-card { padding: 34px; border: 2px solid var(--navy); border-radius: var(--radius); background: var(--white); }
.value-card:nth-child(2) { background: var(--pink-soft); transform: translateY(26px); }
.value-card:nth-child(3) { background: var(--blue-soft); }
.value-card .value-number { color: var(--pink); font-family: var(--display); font-size: 1.4rem; font-style: italic; }
.value-card h3 { margin-top: 28px; }
.experience-band { overflow: hidden; padding: 45px 0; background: var(--pink); color: var(--white); }
.experience-band p { margin: 0; font-family: var(--display); font-size: clamp(2.3rem, 6vw, 6rem); font-style: italic; line-height: 1; white-space: nowrap; text-align: center; }
.experience-band strong { font-family: var(--sans); font-size: 1.2em; font-style: normal; }
.principles { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 9vw, 130px); }
.principle-list { margin: 0; padding: 0; list-style: none; }
.principle-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle-list span { color: var(--pink); font-family: var(--display); font-size: 1.5rem; font-style: italic; }
.principle-list strong { display: block; color: var(--navy); font-size: 1.15rem; }
.principle-list p { margin: 5px 0 0; }

/* Contacts */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px, 6vw, 80px); }
.contact-stack { display: grid; gap: 14px; }
.contact-link { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: center; padding: 22px; border: 2px solid var(--navy); border-radius: 20px; background: var(--white); color: var(--navy); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.contact-link:hover { transform: translateX(6px); background: var(--blue-soft); }
.contact-link-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--pink-action); color: var(--white); font-weight: 900; }
.contact-link strong { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-link span:not(.contact-link-icon) { display: block; margin-top: 3px; overflow-wrap: anywhere; }
.contact-link-arrow { font-size: 1.5rem; }
.address-card { min-height: 100%; padding: clamp(35px, 5vw, 58px); border-radius: 40px 110px 40px 40px; background: var(--navy); color: var(--white); }
.address-card h2 { color: var(--white); }
.address-lines { margin-top: 34px; font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.35; }
.address-lines span { display: block; }
.map-wrap { min-height: 520px; padding: 14px; border: 2px solid var(--navy); border-radius: 42px; background: var(--white); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; min-height: 490px; border: 0; border-radius: 30px; filter: saturate(.78) contrast(1.04); }
.hours-panel { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
.hours-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.hours-heading > span { color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hours-heading small { color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hours-list { margin: 14px 0 0; }
.hours-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hours-row dt { font-size: .96rem; font-weight: 700; }
.hours-row dd { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.45rem); font-style: italic; line-height: 1; }
.hours-row.is-closed dd { color: var(--pink-soft); }
.hours-note { margin: 16px 0 0; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.5; }

/* Footer */
.site-footer { padding: clamp(65px, 8vw, 100px) var(--gutter) 92px; background: var(--navy-deep); color: rgba(255,255,255,.78); }
.footer-inner { width: min(100%, var(--container)); margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr .65fr .65fr; gap: 50px; }
.footer-brand img { width: 196px; height: auto; aspect-ratio: 170 / 54; content: url("../logo-light.svg"); filter: none; }
.footer-brand p { max-width: 380px; margin-top: 24px; }
.footer-title { display: block; margin-bottom: 16px; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { display: flex; min-height: 32px; align-items: center; text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; min-height: 56px; align-items: center; gap: 9px; padding: 12px 18px; border: 2px solid var(--navy); border-radius: 999px; background: var(--pink-action); color: var(--white); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; box-shadow: 6px 6px 0 var(--navy); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); }
.floating-whatsapp::before { content: "♥"; font-family: var(--display); font-size: 1.25rem; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }

/* Responsive */
@media (max-width: 1040px) {
  .desktop-nav { gap: 15px; }
  .desktop-nav a:not(.button) { font-size: .73rem; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 35px; }
  .world-card-grooming { grid-column: 1 / span 7; }
  .world-card-shop { grid-column: 8 / span 5; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .perk-card:nth-child(3) { grid-column: 1 / -1; min-height: 280px; margin-top: 30px; }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 35px; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .care-card:last-child { grid-column: 1 / -1; min-height: 250px; }
  .values-list { grid-template-columns: 1fr 1fr; }
  .value-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --section: clamp(72px, 11vw, 105px); }
  body { font-size: 16px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .mobile-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 120px var(--gutter) 50px;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .mobile-nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); color: var(--white); font-family: var(--display); font-size: clamp(2rem, 8vw, 3.8rem); line-height: 1.1; text-decoration: none; }
  .mobile-nav a::after { content: "↗"; color: var(--pink); font-family: var(--sans); font-size: 1.2rem; }
  .hero-grid, .about-hero .hero-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; padding-top: 145px; }
  .pet-portrait { width: min(78vw, 500px); margin: 20px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .worlds { display: grid; grid-template-columns: 1fr; }
  .world-card-grooming, .world-card-shop { grid-column: auto; min-height: 520px; margin: 0; }
  .review-feature, .story-grid, .advice-grid, .principles, .contact-grid { grid-template-columns: 1fr; }
  .review-intro { width: min(100%, 520px); max-width: none; }
  .signature-card { min-height: 450px; }
  .hero-sidecard { margin: 20px 0 0; }
  .shop-shelf { width: min(100%, 620px); margin-inline: auto; }
  .contact-stamp { width: min(75vw, 390px); margin: 15px auto 0; }
  .process { grid-template-columns: 1fr 1fr; }
  .price-note { grid-template-columns: 1fr; }
  .category-card:nth-child(1), .category-card:nth-child(2), .category-card:nth-child(3) { grid-column: 1 / -1; }
  .category-card:nth-child(3) { margin-inline: 8%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; --radius: 22px; }
  h1 { font-size: clamp(3.15rem, 16vw, 5.3rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .site-header { padding-inline: 16px; }
  .brand { width: 164px; }
  .page-hero { padding-top: 125px; padding-bottom: 72px; }
  .home-hero .hero-title-line:not(.hero-title-script) { white-space: normal; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-note { align-items: flex-start; }
  .pet-portrait { width: 95%; }
  .portrait-sticker { right: 0; width: 92px; }
  .portrait-tag { left: 0; }
  .marquee-track span { padding-inline: 18px; }
  .world-card { min-height: 470px; }
  .world-card-grooming { border-radius: 30px 30px 90px 30px; }
  .world-card-shop { border-radius: 90px 30px 30px 30px; }
  .world-content { padding: 29px; }
  .world-card h3 { font-size: 3.2rem; }
  .shop-tags { opacity: .6; }
  .review-feature { gap: 50px; }
  .review-intro { min-height: 355px; padding: 30px 26px; border-radius: 28px 88px 28px 28px; }
  .review-intro::before { top: 28px; left: 26px; }
  .review-intro::after { top: 26px; right: 24px; font-size: 2.8rem; }
  .review-intro .big-word { font-size: clamp(3.8rem, 20vw, 5.4rem); }
  .review-intro .button { width: auto; }
  .review-grid { display: grid; grid-template-columns: 1fr; }
  .review-card:nth-child(n) { grid-column: auto; margin: 0; }
  .perks-grid { grid-template-columns: 1fr; }
  .perk-card:nth-child(n) { grid-column: auto; min-height: 310px; margin: 0; transform: none; }
  .cta-panel { padding: 38px 26px; border-radius: 30px 80px 30px 30px; }
  .hero-sidecard { padding: 28px; }
  .service-strip, .service-strip:nth-child(even) { grid-template-columns: 50px 1fr; margin-left: 0; padding: 20px; border-radius: 24px; }
  .service-strip span:last-child { grid-column: 2; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card:nth-child(n) { grid-column: auto; min-height: 280px; transform: none; }
  .care-card .care-word { font-size: 2.45rem; }
  .process { grid-template-columns: 1fr; margin-left: 8px; }
  .process-step { min-height: auto; padding-bottom: 30px; border-top: 0; border-left: 2px solid var(--navy); }
  .process-step::before { top: 33px; left: -9px; }
  .process-number { margin-top: 0; margin-left: 15px; }
  .process-step h3, .process-step p { margin-left: 15px; }
  .shop-shelf { min-height: 560px; }
  .product-tag { width: 170px; min-height: 230px; padding: 20px; }
  .product-tag:nth-child(1) { left: 2%; }
  .product-tag:nth-child(2) { left: auto; right: 3%; top: 115px; }
  .product-tag:nth-child(3) { left: 12%; right: auto; top: 315px; }
  .category-card { min-height: 360px; }
  .category-card:nth-child(3) { margin: 0; }
  .ticket-stats { flex-direction: column; gap: 25px; }
  .names-composition { min-height: 350px; }
  .name-card { width: 210px; font-size: 3rem; }
  .name-card:first-child { left: 0; }
  .name-card:last-child { right: 0; }
  .values-list { grid-template-columns: 1fr; }
  .value-card:nth-child(n) { grid-column: auto; transform: none; }
  .quote-cloud { min-height: 520px; }
  .quote-bubble:nth-child(1) { left: 0; }
  .quote-bubble:nth-child(2) { top: 175px; }
  .quote-bubble:nth-child(3) { left: 3%; }
  .contact-link { grid-template-columns: 48px 1fr; padding: 18px; }
  .contact-link-icon { width: 44px; height: 44px; }
  .contact-link-arrow { display: none !important; }
  .map-wrap { min-height: 420px; }
  .map-wrap iframe { min-height: 390px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-nav a { min-height: 44px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; left: 14px; justify-content: center; }
  .site-footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .floating-whatsapp, .button { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero { padding: 35px 0; }
}
