/* ============================================================
   Pretty Little Pieces & More
   Brand pink sampled from the shop's own logo: #F248A0
   ============================================================ */

:root {
  --pink-hot: #F248A0;
  --pink-magenta: #D42B80;
  --pink-plum: #5E1038;

  --blush: #FFF4F9;
  --blush-2: #FFE8F3;
  --cream: #FFFDFB;
  --ink: #2E1B27;
  --ink-soft: #6B5462;
  --line: rgba(242, 72, 160, .18);

  --gold: #E8B54B;
  --award-plum: #2E1B33;
  --award-violet: #9B6BD6;

  --shadow-sm: 0 2px 10px rgba(94, 16, 56, .07);
  --shadow: 0 12px 34px rgba(94, 16, 56, .11);
  --shadow-lg: 0 26px 70px rgba(94, 16, 56, .17);

  --r-sm: 12px;
  --r: 20px;
  --r-lg: 30px;

  --nav-h: 74px;
  --wrap: 1180px;
}

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

/* Anything marked hidden stays hidden, even where a class below sets a
   display of its own (the lightbox, the award ribbon, the manual's savebar).
   Without this an overlay can be styled back over the page with no way out. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: #fff; color: var(--pink-magenta); padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--pink-hot); outline-offset: 3px; border-radius: 6px; }

/* ---------- Section shell ---------- */
.section { padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 40px); max-width: var(--wrap); margin-inline: auto; }

.section__title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  line-height: 1.14; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.015em;
}
.section__title.center, .section__sub.center { text-align: center; }
.section__sub { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 2.2em; font-size: 1.04rem; }

