/* HUELLA · Clínica veterinaria — paleta azul + verde pastel */
:root {
  --rose: #A5C4C9;         /* azul verdoso pastel (era rose) */
  --rose-deep: #6B939C;    /* azul verdoso oscuro */
  --sage: #B4CBB0;         /* verde salvia */
  --butter: #C8DDD4;       /* verde agua muy claro (era amarillo) */
  --cream: #F0F4EF;        /* crema con leve tinte verde */
  --cream-2: #DBE6DE;
  --white: #FCFEFB;
  --ink: #1F3538;          /* navy-verde profundo (era cocoa) */
  --ink-soft: #4A6367;
  --grad-panel: linear-gradient(180deg, #C8DDD4 0%, #94B7B0 100%);
  --outline: 2.5px solid var(--ink);
  --radius-pill: 999px;
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --scallop: 32px;
  --gutter: clamp(16px, 4vw, 56px);
  --head-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2.5px solid var(--rose-deep); outline-offset: 3px; border-radius: 4px; }

.display {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 0.9;
  margin: 0;
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.display.italic { font-style: italic; font-weight: 400; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }

.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px; border: var(--outline); border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; line-height: 1; white-space: nowrap; font-weight: 700;
  transition: transform .3s cubic-bezier(.32,.72,0,1), box-shadow .3s cubic-bezier(.32,.72,0,1);
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }
.pill--sage { background: var(--sage); color: var(--ink); }
.pill--white { background: var(--white); color: var(--ink); }
.pill--butter { background: var(--butter); color: var(--ink); }
.pill--rose { background: var(--rose); color: var(--ink); }
.pill--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pill--ink:hover { background: var(--rose-deep); }

.arrow-btn {
  width: 56px; height: 56px; border-radius: 50%; border: var(--outline);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose); color: var(--ink);
  transition: transform .3s cubic-bezier(.32,.72,0,1), box-shadow .3s cubic-bezier(.32,.72,0,1);
}
.arrow-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }
.arrow-btn--ghost { background: transparent; }
.arrow-btn svg { width: 22px; height: 22px; }

.scallop-top { position: relative; }
.scallop-top::before {
  content: ""; position: absolute; left: 0; right: 0; top: calc(-1 * var(--scallop));
  height: var(--scallop); pointer-events: none;
  background-image: radial-gradient(circle at var(--scallop) var(--scallop), var(--sc, var(--cream)) calc(var(--scallop) - 0.5px), rgba(0,0,0,0) var(--scallop));
  background-size: calc(var(--scallop) * 2) var(--scallop);
  background-repeat: repeat-x;
  z-index: 3;
}

/* Override solo para el banner del obrador: mask SVG estirable
   para que los arcos no se corten al final del ancho */
