:root {
  --bg: #fbf4f1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffaf7;
  --surface-soft: #fff1ef;
  --surface-deep: #eadfd9;
  --text: #402f34;
  --muted: #77656a;
  --accent: #d26975;
  --accent-deep: #ab4a5f;
  --accent-soft: #f7d7db;
  --support: #b9d4cf;
  --line: rgba(64, 47, 52, 0.11);
  --shadow-soft: 0 28px 70px rgba(86, 55, 62, 0.08);
  --shadow-card: 0 20px 44px rgba(81, 54, 61, 0.1);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
 
*,
*::before,
*::after {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #f8efea 42%, #fff9f6 100%);
  line-height: 1.6;
}
 
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 82%);
  opacity: 0.18;
}
 
img,
canvas {
  display: block;
  max-width: 100%;
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
button,
input,
textarea,
select {
  font: inherit;
}
 
code {
  font-family: "Manrope", sans-serif;
  font-size: 0.92em;
}
 
/* .skip-link {
  position: fixed;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--accent-deep);
  color: #fff;
  border-radius: 12px;
  transition: top var(--transition);
} */
 
.skip-link:focus {
  top: 12px;
}
 
.container {
  width: var(--container);
  margin: 0 auto;
}
 
.section-shell {
  padding: clamp(82px, 8vw, 128px) 0;
}
 
.section-light,
.section-accent {
  position: relative;
}
 
.section-light::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(64, 47, 52, 0.05);
  z-index: -1;
}
 
.section-accent::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #b55063, #d56f7c 52%, #f1a8b1 100%);
  box-shadow: var(--shadow-soft);
  z-index: -1;
}
 
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}
 
h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
 
h1 {
  font-size: clamp(3.7rem, 8.4vw, 7rem);
  max-width: 9.2ch;
}
 
h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  max-width: 12ch;
}
 
h3 {
  font-size: clamp(1.68rem, 2.6vw, 2.18rem);
}
 
p {
  margin: 0;
  color: var(--muted);
}
 
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 246, 0.84);
  border-bottom: 1px solid rgba(64, 47, 52, 0.07);
}
 
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
 
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
 
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(160deg, #ffdfe3, #f4adb7 55%, #d26776);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.68), 0 10px 20px rgba(176, 78, 101, 0.16);
}
 
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.84rem;
  color: var(--muted);
}
 
.brand-copy strong {
  color: var(--text);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
 
.site-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 28px);
  font-size: 0.95rem;
  color: var(--muted);
}
 
.site-nav a,
.footer-links a {
  position: relative;
}
 
.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
 
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}
 
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
 
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}
 
.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  box-shadow: 0 18px 38px rgba(190, 88, 110, 0.22);
}
 
.button-secondary {
  border-color: rgba(64, 47, 52, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}
 
.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
 
/* ─── HERO ─────────────────────────────────────────────── */
 
.hero {
  position: relative;
  overflow: clip;
  min-height: 280vh;
  margin-top: 0;
  padding: 0;
}
 
.hero-sequence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
 
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
 
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
 
.hero-fallback {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 30px;
}
 
.hero-loader {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent-deep);
  background: linear-gradient(180deg, rgba(255, 249, 246, 0.8), rgba(248, 239, 235, 0.58));
}
 
.loader-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1s infinite ease-in-out;
}
 
.fallback-scene {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}
 
.fallback-stage {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
 
.fallback-stage-start {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(236, 231, 227, 0.86));
}
 
.fallback-stage-end {
  background: linear-gradient(180deg, rgba(255, 243, 245, 0.92), rgba(248, 214, 220, 0.86));
}
 
.fallback-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(64, 47, 52, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}
 
.hero-copy {
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 64px);
  background: linear-gradient(to right, rgba(251, 244, 241, 0.88) 40%, rgba(251, 244, 241, 0.52) 75%, transparent 100%);
}
 
.hero-text {
  max-width: 50ch;
  font-size: 1.08rem;
}
 
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
 
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin-bottom: 24px;
  list-style: none;
}
 
.hero-points li {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(64, 47, 52, 0.08);
  color: var(--text);
  font-size: 0.92rem;
}
 
.hero-mobile-sequence {
  display: none;
}

