/* ==========================================================
   Panela Company — Hub de Marcas
   ========================================================== */

@font-face {
  font-family: "Provicali";
  src: url("fonts/Provicali.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa Heavy";
  src: url("fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette default — japonesa quente */
  --ink: #0E0E0E;
  --ink-2: #1A1614;
  --paper: #F6F1E7;
  --paper-2: #EFE7D6;
  --line: #2A2522;
  --line-soft: #E2D9C5;
  --red: #8B1A1A;
  --red-deep: #6B0F0F;
  --gold: #C9A24A;
  --gold-soft: #E2C275;
  --wasabi: #6B7B3A;
  --wood: #3D2A1A;
  --whatsapp: #25D366;
  --whatsapp-deep: #128C7E;

  --font-display: "Provicali", "Shippori Mincho", "Cormorant Garamond", serif;
  --font-body: "Nexa Heavy", "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-card: 18px;
  --radius-btn: 999px;
  --radius-small: 10px;

  --shadow-sm: 0 1px 2px rgba(20,16,12,0.06), 0 1px 1px rgba(20,16,12,0.04);
  --shadow-md: 0 14px 30px -16px rgba(20,16,12,0.18), 0 4px 10px -6px rgba(20,16,12,0.10);
  --shadow-lg: 0 30px 60px -30px rgba(20,16,12,0.35), 0 12px 24px -12px rgba(20,16,12,0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================
   Typography
   ========================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow.muted { color: rgba(14,14,14,0.55); }
.eyebrow.on-dark { color: var(--gold-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}

.display-xl { font-size: clamp(48px, 7vw, 96px); }
.display-l  { font-size: clamp(36px, 5vw, 64px); }
.display-m  { font-size: clamp(28px, 3.4vw, 44px); }
.display-s  { font-size: clamp(22px, 2.4vw, 32px); }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(14,14,14,0.68);
  max-width: 60ch;
  text-wrap: pretty;
}

/* ==========================================================
   Topbar
   ========================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246,241,231,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  transition: transform .25s ease;
  margin: -28px 0;
}
.brand-mark:hover .brand-logo { transform: scale(1.03); }

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(1.05);
}
.brand-mark .glyph {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.brand-mark .glyph::after {
  content: "";
  position: absolute;
  inset: -3px -10px -3px -3px;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 12px 12px 0;
  transform: translateX(8px) scaleX(0.5);
  opacity: 0;
  transition: all .3s ease;
}
.brand-mark:hover .glyph::after {
  transform: translateX(0) scaleX(1);
  opacity: 1;
}
.brand-mark .name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand-mark .name b { font-weight: 500; font-size: 17px; }
.brand-mark .name small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.55);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  border-radius: 999px;
  color: rgba(14,14,14,0.7);
  transition: background .2s, color .2s;
}
.topbar-nav a:hover { background: rgba(14,14,14,0.05); color: var(--ink); }
.topbar-nav .cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 16px;
  font-weight: 500;
  margin-left: 6px;
}
.topbar-nav .cta:hover { background: var(--red); color: var(--paper); }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 64px;
  align-items: end;
}
.hero-text h1 .accent {
  font-style: italic;
  color: var(--red);
  font-family: var(--font-display);
}
.hero-text h1 .underline {
  position: relative;
  display: inline-block;
}
.hero-text h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.12em;
  background: var(--gold);
  opacity: 0.5;
  z-index: -1;
}
.hero-text .lede { margin-top: 20px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta .stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
.hero-meta .stat .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.55);
  margin-top: 6px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.hero-tile {
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.hero-tile.tall { grid-row: span 2; aspect-ratio: 3/5.5; }
.hero-tile .label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  padding: 5px 9px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* Stripe placeholders used inside hero tiles and brand backdrops */
.stripe-fill {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0 14px,
      rgba(255,255,255,0.0) 14px 28px
    ),
    var(--bg, #2a1a14);
}

/* ==========================================================
   Vertical video gallery (hero sidebar)
   ========================================================== */
.vgallery {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #0E0E10 0%, #16110D 100%);
  border: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.vgallery::before,
.vgallery::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}
.vgallery::before {
  top: 0;
  background: linear-gradient(180deg, #0E0E10 0%, rgba(14,14,16,0) 100%);
}
.vgallery::after {
  bottom: 0;
  background: linear-gradient(0deg, #0E0E10 0%, rgba(14,14,16,0) 100%);
}
.vgallery-frame {
  height: 100%;
  overflow: hidden;
  padding: 0 18px;
}
.vgallery-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0;
  animation: vgallery-scroll 42s linear infinite;
  will-change: transform;
}
.vgallery:hover .vgallery-track {
  animation-play-state: paused;
}
.vgallery:hover .vgallery-card {
  opacity: 0.5;
  transition: opacity .35s, transform .35s, box-shadow .35s;
}
.vgallery:hover .vgallery-card:hover {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,74,0.25);
  z-index: 2;
}
.vgallery-card {
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1A1410;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.55);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .35s, box-shadow .35s;
}
.vgallery-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.vgallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(201,162,74,0.10) 0%, transparent 70%),
    radial-gradient(120% 60% at 50% 100%, rgba(139,26,26,0.20) 0%, transparent 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #2A1F15 0%, #16100C 100%);
  color: rgba(246,241,231,0.5);
  z-index: 0;
}
.vgallery-card:nth-child(2n) .vgallery-placeholder {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(139,26,26,0.18) 0%, transparent 70%),
    radial-gradient(120% 60% at 50% 100%, rgba(201,162,74,0.12) 0%, transparent 70%),
    repeating-linear-gradient(-135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #1A1410 0%, #2A0F08 100%);
}
.vgallery-card:nth-child(3n) .vgallery-placeholder {
  background:
    radial-gradient(120% 60% at 50% 50%, rgba(107,123,58,0.18) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #1A2014 0%, #0F1410 100%);
}
.vgallery-placeholder .num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: rgba(246,241,231,0.7);
  letter-spacing: -0.02em;
}
.vgallery-placeholder .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
  margin-top: 4px;
}
.vgallery-placeholder small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  padding: 4px 9px;
  border-radius: 4px;
  margin-top: 8px;
}
.vgallery-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
}
.vgallery-hint code {
  font-family: var(--font-mono);
  color: var(--gold);
  background: rgba(201,162,74,0.10);
  padding: 1px 4px;
  border-radius: 3px;
  margin: 0 1px;
}

