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

@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fredoka-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/fredoka-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/fredoka-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-800.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/nunito-sans-900.ttf') format('truetype');
}

:root {
  --pm-yellow-500: #ffb800;
  --pm-yellow-200: #ffebb8;
  --pm-yellow-100: #fff2d6;
  --pm-orange-600: #e86e00;
  --pm-orange-500: #ff7a00;
  --pm-pink-100: #ffe1e1;
  --pm-ink: #1f1f1f;
  --pm-brown: #3a2a1e;
  --pm-gray-600: #6b6b6b;
  --pm-gray-300: #d8d3c9;
  --pm-gray-200: #e9e5dd;
  --pm-cream: #fff8f0;
  --pm-cream-deep: #fbf1e2;
  --brand-primary: var(--pm-yellow-500);
  --brand-accent: var(--pm-orange-500);
  --brand-accent-hover: var(--pm-orange-600);
  --surface-page: var(--pm-cream);
  --surface-card: #fff;
  --surface-warm: var(--pm-yellow-100);
  --surface-warm-deep: var(--pm-cream-deep);
  --text-strong: var(--pm-ink);
  --text-body: #36322d;
  --text-muted: var(--pm-gray-600);
  --border-subtle: var(--pm-gray-200);
  --border-strong: var(--pm-gray-300);
  --rating-star: var(--pm-orange-500);
  --success: #2fae66;
  --font-display: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 8vw, 120px);
  --fs-h2: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  --fs-body: 1.0625rem;
  --lh-normal: 1.5;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 6px rgba(31, 31, 31, 0.06), 0 1px 2px rgba(31, 31, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 18px 44px rgba(31, 31, 31, 0.1);
  --shadow-xl: 0 28px 64px rgba(31, 31, 31, 0.12);
  --shadow-brand: 0 12px 30px rgba(255, 122, 0, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-base: 200ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  max-width: calc(var(--container-max) + (2 * var(--container-pad)));
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 248, 240, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  padding: 13px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--pm-brown);
  letter-spacing: -0.01em;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand span span,
.footer-brand span span { color: var(--brand-accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: 15.5px;
}

.site-nav a:hover,
.site-footer nav a:hover { color: var(--brand-accent); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-brand);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.button-small { min-width: 120px; }

.button:hover {
  background: var(--brand-accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.3), rgba(255, 184, 0, 0) 70%);
}

.hero::after {
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14), rgba(255, 122, 0, 0) 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 15px 6px 6px;
  background: var(--surface-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.pill img { border-radius: 7px; }

.pill span,
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem,1.5rem+4.2vw,4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  text-wrap: balance;
}

.hero h1 span { color: var(--brand-accent); }

.hero-copy > p {
  max-width: 500px;
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: clamp(1.08rem,1rem+0.4vw,1.32rem);
  line-height: 1.6;
}

.store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge {
  width: auto;
  min-width: 170px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: var(--radius-md);
  background: var(--pm-ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.store-badge:hover {
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.store-icon {
  display: grid;
  place-items: center;
  flex: none;
}

.store-copy {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  line-height: 1.1;
  white-space: nowrap;
}

.store-badge small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.78);
}

.store-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14.5px;
}

.rating-line span,
.stars {
  color: var(--rating-star);
  letter-spacing: 0;
  font-weight: 900;
}

.star-icons {
  display: inline-flex;
  gap: 4px;
}

.stars span {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 800;
  margin-left: 4px;
}

.stars small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(290px, 82vw);
  background: var(--pm-ink);
  border-radius: 42px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
}

.phone-tilt { transform: rotate(3deg); }

.phone-screen {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: 33px;
  background: var(--surface-card);
  padding: 30px 16px 12px;
}

.phone-notch {
  position: absolute;
  top: 9px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  border-radius: 12px;
  background: var(--pm-ink);
}

.phone-screen-shot {
  padding: 0;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screen-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.screen-heading strong {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-strong);
}

.screen-heading span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--brand-accent);
  font-weight: 900;
}