.banner.scallop-top::before {
  background-image: none;
  background: var(--sc, var(--cream));
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 20' preserveAspectRatio='none'><path d='M0 0 L480 0 L480 20 Q470 0 460 20 Q450 0 440 20 Q430 0 420 20 Q410 0 400 20 Q390 0 380 20 Q370 0 360 20 Q350 0 340 20 Q330 0 320 20 Q310 0 300 20 Q290 0 280 20 Q270 0 260 20 Q250 0 240 20 Q230 0 220 20 Q210 0 200 20 Q190 0 180 20 Q170 0 160 20 Q150 0 140 20 Q130 0 120 20 Q110 0 100 20 Q90 0 80 20 Q70 0 60 20 Q50 0 40 20 Q30 0 20 20 Q10 0 0 20 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 20' preserveAspectRatio='none'><path d='M0 0 L480 0 L480 20 Q470 0 460 20 Q450 0 440 20 Q430 0 420 20 Q410 0 400 20 Q390 0 380 20 Q370 0 360 20 Q350 0 340 20 Q330 0 320 20 Q310 0 300 20 Q290 0 280 20 Q270 0 260 20 Q250 0 240 20 Q230 0 220 20 Q210 0 200 20 Q190 0 180 20 Q170 0 160 20 Q150 0 140 20 Q130 0 120 20 Q110 0 100 20 Q90 0 80 20 Q70 0 60 20 Q50 0 40 20 Q30 0 20 20 Q10 0 0 20 Z' fill='black'/></svg>");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.bg-rose { background: var(--rose); --sc: var(--rose); }
.bg-sage { background: var(--sage); --sc: var(--sage); }
.bg-butter { background: var(--butter); --sc: var(--butter); }
.bg-cream { background: var(--cream); --sc: var(--cream); }
.bg-white { background: var(--white); --sc: var(--white); }
.bg-cream-2 { background: var(--cream-2); --sc: var(--cream-2); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--gutter); height: var(--head-h);
  color: var(--white);
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
}
.site-header a { color: inherit; text-decoration: none; }
.site-header .pill--rose { background: var(--white); color: var(--ink); border: 1.5px solid var(--white); }
.site-header.scrolled {
  background: rgba(240, 244, 239, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(31, 53, 56, 0.14);
  color: var(--ink);
}
.site-header.scrolled .pill--rose { background: var(--ink); color: var(--white); border-color: var(--ink); }
.site-header .nav-left { display: flex; gap: 26px; align-items: center; }
.site-header .nav-left a {
  font-family: var(--font-body); font-size: 11.5px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.16em;
  display: inline-flex; align-items: center; gap: 4px;
}
.site-header .wordmark {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 28px; letter-spacing: -0.015em; font-weight: 700;
}
.site-header .nav-right { display: flex; gap: 14px; align-items: center; }
.site-header .icon-btn { width: 26px; height: 26px; display: inline-flex; }
.site-header .pill { padding: 10px 22px; font-size: 11px; }
.nav-toggle { display: none; }

/* HERO fullscreen photo + overlay */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--head-h) + 40px) var(--gutter) 80px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  border: 14px solid var(--sage);
  border-top: none;
}
@media (max-width: 640px) {
  .hero { border-width: 8px; border-top: none; }
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #0E1414; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(14,20,20,0.15) 0%, rgba(14,20,20,0.55) 100%),
    linear-gradient(180deg, rgba(14,20,20,0.25) 0%, rgba(14,20,20,0.15) 40%, rgba(14,20,20,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: heroFadeIn 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.82;
  margin: 0 0 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(88px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 0 0 40px;
  background: linear-gradient(
    120deg,
    #C7A464 0%,
    #F0D488 20%,
    #FFF3C4 40%,
    #E5B94D 60%,
    #F0D488 80%,
    #C7A464 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(0,0,0,0.25));
  animation: heroShimmer 7s ease-in-out infinite;
}
@keyframes heroShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--white);
  opacity: 0.95;
  margin: 0 auto 42px;
  max-width: 620px;
}
.hero-ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.pill--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.25s, border-color 0.25s;
}
.pill--ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.hero-meta {
  position: absolute; z-index: 1;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--head-h) + 30px); padding-bottom: 100px; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 0.28em; margin-bottom: 20px; padding: 0 12px; }
  .hero-title { font-size: clamp(72px, 24vw, 180px); }
  .hero-tagline { font-size: 17px; margin-bottom: 32px; padding: 0 16px; }
  .hero-meta { font-size: 9.5px; letter-spacing: 0.14em; gap: 6px; }
}

.hero-tagline {
  position: relative; z-index: 3;
  margin: 2.5vh auto 0;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.15vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
  text-align: center;
}
.hero-badge {
  position: relative; z-index: 3;
  margin: 2.2vh auto 0;
  text-align: center;
  animation: hero-badge-bounce 3s ease-in-out infinite;
}
.hero-badge span {
  display: inline-block;
  background: var(--rose);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px -4px rgba(61, 42, 31, 0.28);
  border: 2px solid var(--ink);
}
@keyframes hero-badge-bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-4px) rotate(-2deg); }
}
@media (max-width: 640px) {
  .hero-badge span { font-size: 9.5px; letter-spacing: 0.18em; padding: 0.45rem 0.85rem; }
}