/* cascading entrance — first 6 only (visible on load) */
.vgallery-card { animation: vgallery-enter .9s cubic-bezier(.2,.7,.2,1) both; }
.vgallery-card:nth-child(1) { animation-delay: 0.08s; }
.vgallery-card:nth-child(2) { animation-delay: 0.18s; }
.vgallery-card:nth-child(3) { animation-delay: 0.28s; }
.vgallery-card:nth-child(4) { animation-delay: 0.38s; }
.vgallery-card:nth-child(5) { animation-delay: 0.48s; }
.vgallery-card:nth-child(6) { animation-delay: 0.58s; }
.vgallery-card:nth-child(7) { animation-delay: 0.68s; }
.vgallery-card:nth-child(8) { animation-delay: 0.78s; }

@keyframes vgallery-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes vgallery-enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .vgallery-track { animation: none; }
  .vgallery-card { animation: none; }
}

/* ==========================================================
   Coupon ribbon
   ========================================================== */
.coupon {
  margin: 24px auto 80px;
  max-width: 1240px;
  padding: 0 28px;
}
.coupon-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: 26px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.coupon-card::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at center, var(--red) 0%, transparent 65%);
  opacity: 0.45;
  pointer-events: none;
}
.coupon-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.coupon-text {
  position: relative;
  z-index: 1;
}
.coupon-text .eyebrow { color: var(--gold-soft); }
.coupon-text .title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  margin: 4px 0 4px;
  font-weight: 500;
}
.coupon-text .sub {
  font-size: 14px;
  color: rgba(246,241,231,0.7);
}
.coupon-action {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
.coupon-code {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.24em;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
}
.coupon-copy {
  background: var(--red);
  color: var(--paper);
  border: 0;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.coupon-copy:hover { background: var(--red-deep); }
.coupon-copy.copied { background: var(--wasabi); }

/* ==========================================================
   Section header
   ========================================================== */
.section { padding: 80px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
.section-head .lede { margin-top: 18px; }
.section-head .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.5);
  text-align: right;
  line-height: 1.7;
}
.section-head .meta b { color: var(--ink); font-weight: 500; }

/* ==========================================================
   Brand cards
   ========================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-grid .card-wide { grid-column: span 1; }

.brand-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  isolation: isolate;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.brand-card .visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.brand-card .visual .bg {
  position: absolute;
  inset: 0;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.brand-card:hover .visual .bg { transform: scale(1.06); }

/* Real food photo fills the visual area */
.brand-card .visual .food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.brand-card:hover .visual .food-img { transform: scale(1.06); }

.brand-card .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.brand-card .visual .placeholder-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(0,0,0,0.45);
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.brand-card .visual .logo-stamp {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
}

.brand-card .body {
  padding: 22px 22px 22px;
  background: var(--paper);
  color: var(--ink);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-card .name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

/* Real brand logo badge inside the card body */
.brand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.brand-logo-badge {
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 14px -6px rgba(20,16,12,0.3), 0 0 0 1px rgba(20,16,12,0.06);
  flex: 0 0 auto;
}
.brand-logo-badge img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-head .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(14,14,14,0.32);
  font-weight: 500;
  flex: 0 0 auto;
}
.brand-card .name .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(14,14,14,0.4);
  font-weight: 400;
  flex: 0 0 auto;
}
.brand-card .cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-card .pitch {
  font-size: 14.5px;
  color: rgba(14,14,14,0.7);
  text-wrap: pretty;
  flex: 1;
}

