:root {
  --bg: #f4f4f1;
  --bg-white: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #171717;
  --teal: #22e0c0;
  --teal-deep: #0c7a68;
  --line: #0a0a0a;
  --text-dim: #4a4f4d;
  --white: #ffffff;
  --notch: 14px;
  --font-head: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.accent { color: var(--teal-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--teal);
  display: inline-block;
  transform: rotate(45deg);
}
.eyebrow-light { color: var(--ink); }

/* Buttons — cut-corner, not pills */
.btn {
  --notch: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 2px solid var(--ink);
  cursor: pointer;
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}
.btn-lg { padding: 16px 30px; font-size: 15.5px; --notch: 14px; }
.btn-primary { background: var(--ink); color: var(--teal); border-color: var(--ink); }
.btn-primary:hover { background: var(--teal); color: var(--ink); border-color: var(--ink); transform: translate(-2px, -2px); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--teal); transform: translate(-2px, -2px); }
.btn-ghost { border: none; clip-path: none; color: var(--ink); padding: 10px 14px; font-weight: 600; }
.btn-ghost:hover { color: var(--teal-deep); }
.btn-dark { background: var(--ink); color: var(--teal); border-color: var(--ink); }
.btn-dark:hover { background: var(--white); color: var(--ink); transform: translate(-2px, -2px); }

/* Focus indicator — .btn uses clip-path, which clips the browser's default
   outline, so keyboard focus needs an explicit ring drawn INSIDE the shape
   (inset box-shadow isn't clipped away like an outline/outset shadow would be). */
.btn:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--teal-deep); }
.btn-primary:focus-visible, .btn-dark:focus-visible { box-shadow: inset 0 0 0 3px var(--teal); }
.btn-ghost:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 2px; }

/* Shine sweep on solid buttons */
.btn-primary, .btn-dark { position: relative; overflow: hidden; }
.btn-primary::after, .btn-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-dark:hover::after { left: 130%; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--teal);
  z-index: 300;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.09); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.25s ease;
}
.site-header.scrolled .header-inner { padding-top: 9px; padding-bottom: 9px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; display: block; object-fit: contain; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-text strong { color: var(--teal-deep); }
.brand-text em {
  font-style: normal;
  font-size: 11px;
  vertical-align: super;
  color: var(--text-dim);
  margin-left: 2px;
}
.brand-text.small { font-size: 17px; color: var(--white); }
.brand-text.small strong { color: var(--teal); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  flex-wrap: nowrap;
}
.main-nav a { position: relative; display: flex; align-items: center; gap: 5px; white-space: nowrap; padding-bottom: 3px; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--teal-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--teal-deep); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-outline, .header-actions .btn-primary { display: none; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Corner wedges — the brand signature */
.corner {
  position: absolute;
  width: 260px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}
.corner-tl { top: 0; left: 0; }
.corner-br { bottom: 0; right: 0; }
.corner.small { width: 170px; height: 130px; }
.corner-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(.16,1,.3,1);
}
.corner-line.drawn { stroke-dashoffset: 0; }

/* Hero — sized to fit within the viewport below the header, no scroll needed */
.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-white);
  border-bottom: 2px solid var(--ink);
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; }

/* Hero mark — simple, calm floating bob */
.hero-mark { width: 300px; margin: 0 0 26px; }
.hero-float { animation: heroFloat 3.6s ease-in-out infinite; }
.hero-spin {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(14,156,133,0.25));
  animation: heroBreathe 3.6s ease-in-out infinite;
}
.hero-shadow {
  width: 62%;
  height: 18px;
  margin: 6px auto 0;
  background: radial-gradient(closest-side, rgba(10,10,10,0.22), rgba(10,10,10,0));
  animation: heroShadow 3.6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes heroShadow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(0.82); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float, .hero-spin, .hero-shadow,
  .ribbon-track, .spec-row.featured::before, .ship-icon,
  .whatsapp-float a::before {
    animation: none;
  }
  .reveal { transition-duration: 0.01ms; }
  .corner-line { transition-duration: 0.01ms; }
  .tilt-card { transition: none; }
}
.hero h1 { font-size: 48px; color: var(--ink); margin-bottom: 20px; max-width: 720px; }
.hero p { color: var(--text-dim); font-size: 17px; max-width: 520px; margin: 0 auto 34px; }