.chip-row {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.chip {
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  background: var(--surface-warm);
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 800;
}

.chip.active {
  background: var(--brand-primary);
  color: var(--pm-ink);
}

.dish-art,
.dish-thumb {
  position: relative;
  flex: none;
  display: block;
  object-fit: cover;
  background: var(--pm-gray-200);
}

.mini-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.mini-card .dish-art {
  height: 150px;
}

.mini-card > div:last-child {
  padding: 11px 13px 13px;
}

.mini-card h3,
.mini-row h3,
.mini-card h4,
.mini-row h4,
.result-row h4,
.compare-card h3,
.steps h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.15;
}

.mini-card h3,
.mini-card h4 {
  font-size: 15.5px;
}

.mini-row h3,
.mini-row h4 {
  font-size: 14.5px;
}

.mini-card p,
.mini-row p,
.result-row p {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.two-col .compare-card p {
  max-width: none;
  margin: 3px 0 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  line-height: normal;
}

.two-col .compare-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}

.best-card .stars {
  margin: 5px 0 2px;
  font-size: 14px;
}

.best-card p {
  font-size: 13px;
}

.compare-row .dish-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.mini-row,
.result-row {
  display: flex;
  gap: 11px;
  align-items: center;
}

.dish-thumb {
  width: 58px;
  height: 58px;
  border-radius: 15px;
}

.dish-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.dish-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dish-media {
  position: relative;
}

.dish-card .dish-art {
  width: 100%;
  height: 200px;
}

.bookmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.dish-body {
  padding: 16px 18px 18px;
}

.dish-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.dish-card h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-strong);
}

.dish-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  margin-top: 3px;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 13.8px;
  line-height: 1;
  white-space: nowrap;
}

.rating-mark {
  width: 15px;
  height: 15px;
  fill: var(--rating-star);
  color: var(--rating-star);
}

.dish-card .stars span {
  margin-left: 0;
  font-size: 13.8px;
  line-height: 1;
}

.dish-card .stars small {
  font-size: 12.75px;
  line-height: 1;
}

.dish-card p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 600;
}

.dish-card .tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 5px 12px;
  font-size: 13px;
  line-height: 1;
}

.floating {
  position: absolute;
  left: -6px;
  bottom: 18px;
  z-index: 6;
  width: 232px;
  animation: pm-float 5.5s var(--ease-out) infinite;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  background: #fff0d6;
  color: #b8770b;
  font-size: 12px;
  font-weight: 700;
}

.tag-row span + span {
  background: #ffe9e0;
  color: #d24a12;
}

.note {
  position: absolute;
  right: 2px;
  top: 30px;
  z-index: 7;
  max-width: 158px;
  padding: 9px 14px;
  border-radius: 14px;
  background: var(--pm-ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.band {
  background: var(--surface-warm);
  padding: var(--section-y) 0;
}

.section,
.preview {
  padding: var(--section-y) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
}

#how .eyebrow,
#faq .eyebrow {
  color: var(--brand-accent);
}

h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.two-col p,
.section-heading p {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.65;
}

.muted,
.section-heading p,
.preview-copy p { color: var(--text-muted); }

.mascot-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
  color: var(--text-strong);
}

.mascot-callout img { object-fit: contain; }
.mascot-callout span { color: var(--text-muted); }

.compare-stack {
  display: grid;
  gap: 18px;
}