.brand-card .actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 4px;
}
.brand-card .actions .btn-primary {
  grid-column: span 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--red); border-color: var(--red); }

.btn-primary.whatsapp { background: var(--whatsapp-deep); border-color: var(--whatsapp-deep); }
.btn-primary.whatsapp:hover { background: #0e6e62; border-color: #0e6e62; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(14,14,14,0.18);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-icon {
  width: 16px; height: 16px;
  flex: 0 0 auto;
}

/* WhatsApp brand mark — green logo on a white circular badge for contrast */
.wa-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.wa-mark img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}
.mobile-cta-bar .wa .wa-mark { width: 24px; height: 24px; }
.mobile-cta-bar .wa .wa-mark img { width: 17px; height: 17px; }

/* Brand logo stamps (text-as-mark placeholders) */
.logo-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-transform: uppercase;
  font-family: var(--font-body);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ==========================================================
   Quem somos
   ========================================================== */
.about {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(201,162,74,0.10), transparent 70%),
    radial-gradient(600px 500px at 10% 90%, rgba(139,26,26,0.15), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.about-portrait .label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.about-text h2 { color: var(--paper); }
.about-text p {
  color: rgba(246,241,231,0.78);
  font-size: 16px;
  margin: 18px 0 0;
  text-wrap: pretty;
  max-width: 56ch;
}
.about-text p strong { color: var(--paper); font-weight: 600; }
.about-text .accent { color: var(--gold-soft); font-weight: 500; }

.about-stats {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about-stats .stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--paper);
}
.about-stats .stat .num .plus { color: var(--gold-soft); }
.about-stats .stat .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.5);
  margin-top: 8px;
}

/* ==========================================================
   Owner contact strip
   ========================================================== */
.owner {
  padding: 72px 0;
  text-align: center;
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.owner .lede {
  margin: 12px auto 28px;
  color: rgba(14,14,14,0.65);
}
.owner .btn { padding: 16px 28px; min-height: 52px; font-size: 14.5px; }
.owner .signature {
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(14,14,14,0.55);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.faq-item:hover { border-color: rgba(14,14,14,0.25); box-shadow: var(--shadow-sm); }
.faq-item .q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}
.faq-item .toggle {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(14,14,14,0.2);
  display: grid;
  place-items: center;
  transition: transform .25s, background .2s;
  flex: 0 0 auto;
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--ink); color: var(--paper); }
.faq-item .a {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(14,14,14,0.72);
  text-wrap: pretty;
  display: none;
}
.faq-item.open .a { display: block; }

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(246,241,231,0.72);
  transition: color .2s;
}
.footer ul a:hover { color: var(--paper); }
.footer .brand-block .display {
  font-size: 28px;
  margin-bottom: 14px;
}
.footer .brand-block p {
  font-size: 14px;
  color: rgba(246,241,231,0.6);
  max-width: 36ch;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: rgba(246,241,231,0.8);
  transition: background .2s, color .2s;
}
.social-row a:hover { background: var(--paper); color: var(--ink); }
.social-row svg { width: 16px; height: 16px; }