/* Hero title rotator — all phrases stack in the same grid cell so the box is
   always sized to the tallest/widest one (CSS alone reserves the space,
   which is what keeps the swap from ever shifting the layout). */
.hero-rotator { display: inline-grid; overflow: hidden; }
.hero-rotator-word {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.hero-rotator-word.is-active { opacity: 1; transform: translateY(0); }
.hero-rotator-word.is-leaving { opacity: 0; transform: translateY(-10px); }

.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;
}

/* Skip link — hidden until it receives keyboard focus, then jumps above everything */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 999;
  background: var(--ink);
  color: var(--teal);
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--teal);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  .hero-rotator-word { transition: opacity 0.3s ease; transform: none !important; }
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Ribbon — infinite scrolling ticker */
.ribbon {
  background: var(--ink);
  color: var(--teal);
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 2px solid var(--ink);
}
.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonScroll 24s linear infinite;
}
.ribbon-track:hover { animation-play-state: paused; }
.ribbon-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
  padding-right: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ribbon-track .dot { color: var(--teal-deep); font-size: 8px; }

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 90px 0; position: relative; }
.section-head { max-width: 560px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 30px; color: var(--ink); }

/* Reveal-on-scroll — transform is driven entirely by custom properties so
   the slide-up reveal and the tilt-card hover effect can never fight over
   which "transform" declaration wins (see --ry/--rx/--ty below). */
.reveal {
  --reveal-y: 26px;
  --rx: 0deg;
  --ry: 0deg;
  --ty: 0px;
  opacity: 0;
  transform: translateY(var(--reveal-y)) perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty));
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; --reveal-y: 0px; }
.spec-list .reveal:nth-child(1) { transition-delay: 0s; }
.spec-list .reveal:nth-child(2) { transition-delay: .08s; }
.spec-list .reveal:nth-child(3) { transition-delay: .16s; }
.spec-list .reveal:nth-child(4) { transition-delay: .24s; }
.steps-grid .reveal:nth-child(1) { transition-delay: 0s; }
.steps-grid .reveal:nth-child(2) { transition-delay: .1s; }
.steps-grid .reveal:nth-child(3) { transition-delay: .2s; }
.store-list .reveal:nth-child(1) { transition-delay: 0s; }
.store-list .reveal:nth-child(2) { transition-delay: .06s; }
.store-list .reveal:nth-child(3) { transition-delay: .12s; }
.store-list .reveal:nth-child(4) { transition-delay: .18s; }

/* Tilt cards — mouse-follow 3D tilt, --rx/--ry/--ty set via JS (transform itself lives on .reveal above) */
.tilt-card { will-change: transform; }
.tilt-card.tilting { transition: transform 0.08s linear; }
.step-card.tilt-card:hover,
.step-card.tilt-card.tilting { box-shadow: 0 18px 34px rgba(10,10,10,0.14); }