.intro {
  padding: calc(var(--scallop) + 96px) var(--gutter) 96px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.intro h2 { font-size: clamp(38px, 5.2vw, 82px); max-width: 22ch; margin: 0 auto 40px; line-height: 1.02; }
.intro .pill { margin: 0 auto; }
.intro-badges {
  display: flex; justify-content: center; gap: clamp(14px, 2.6vw, 44px);
  margin-top: 72px; flex-wrap: nowrap;
}
@media (max-width: 900px) { .intro-badges { flex-wrap: wrap; } }
.intro-badges figure { margin: 0; width: 128px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.intro-badges .badge-circle {
  width: 104px; height: 104px; border: 2px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: var(--white);
}
.intro-badges .badge-circle svg { width: 52px; height: 52px; }
.intro-badges figcaption {
  font-family: var(--font-body); font-size: 11px; text-transform: uppercase; line-height: 1.3; font-weight: 700; letter-spacing: 0.12em;
}

.section-head { text-align: center; padding: 0 var(--gutter); }
.section-head h2 { font-size: clamp(40px, 5.4vw, 84px); margin: 0 0 10px; line-height: 1.02; }
.section-head p { margin: 0; font-size: 15px; color: var(--ink-soft); }

.carousel { padding: calc(var(--scallop) + 88px) 0 96px; }
.carousel-stage {
  margin-top: 56px; display: flex; justify-content: center; align-items: stretch;
  gap: clamp(14px, 2vw, 28px); padding: 0 var(--gutter);
}
.product-card {
  border: var(--outline); border-radius: 18px; background: var(--white);
  width: clamp(220px, 24vw, 360px); aspect-ratio: 1 / 1;
  position: relative; overflow: hidden; flex: 0 0 auto;
  transition: transform .35s cubic-bezier(.32,.72,0,1), opacity .35s ease;
  transform: scale(0.86); opacity: 0.55;
}
.product-card.active { transform: scale(1); opacity: 1; box-shadow: 8px 8px 0 var(--ink); }
.product-card svg { width: 100%; height: 100%; }
.product-card img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--white); }
.product-card .card-sticker { position: absolute; top: 12px; right: 12px; width: 84px; transform: rotate(10deg); }
.product-card .card-sticker.black { width: 74px; }
.carousel-names {
  display: flex; justify-content: center; gap: clamp(14px, 2vw, 28px); padding: 22px var(--gutter) 0;
}
.carousel-names .name-slot { width: clamp(220px, 24vw, 360px); text-align: center; flex: 0 0 auto; }
.carousel-names h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 6px; font-weight: 700; line-height: 1.15; }
.carousel-names .price { font-size: 14px; font-weight: 700; }
.carousel-detail {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 44px var(--gutter) 0; max-width: 1080px; margin: 0 auto;
}
.carousel-detail .desc { max-width: 52ch; font-size: 15px; margin: 0; line-height: 1.6; color: var(--ink-soft); }
.carousel-arrows { display: flex; gap: 12px; }
@media (max-width: 900px) {
  .product-card:not(.active) { display: none; }
  .carousel-names .name-slot:not(.active) { display: none; }
}