.compare-card,
.steps article,
.faq-list details {
  position: relative;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.compare-card {
  padding: 22px 24px;
}

.muted-card { opacity: 0.92; }

.best-card {
  border: 2px solid var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  background: var(--brand-accent);
  color: #fff;
  box-shadow: var(--shadow-brand);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.compare-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-label span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.compare-label.bad { color: var(--text-muted); }
.compare-label.bad span { background: var(--pm-gray-200); }
.compare-label.good { color: var(--brand-accent); }
.compare-label.good span { background: var(--brand-primary); color: var(--pm-ink); }

.compare-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 14px;
  background: var(--pm-gray-200);
  color: var(--text-muted);
  font-size: 28px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p { margin-left: auto; margin-right: auto; }

.section-heading h2 {
  margin-bottom: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps article {
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

.steps article > span {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--pm-yellow-200);
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--pm-yellow-100);
  color: var(--brand-accent);
  font-size: 28px;
  font-weight: 900;
}

.steps article:nth-child(2) .step-icon {
  background: #ffe9d6;
  color: var(--brand-accent-hover);
}

.steps article:nth-child(3) .step-icon {
  background: var(--pm-pink-100);
  color: #e0556b;
}

.steps article:nth-child(4) .step-icon {
  background: #e4f5ec;
  color: var(--success);
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.preview {
  background: var(--pm-ink);
  color: #fff;
  overflow: hidden;
}

.preview h2 {
  color: #fff;
  text-wrap: balance;
}
.preview .eyebrow { color: var(--brand-primary); }
.preview-copy > p {
  max-width: 440px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.preview-store {
  gap: 12px;
  margin-top: 0;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.tab-button.active {
  border-color: var(--brand-primary);
  background: rgba(255, 184, 0, 0.12);
}

.tab-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.tab-button.active span {
  background: var(--brand-primary);
  color: var(--pm-ink);
}

.preview-phone-wrap { display: flex; justify-content: center; }

.preview-phone-wrap .phone {
  width: 300px;
  background: #000;
  border-radius: 44px;
  padding: 11px;
}

.preview-phone-wrap .phone-notch {
  top: 10px;
  width: 100px;
  height: 24px;
  border-radius: 13px;
  background: #000;
  z-index: 10;
}

.preview-screen {
  height: 600px;
  border-radius: 34px;
  padding: 0 0 58px;
}

.preview-screen .tab-panel {
  height: 100%;
}

.preview-screen .tab-panel[hidden] {
  display: none !important;
}

.tab-panel-shot {
  overflow: hidden;
}

.tab-panel-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#feed-panel,
#search-panel,
#dish-panel {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.feed-panel-head {
  padding: 38px 18px 10px;
}

.feed-panel-body {
  flex: 1;
  overflow: hidden;
  padding: 4px 18px;
}

.search-panel-head {
  padding: 38px 18px 8px;
}

.search-panel-head h3 {
  margin-bottom: 12px;
}

.search-panel-head .chip-row {
  margin-top: 12px;
  margin-bottom: 0;
}

.search-results {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
}

.preview-screen .mini-card {
  margin-top: 14px;
  border-radius: var(--radius-lg);
}

.preview-screen .feed-card {
  margin-top: 0;
}

.preview-screen .mini-card .dish-art {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  background: var(--pm-gray-200);
}

.preview-screen .mini-card > div:last-child {
  padding: 13px 15px 15px;
}

.feed-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.feed-card-head span {
  flex: none;
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  background: var(--pm-yellow-100);
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.preview-screen .mini-card h4 {
  font-size: 17px;
}

.preview-screen .mini-row {
  gap: 12px;
  margin-top: 14px;
}

.preview-screen .mini-row .dish-thumb {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.detail-hero-wrap {
  position: relative;
  width: 100%;
  margin: 0;
}

.preview-screen .detail-hero {
  width: 100%;
  margin: 0;
}

.detail-bookmark {
  position: absolute;
  top: 44px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-accent);
  box-shadow: var(--shadow-sm);
}

.preview-screen .detail-body {
  flex: 1;
  padding: 16px 18px;
}

.tab-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-strong);
}

.panel-subtitle {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  border-radius: var(--radius-pill);
  padding: 11px 15px;
  background: var(--surface-warm-deep);
  color: var(--text-strong);
  font-weight: 700;
  font-size: 14px;
}

.result-row {
  padding: 9px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.preview-screen .result-row {
  gap: 14px;
  min-height: 96px;
  margin-top: 0;
  padding: 10px;
  border-radius: var(--radius-lg);
}

.preview-screen .result-row .dish-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
}

.preview-screen .result-row h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.preview-screen .result-row .stars {
  margin: 5px 0 3px;
  font-size: 14px;
}

.preview-screen .result-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-hero { height: 220px; }

.detail-body h3 {
  font-size: 23px;
  font-weight: 700;
}

.detail-rating {
  margin: 8px 0 6px;
  font-size: 16px;
}

.detail-body .detail-location {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.detail-body .tag-row {
  gap: 7px;
  margin: 14px 0;
}

.detail-body .tag-row span {
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
}

.detail-body .detail-copy {
  margin: 0 0 16px;
  color: var(--text-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
}

.save-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-accent);
  color: #fff;
  box-shadow: var(--shadow-brand);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.phone-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  padding: 13px 26px 18px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.96);
}

.phone-nav span {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--pm-gray-300);
}

.narrow { max-width: 920px; }

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-accent);
}