/* ==========================================================
   Brand-specific palettes
   ========================================================== */
/* Each brand-card carries a class like .b-ela / .b-baita etc. The
   .visual .bg is composed of CSS gradients + repeating stripes to read
   as a textured 'food shot' placeholder. */

.b-ela .bg {
  background:
    radial-gradient(circle at 30% 30%, #FFE34A 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, #FF3A8C 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.12) 0 2px, transparent 2px 16px),
    #1B1815;
}
.b-ela .cat { color: #E63A8C; }

.b-baita .bg {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,140,30,0.55) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255,80,30,0.5) 0%, transparent 55%),
    repeating-linear-gradient(80deg, rgba(0,0,0,0.18) 0 3px, transparent 3px 18px),
    linear-gradient(180deg, #2A0F08 0%, #4A1B0C 100%);
}
.b-baita .cat { color: #E2691E; }

.b-riso .bg {
  background:
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(0,0,0,0.06) 22px 24px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(0,0,0,0.06) 22px 24px),
    radial-gradient(ellipse at 50% 50%, #E8C490 0%, #B5704A 70%),
    #7A3A22;
}
.b-riso .cat { color: #8B1A1A; }

.b-maki .bg {
  background:
    radial-gradient(circle at 30% 70%, #2BB573 0%, transparent 45%),
    radial-gradient(circle at 75% 35%, #FF8A3C 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.10) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #0F2A24 0%, #1A1410 100%);
}
.b-maki .cat { color: #FF8A3C; }

.b-kare .bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,162,74,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(139,26,26,0.5) 0%, transparent 60%),
    repeating-linear-gradient(20deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #0E0E0E 0%, #1A0E0E 100%);
}
.b-kare .cat { color: var(--gold); }

/* Each brand logo stamp */
.logo-ela {
  background: #FFE34A;
  color: #E63A8C;
  font-family: "Anton", "Inter Tight", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  transform: skewX(-8deg);
  padding: 10px 16px;
}
.logo-baita {
  background: #2A0F08;
  color: #E2691E;
  border: 1.5px solid #E2691E;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}
.logo-riso {
  background: #FFFBEC;
  color: #8B1A1A;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: none;
  font-size: 18px;
  padding: 8px 14px;
}
.logo-maki {
  background: #FF8A3C;
  color: #0F2A24;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 14px;
}
.logo-maki .dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 999px;
  background: #2BB573;
  margin: 0 4px;
  vertical-align: middle;
}
.logo-kare {
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold);
  letter-spacing: 0.24em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
}

/* "Featured" big card for Kare */
.brand-card.featured {
  grid-column: span 2;
  min-height: 520px;
}
.brand-card.featured .visual { aspect-ratio: 16/9; }
.brand-card.featured .body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.brand-card.featured .name { font-size: 38px; }
.brand-card.featured .brand-logo-badge { height: 92px; }
.brand-card.featured .actions {
  grid-template-columns: 1fr 1fr 1fr;
  min-width: 420px;
}
.brand-card.featured .actions .btn-primary { grid-column: span 1; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card.featured { grid-column: span 2; }
  .brand-card.featured .body { grid-template-columns: 1fr; }
  .brand-card.featured .actions { min-width: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-side { max-width: none; justify-content: center; }
  .vgallery { max-width: 100%; height: clamp(520px, 70vh, 680px); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ==========================================================
   Quick-pick chips (mobile shortcut to brands)
   ========================================================== */
.quickpick {
  display: none;
}
.quickpick-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 20px 18px;
  margin: 0 -20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.quickpick-strip::-webkit-scrollbar { display: none; }
.qp-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 14px 9px 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, border-color .2s;
}
.qp-chip:active { transform: scale(0.97); }
.qp-chip .swatch {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex: 0 0 auto;
}
.qp-chip[data-brand="ela"]   .swatch { background: #E63A8C; }
.qp-chip[data-brand="baita"] .swatch { background: #E2691E; }
.qp-chip[data-brand="riso"]  .swatch { background: #8B1A1A; }
.qp-chip[data-brand="maki"]  .swatch { background: #FF8A3C; color: #0F2A24; }
.qp-chip[data-brand="kare"]  .swatch { background: var(--ink); color: var(--gold); border: 1px solid var(--gold); }
.qp-chip .arrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(14,14,14,0.45);
}

/* ==========================================================
   Sticky bottom CTA bar (mobile only)
   ========================================================== */
.mobile-cta-bar {
  display: none;
}

/* ==========================================================
   Responsive — Tablet
   ========================================================== */
@media (max-width: 720px) {
  /* Layout primitives */
  .container, .container-narrow { padding: 0 20px; }

  /* Topbar — compact */
  .topbar-inner { padding: 11px 20px; }
  .topbar-nav a:not(.cta) { display: none; }
  .topbar-nav .cta { padding: 8px 14px; font-size: 12.5px; }
  .brand-logo { height: 80px; margin: -22px 0; }
  .footer-logo { height: 52px; }

  /* Hero */
  .hero { padding: 32px 0 28px; }
  .hero-inner { gap: 28px; }
  .hero-text .eyebrow { font-size: 10.5px; margin-bottom: 14px !important; }
  .hero-text h1.display-xl {
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: 1.02;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-text .lede {
    font-size: 15px;
    margin-top: 16px;
    color: rgba(14,14,14,0.7);
  }
  .hero-meta {
    gap: 14px;
    margin-top: 22px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-meta .stat .num {
    font-size: 22px;
    letter-spacing: -0.02em;
  }
  .hero-meta .stat .lbl {
    font-size: 8.5px;
    letter-spacing: 0.12em;
    margin-top: 4px;
  }
  /* Hero side becomes horizontal scroll strip of vertical 9:16 cards */
  .hero-side {
    display: block;
    margin: 0 -20px;
    padding: 0;
    max-width: none;
    justify-content: flex-start;
  }
  .vgallery {
    max-width: none;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .vgallery::before, .vgallery::after { display: none; }
  .vgallery-frame {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vgallery-frame::-webkit-scrollbar { display: none; }
  .vgallery-track {
    flex-direction: row;
    animation: none;
    gap: 12px;
    padding: 0;
  }
  .vgallery-card {
    width: 56vw;
    max-width: 280px;
    min-width: 200px;
    scroll-snap-align: start;
    animation: none;
    opacity: 1;
  }
  .vgallery:hover .vgallery-card { opacity: 1; }
  .vgallery-hint {
    position: static;
    transform: none;
    margin: 8px 20px 0;
    width: max-content;
    max-width: calc(100% - 40px);
    white-space: normal;
  }
  .vgallery-placeholder .num { font-size: 30px; }

  /* Coupon — single column, stacked but tasty */
  .coupon {
    margin: 8px auto 36px;
    padding: 0 20px;
  }
  .coupon-card {
    grid-template-columns: auto 1fr;
    text-align: left;
    padding: 18px 18px 20px;
    gap: 14px;
    row-gap: 16px;
  }
  .coupon-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    font-size: 22px;
  }
  .coupon-text .eyebrow { font-size: 9.5px; letter-spacing: 0.15em; }
  .coupon-text .title { font-size: 17px; line-height: 1.18; margin: 4px 0 2px; }
  .coupon-text .sub { font-size: 12.5px; line-height: 1.4; }
  .coupon-action {
    grid-column: 1 / -1;
    width: 100%;
  }
  .coupon-code {
    flex: 1;
    text-align: center;
    font-size: 17px;
    padding: 14px 18px;
    letter-spacing: 0.3em;
  }
  .coupon-copy {
    padding: 14px 16px;
    font-size: 12.5px;
  }
  .coupon-card::before { right: -60px; top: -60px; width: 180px; height: 180px; }

  /* Quick-pick chips visible */
  .quickpick { display: block; background: var(--paper); border-bottom: 1px solid var(--line-soft); }
  .quickpick .container { padding: 0 20px; }

  /* Sections */
  .section { padding: 44px 0; }
  .section-head { grid-template-columns: 1fr; margin-bottom: 28px; gap: 18px; }
  .section-head .meta { text-align: left; display: flex; gap: 16px; flex-wrap: wrap; }
  .section-head .meta div { line-height: 1; }
  .section-head h2.display-l { font-size: clamp(32px, 8.5vw, 42px); line-height: 1.05; }
  .section-head .lede { font-size: 14.5px; margin-top: 14px; }
  .section-head .eyebrow { font-size: 10.5px; }

  /* Brand grid — single column, dramatic cards */
  .brand-grid { grid-template-columns: 1fr; gap: 20px; }
  .brand-card {
    min-height: 0;
    border-radius: 16px;
  }
  .brand-card .visual {
    aspect-ratio: 4/3;
  }
  .brand-card .visual .placeholder-tag {
    font-size: 9px;
    padding: 4px 8px;
    top: 12px; right: 12px;
  }
  .brand-card .visual .logo-stamp-wrap,
  .brand-card .visual > div[style*="bottom:18px"] {
    bottom: 14px !important;
    left: 14px !important;
  }
  .logo-stamp {
    font-size: 13px;
    padding: 9px 12px;
    border-radius: 7px;
  }
  .logo-ela { padding: 9px 14px; font-size: 15px; }
  .logo-riso { font-size: 17px; padding: 6px 12px; }
  .logo-kare { font-size: 12px; letter-spacing: 0.22em; }

  .brand-card .body {
    padding: 18px 18px 18px;
    gap: 14px;
  }
  .brand-logo-badge { height: 60px; border-radius: 10px; }
  .brand-card.featured .brand-logo-badge { height: 68px; }
  .brand-head { margin-bottom: 12px; }
  .brand-card .cat { font-size: 9.5px; letter-spacing: 0.16em; }
  .brand-card .name {
    font-size: 24px;
    gap: 8px;
    line-height: 1.05;
  }
  .brand-card .name .num { font-size: 10px; letter-spacing: 0.16em; }
  .brand-card .pitch { font-size: 13.5px; line-height: 1.5; }
  .brand-card .actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .brand-card .actions .btn-primary { grid-column: span 2; }
  .btn { padding: 13px 14px; font-size: 13px; min-height: 46px; }
  .brand-card .actions .btn-primary.whatsapp { min-height: 50px; font-weight: 600; }

  /* Featured card collapses to normal */
  .brand-card.featured { grid-column: span 1; min-height: 0; }
  .brand-card.featured .visual { aspect-ratio: 4/3; }
  .brand-card.featured .body {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .brand-card.featured .name { font-size: 28px; }
  .brand-card.featured .actions {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }
  .brand-card.featured .actions .btn-primary { grid-column: span 2; }

  /* About — tighter dark section */
  .about { padding: 56px 0; }
  .about-grid { gap: 28px; }
  .about-portrait { max-width: 100%; aspect-ratio: 4/4; }
  .about-text h2.display-l { font-size: clamp(28px, 7.5vw, 40px); }
  .about-text p { font-size: 14.5px; line-height: 1.55; margin: 14px 0 0; }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .about-stats .stat .num { font-size: 32px; }
  .about-stats .stat .lbl { font-size: 9.5px; }

  /* Owner strip */
  .owner { padding: 52px 0; }
  .owner h2.display-m { font-size: clamp(24px, 6.8vw, 30px); }
  .owner .lede { font-size: 14.5px; }
  .owner .btn { padding: 15px 24px; min-height: 52px; font-size: 14px; width: 100%; max-width: 340px; }
  .owner .signature { font-size: 16px; margin-top: 22px; }

  /* FAQ */
  .faq-item { padding: 16px 18px; border-radius: 12px; }
  .faq-item .q { font-size: 15.5px; line-height: 1.25; }
  .faq-item .a { font-size: 13.5px; }
  .faq-item .toggle { width: 24px; height: 24px; }

  /* Footer */
  .footer { padding: 48px 0 96px; /* extra bottom for sticky bar */ }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer .brand-block .display { font-size: 24px; }
  .footer h4 { margin-bottom: 14px; }
  .footer ul { gap: 8px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
  }

  /* Sticky bottom CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 8px;
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .mobile-cta-bar.is-visible {
    transform: translateY(0);
  }
  .mobile-cta-bar .pick {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--paper);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    text-decoration: none;
    min-height: 48px;
  }
  .mobile-cta-bar .pick .dots {
    display: inline-flex;
    margin-right: 2px;
  }
  .mobile-cta-bar .pick .dots i {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--gold);
    margin-left: -3px;
    border: 1.5px solid #0E0E0E;
  }
  .mobile-cta-bar .pick .dots i:nth-child(2) { background: #E63A8C; }
  .mobile-cta-bar .pick .dots i:nth-child(3) { background: #FF8A3C; }
  .mobile-cta-bar .pick small {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(246,241,231,0.55);
    display: block;
    line-height: 1;
    margin-bottom: 3px;
  }
  .mobile-cta-bar .pick b {
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
  }
  .mobile-cta-bar .pick .col { display: flex; flex-direction: column; line-height: 1; }
  .mobile-cta-bar .wa {
    flex: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #0a3a2c;
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    min-height: 48px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  }
  .mobile-cta-bar .wa svg { width: 18px; height: 18px; }

  /* Brand picker sheet */
  .brand-sheet {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
  }
  .brand-sheet.is-open { display: flex; animation: fadeIn .25s ease; }
  .brand-sheet-inner {
    background: var(--paper);
    width: 100%;
    max-width: 520px;
    border-radius: 22px 22px 0 0;
    padding: 14px 18px calc(22px + env(safe-area-inset-bottom));
    animation: slideUp .3s cubic-bezier(.2,.7,.2,1);
  }
  .brand-sheet .grip {
    width: 44px; height: 4px; border-radius: 999px;
    background: rgba(14,14,14,0.18);
    margin: 0 auto 14px;
  }
  .brand-sheet h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 4px;
    font-weight: 500;
  }
  .brand-sheet p {
    font-size: 13px;
    color: rgba(14,14,14,0.6);
    margin: 0 0 16px;
  }
  .brand-sheet-list { display: grid; gap: 8px; }
  .brand-sheet-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    background: var(--paper-2);
    text-decoration: none;
    color: var(--ink);
    border: 1px solid transparent;
    min-height: 56px;
  }
  .brand-sheet-list a:active { background: rgba(14,14,14,0.08); }
  .brand-sheet-list .dot {
    width: 32px; height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex: 0 0 auto;
  }
  .brand-sheet-list .meta {
    display: flex; flex-direction: column;
    gap: 2px;
    line-height: 1.1;
  }
  .brand-sheet-list .meta b { font-weight: 500; font-size: 14.5px; }
  .brand-sheet-list .meta small {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(14,14,14,0.5);
  }
  .brand-sheet-list .chev {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(14,14,14,0.4);
  }
  .brand-sheet-list a[data-brand="ela"]   .dot { background: #E63A8C; }
  .brand-sheet-list a[data-brand="baita"] .dot { background: #E2691E; }
  .brand-sheet-list a[data-brand="riso"]  .dot { background: #8B1A1A; }
  .brand-sheet-list a[data-brand="maki"]  .dot { background: #FF8A3C; color: #0F2A24; }
  .brand-sheet-list a[data-brand="kare"]  .dot { background: var(--ink); color: var(--gold); border: 1px solid var(--gold); }

  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-text h1.display-xl { font-size: 33px; }
  .hero-meta .stat .num { font-size: 19px; }
  .hero-meta .stat .lbl { font-size: 8px; letter-spacing: 0.1em; }
  .coupon-text .title { font-size: 15.5px; }
  .brand-card .name { font-size: 22px; }
  .section-head h2.display-l { font-size: 30px; }
}