/* ─── DOG PLACEHOLDER ──────────────────────────────────── */
 
.dog-placeholder {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1.05;
  justify-self: center;
  border-radius: 44% 56% 48% 52% / 44% 42% 58% 56%;
  background:
    radial-gradient(circle at 40% 26%, rgba(255, 255, 255, 0.98), rgba(237, 228, 222, 0.95) 55%, rgba(203, 191, 186, 0.72) 100%);
  box-shadow:
    0 24px 44px rgba(115, 82, 90, 0.12),
    inset 0 -16px 32px rgba(124, 95, 101, 0.1);
}
 
.dog-placeholder::before,
.dog-placeholder::after {
  content: "";
  position: absolute;
}
 
.dog-placeholder::before {
  width: 54%;
  height: 54%;
  left: 23%;
  top: 19%;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 38%, #faf4ef, #dfd6d0 75%);
}
 
.dog-placeholder::after {
  inset: 8% -12% auto auto;
  width: 44%;
  height: 44%;
  border-radius: 52% 48% 60% 40% / 48% 52% 48% 52%;
  opacity: 0.92;
}
 
.dog-placeholder-cone::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(209, 216, 221, 0.36));
  border: 1px solid rgba(124, 139, 148, 0.38);
  transform: rotate(22deg);
}
 
.dog-placeholder-lambenao::after {
  background: linear-gradient(135deg, rgba(255, 228, 233, 0.98), rgba(244, 181, 192, 0.9));
  border: 1px solid rgba(190, 102, 121, 0.28);
  transform: rotate(14deg);
}
 
/* ─── SECTIONS ─────────────────────────────────────────── */
 
.message-grid,
.showcase-grid,
.faq-grid,
.footer-inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
 
.message-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
 
.message-text,
.showcase-copy,
.faq-list {
  display: grid;
  gap: 16px;
}
 
.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}
 
.section-heading > p:last-child,
.message-text p,
.showcase-copy p,
.faq-item p,
.benefit-copy p,
.testimonial-card p,
.wholesale-copy p,
.final-cta-inner > p,
.wholesale-page-copy p,
.commercial-box p {
  max-width: 62ch;
}
 
.spec-list strong,
.author,
.commercial-box strong {
  color: var(--text);
}
 
/* ─── BENEFITS ─────────────────────────────────────────── */
 
.benefit-stack {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
 
.benefit-card,
.testimonial-card,
.faq-item,
.showcase-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-card);
}
 
.benefit-card,
.testimonial-card,
.faq-item {
  padding: 30px;
}
 
.benefit-feature {
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 240, 236, 0.9));
}
 
.benefit-copy {
  display: grid;
  gap: 14px;
}
 
.card-tag {
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}
 
.benefit-visual,
.showcase-panel {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
 
.benefit-visual {
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 227, 221, 0.95)),
    linear-gradient(135deg, rgba(248, 195, 204, 0.16), rgba(255, 255, 255, 0));
}
 
.benefit-visual::before,
.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px dashed rgba(171, 74, 95, 0.18);
}
 
/* ─── SHOWCASE ─────────────────────────────────────────── */
 
.showcase-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}
 
.spec-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
 
.spec-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
 
.showcase-visuals,
.showcase-row,
.testimonial-grid {
  display: grid;
  gap: 22px;
}
 
.showcase-panel {
  min-height: 288px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 227, 221, 0.95)),
    linear-gradient(135deg, rgba(248, 195, 204, 0.16), rgba(255, 255, 255, 0));
}
 
.showcase-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
 
.placeholder-label {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(64, 47, 52, 0.08);
  color: var(--accent-deep);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
 
/* ─── TESTIMONIALS ─────────────────────────────────────── */
 
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
 
.testimonial-card {
  display: grid;
  gap: 12px;
}
 
.quote {
  color: var(--text);
  font-size: 1.06rem;
}
 
.role {
  font-size: 0.92rem;
}
 
/* ─── WHOLESALE ────────────────────────────────────────── */
 
.wholesale-inner {
  color: #fff4f5;
  padding: clamp(34px, 5vw, 56px);
}
 
.wholesale-page-card {
  display: grid;
  gap: 28px;
}
 
.wholesale-page-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}
 
