/* ============================================================
   STUFFED LUST SOPAPILLA CO. - design system
   Palette sampled from their real logo + truck:
   fire red / gold / lemon / teal / chile green / masa cream
   Type: Rye (truck wood-type) · Rubik (body) · Special Elite (labels)
   ============================================================ */

@font-face { font-family: 'Rye'; src: url('/assets/fonts/rye-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('/assets/fonts/rubik-var.woff2') format('woff2'); font-weight: 300 900; font-display: swap; }
@font-face { font-family: 'Special Elite'; src: url('/assets/fonts/specialelite-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }

:root {
  --red: #B5222C;
  --red-deep: #8E1B24;
  --red-hot: #D22B2B;
  --gold: #F3C246;
  --gold-deep: #D9A429;
  --lemon: #EFE84C;
  --teal: #2FA893;
  --teal-deep: #1E6E60;
  --turq: #49B3C8;
  --green: #3E8F2D;
  --green-deep: #2E6B22;
  --masa: #FBF4E2;
  --masa-deep: #F3E8CD;
  --card: #FFFDF6;
  --ink: #26150F;
  --ink-2: #3A2418;
  --ink-soft: #6B5344;
  --shadow: 0 10px 30px rgba(38, 21, 15, .18);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--masa);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: 8px; z-index: 300; }
.skip-link:focus { left: 8px; }

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- type helpers ---------- */
.type-label { font-family: 'Special Elite', 'Courier New', monospace; letter-spacing: .06em; }
.type-hand { font-family: 'Special Elite', 'Courier New', monospace; }
h1, .giant { font-family: 'Rye', 'Georgia', serif; font-weight: 400; line-height: .96; letter-spacing: .01em; }
h2, h3, h4 { line-height: 1.15; }

.kicker { color: var(--red); text-transform: lowercase; font-size: 1.05rem; margin-bottom: .5rem; }
.kicker-light { color: var(--gold); }
.giant { font-size: clamp(2.1rem, 6.5vw, 4.2rem); margin-bottom: .8rem; color: var(--ink); }
.section-sub { max-width: 640px; font-size: 1.06rem; color: var(--ink-soft); margin-bottom: 2rem; }
.section-sub-light { color: #FBE9D8; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; text-decoration: none; text-align: center;
  padding: .85rem 1.5rem; border-radius: 999px; border: 3px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; font-size: 1rem; font-family: 'Rubik', sans-serif;
}
.btn:hover { transform: translateY(-2px) rotate(-.5deg); box-shadow: 0 8px 18px rgba(38,21,15,.25); }
.btn:active { transform: translateY(0); }
.btn-big { padding: 1.05rem 2rem; font-size: 1.12rem; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--lemon); color: var(--ink); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hot); color: #fff; }
.btn-outline { background: rgba(0,0,0,.25); color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--red-deep); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--gold); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 16px;
  background: rgba(251, 244, 226, .92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
}
.nav-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.nav-brand img { width: 46px; height: 46px; }
.nav-name b { display: block; font-family: 'Rye', serif; font-weight: 400; font-size: 1.05rem; line-height: 1; color: var(--red); }
.nav-name small { font-family: 'Special Elite', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: none; gap: 1.1rem; margin-left: auto; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; }
.nav-links a:hover { color: var(--red); }
.nav-call { margin-left: auto; padding: .55rem 1rem; font-size: .9rem; white-space: nowrap; }
@media (max-width: 560px) { .nav-call-num { display: none; } .nav-call { padding: .55rem 1.15rem; } }
@media (min-width: 880px) {
  .nav { padding: .55rem 28px; }
  .nav-links { display: flex; }
  .nav-call { margin-left: 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; isolation: isolate; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(10deg, rgba(38,21,15,.93) 0%, rgba(142,27,36,.62) 45%, rgba(38,21,15,.18) 75%),
    radial-gradient(120% 70% at 85% 20%, transparent 40%, rgba(38,21,15,.35) 100%);
}
.hero-inner { position: relative; width: 100%; max-width: 1140px; margin: 0 auto; padding: 7rem 20px 4.5rem; color: #fff; }
.hero-badge {
  width: clamp(96px, 16vw, 150px); height: auto; margin-bottom: 1rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.4));
  animation: slap .7s cubic-bezier(.2, 1.6, .4, 1) both .15s;
  transform: rotate(-6deg);
}
@keyframes slap {
  0% { transform: scale(1.7) rotate(-18deg); opacity: 0; }
  100% { transform: scale(1) rotate(-6deg); opacity: 1; }
}
.eyebrow { color: var(--gold); font-size: .95rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .8rem; }
@media (max-width: 480px) { .eyebrow { font-size: .78rem; letter-spacing: .1em; } }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .h1-display {
  display: block;
  font-size: clamp(3.6rem, 14.5vw, 8.6rem);
  color: #fff;
  text-shadow: 0 4px 0 rgba(142,27,36,.85), 0 10px 32px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}
/* keyword-bearing subline: lives inside the h1 for SEO, reads as body copy */
.hero-sub {
  display: block;
  font-family: 'Rubik', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  max-width: 560px;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  margin-bottom: 1.6rem;
  text-wrap: pretty;
}
.hero-sub b { font-weight: 700; }
.red-word { color: #FF6B5E; }
.green-word { color: #8FE06B; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.2rem; }
.hero-flirt { color: var(--gold); font-size: 1.05rem; opacity: .95; }

/* steam wisps */
.steam { position: absolute; right: 8%; top: 18%; z-index: 0; pointer-events: none; }
.steam span {
  position: absolute; width: 14px; height: 90px; border-radius: 50%;
  background: linear-gradient(to top, transparent, rgba(255,255,255,.55), transparent);
  filter: blur(6px); opacity: 0;
  animation: rise 7s ease-in-out infinite;
}
.steam span:nth-child(2) { left: 26px; height: 70px; animation-delay: 2.3s; }
.steam span:nth-child(3) { left: -22px; height: 80px; animation-delay: 4.1s; }
@keyframes rise {
  0% { transform: translateY(30px) scaleX(1); opacity: 0; }
  35% { opacity: .8; }
  100% { transform: translateY(-110px) scaleX(1.7) translateX(8px); opacity: 0; }
}

/* ---------- truck / gig schedule ---------- */
.truck { padding: 4.5rem 0 4rem; background: var(--masa); }
.gigs { display: grid; gap: 1rem; margin-bottom: 2.4rem; }
@media (min-width: 820px) { .gigs { grid-template-columns: repeat(3, 1fr); } }

.gig {
  background: var(--ink); color: var(--masa);
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.2rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .35rem;
}
.gig::before {
  content: ''; position: absolute; inset: 6px; border: 1px dashed rgba(243,194,70,.5); border-radius: 9px; pointer-events: none;
}
.gig-day {
  font-family: 'Rye', serif; font-size: 2rem; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline; gap: .6rem;
}
.gig-date { font-family: 'Special Elite', monospace; font-size: .95rem; color: var(--masa); opacity: .85; }
.gig-venue { font-weight: 800; font-size: 1.2rem; margin-top: .3rem; }
.gig-addr { font-size: .92rem; opacity: .8; }
.gig-time { font-family: 'Special Elite', monospace; color: var(--lemon); font-size: 1.05rem; margin: .2rem 0 .7rem; }
.gig-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.gig-actions a {
  font-size: .85rem; font-weight: 700; text-decoration: none;
  padding: .5rem .9rem; border-radius: 999px;
}
.gig-actions .g-dir { background: var(--gold); color: var(--ink); }
.gig-actions .g-dir:hover { background: var(--lemon); }
.gig-actions .g-cal { border: 2px solid var(--masa); color: var(--masa); }
.gig-actions .g-cal:hover { background: var(--masa); color: var(--ink); }
.gig-tonight {
  position: absolute; top: -14px; right: 14px;
  background: var(--red); color: #fff;
  font-family: 'Special Elite', monospace; font-size: .8rem;
  padding: .25rem .7rem; border-radius: 999px; transform: rotate(3deg);
  border: 2px solid var(--masa);
}

.truck-extra { display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 820px) { .truck-extra { grid-template-columns: 1.3fr 1fr; } }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 3px solid var(--ink); min-height: 300px; }
.map-card iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.truck-pitch { background: var(--masa-deep); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; justify-content: center; }
.truck-pitch h3 { font-size: 1.5rem; }
.truck-pitch em { color: var(--red); font-style: normal; text-decoration: underline wavy var(--gold) 2px; text-underline-offset: 4px; }

/* ---------- menu ---------- */
.menu { padding: 4.5rem 0; background: linear-gradient(var(--masa), #FFF8E9 30%, var(--masa)); }
.legend { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
.chip {
  font-family: 'Special Elite', monospace; font-size: .82rem;
  padding: .35rem .8rem; border-radius: 999px; border: 2px solid var(--ink);
  background: var(--card);
}
.chip-red { background: var(--red); color: #fff; border-color: var(--red-deep); }
.chip-green { background: var(--green); color: #fff; border-color: var(--green-deep); }
.chip-xmas { background: var(--card); }
.chip-gf { background: var(--gold); border-color: var(--gold-deep); }
.chip-v { background: #DFF2D0; border-color: var(--green); }

.menu-cat { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin: 2.2rem 0 1rem; }
.menu-note { font-size: .85rem; color: var(--ink-soft); letter-spacing: .02em; text-transform: none; }

/* flex, not grid, so a partial last row (e.g. 3+3+2) centers itself */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.3rem; }
.cards > .card { width: 100%; }
@media (min-width: 640px) { .cards > .card { width: calc(50% - .65rem); } }
@media (min-width: 980px) { .cards > .card { width: calc(33.333% - .87rem); } }

.card {
  background: var(--card); border-radius: 10px;
  box-shadow: 0 6px 20px rgba(38,21,15,.12);
  position: relative;
  transform: rotate(-.5deg);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(38,21,15,.08);
  display: flex; flex-direction: column;
}
.card:nth-child(even) { transform: rotate(.55deg); }
.card:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 14px 30px rgba(38,21,15,.2); }
.card::before {
  /* tape strip */
  content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 90px; height: 22px; background: rgba(243, 194, 70, .75);
  box-shadow: 0 1px 3px rgba(38,21,15,.2); z-index: 2;
}
.card figure { margin: 10px 10px 0; overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 3; }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover figure img { transform: scale(1.04); }
.card-body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card-body header { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
.card-body h4 { font-size: 1.18rem; font-weight: 800; }
.card-body p { font-size: .95rem; color: var(--ink-soft); }
.price { font-family: 'Special Elite', monospace; font-size: 1.25rem; color: var(--red); white-space: nowrap; }
.price::before { content: '$'; font-size: .85em; }
.tag {
  display: inline-block; font-family: 'Rubik', sans-serif; font-size: .66rem; font-weight: 800;
  padding: .1rem .45rem; border-radius: 6px; vertical-align: middle; margin-left: .25rem;
}
.tag-gf { background: var(--gold); color: var(--ink); }
.tag-v { background: #DFF2D0; color: var(--green-deep); border: 1px solid var(--green); }

/* specials strip */
.specials { margin-top: 3.5rem; }
.specials-head { max-width: 620px; margin-bottom: 1.2rem; }
.specials-head h3 { font-family: 'Rye', serif; font-weight: 400; font-size: 1.9rem; color: var(--red); margin-bottom: .3rem; }
.specials-strip, .sweets-strip {
  display: flex; gap: 1rem; overflow-x: auto; padding: 14px 4px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.specials-strip figure, .sweets-strip figure {
  flex: 0 0 240px; scroll-snap-align: start;
  background: var(--card); padding: 8px 8px 6px; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(38,21,15,.15);
  transform: rotate(-1deg);
}
.specials-strip figure:nth-child(even), .sweets-strip figure:nth-child(even) { transform: rotate(1.2deg); }
.specials-strip img, .sweets-strip img { border-radius: 5px; aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.sweets-strip img { aspect-ratio: 1 / 1; }
figcaption.type-hand { text-align: center; padding: .45rem 0 .2rem; font-size: .9rem; color: var(--ink-soft); }

/* ---------- catering ---------- */
.catering {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(243,194,70,.14), transparent 60%),
    linear-gradient(160deg, var(--red-deep), var(--red) 55%, #9E1F28);
  color: #fff;
}
.catering .giant { color: #fff; text-shadow: 0 3px 0 rgba(38,21,15,.3); }
.cater-grid { display: grid; gap: 1.2rem; margin-bottom: 1.2rem; }
@media (min-width: 820px) { .cater-grid { grid-template-columns: repeat(3, 1fr); } }
.cater-tile {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--gold); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; text-decoration: none;
}
.cater-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cater-tile:hover img { transform: scale(1.05); }
.tile-label {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(38,21,15,.92));
  color: #fff;
}
.tile-label .type-label { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; display: block; }
.tile-label b { font-size: 1.05rem; line-height: 1.3; }

.cater-mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.6rem 0 2.4rem; }
@media (min-width: 820px) { .cater-mosaic { grid-template-columns: repeat(3, 1fr); } }
.cater-mosaic img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; border: 2px solid rgba(255,255,255,.25); }

.quotes { display: grid; gap: 1.2rem; margin-bottom: 3rem; }
@media (min-width: 820px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quotes-solo { grid-template-columns: 1fr !important; max-width: 720px; margin-left: auto; margin-right: auto; }
.quotes blockquote {
  background: rgba(38,21,15,.35); border-left: 5px solid var(--gold);
  padding: 1.3rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.quotes p { font-size: 1.05rem; margin-bottom: .5rem; }
.quotes cite { font-family: 'Special Elite', monospace; font-style: normal; font-size: .88rem; color: var(--gold); }

/* quote form */
.quote-card {
  background: var(--card); color: var(--ink);
  border-radius: 18px; box-shadow: 0 24px 60px rgba(38,21,15,.4);
  display: grid; overflow: hidden;
  border: 4px solid var(--gold);
}
@media (min-width: 880px) { .quote-card { grid-template-columns: .9fr 1.4fr; } }
.quote-intro {
  padding: 2rem 1.8rem; background: var(--masa-deep);
  display: flex; flex-direction: column; gap: .7rem; justify-content: center;
}
.quote-intro .quote-badge {
  width: 150px; height: auto; align-self: flex-start;
  margin-bottom: .6rem; transform: rotate(-5deg);
  filter: drop-shadow(0 6px 14px rgba(38, 21, 15, .28));
}
@media (max-width: 879px) { .quote-intro .quote-badge { width: 110px; } }
.quote-intro h3 { font-family: 'Rye', serif; font-weight: 400; font-size: 1.9rem; color: var(--red); }
.quote-intro .type-hand { color: var(--teal-deep); font-size: 1.05rem; }
.quote-form { padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { font-weight: 700; font-size: .92rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .85rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: .75rem .9rem; border-radius: 10px;
  border: 2px solid #D9CBB2; background: #fff; color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold-deep);
}
.quote-form .btn { align-self: flex-start; }
.form-fine { font-size: .85rem; color: var(--ink-soft); }
.hp { position: absolute; left: -9999px; }

/* ---------- cakes ---------- */
.cakes { padding: 4.5rem 0; background: var(--masa); }
.cakes-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--masa-deep); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  border: 2px dashed var(--teal);
}
.cakes-cta p { font-weight: 700; font-size: 1.1rem; }

/* ---------- story ---------- */
.story { display: grid; background: #fff; }
@media (min-width: 880px) { .story { grid-template-columns: 1fr 1fr; } }
.story-media { position: relative; min-height: 320px; }
.story-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 879px) { .story-media img { position: relative; aspect-ratio: 4/3; } }
.story-body { padding: 3.5rem clamp(20px, 5vw, 4rem); }
.story-body h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 1.1rem; }
.story-body p { margin-bottom: 1rem; max-width: 56ch; }
.sticker-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.3rem 0 1.6rem; }
.sticker {
  font-family: 'Special Elite', monospace; font-size: .8rem; font-weight: 400;
  padding: .45rem .9rem; border-radius: 999px; border: 3px solid var(--ink);
  box-shadow: 2px 3px 0 var(--ink); background: #fff; letter-spacing: .05em;
}
.st-red { background: var(--red); color: #fff; }
.st-teal { background: var(--teal); color: #fff; }
.st-gold { background: var(--gold); }
.st-green { background: var(--green); color: #fff; }
.sticker:nth-child(odd) { transform: rotate(-2deg); }
.sticker:nth-child(even) { transform: rotate(1.6deg); }
.story-pics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.story-pics img { border-radius: 8px; aspect-ratio: 3 / 4; object-fit: cover; }

/* ---------- press ---------- */
.press { padding: 4.5rem 0; background: var(--ink); color: var(--masa); }
.press .giant { color: var(--gold); }
.press .kicker { color: var(--turq); }
.press-quote { max-width: 880px; margin: 2rem 0 2.5rem; }
.press-quote blockquote {
  font-family: 'Rye', serif; font-size: clamp(1.35rem, 3.4vw, 2.2rem); line-height: 1.25;
  color: var(--masa); quotes: none;
}
.press-quote figcaption { margin-top: 1rem; font-family: 'Special Elite', monospace; font-size: .95rem; color: var(--gold); }
.press-quote figcaption a { color: var(--gold); }
.press-row { display: grid; gap: 1.2rem; }
@media (min-width: 820px) { .press-row { grid-template-columns: repeat(3, 1fr); } .press-row-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; } }

/* ---------- reviews (review-widget style, real Yelp content) ---------- */
.reviews { display: grid; gap: 1.1rem; margin: 0 0 2.6rem; }
@media (min-width: 880px) { .reviews { grid-template-columns: 1.1fr 1fr 1fr 1fr; } }
.review-card {
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 1.3rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  display: flex; flex-direction: column; gap: .7rem;
}
.review-card p { font-size: .98rem; line-height: 1.55; color: var(--ink-2); }
.rev-head { display: flex; align-items: center; gap: .7rem; }
.rev-head b { display: block; font-size: .95rem; line-height: 1.2; }
.rev-head small { color: var(--ink-soft); font-size: .8rem; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 42px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.1rem;
}
.av-red { background: var(--red); }
.av-teal { background: var(--teal); }
.av-green { background: var(--green); }
.review-aggregate { align-items: center; text-align: center; justify-content: center; background: var(--masa); }
.review-aggregate .agg-score { font-family: 'Rye', serif; font-size: 3.2rem; line-height: 1; color: var(--red); }
.review-aggregate .stars-big { font-size: 1.5rem; letter-spacing: .12em; color: var(--gold-deep); }
.review-aggregate .agg-sub { font-family: 'Special Elite', monospace; font-size: .9rem; color: var(--ink-soft); }
.agg-actions { display: flex; flex-direction: column; gap: .6rem; width: 100%; margin-top: .4rem; }
.agg-actions .btn { font-size: .9rem; padding: .7rem 1rem; }
.review-aggregate .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.review-aggregate .btn-outline:hover { background: var(--ink); color: var(--masa); }
.press-card {
  background: rgba(251,244,226,.07); border: 1px solid rgba(251,244,226,.2);
  border-radius: var(--radius); padding: 1.5rem;
}
.press-card .type-label { color: var(--turq); text-transform: uppercase; font-size: .8rem; letter-spacing: .12em; margin-bottom: .6rem; }
.press-card p { margin-bottom: .8rem; }
.press-card a { color: var(--gold); font-weight: 700; text-decoration: none; }
.press-card a:hover { text-decoration: underline; }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1.15rem; }

/* ---------- gallery / follow ---------- */
.follow { padding: 4.5rem 0; background: var(--masa); }
.mosaic { columns: 2 160px; column-gap: .8rem; margin-bottom: 2rem; }
@media (min-width: 820px) { .mosaic { columns: 4 220px; } }
.mosaic img { border-radius: 10px; margin-bottom: .8rem; box-shadow: 0 5px 14px rgba(38,21,15,.14); }
.social-ctas { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: #1B0E09; color: var(--masa); padding: 3.5rem 0 5.5rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.f-brand img { margin-bottom: .8rem; }
.f-tag { font-family: 'Special Elite', monospace; color: var(--gold); max-width: 30ch; }
.f-legal { font-size: .85rem; opacity: .7; margin-top: .6rem; }
.f-col .type-label { color: var(--turq); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: .7rem; }
.f-col p { font-size: .95rem; margin-bottom: .8rem; }
.f-col a { color: var(--masa); }
.f-phone {
  display: inline-block; font-family: 'Rye', serif; font-size: 1.7rem; color: var(--gold) !important;
  text-decoration: none; margin-bottom: .3rem;
}
.f-phone:hover { color: var(--lemon) !important; }
.f-social a { margin-right: 1rem; font-weight: 700; }
.f-bottom { text-align: center; margin-top: 3rem; font-size: .85rem; opacity: .65; padding: 0 20px; }

/* ---------- mobile action bar ---------- */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
  display: grid; grid-template-columns: 1fr 1.25fr 0.8fr;
  background: rgba(27, 14, 9, .97); backdrop-filter: blur(8px);
  border-top: 3px solid var(--gold);
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.actionbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  color: var(--masa); text-decoration: none; font-size: .78rem; font-weight: 700;
  padding: .45rem .3rem; border-radius: 10px;
}
.actionbar a:hover { background: rgba(251,244,226,.1); }
.actionbar .ab-mid { background: var(--gold); color: var(--ink); font-size: .85rem; }
.actionbar .ab-mid:hover { background: var(--lemon); }
.ab-ico { font-size: 1.1rem; line-height: 1; }
@media (min-width: 880px) { .actionbar { display: none; } body { padding-bottom: 0; } }
@media (max-width: 879px) { body { padding-bottom: 76px; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .steam { display: none; }
}
