/* PopFlick: Sweet Reels — candy-shop landing (light pastel + charcoal accents) */

:root {
  --pf-bg: #fff5f5;
  --pf-bg-2: #ffe8ef;
  --pf-cream: #fff8e7;
  --pf-pink: #f06292;
  --pf-pink-deep: #e91e8c;
  --pf-gold: #ffd54f;
  --pf-mint: #4db6ac;
  --pf-charcoal: #1a1a1f;
  --pf-charcoal-soft: #2d2d35;
  --pf-text: #2a2a32;
  --pf-muted: #5c5c6a;
  --pf-white: #ffffff;
  --pf-radius: 1.25rem;
  --pf-radius-pill: 999px;
  --pf-shadow: 0 12px 40px rgba(240, 98, 146, 0.12);
  --pf-shadow-soft: 0 4px 24px rgba(26, 26, 31, 0.06);
  --pf-font-serif: "Playfair Display", Georgia, serif;
  --pf-font-sans: "DM Sans", system-ui, sans-serif;
  --pf-nav-h: 5rem;
  --pf-dock-h: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--pf-font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pf-text);
  background: linear-gradient(180deg, var(--pf-bg-2) 0%, var(--pf-bg) 35%, var(--pf-cream) 100%);
  min-height: 100vh;
  padding-bottom: calc(var(--pf-dock-h) + 2rem);
}

body.is-modal-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.pf-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--pf-charcoal);
  color: var(--pf-white);
  border-radius: var(--pf-radius);
}

.pf-skip:focus {
  left: 1rem;
  top: 1rem;
}

.pf-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.pf-icon--sm {
  width: 1.1rem;
  height: 1.1rem;
}

/* Background decor */
.pf-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pf-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.pf-bg__blob--1 {
  width: 420px;
  height: 420px;
  background: #ffc1d9;
  top: -120px;
  right: -80px;
}

.pf-bg__blob--2 {
  width: 360px;
  height: 360px;
  background: #ffe082;
  bottom: 10%;
  left: -100px;
}

.pf-bg__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--pf-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pf-gold);
}

.pf-bg__spark--1 { top: 18%; left: 12%; }
.pf-bg__spark--2 { top: 42%; right: 18%; }

/* Header / navigation */
.pf-nav {
  position: fixed;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(72rem, calc(100% - 1.5rem));
}

.pf-nav.is-scrolled .pf-nav__bar {
  box-shadow: var(--pf-shadow-soft), 0 0 0 1px rgba(240, 98, 146, 0.1);
}

.pf-nav__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand actions";
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--pf-shadow-soft);
  transition: box-shadow 0.25s ease;
}

.pf-nav__brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--pf-charcoal);
  transition: opacity 0.2s ease;
}

.pf-nav__brand:hover {
  opacity: 0.88;
}

.pf-nav__brand--compact {
  gap: 0.5rem;
}

.pf-nav__logo {
  flex-shrink: 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(240, 98, 146, 0.22);
}

.pf-nav__brand-text {
  display: none;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.pf-nav__name {
  font-family: var(--pf-font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}

.pf-nav__tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-pink-deep);
}

/* Center pill menu (desktop) */
.pf-nav__menu {
  grid-area: menu;
  display: none;
  justify-self: center;
  min-width: 0;
}

.pf-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  background: var(--pf-bg);
  border-radius: var(--pf-radius-pill);
  border: 1px solid rgba(240, 98, 146, 0.08);
}

.pf-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--pf-radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pf-muted);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.pf-nav__link:hover,
.pf-nav__link:focus-visible {
  color: var(--pf-charcoal);
}

.pf-nav__link.is-active {
  color: var(--pf-pink-deep);
  background: var(--pf-white);
  box-shadow: 0 2px 10px rgba(240, 98, 146, 0.12);
}

.pf-nav__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
}

.pf-nav__cta {
  display: none;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
}

.pf-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--pf-charcoal);
  background: var(--pf-bg);
  border: 1px solid rgba(240, 98, 146, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.pf-nav__toggle:hover {
  background: var(--pf-bg-2);
}

.pf-nav__toggle-icon--close {
  display: none;
}

.pf-nav.is-menu-open .pf-nav__toggle-icon--open {
  display: none;
}

.pf-nav.is-menu-open .pf-nav__toggle-icon--close {
  display: block;
}

/* Mobile slide-over menu */
.pf-nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
}