.wholesale-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
 
.commercial-box {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-card);
}

.commercial-box-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.commercial-box-item {
  display: grid;
  gap: 6px;
}

.commercial-box-item strong {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
}

.commercial-box-item p,
.commercial-box-item ul {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.commercial-box-item ul {
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
}

@media (max-width: 720px) {
  .commercial-box-row {
    grid-template-columns: 1fr;
  }
}

/* ── Size table ───────────────────────────────────────── */

.size-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.size-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.size-table thead tr {
  background: var(--accent-deep);
}

.size-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  white-space: nowrap;
}

.size-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}

.size-table tbody tr:last-child {
  border-bottom: none;
}

.size-table tbody tr:hover {
  background: var(--surface-soft);
}

.size-table tbody td {
  padding: 14px 20px;
  color: var(--text);
  vertical-align: middle;
}

.size-table tbody td:first-child strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
}

.size-table-note {
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
 
.wholesale-copy,
.final-cta-inner {
  display: grid;
  gap: 18px;
  justify-items: start;
}
 
.wholesale-copy p,
.wholesale-copy .eyebrow,
.wholesale-copy h2,
.final-cta-inner p,
.final-cta-inner h2,
.final-cta-inner .eyebrow {
  color: inherit;
}
 
.wholesale-note {
  opacity: 0.9;
}
 
/* ─── FAQ ──────────────────────────────────────────────── */
 
.faq-list {
  gap: 14px;
}
 
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 700;
  padding-right: 36px;
  position: relative;
}
 
.faq-item summary::-webkit-details-marker {
  display: none;
}
 
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-deep);
  font-size: 1.2rem;
}
 
.faq-item[open] summary::after {
  content: "-";
}
 
.faq-item p {
  margin-top: 14px;
}
 
/* ─── FINAL CTA ────────────────────────────────────────── */
 
.final-cta {
  padding-top: 42px;
}
 
.final-cta-inner {
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #b55063, #d56f7c 52%, #f0a3b0 100%);
  box-shadow: var(--shadow-soft);
  color: #fff5f6;
}
 
/* ─── FOOTER ───────────────────────────────────────────── */
 
.site-footer {
  padding: 28px 0 42px;
}
 
.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(64, 47, 52, 0.08);
}
 
.footer-inner strong {
  display: inline-block;
  margin-bottom: 8px;
}
 
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}
 
/* ─── REVEAL ANIMATIONS ────────────────────────────────── */
 
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
}
 
.reveal-ready[data-reveal="scale"] {
  transform: scale(0.986) translateY(14px);
}
 
.reveal-ready[data-reveal="hero-copy"] {
  transform: translateY(22px);
}
 
.reveal-ready[data-reveal="hero-visual"] {
  transform: scale(0.992) translateY(12px);
}
 
@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
 
/* ─── REDUCED MOTION ───────────────────────────────────── */
 
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
 
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
 
  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
 
  .hero {
    min-height: auto;
  }
 
  .hero-sequence-sticky {
    position: relative;
    height: auto;
  }
}
 
/* ─── BREAKPOINT 1080px ────────────────────────────────── */
 
@media (max-width: 1080px) {
  .showcase-grid,
  .message-grid,
  .faq-grid,
  .footer-inner,
  .testimonial-grid,
  .benefit-stack,
  .wholesale-page-grid {
    grid-template-columns: 1fr;
  }
 
  .site-nav {
    display: none;
  }
 
  .hero {
    min-height: 280vh;
  }
 
  .hero-copy {
    max-width: 100%;
    width: 100%;
  }
 
  .benefit-feature {
    grid-row: auto;
  }
}
 
/* ─── BREAKPOINT 720px ─────────────────────────────────── */
 