.faq-list details[open] summary::after { content: "-"; }

.faq-list p {
  margin: -6px 0 20px;
  color: var(--text-muted);
}

.download {
  padding: 0 var(--container-pad) var(--section-y);
}

.download .container { padding: 0; }

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 66px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  box-shadow: var(--shadow-lg);
}

.download-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.download-card > * { position: relative; z-index: 1; }

.download-card h2 {
  max-width: 560px;
  margin-bottom: 14px;
  color: var(--pm-ink);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
}

.download-card p {
  max-width: 480px;
  margin: 0 0 28px;
  color: rgba(31, 31, 31, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.download-card img {
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.2));
}

.site-footer {
  background: var(--surface-warm-deep);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 32px;
}

.site-footer p {
  max-width: 300px;
  margin: 14px 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.compact {
  gap: 10px;
}

.compact .store-badge {
  width: auto;
  min-width: 150px;
  min-height: 50px;
}

.compact .store-badge strong { font-size: 17px; }

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-strong);
}

.site-footer a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.site-footer .store-badge {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pm-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 768px) {
  .site-nav { display: none; }

  .hero-grid,
  .two-col,
  .preview-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .hero-copy { text-align: left; }

  .hero-visual {
    min-height: 600px;
    align-items: flex-start;
  }

  .floating {
    left: clamp(0px, 8vw, 80px);
    bottom: 0;
  }

  .note {
    right: clamp(0px, 8vw, 80px);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-card img {
    width: 190px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand { font-size: 20px; }
  .brand img { width: 38px; height: 38px; }

  .button-small {
    min-width: 96px;
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .hero-grid {
    padding-top: 34px;
  }

  .store-badge {
    width: auto;
    min-width: min(100%, 170px);
  }

  .rating-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone {
    width: min(284px, 92vw);
  }

  .floating {
    width: 210px;
    left: 0;
  }

  .note {
    top: 18px;
    right: 0;
    max-width: 142px;
  }

  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 0;
  }

  .compare-row {
    align-items: flex-start;
  }

  .tab-button {
    min-height: 52px;
  }

  .download {
    padding-left: 20px;
    padding-right: 20px;
  }

  .download-card {
    border-radius: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

.legal-content .container {
  max-width: 760px;
}
.legal-content h1 {
  margin-bottom: 4px;
}
.legal-content .legal-updated {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.legal-content p,
.legal-content li {
  line-height: 1.65;
}
.legal-content ul {
  margin: 0 0 16px 20px;
}

#contact-form {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-strong);
}

.form-field small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.16);
}

#message-count {
  display: block;
  margin-top: -2px;
  text-align: right;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

#turnstile-blocked-message {
  margin: 0;
  padding: 14px 18px;
  border: 1.5px solid #e0556b;
  border-radius: var(--radius-md);
  background: var(--pm-pink-100);
  color: #9c2f42;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

#form-status {
  margin: 0;
  min-height: 1.2em;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

#contact-form .button:disabled,
#contact-form .button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

#contact-form .button:disabled:hover,
#contact-form .button[disabled]:hover {
  background: var(--brand-accent);
  transform: none;
}