.pf-nav__mobile:not([hidden]) {
  pointer-events: auto;
}

.pf-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 31, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.pf-nav__mobile.is-open .pf-nav__backdrop {
  opacity: 1;
}

.pf-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(20rem, 88vw);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--pf-white);
  box-shadow: -8px 0 40px rgba(26, 26, 31, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.pf-nav__mobile.is-open .pf-nav__panel {
  transform: translateX(0);
}

.pf-nav__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 98, 146, 0.12);
}

.pf-nav__panel-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--pf-muted);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.pf-nav__panel-close:hover {
  background: var(--pf-bg);
  color: var(--pf-charcoal);
}

.pf-nav__panel-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.pf-nav__panel-nav .pf-nav__link {
  padding: 0.85rem 1rem;
  font-family: var(--pf-font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 1rem;
}

.pf-nav__panel-nav .pf-nav__link.is-active {
  background: var(--pf-bg-2);
  box-shadow: none;
}

.pf-nav__panel-foot {
  margin-top: auto;
  padding-top: 1.25rem;
}

body.is-nav-open {
  overflow: hidden;
}

/* Buttons */
.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--pf-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pf-btn:hover {
  transform: translateY(-1px);
}

.pf-btn:focus-visible {
  outline: 2px solid var(--pf-pink);
  outline-offset: 3px;
}

.pf-btn--pink {
  background: linear-gradient(135deg, var(--pf-pink) 0%, #ff8a80 100%);
  color: var(--pf-white);
  box-shadow: 0 8px 24px rgba(240, 98, 146, 0.35);
}

.pf-btn--pink:hover {
  box-shadow: 0 12px 28px rgba(240, 98, 146, 0.45);
}

.pf-btn--dark {
  background: var(--pf-charcoal);
  color: var(--pf-white);
  box-shadow: 0 10px 30px rgba(26, 26, 31, 0.2);
}

.pf-btn--dark em {
  font-family: var(--pf-font-serif);
  font-style: italic;
  font-weight: 600;
}

.pf-btn--outline {
  background: var(--pf-white);
  color: var(--pf-charcoal);
  border: 1px solid rgba(26, 26, 31, 0.1);
  box-shadow: var(--pf-shadow-soft);
}

.pf-btn--wide {
  width: 100%;
  max-width: 320px;
}

.pf-link {
  font-weight: 600;
  color: var(--pf-pink-deep);
  margin-top: 0.75rem;
  transition: opacity 0.2s ease;
}

.pf-link:hover {
  opacity: 0.8;
}

/* Hero */
.pf-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--pf-nav-h) + 2.5rem) 1.25rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pf-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.pf-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pf-pink-deep);
  margin: 0 0 0.75rem;
}

.pf-hero__title {
  font-family: var(--pf-font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--pf-charcoal);
}

.pf-hero__title em {
  font-style: italic;
  color: var(--pf-pink-deep);
}

.pf-hero__desc {
  color: var(--pf-muted);
  font-size: 1.05rem;
  max-width: 32rem;
  margin: 0 0 1.25rem;
}

.pf-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pf-tag {
  padding: 0.35rem 0.85rem;
  border-radius: var(--pf-radius-pill);
  background: var(--pf-white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pf-muted);
  box-shadow: var(--pf-shadow-soft);
}

.pf-tag--mint {
  background: rgba(77, 182, 172, 0.15);
  color: #2a8f86;
}

.pf-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 22rem;
}

.pf-hero__stores {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}

.pf-hero__stores .pf-btn {
  flex: 1;
  min-width: 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.88rem;
}