@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }
 
  .site-header {
    backdrop-filter: blur(10px);
  }
 
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
  }
 
  .header-cta,
  .button,
  .hero-actions a {
    width: 100%;
  }
 
  .hero {
    min-height: auto;
    overflow: visible;
  }

  .hero-sequence-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    display: block;
  }

  .hero-canvas-wrap {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: clamp(32px, 6vw, 48px) clamp(20px, 5vw, 32px);
    background: none;
  }

  .hero-mobile-sequence {
    display: block;
    position: relative;
    overflow: clip;
    min-height: 280vh;
    padding: 0;
  }

  .hero-mobile-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-mobile-canvas-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-mobile-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-mobile-fallback {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-mobile-loader {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-deep);
  }

  h1 {
    max-width: 10.2ch;
  }
 
  .hero-points {
    flex-direction: column;
  }
 
  .fallback-stage,
  .benefit-card,
  .testimonial-card,
  .faq-item,
  .wholesale-inner,
  .final-cta-inner,
  .commercial-box {
    padding: 22px;
  }
 
  .hero-fallback {
    padding: 16px;
  }

  .fallback-scene {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 68px 0;
  }
 
  .section-light::before {
    inset: 18px 0;
  }
 
  .footer-links {
    gap: 14px;
  }
}

/* ─── BREAKPOINT 480px ─────────────────────────────────── */

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.8rem, 10vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
  }

  h3 {
    font-size: clamp(1.4rem, 5.5vw, 1.68rem);
  }

  .hero-copy {
    padding: 20px 16px;
    background: linear-gradient(
      to right,
      rgba(251, 244, 241, 0.94) 0%,
      rgba(251, 244, 241, 0.78) 80%,
      transparent 100%
    );
  }

  .hero-points li {
    font-size: 0.86rem;
    padding: 8px 12px;
  }

  .section-shell {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .benefit-card,
  .testimonial-card,
  .faq-item {
    padding: 18px;
  }

  .wholesale-inner,
  .final-cta-inner {
    padding: 20px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ─── BREAKPOINT 375px ─────────────────────────────────── */

@media (max-width: 375px) {
  :root {
    --container: min(100vw - 16px, 100%);
  }

  h1 {
    font-size: clamp(2.4rem, 9vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2rem);
  }

  .hero-copy {
    padding: 18px 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .benefit-card,
  .testimonial-card,
  .faq-item {
    padding: 16px;
  }

  .spec-list div {
    padding: 10px 0;
  }

  .section-shell {
    padding: 44px 0;
  }
}

/* ── Footer legal row ─────────────────────────────────── */

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-legal-links a {
  position: relative;
}

.footer-legal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.footer-legal-links a:hover::after,
.footer-legal-links a:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 480px) {
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── Product page ─────────────────────────────────────── */

.size-selector-group {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.size-selector-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  padding: 8px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  letter-spacing: 0.03em;
}

.size-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.size-btn.active {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.size-selector-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.size-selector-note a {
  color: var(--accent-deep);
  font-weight: 600;
}

.product-price {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 4px 0;
}

.product-price-full {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.product-price-pix {
  font-size: 0.9rem;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0;
}

.product-price-all {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.6;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-signals li {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-signals li::before {
  content: "\2713";
  color: var(--accent-deep);
  font-weight: 800;
}

/* ── Legal prose pages ────────────────────────────────── */

.prose-section {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
}

.prose-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.prose-body {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.prose-block h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.prose-block p,
.prose-block ul,
.prose-block ol {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.prose-block ul,
.prose-block ol {
  padding-left: 1.4em;
  display: grid;
  gap: 6px;
}

/* ─── MOBILE DRAWER ────────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(64, 47, 52, 0.14);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(64, 47, 52, 0.22);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(64, 47, 52, 0.38);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.drawer-overlay.is-visible {
  display: block;
}

.drawer-overlay.is-active {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(300px, 82vw);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 24px 40px;
  background: var(--surface-strong);
  box-shadow: -12px 0 48px rgba(64, 47, 52, 0.14);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-bottom: 8px;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-color: transparent;
}

.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.drawer-nav li a {
  display: block;
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), padding-left var(--transition);
}

.drawer-nav li:last-child a {
  border-bottom: none;
}

.drawer-nav li a:hover,
.drawer-nav li a:focus-visible {
  color: var(--accent-deep);
  padding-left: 8px;
}

.drawer-cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* Show hamburger and hide desktop nav on tablet and below */
@media (max-width: 1080px) {
  .nav-toggle {
    display: flex;
  }
}

/* On mobile, prevent the header-cta button from going full width
   (override the existing rule that makes all buttons 100% wide) */
@media (max-width: 720px) {
  .header-cta {
    display: none;
  }
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}