.testimonial { padding: calc(var(--scallop) + 88px) var(--gutter) 96px; text-align: center; }
.testimonial h2 { font-size: clamp(36px, 4.8vw, 72px); margin: 0 0 18px; line-height: 1.02; }
.testimonial .stars { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.testimonial .stars svg { width: 30px; height: 30px; }
.testimonial blockquote {
  font-family: var(--font-display); font-style: italic; line-height: 1.1; font-weight: 400;
  font-size: clamp(26px, 3.2vw, 52px); max-width: 30ch; margin: 0 auto 34px;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.testimonial cite { font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.testimonial .carousel-arrows { justify-content: flex-end; max-width: 1200px; margin: 40px auto 0; }
.testimonial .arrow-btn { background: var(--cream); }

.compare { padding: calc(var(--scallop) + 88px) var(--gutter) 96px; }
.compare table {
  width: min(920px, 100%); margin: 56px auto 0; border-collapse: collapse;
  border: var(--outline);
}
.compare th, .compare td {
  border: 2px solid var(--ink); padding: 26px 22px; text-align: center;
  font-size: 15px;
}
.compare td:first-child, .compare th:first-child {
  text-align: left; font-family: var(--font-body); text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  width: 44%;
}
.compare thead th { font-family: var(--font-display); font-size: 22px; padding: 22px 18px; font-weight: 700; }
.compare th.brand-col { background: var(--sage); }
.compare td.brand-col { background: var(--sage); }
.compare .mark { width: 30px; height: 30px; margin: 0 auto; }

.potm { padding: calc(var(--scallop) + 88px) var(--gutter) 96px; }
.potm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px);
  align-items: center; max-width: 1240px; margin: 56px auto 0;
}
.potm-media { position: relative; }
.potm-media .main-media {
  background: var(--cream-2);
  border: var(--outline);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.potm-media .main-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.potm-thumbs { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 18px; z-index: 2; }
.potm-thumbs button {
  width: 68px; height: 68px; border-radius: 50%; border: var(--outline); overflow: hidden;
  background: var(--white); padding: 0;
}
.potm-thumbs button[aria-pressed="true"] { box-shadow: 0 0 0 3px var(--rose); }
.potm-info { position: relative; }
.potm-info h3 { font-size: clamp(44px, 5.8vw, 88px); margin: 0 0 14px; line-height: 1; }
.potm-info .potm-sticker { position: absolute; top: -34px; right: 8%; width: 110px; transform: rotate(12deg); }
.potm-info .price { font-size: 20px; font-weight: 700; margin: 0 0 18px; font-family: var(--font-display); }
.potm-info .desc { font-size: 15px; line-height: 1.65; max-width: 46ch; margin: 0 0 30px; color: var(--ink-soft); }
.potm-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .potm-grid { grid-template-columns: 1fr; }
  .potm-thumbs { left: 10px; }
}

.banner {
  position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: calc(var(--scallop) + 60px) var(--gutter) 60px;
}
.banner .banner-media { position: absolute; inset: 0; z-index: 0; }
.banner .banner-media img { width: 100%; height: 100%; object-fit: cover; }
.banner .banner-media::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(61,42,31,0.15) 0%, rgba(61,42,31,0.55) 100%);
}
.banner .banner-sticker { position: absolute; top: calc(var(--scallop) + 28px); left: clamp(12px, 4vw, 64px); width: clamp(96px, 10vw, 150px); transform: rotate(-10deg); z-index: 2; }
.banner-card {
  position: relative; z-index: 2; background: var(--cream); border: var(--outline);
  border-radius: 18px; padding: clamp(28px, 4vw, 56px) clamp(24px, 5vw, 72px);
  text-align: center; max-width: 560px;
}
.banner-card h2 { font-size: clamp(36px, 4.4vw, 64px); margin: 0 0 12px; line-height: 1; }
.banner-card p { margin: 0 0 26px; font-size: 15px; color: var(--ink-soft); text-align: justify; hyphens: auto; }