/* Hero device mockup */
.pf-hero__device {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-device-frame {
  width: min(300px, 78vw);
  border-radius: 2.25rem;
  padding: 0.5rem;
  background: linear-gradient(160deg, #fff 0%, #ffe4ec 100%);
  box-shadow: var(--pf-shadow), 0 0 0 1px rgba(240, 98, 146, 0.12);
}

.pf-device-frame img {
  width: 100%;
  border-radius: 1.85rem;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.pf-hero__hint {
  font-size: 0.85rem;
  color: var(--pf-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Phone strip */
.pf-hero__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 0.5rem;
}

.pf-phone {
  flex: 0 1 200px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--pf-shadow);
  background: var(--pf-white);
  border: 4px solid var(--pf-white);
}

.pf-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.pf-phone--center {
  flex-basis: 240px;
  transform: translateY(-12px);
  z-index: 2;
}

.pf-phone:not(.pf-phone--center) {
  opacity: 0.92;
  transform: scale(0.94);
}

/* Sections */
.pf-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
}

.pf-section-title {
  font-family: var(--pf-font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
  color: var(--pf-charcoal);
}

.pf-section-title em {
  font-style: italic;
  color: var(--pf-pink-deep);
}

.pf-section-title--sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pf-section-sub {
  color: var(--pf-muted);
  margin: 0;
}

/* Flavor scroll */
.pf-flavors {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.pf-flavor-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pf-flavor-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: var(--pf-white);
  box-shadow: var(--pf-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.pf-flavor-card h3 {
  font-family: var(--pf-font-serif);
  margin: 0.75rem 0 0.35rem;
  font-size: 1.35rem;
}

.pf-flavor-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pf-muted);
}

.pf-flavor-card__icon {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.pf-flavor-card--cozy .pf-flavor-card__icon { background: linear-gradient(135deg, #ffcdd2, #e57373); }
.pf-flavor-card--sweet .pf-flavor-card__icon { background: linear-gradient(135deg, #f8bbd0, #f06292); }
.pf-flavor-card--tangy .pf-flavor-card__icon { background: linear-gradient(135deg, #ffe0b2, #ffb74d); }
.pf-flavor-card--spicy .pf-flavor-card__icon { background: linear-gradient(135deg, #e1bee7, #ba68c8); }

/* Bento features */
.pf-features {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pf-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pf-bento__cell {
  background: var(--pf-white);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: var(--pf-shadow-soft);
  position: relative;
  overflow: hidden;
}

.pf-bento__cell h3 {
  font-family: var(--pf-font-serif);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.pf-bento__cell p {
  margin: 0;
  color: var(--pf-muted);
  font-size: 0.92rem;
}

.pf-bento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: var(--pf-bg-2);
  color: var(--pf-pink-deep);
  margin-bottom: 0.75rem;
}

.pf-bento__cell--pop {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #fff0f5 0%, #fff 60%);
  border: 2px solid rgba(240, 98, 146, 0.15);
  padding-bottom: 5.25rem;
}

.pf-bento__cell--pop .pf-link {
  margin-top: auto;
}

.pf-bento__pop-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  top: auto;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ff9a56);
  color: var(--pf-white);
  font-family: var(--pf-font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.45);
}

.pf-bento__cell--wide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.pf-bento__cell--wide > div {
  flex: 1 1 200px;
}

.pf-bento__badge {
  margin-left: auto;
  padding: 0.4rem 0.85rem;
  border-radius: var(--pf-radius-pill);
  background: var(--pf-gold);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pf-charcoal);
}

/* Streak */
.pf-streak {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.pf-streak__inner {
  background: var(--pf-white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--pf-shadow);
}

.pf-streak__head p {
  color: var(--pf-muted);
  margin: 0 0 1.25rem;
}

.pf-streak__days {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pf-day {
  flex: 1;
  aspect-ratio: 1;
  max-width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--pf-bg);
  color: var(--pf-muted);
}

.pf-day.is-done {
  background: var(--pf-bg-2);
  color: var(--pf-pink-deep);
}

.pf-day.is-today {
  background: rgba(77, 182, 172, 0.2);
  color: #2a8f86;
  box-shadow: 0 0 0 2px var(--pf-mint);
}

.pf-streak__card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--pf-shadow);
  background: var(--pf-white);
}

.pf-streak__card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}

/* Screenshot gallery */
.pf-gallery {
  position: relative;
  z-index: 1;
  padding: 1rem 0 4rem;
}

.pf-gallery__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.pf-gallery__item {
  flex: 0 0 min(240px, 72vw);
  scroll-snap-align: center;
  margin: 0;
  text-align: center;
}

.pf-gallery__item img {
  width: 100%;
  border-radius: 1.75rem;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--pf-shadow);
  background: var(--pf-white);
  border: 4px solid var(--pf-white);
}

.pf-gallery__item figcaption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pf-muted);
  font-family: var(--pf-font-serif);
  font-style: italic;
}

/* Download */
.pf-download {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pf-download__box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2.5rem;
  background: var(--pf-charcoal);
  color: var(--pf-white);
  box-shadow: 0 24px 60px rgba(26, 26, 31, 0.25);
}

.pf-download__title {
  font-family: var(--pf-font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.pf-download__title em {
  font-style: italic;
  color: #ffb3c9;
}

.pf-download__box > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.pf-download__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pf-store {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--pf-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pf-white);
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pf-store:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.pf-store span {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.pf-store small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Floating dock */
.pf-dock {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  background: var(--pf-charcoal);
  border-radius: var(--pf-radius-pill);
  box-shadow: 0 16px 48px rgba(26, 26, 31, 0.35);
  max-width: calc(100% - 2rem);
}

.pf-dock__item {
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  border-radius: var(--pf-radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.pf-dock__item:hover {
  color: var(--pf-white);
  background: rgba(255, 255, 255, 0.08);
}

.pf-dock__pop {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d 0%, #ff9a56 100%);
  color: var(--pf-white);
  font-family: var(--pf-font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.5);
  transform: translateY(-6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pf-dock__pop:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255, 107, 157, 0.55);
}

/* Footer */
.pf-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 6rem;
  border-top: 1px solid rgba(240, 98, 146, 0.12);
}

.pf-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.pf-footer__brand {
  font-family: var(--pf-font-serif);
  font-weight: 700;
  margin: 0;
}

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

.pf-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.pf-footer__links a {
  font-size: 0.88rem;
  color: var(--pf-muted);
  transition: color 0.2s ease;
}

.pf-footer__links a:hover {
  color: var(--pf-pink-deep);
}

/* Modal */
.pf-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.pf-modal[hidden] {
  display: none;
}

.pf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 31, 0.45);
  backdrop-filter: blur(4px);
}

.pf-modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 2rem;
  background: var(--pf-white);
  border-radius: 2rem;
  text-align: center;
  box-shadow: var(--pf-shadow);
}

.pf-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem;
  color: var(--pf-muted);
}

.pf-modal__icon {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  box-shadow: var(--pf-shadow-soft);
}

.pf-modal__panel h2 {
  font-family: var(--pf-font-serif);
  margin: 0 0 0.75rem;
}

.pf-modal__panel p {
  color: var(--pf-muted);
  margin: 0 0 1.5rem;
}

/* Responsive */
@media (min-width: 640px) {
  .pf-hero__actions {
    max-width: 26rem;
  }

  .pf-btn--wide {
    width: 100%;
  }

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

  .pf-bento__cell--pop {
    grid-row: span 2;
  }

  .pf-bento__cell--wide {
    grid-column: span 2;
  }
}

@media (min-width: 480px) {
  .pf-nav__brand-text {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .pf-nav__list .pf-nav__link {
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
  }

  .pf-nav__cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }
}

@media (min-width: 768px) {
  .pf-nav__bar {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand menu actions";
    padding: 0.55rem 0.65rem 0.55rem 0.85rem;
    border-radius: var(--pf-radius-pill);
  }

  .pf-nav__menu {
    display: block;
  }

  .pf-nav__cta {
    display: inline-flex;
  }

  .pf-nav__toggle {
    display: none;
  }

  .pf-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .pf-streak {
    grid-template-columns: 1fr 1fr;
  }

  .pf-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .pf-bento__cell--pop {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .pf-bento__cell--wide {
    grid-column: 2 / 4;
  }
}

@media (min-width: 1024px) {
  .pf-flavor-scroll {
    justify-content: center;
    overflow-x: visible;
  }

  .pf-flavor-card {
    flex: 1;
    max-width: none;
  }

  .pf-gallery__track {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .pf-gallery__item {
    flex: 0 1 220px;
  }
}

@media (max-width: 767px) {
  .pf-dock__item {
    display: none;
  }

  .pf-dock {
    padding: 0.35rem;
  }

  .pf-dock__pop {
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.72rem;
  }
}