/* Products — spec list, not floating cards */
.spec-list { border-top: 2px solid var(--ink); }
.spec-row {
  display: grid;
  grid-template-columns: 50px 56px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.spec-row.featured { background: var(--ink); color: var(--white); margin: 0 -24px; padding: 26px 24px; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.spec-row.featured h3, .spec-row.featured .spec-num { color: var(--teal); }
.spec-row.featured p { color: #cfd6d4; }
.spec-row.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 22%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(34,224,192,0.16), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0% { left: -30%; }
  55%, 100% { left: 130%; }
}
.spec-num { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--teal-deep); }
.spec-icon {
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), color 0.25s ease, border-color 0.25s ease;
}
.spec-row:hover .spec-icon { transform: scale(1.12) rotate(-6deg); color: var(--teal-deep); }
.spec-row.featured .spec-icon { color: var(--teal); border-color: var(--teal); }
.spec-row.featured:hover .spec-icon { color: var(--teal); }
.spec-icon svg { width: 22px; height: 22px; }
.spec-body { min-width: 0; }
.spec-row h3 { font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.spec-row p { color: var(--text-dim); font-size: 14.5px; max-width: 520px; }
.p-link { display: inline-block; margin-top: 14px; color: var(--teal); font-weight: 700; font-size: 14.5px; }
.p-link:hover { text-decoration: underline; }

/* Discount banner */
.discount-banner {
  background: var(--teal);
  color: var(--ink);
  padding: 60px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.discount-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.discount-text h2 { font-size: 27px; color: var(--ink); max-width: 540px; margin-bottom: 10px; }
.discount-text p { max-width: 460px; color: #08312a; opacity: 0.85; }

/* How to buy */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.step-card { background: var(--bg-white); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 32px 26px; }
.step-num { display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--teal-deep); border: 2px solid var(--ink); padding: 3px 9px; margin-bottom: 18px; }
.step-card h3 { color: var(--ink); font-size: 19px; margin-bottom: 10px; }
.step-card h3 em { font-style: normal; font-size: 12px; color: var(--teal-deep); font-weight: 700; }
.step-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 22px; }

/* Stores — dark section */
.stores { background: var(--ink); color: var(--white); overflow: hidden; }
.stores .section-head h2 { color: var(--white); }
.store-list { border-top: 2px solid #2a2a2a; max-width: 640px; margin: 0 auto; }
.store-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 2px solid #2a2a2a;
  color: var(--white);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.store-row:hover, .store-row:focus-visible { color: var(--teal); padding-left: 12px; }
.store-row svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; min-width: 120px; }
.store-handle { color: #9aa39f; font-size: 14px; flex: 1; }
.store-arrow { font-size: 18px; display: inline-block; transition: transform 0.25s ease; }
.store-row:hover .store-arrow, .store-row:focus-visible .store-arrow { transform: translateX(6px); }
.ship-bar {
  max-width: 640px;
  margin: 34px auto 0;
  border: 2px solid var(--teal);
  color: var(--teal);
  text-align: center;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.ship-bar strong { color: var(--white); }
.ship-icon { display: inline-block; animation: shipBounce 2.4s ease-in-out infinite; }
@keyframes shipBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-6deg); }
}

/* Contact */
.contact-form { max-width: 640px; display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: var(--bg-white);
  border: 2px solid var(--ink);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #6b706d; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal-deep); }
.contact-form button { align-self: flex-start; }
.form-note { color: var(--text-dim); font-size: 13px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--white); padding-top: 60px; position: relative; overflow: hidden; }
.footer-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: #9aa39f; font-size: 14px; margin-top: 14px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-links h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links a { display: block; color: #9aa39f; font-size: 14px; margin-bottom: 10px; padding: 4px 0; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--teal); }
.footer-links a.footer-link-icon { display: flex; align-items: center; gap: 8px; }
.footer-link-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid #2a2a2a; padding: 20px 24px; color: #7d857f; font-size: 13px; text-align: center; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.whatsapp-float a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--teal);
  padding: 14px 16px;
  border: 2px solid var(--ink);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.whatsapp-float a::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--teal);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  opacity: 0;
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float a:hover { background: var(--teal); color: var(--ink); transform: translate(-2px, -2px); }
.whatsapp-float a:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--teal); }
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.wa-label { display: none; position: relative; }

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* Responsive */
@media (min-width: 900px) {
  .header-actions .btn-outline, .header-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .wa-label { display: inline; }
}

@media (max-width: 899px) {
  .header-ig-label { display: none; }
  .header-actions .btn-ghost { padding: 10px; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 16px;
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .discount-inner { text-align: center; justify-content: center; }
  .discount-text { text-align: center; }
  .discount-text p { margin-left: auto; margin-right: auto; }
  .corner { width: 150px; height: 120px; }
  .spec-row { grid-template-columns: 36px 44px 1fr; }
  .hero-mark { width: clamp(120px, 22vh, 220px); margin-bottom: clamp(10px, 2vh, 20px); }
  .hero h1 { font-size: clamp(26px, 4.4vh, 38px); margin-bottom: clamp(10px, 1.6vh, 16px); }
  .hero p { font-size: clamp(13px, 1.8vh, 16px); margin-bottom: clamp(12px, 2.2vh, 24px); }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .store-row { flex-wrap: wrap; }
  .store-name { min-width: 0; }
  .corner { display: none; }
}