.recipe-feature { padding: calc(var(--scallop) + 96px) var(--gutter) 96px; }
.recipe-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; max-width: 1240px; margin: 0 auto;
}
.recipe-info h2 { font-size: clamp(42px, 5.4vw, 88px); margin: 0 0 18px; line-height: 1; }
.recipe-info p { font-size: 15px; max-width: 40ch; margin: 0 0 30px; color: var(--ink-soft); line-height: 1.65; text-align: justify; hyphens: auto; }
.recipe-media { position: relative; }
.recipe-media .zigzag-circle { width: 100%; aspect-ratio: 1/1; }
.recipe-media .recipe-sticker { position: absolute; top: -4%; right: 2%; width: clamp(96px, 10vw, 150px); transform: rotate(10deg); }
@media (max-width: 900px) { .recipe-grid { grid-template-columns: 1fr; } }

.recipes { padding: 0 var(--gutter) 96px; }
.recipes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px);
  max-width: 1240px; margin: 56px auto 0;
}
.recipe-card { margin: 0; }
.recipe-card .thumb { border: var(--outline); border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.recipe-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recipe-card figcaption {
  font-family: var(--font-display); font-size: 18px; line-height: 1.25; font-weight: 700;
  margin-top: 16px;
}
.recipes .more-wrap { text-align: center; margin-top: 56px; }
@media (max-width: 900px) { .recipes-grid { grid-template-columns: 1fr; } }

.secret { padding: calc(var(--scallop) + 88px) var(--gutter) 110px; }
.secret-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3.4vw, 56px);
  align-items: center; max-width: 1240px; margin: 64px auto 0;
}
.secret-center { position: relative; width: clamp(300px, 32vw, 470px); aspect-ratio: 1/1; }
.secret-center svg.burst { width: 100%; height: auto; }
.secret-center .center-product { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.secret-center .center-product img { width: 60%; height: 60%; object-fit: cover; border-radius: 50%; border: var(--outline); }
.feature-box {
  background: var(--white); border: var(--outline); border-radius: 14px;
  padding: 24px 26px; margin-bottom: 22px; max-width: 340px;
}
.feature-box h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 8px; font-weight: 700; }
.feature-box p { font-size: 13px; line-height: 1.55; margin: 0; color: var(--ink-soft); text-align: justify; hyphens: auto; }
.secret-col--left { display: flex; flex-direction: column; align-items: flex-end; }
.secret-col--right { display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 900px) {
  .secret-grid { grid-template-columns: 1fr; }
  .secret-center { margin: 0 auto; order: -1; }
  .secret-col--left, .secret-col--right { align-items: stretch; }
  .feature-box { max-width: none; }
}

.merch { padding: calc(var(--scallop) + 88px) var(--gutter) 96px; position: relative; }
.merch .merch-sticker { position: absolute; top: calc(var(--scallop) + 32px); right: clamp(12px, 5vw, 80px); width: clamp(96px, 10vw, 150px); transform: rotate(10deg); }
.merch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px);
  max-width: 1240px; margin: 64px auto 0;
}
.merch-card { position: relative; border: var(--outline); border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; background: var(--white); }
.merch-card img { width: 100%; height: 100%; object-fit: cover; }
.merch-card .card-sticker { position: absolute; top: 14px; right: 14px; width: 80px; }
.merch-names { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px); max-width: 1240px; margin: 24px auto 0; }
.merch-names h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 4px; font-weight: 700; }
.merch-names .price { font-size: 14px; font-weight: 700; }
@media (max-width: 900px) { .merch-grid, .merch-names { grid-template-columns: 1fr; } }

.newsletter { padding: calc(var(--scallop) + 88px) var(--gutter) 110px; text-align: center; }
.newsletter h2 { font-size: clamp(34px, 4.4vw, 68px); margin: 0 0 12px; line-height: 1.02; }
.newsletter p { margin: 0 0 34px; font-size: 15px; color: var(--ink-soft); }
.newsletter form { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  border: var(--outline); border-radius: var(--radius-pill); padding: 14px 26px;
  font-size: 15px; width: min(340px, 80vw); font-family: var(--font-body); background: var(--white);
}