.grad-text {
  background: linear-gradient(100deg, var(--pink-hot), var(--pink-magenta) 55%, #A8236A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Reveal on scroll ---------- */
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); }
.reveal-ready .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .72s cubic-bezier(.22,.9,.3,1), transform .72s cubic-bezier(.22,.9,.3,1);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: .97rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--primary {
  background: linear-gradient(120deg, var(--pink-hot), var(--pink-magenta));
  color: #fff; box-shadow: 0 10px 26px rgba(242, 72, 160, .38);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(242, 72, 160, .48); }
.btn--ghost { border-color: var(--pink-hot); color: var(--pink-magenta); background: rgba(255,255,255,.72); }
.btn--ghost:hover { background: var(--pink-hot); color: #fff; transform: translateY(-3px) scale(1.03); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120;
  background: linear-gradient(90deg, var(--pink-hot), #FFC2DF, var(--pink-magenta));
}

/* ---------- Intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: linear-gradient(150deg, #fff, var(--blush-2));
  transition: opacity .6s ease, visibility .6s;
}
.intro.is-hidden { opacity: 0; visibility: hidden; }
.intro__mark { display: grid; justify-items: center; gap: 16px; animation: introPop .9s cubic-bezier(.22,1.2,.36,1) both; }
.intro__logo { width: 96px; height: 96px; border-radius: 50%; }
.intro__name { font-family: Fraunces, Georgia, serif; font-size: 1.4rem; color: var(--pink-plum); }
.intro__name em { font-style: italic; color: var(--pink-hot); }
@keyframes introPop { from { opacity: 0; transform: scale(.82) translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 110;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 34px);
  /* Soft fade so the dark nav text stays readable over the hero photograph */
  background: linear-gradient(180deg, rgba(255, 253, 251, .88), rgba(255, 253, 251, 0));
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.is-stuck { background: rgba(255, 253, 251, .9); backdrop-filter: blur(14px); box-shadow: 0 4px 24px rgba(94,16,56,.09); }
.nav__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__logo-mark { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.nav__logo-text {
  font-family: Fraunces, Georgia, serif; font-weight: 600; font-size: 1.06rem;
  color: var(--pink-plum); line-height: 1.15; max-width: 12ch;
}
.nav__logo-text em { font-style: italic; color: var(--pink-hot); }
.nav.is-stuck .nav__logo-text { color: var(--pink-plum); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: 9px 15px; border-radius: 999px; transition: background .22s, color .22s;
}
.nav__links a:hover { background: var(--blush-2); color: var(--pink-magenta); }
.nav__cta {
  background: linear-gradient(120deg, var(--pink-hot), var(--pink-magenta)); color: #fff !important;
  box-shadow: 0 6px 18px rgba(242,72,160,.34);
}
.nav__cta:hover { transform: translateY(-2px); }

.nav__burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav__burger span { display: block; height: 2.5px; background: var(--pink-plum); border-radius: 2px; margin: 5px 0; transition: transform .3s, opacity .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; padding: calc(var(--nav-h) + 28px) 20px 90px; overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0;
  background: url('assets/photos/shopfront-wide.jpg') center 42% / cover no-repeat;
  transform: scale(1.06); animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.13) translate3d(-1.2%, -1.4%, 0); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 78% at 50% 30%, rgba(255,244,249,.36), transparent 62%),
    linear-gradient(180deg, rgba(94,16,56,.60) 0%, rgba(212,43,128,.52) 42%, rgba(94,16,56,.80) 100%);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 900px; }

.hero__ribbon {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(9px); color: #fff;
  padding: 9px 20px 9px 14px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .25s, background .25s;
}
.hero__ribbon:hover { transform: translateY(-3px); background: rgba(255,255,255,.24); }
.hero__ribbon-cup { font-size: 1.5rem; filter: drop-shadow(0 2px 5px rgba(0,0,0,.3)); }
.hero__ribbon strong { display: block; font-size: .95rem; font-weight: 600; line-height: 1.25; }
.hero__ribbon small { display: block; font-size: .76rem; opacity: .88; letter-spacing: .04em; text-transform: uppercase; }

.hero__logo {
  width: clamp(96px, 15vw, 132px); height: auto; border-radius: 50%; margin: 0 auto 20px;
  box-shadow: 0 16px 42px rgba(0,0,0,.28); animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.hero__eyebrow { color: #fff; letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; font-weight: 600; margin: 0 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }

.hero__title { margin: 0 0 18px; font-family: Fraunces, Georgia, serif; font-weight: 600; line-height: 1.06; text-wrap: balance; }
.hero__title-line { display: block; }
#heroLine1 { font-size: clamp(1.05rem, 3vw, 1.55rem); font-style: italic; opacity: .93; color: #fff; font-weight: 400; }
#heroLine2 { font-size: clamp(2.1rem, 6.6vw, 4.1rem); color: #fff; text-shadow: 0 6px 34px rgba(0,0,0,.35); letter-spacing: -.02em; max-width: 18ch; margin-inline: auto; }

.shimmer {
  background: linear-gradient(100deg, #fff 20%, #FFD9EC 40%, #fff 60%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5.5s linear infinite; text-shadow: none;
}
@keyframes shimmer { to { background-position: -200% center; } }

.hero__tagline { color: rgba(255,255,255,.94); font-size: clamp(1rem, 2.1vw, 1.16rem); max-width: 44ch; margin: 0 auto 30px; text-shadow: 0 2px 14px rgba(0,0,0,.32); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost { border-color: rgba(255,255,255,.85); color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); }
.hero .btn--ghost:hover { background: #fff; color: var(--pink-magenta); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.65); border-radius: 14px; display: grid; justify-items: center;
}
.hero__scroll-dot { width: 4px; height: 8px; background: #fff; border-radius: 2px; margin-top: 8px; animation: scrollDot 1.7s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(15px); } }

/* ---------- Marquee ---------- */
.marquee { background: linear-gradient(90deg, var(--pink-magenta), var(--pink-hot), var(--pink-magenta)); color: #fff; padding: 13px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 46px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-size: .9rem; font-weight: 500; letter-spacing: .03em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Award ---------- */
.award { position: relative; max-width: none; padding-inline: clamp(20px, 5vw, 40px); background: var(--award-plum); color: #fff; overflow: hidden; }
.award__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 62% at 16% 22%, rgba(155,107,214,.42), transparent 62%),
    radial-gradient(50% 60% at 86% 78%, rgba(242,72,160,.34), transparent 64%);
}
.award__grid {
  position: relative; max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 66px); align-items: center;
}
.award__label {
  display: inline-block; background: linear-gradient(120deg, var(--gold), #F6D98A); color: #45301A;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem;
  padding: 7px 17px; border-radius: 999px; margin-bottom: 16px;
}
.award__title { font-family: Fraunces, Georgia, serif; font-size: clamp(1.9rem, 4.4vw, 3.05rem); line-height: 1.1; margin: 0 0 10px; font-weight: 700; }
.award__org { color: var(--award-violet); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; font-size: .82rem; margin: 0 0 18px; }
.award__blurb { color: rgba(255,255,255,.82); max-width: 42ch; margin: 0; }

.award__photos { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 14px; }
.award__photos a { position: relative; overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-lg); display: block; background: #1d1122; }
.award__photos a:first-child { grid-row: span 2; }
.award__photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .6s cubic-bezier(.22,.9,.3,1); }
.award__photos a:first-child img { aspect-ratio: 3/4.6; }
.award__photos a:hover img { transform: scale(1.06); }

/* ---------- Stats ---------- */
.stats { padding-top: clamp(46px, 6vw, 70px); padding-bottom: clamp(46px, 6vw, 70px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  background: linear-gradient(160deg, #fff, var(--blush)); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat__value { font-family: Fraunces, Georgia, serif; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; line-height: 1; margin-bottom: 6px;
  background: linear-gradient(120deg, var(--pink-hot), var(--pink-magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-weight: 600; font-size: .95rem; }
.stat__note { color: var(--ink-soft); font-size: .8rem; line-height: 1.4; margin-top: 3px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.about__photo-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: linear-gradient(150deg, var(--blush-2), #fff);
  display: grid; place-items: center; font-size: 3rem;
}
.about__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-frame[data-placeholder]::after {
  content: attr(data-placeholder); position: absolute; bottom: 16px; left: 0; right: 0;
  font-size: .8rem; color: var(--ink-soft); font-family: Poppins, sans-serif;
}
.about__photo { position: relative; }
.about__photo::before {
  content: ''; position: absolute; inset: -16px -16px 26px 26px; border-radius: var(--r-lg);
  background: linear-gradient(140deg, var(--pink-hot), transparent 62%); opacity: .2; z-index: -1;
}
.about__text p { color: var(--ink-soft); margin: 0 0 1.05em; }
.about__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.badge {
  background: #fff; border: 1px solid var(--line); color: var(--pink-magenta);
  padding: 8px 15px; border-radius: 999px; font-size: .84rem; font-weight: 500; box-shadow: var(--shadow-sm);
}

/* ---------- Gallery ---------- */
.shop { background: linear-gradient(180deg, var(--cream), var(--blush) 45%, var(--cream)); max-width: none; }
.shop > * { max-width: var(--wrap); margin-inline: auto; }

.shop__filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 30px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  padding: 9px 19px; border-radius: 999px; font: inherit; font-size: .87rem; font-weight: 500;
  cursor: pointer; transition: all .25s;
}
.chip:hover { border-color: var(--pink-hot); color: var(--pink-magenta); }
.chip.is-on {
  background: linear-gradient(120deg, var(--pink-hot), var(--pink-magenta));
  border-color: transparent; color: #fff; box-shadow: 0 7px 20px rgba(242,72,160,.32);
}

.shop__grid { columns: 4 240px; column-gap: 16px; }
.tile {
  position: relative; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0;
  border-radius: var(--r); overflow: hidden; cursor: zoom-in; background: var(--blush-2);
  box-shadow: var(--shadow-sm); break-inside: avoid; -webkit-column-break-inside: avoid;
  transition: transform .38s cubic-bezier(.22,.9,.3,1), box-shadow .38s, opacity .3s;
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile img { width: 100%; height: auto; display: block; transition: transform .6s cubic-bezier(.22,.9,.3,1); }
.tile:hover img { transform: scale(1.05); }
.tile__cap {
  position: absolute; inset: auto 0 0 0; padding: 34px 15px 13px; text-align: left;
  background: linear-gradient(transparent, rgba(94,16,56,.86)); color: #fff;
  font-size: .87rem; font-weight: 500; line-height: 1.35;
  opacity: 0; transform: translateY(10px); transition: opacity .34s, transform .34s;
}
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { opacity: 1; transform: none; }
.tile__tag {
  position: absolute; top: 11px; left: 11px; background: rgba(255,255,255,.93); color: var(--pink-magenta);
  font-size: .7rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; letter-spacing: .02em;
  opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s;
}
.tile:hover .tile__tag { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }

/* Touch devices can't hover — keep captions readable */
@media (hover: none) {
  .tile__cap { opacity: 1; transform: none; padding-top: 30px; }
  .tile__tag { opacity: 1; transform: none; }
}

/* ---------- Lightbox ---------- */
/* Closed by default and only opened by adding .is-open. Do NOT switch this
   back to `display:grid` + the hidden attribute: an author rule beats the
   browser's own [hidden] rule, so the viewer would sit over the whole page
   with a close button that does nothing. */
.lb {
  position: fixed; inset: 0; z-index: 400; display: none; place-items: center;
  background: rgba(46, 12, 32, .94); backdrop-filter: blur(8px); padding: 20px;
  animation: lbIn .28s ease;
}
.lb.is-open { display: grid; }
@keyframes lbIn { from { opacity: 0; } }
.lb__figure { margin: 0; max-width: min(94vw, 1000px); max-height: 86svh; display: grid; gap: 12px; justify-items: center; }
.lb__figure img { max-width: 100%; max-height: 76svh; width: auto; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lb__figure figcaption { color: #fff; font-size: .95rem; text-align: center; opacity: .93; }
.lb__close, .lb__nav {
  position: absolute; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.32);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .22s, transform .22s; backdrop-filter: blur(6px);
}
.lb__close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.9rem; line-height: 1; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.2rem; line-height: 1; padding-bottom: 5px; }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }
.lb__close:hover, .lb__nav:hover { background: var(--pink-hot); border-color: transparent; }
.lb__nav:hover { transform: translateY(-50%) scale(1.08); }
.lb__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .85rem; letter-spacing: .06em; }

/* ---------- Reviews ---------- */
.reviews__track { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px;
  margin: 0; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review__stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 10px; }
.review blockquote { margin: 0 0 14px; color: var(--ink-soft); font-size: .94rem; font-style: italic; }
.review figcaption { font-weight: 600; font-size: .9rem; color: var(--pink-magenta); }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(26px, 4vw, 52px); align-items: start; }
.visit__row { display: flex; gap: 16px; margin-bottom: 26px; }
.visit__icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blush-2), #fff); border: 1px solid var(--line); font-size: 1.25rem;
}
.visit__row h3 { margin: 0 0 5px; font-size: 1.03rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.visit__row p { margin: 0; color: var(--ink-soft); }
.visit__note { font-size: .84rem; margin-top: 10px !important; font-style: italic; }

.open-badge { font-size: .7rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.open-badge.is-open { background: #E6F7ED; color: #157F45; }
.open-badge.is-closed { background: var(--blush-2); color: var(--pink-magenta); }

table.hours { border-collapse: collapse; width: 100%; max-width: 320px; font-size: .93rem; }
table.hours td { padding: 6px 0; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
table.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
table.hours tr.is-today td { color: var(--pink-magenta); font-weight: 600; }

.visit__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 8px; }
.visit__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.visit__map iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- Follow ---------- */
.follow { background: linear-gradient(165deg, var(--blush), #fff); max-width: none; }
.follow > * { max-width: var(--wrap); margin-inline: auto; }
.follow__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.social-card {
  display: grid; justify-items: center; gap: 7px; text-decoration: none; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 20px;
  box-shadow: var(--shadow-sm); transition: transform .32s cubic-bezier(.34,1.4,.64,1), box-shadow .32s;
}
.social-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.social-card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; font-weight: 700; margin-bottom: 4px;
}
.social-card--fb .social-card__icon { background: linear-gradient(140deg, #1877F2, #0C5DC4); }
.social-card--ig .social-card__icon { background: linear-gradient(140deg, #F9CE34, #EE2A7B 48%, #6228D7); }
.social-card--tt .social-card__icon { background: linear-gradient(140deg, #25F4EE, #111 52%, #FE2C55); }
.social-card__name { font-weight: 600; font-size: 1rem; }
.social-card__meta { color: var(--ink-soft); font-size: .82rem; word-break: break-word; }
.social-card--qr img { border-radius: var(--r-sm); }

/* ---------- Footer ---------- */
.footer { background: var(--pink-plum); color: rgba(255,255,255,.82); padding: 52px 24px 34px; }
.footer__inner { max-width: var(--wrap); margin-inline: auto; display: grid; justify-items: center; gap: 16px; text-align: center; position: relative; }
.footer__logo { display: flex; align-items: center; gap: 11px; font-family: Fraunces, Georgia, serif; font-size: 1.16rem; color: #fff; }
.footer__logo-mark { width: 38px; height: 38px; border-radius: 50%; }
.footer__logo em { font-style: italic; color: #FFB6D9; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { text-decoration: none; font-size: .9rem; opacity: .85; transition: opacity .2s; }
.footer__links a:hover { opacity: 1; }
.footer__made { font-size: .84rem; opacity: .62; margin: 0; }
.footer__owner { position: absolute; right: 0; bottom: 0; opacity: .22; text-decoration: none; font-size: .95rem; transition: opacity .25s; }
.footer__owner:hover { opacity: .8; }

/* ---------- Floating bits ---------- */
.totop {
  position: fixed; right: 18px; bottom: 88px; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
  border: 0; background: #fff; box-shadow: var(--shadow); font-size: 1.25rem; cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(14px); transition: all .32s;
}
.totop.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.totop:hover { transform: translateY(-4px) scale(1.08); }

.mobilebar { display: none; }

.charm {
  position: fixed; left: 18px; bottom: 18px; z-index: 95; max-width: 285px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px 22px;
  box-shadow: var(--shadow-lg); animation: charmIn .5s cubic-bezier(.22,1.3,.36,1) both;
}
@keyframes charmIn { from { opacity: 0; transform: translateY(22px) scale(.95); } }
.charm__close { position: absolute; top: 7px; right: 10px; background: none; border: 0; font-size: 1.35rem; color: var(--ink-soft); cursor: pointer; line-height: 1; }
.charm__title { font-family: Fraunces, Georgia, serif; font-size: 1.1rem; margin: 0 0 5px; }
.charm__text { font-size: .87rem; color: var(--ink-soft); margin: 0 0 14px; }

.sparkle { position: fixed; pointer-events: none; z-index: 500; font-size: 1rem; animation: sparkle .8s ease-out forwards; }
@keyframes sparkle { 0% { opacity: 1; transform: translate(-50%,-50%) scale(1); } 100% { opacity: 0; transform: translate(-50%,-160%) scale(.3) rotate(45deg); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .award__grid { grid-template-columns: 1fr; }
  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 460px; margin-inline: auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 14px;
    background: rgba(255,253,251,.97); backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform .42s cubic-bezier(.22,.9,.3,1);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a { font-size: 1.28rem; padding: 13px 30px; }
  .nav__burger { display: block; position: relative; z-index: 2; }
  .nav__logo-text { max-width: none; font-size: 1rem; }

  .shop__grid { columns: 2 150px; column-gap: 12px; }
  .tile { margin-bottom: 12px; }

  .award__photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .award__photos a:first-child { grid-row: auto; grid-column: span 2; }
  .award__photos a:first-child img { aspect-ratio: 16/11; }

  /* Sticky bottom action bar */
  .mobilebar {
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    background: rgba(255,253,251,.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  }
  .mobilebar a {
    display: grid; justify-items: center; gap: 2px; text-decoration: none;
    font-size: .68rem; color: var(--ink-soft); font-weight: 500; padding: 5px 2px;
  }
  .mobilebar a span { display: block; }
  body { padding-bottom: 62px; }
  .totop { bottom: 78px; right: 14px; }
  .charm { left: 12px; right: 12px; max-width: none; bottom: 74px; }
  .lb__nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lb__nav--prev { left: 8px; }
  .lb__nav--next { right: 8px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .stat { padding: 20px 12px; }
  .hero__ribbon { padding: 8px 15px 8px 11px; gap: 9px; }
  .hero__ribbon strong { font-size: .84rem; }
  .hero__ribbon small { font-size: .68rem; }
}

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

/* ---------- Print ---------- */
@media print {
  .nav, .mobilebar, .totop, .charm, .hero__canvas, .marquee, .intro, .scroll-progress, .lb { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; }
}