.site-footer { padding: calc(var(--scallop) + 72px) var(--gutter) 0; color: var(--ink); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: clamp(24px, 4vw, 64px);
  max-width: 1360px; margin: 0 auto 56px;
}
.footer-grid h3 { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; letter-spacing: 0.16em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid p { font-size: 14px; line-height: 1.5; margin: 0 0 18px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-news form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-news input[type="email"] {
  border: var(--outline); border-radius: var(--radius-pill); padding: 12px 20px; font-size: 14px;
  width: min(240px, 100%); background: var(--white);
}
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay span {
  border: 2px solid var(--ink); border-radius: 6px; padding: 3px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.03em; background: var(--white);
}
.footer-legal { text-align: center; font-size: 13px; padding: 18px 0 30px; border-top: 2px solid var(--ink); max-width: 1360px; margin: 0 auto; }
.footer-wordmark { overflow: hidden; padding: 0 var(--gutter); }
.footer-wordmark .display {
  font-size: clamp(84px, 20vw, 380px); text-align: center; color: var(--ink);
  letter-spacing: -0.04em; margin-right: -0.04em;
  transform: translateY(18%); line-height: 0.9; white-space: nowrap;
  font-style: italic; font-weight: 400; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 640px) {
  .hero { min-height: 92svh; padding-top: calc(var(--head-h) + 4vh); }
  .hero-title { font-size: clamp(72px, 22vw, 160px); letter-spacing: -0.025em; line-height: 0.88; }
  .hero-tagline { font-size: 10.5px; letter-spacing: 0.26em; padding: 0 20px; margin-top: 3vh; }
  .footer-wordmark .display { font-size: clamp(72px, 22vw, 160px); }
}

.reveal { opacity: 0; transform: translateY(42px); transition: opacity .8s cubic-bezier(.22,.8,.32,1), transform .8s cubic-bezier(.22,.8,.32,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .site-header .nav-left { display: none; }
  .site-header .wordmark {
    position: static; transform: none;
    font-size: 24px; margin: 0 auto;
  }
  .site-header {
    justify-content: space-between; padding: 12px 16px;
  }
  .site-header .nav-right .icon-btn { display: none; }
  .site-header .nav-right .pill { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
    align-items: center; justify-content: center; border: var(--outline); border-radius: 12px; background: var(--cream);
    flex-shrink: 0;
  }
  .nav-toggle span { display: block; width: 18px; height: 2.5px; background: var(--ink); border-radius: 2px; }
  .mobile-nav {
    position: fixed; inset: 0; z-index: 100; background: var(--rose);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; padding: 100px var(--gutter);
    transform: translateY(-100%); transition: transform .4s cubic-bezier(.32,.72,0,1), visibility 0s .4s;
    visibility: hidden;
  }
  .mobile-nav.open { visibility: visible; transition: transform .4s cubic-bezier(.32,.72,0,1), visibility 0s; }
  .mobile-nav.open { transform: none; }
  .mobile-nav a { font-family: var(--font-display); font-size: 44px; text-align: center; font-weight: 700; letter-spacing: -0.02em; padding: 8px 20px; }
  .mobile-nav .close-btn {
    position: absolute; top: 16px; right: 16px; font-size: 28px;
    width: 44px; height: 44px; border: var(--outline); border-radius: 50%; background: var(--cream);
    display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  }
  .mobile-nav .mobile-cta {
    margin-top: 24px;
  }
}
@media (min-width: 861px) { .mobile-nav { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title .line span { transform: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.compare .mark-yes, .compare .mark-no { width: 30px; height: 30px; margin: 0 auto; display: block; }

.main-media img { width: 100%; height: auto; display: block; border-radius: 12px; }
.potm-thumbs img { width: 68px; height: 68px; object-fit: cover; border-radius: 50%; display: block; }
.merch-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.zigzag-circle image { width: 100%; height: 100%; }

@media (max-width: 640px) {
  .potm-thumbs {
    position: static; transform: none; flex-direction: row; justify-content: center;
    margin-top: 16px; gap: 14px;
  }
  .potm-thumbs button { width: 56px; height: 56px; }
  .potm-info .potm-sticker {
    position: static;
    width: 78px;
    margin: 0 0 16px auto;
    display: block;
    transform: rotate(6deg);
  }
  .potm-ctas .pill { flex: 1 1 auto; text-align: center; }
  .merch .merch-sticker {
    position: static;
    width: 78px;
    margin: 0 auto 24px;
    display: block;
    transform: rotate(-4deg);
  }
  .merch { padding-top: calc(var(--scallop) + 60px); }
  .compare { padding-left: 10px; padding-right: 10px; }
  .compare th, .compare td { padding: 14px 10px; font-size: 13px; }
  .compare td:first-child, .compare th:first-child { font-size: 11.5px; width: 40%; line-height: 1.3; }
  .compare thead th { font-size: 15px; padding: 14px 8px; }
  .compare .mark { width: 24px; height: 24px; }
  .banner { min-height: 78vh; padding-top: calc(var(--scallop) + 40px); }
  .banner-card { max-width: 100%; margin-top: 100px; }
  .banner .banner-sticker { width: 82px; top: calc(var(--scallop) + 20px); left: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; margin-bottom: 44px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-social svg { width: 20px; height: 20px; }
  .footer-pay span { font-size: 11px; padding: 5px 10px; }
  .footer-news input[type="email"] { width: 100%; }
  .footer-news form .pill { width: 100%; text-align: center; }
  .intro-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .intro-badges .badge-circle { margin: 0 auto; }
  .newsletter form .pill { width: 100%; }
  .carousel, .testimonial, .compare, .potm, .recipe-feature { padding-bottom: 72px; }
  .recipe-card .thumb { aspect-ratio: 16/10; }
  .merch-names { text-align: center; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .footer-news { grid-column: 1 / -1; }
}


/* ===== SLOGAN (post-carrusel) ===== */
.slogan { padding: calc(var(--scallop) + 96px) var(--gutter) 96px; text-align: center; }
.slogan-inner { max-width: 780px; margin: 0 auto; }
.slogan-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 24px;
}
.slogan-title {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink);
}
.slogan-italic {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}
.slogan-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: justify;
  hyphens: auto;
}

/* ===== TESTIMONIAL v2 (21st.dev card style) ===== */
.testimonial-v2 {
  padding: calc(var(--scallop) + 96px) var(--gutter) 120px;
  background: var(--sage);
  position: relative;
}
.tsv2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.tsv2-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(252, 254, 251, 0.6);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  margin-bottom: 24px;
}
.tsv2-head h2 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.tsv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.tsv2-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 10px 30px -18px rgba(31, 53, 56, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tsv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -20px rgba(31, 53, 56, 0.45);
}
.tsv2-stars {
  display: flex;
  gap: 3px;
}
.tsv2-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--rose-deep);
}
.tsv2-card blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  font-style: italic;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
.tsv2-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(31, 53, 56, 0.12);
}
.tsv2-author img {
  width: 44px; height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1.5px solid var(--ink);
}
.tsv2-author div {
  display: flex; flex-direction: column; line-height: 1.25;
  font-family: var(--font-body);
}
.tsv2-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.tsv2-author span {
  font-size: 12px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .tsv2-grid { grid-template-columns: 1fr; max-width: 480px; }
}


/* ===== NUMERACIÓN EDITORIAL DE SECCIONES ===== */
.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  opacity: 0.9;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 22px;
}
.section-num-inline {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 700;
  color: var(--rose-deep);
  margin-right: 4px;
}
.section-head {
  padding-bottom: 24px;
}
.tsv2-head .section-num {
  margin-bottom: 4px;
}
.banner .banner-card .section-eyebrow,
.recipe-info .section-eyebrow {
  margin-bottom: 18px;
}
