/* ============================================================
   Beach Co. Chill — styles.css
   Palette + type locked to the approved brand direction.
   ============================================================ */

:root {
  --bg:        #eef5f1;   /* mint cream       */
  --bg-warm:   #f6eefa;   /* soft orchid haze */
  --surface:   #ffffff;
  --ink:       #4a382f;   /* cocoa            */
  --ink-soft:  #6b564a;
  --muted:     #8a7568;
  --pink:      #ff6f91;   /* guava            */
  --orchid:    #9a6fc4;
  --teal:      #2fb8a8;
  --coral:     #c76a7d;
  --night:     #2e2740;   /* footer plum      */

  --grad-cta:    linear-gradient(135deg, #ff6f91, #9a6fc4);
  --grad-rainbow:linear-gradient(100deg, #ff6f91, #9a6fc4 55%, #2fb8a8);
  --grad-band:   linear-gradient(160deg, #ff6f91 0%, #9a6fc4 50%, #2fb8a8 100%);

  --shadow-sm:  0 6px 16px rgba(103,64,50,.10);
  --shadow-md:  0 12px 28px rgba(103,64,50,.14);
  --shadow-lg:  0 22px 50px rgba(103,64,50,.20);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  --wrap: 1120px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(3.75rem, 8vw, 6.5rem);

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-script: "Pacifico", cursive;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -.4px; }
h1 em, h2 em, h3 em { font-style: italic; }
p { margin: 0; }
:focus-visible {
  outline: 3px solid var(--orchid);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--r-pill); font-weight: 700; font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- layout helpers ---------- */
.section { padding: var(--section-y) var(--pad); }
.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section__head h2 { font-size: clamp(2rem, 6vw, 3rem); line-height: 1.05; color: var(--ink); }
.section__sub { margin-top: 1rem; color: var(--ink-soft); font-weight: 500; font-size: 1.05rem; }

.eyebrow {
  font-weight: 700; font-size: .72rem; letter-spacing: 4px;
  text-transform: uppercase; margin: 0 0 .5rem;
}
.eyebrow--pink   { color: var(--coral); }
.eyebrow--teal   { color: var(--teal); }
.eyebrow--orchid { color: var(--orchid); }

/* gradient word accent shared by display headings */
h1 em, h2 em {
  background: var(--grad-rainbow);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  --btn-fs: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 800; font-size: var(--btn-fs);
  padding: 15px 28px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn--primary { color: #fff; background: var(--grad-cta); box-shadow: 0 12px 26px rgba(255,111,145,.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(255,111,145,.42); }
.btn--ghost { color: var(--ink); background: transparent; border-color: rgba(74,56,47,.26); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--ink); background: rgba(255,255,255,.5); }
.btn--white { color: #e05579; background: #fff; box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost-light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { transform: translateY(-2px); background: rgba(255,255,255,.24); }
.btn--dark { color: #fff; background: var(--ink); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { display: flex; width: 100%; }

/* ---------- wordmark ---------- */
.wordmark {
  font-family: var(--font-script); font-size: clamp(1.35rem, 4vw, 1.55rem);
  line-height: 1; padding-bottom: 3px; text-decoration: none;
  background: linear-gradient(92deg, #ff6f91, #9a6fc4 55%, #2fb8a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wordmark--footer { font-size: clamp(1.9rem, 7vw, 2.4rem); padding-bottom: 6px; }

/* ---------- social rail ---------- */
.social-rail {
  position: fixed; right: 13px; top: 50%; transform: translateY(-50%);
  z-index: 70; display: flex; flex-direction: column; gap: 10px;
}
.social-rail a {
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  color: var(--ink); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(74,56,47,.08);
  transition: transform .18s ease, color .18s ease;
}
.social-rail a:hover { transform: translateY(-3px) scale(1.06); color: var(--pink); }
@media (max-width: 640px) { .social-rail { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(238,245,241,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,56,47,.08);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(238,245,241,.94);
  box-shadow: 0 6px 22px rgba(103,64,50,.08);
}
.site-header__bar {
  max-width: var(--wrap); margin: 0 auto;
  padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-desktop { display: none; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav-desktop a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  position: relative; padding: 4px 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad-cta); border-radius: 2px; transform: scaleX(0);
  transform-origin: left; transition: transform .22s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop__cta {
  color: #fff !important; background: var(--grad-cta);
  padding: 9px 20px !important; border-radius: var(--r-pill);
  box-shadow: 0 8px 18px rgba(255,111,145,.28);
}
.nav-desktop__cta::after { display: none; }
.nav-desktop__cta:hover { transform: translateY(-1px); }

.nav-toggle {
  border: 1.5px solid rgba(74,56,47,.18); background: transparent;
  width: 46px; height: 42px; border-radius: var(--r-pill);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid rgba(74,56,47,.08);
  background: rgba(238,245,241,.98);
  padding: 6px var(--pad) 18px;
  display: flex; flex-direction: column;
}
.nav-mobile a {
  text-decoration: none; font-family: var(--font-display); font-size: 1.4rem;
  color: var(--ink); padding: 12px 4px; border-bottom: 1px solid rgba(74,56,47,.07);
}
.nav-mobile a:last-child { border-bottom: 0; }

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none; }
}

/* ---------- string lights (color-cycling dots) ---------- */
.stringlights {
  position: absolute; top: 0; left: 0; right: 0; height: 24px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; padding: 0 12px; pointer-events: none;
  border-top: 2px solid rgba(74,56,47,.14);
}
.light {
  flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%;
  background: currentColor; color: #ffd23f;
  box-shadow: 0 0 9px 1px currentColor;
  animation: light-cycle 7s linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes light-cycle {
  0%, 100% { color: #4cc9f0; }
  12.5%    { color: #ff5d73; }
  25%      { color: #ffb03b; }
  37.5%    { color: #9a6fc4; }
  50%      { color: #2fb8a8; }
  62.5%    { color: #ff8fb3; }
  75%      { color: #ff9a56; }
  87.5%    { color: #5fd06f; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--pad) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(130% 90% at 50% -10%, #e4f0ea 0%, transparent 55%),
    radial-gradient(120% 80% at 100% 12%, #ffd9e4 0%, transparent 50%),
    radial-gradient(120% 90% at 0% 92%, #d6efe6 0%, transparent 55%),
    linear-gradient(180deg, #eef7f2 0%, #eef5f1 60%, #eef6f1 100%);
}
.hero__inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.hero__title {
  font-size: clamp(2.3rem, 7vw, 3.7rem); line-height: 1.04; color: var(--ink);
  margin: 0; text-wrap: balance; max-width: 15ch;
}
.hero__lede {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem); line-height: 1.6;
  color: var(--ink-soft); font-weight: 500; margin: 1.3rem 0 0; max-width: 30ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.hero__chips {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__chips li {
  font-size: .82rem; font-weight: 700; color: var(--ink-soft);
  background: rgba(255,255,255,.7); border: 1px solid rgba(74,56,47,.09);
  padding: 7px 14px; border-radius: var(--r-pill);
}

.hero__media { position: relative; }
.hero__photo {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.hero__photo img { width: 100%; aspect-ratio: 769 / 648; object-fit: cover; }
.hero__inset {
  position: absolute; right: -6px; bottom: -26px; width: 40%; max-width: 190px;
  margin: 0; border-radius: var(--r-md); overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow-md);
  transform: rotate(4deg);
  background: #fff;
}
.hero__inset img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.hero__inset figcaption {
  font-family: var(--font-display); font-size: .72rem; color: var(--ink);
  text-align: center; padding: 6px 4px 5px;
}

@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1fr 1.02fr; }
  .hero__inset { width: 46%; max-width: 230px; bottom: -34px; right: -18px; }
}

/* ---------- brand ribbon ---------- */
.ribbon {
  background: var(--night); color: #fbe7ef; overflow: hidden;
  padding: 14px 0; border-top: 3px solid var(--pink);
}
.ribbon__track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .3px;
  animation: marquee 30s linear infinite;
}
.ribbon__track span:nth-child(even) { color: var(--teal); }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- about ---------- */
.about { background: var(--bg); }
.about__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.about__photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__photo { border-radius: var(--r-md); box-shadow: var(--shadow-md); border: 5px solid #fff; object-fit: cover; width: 100%; }
.about__photo--tall { aspect-ratio: 3/4; grid-row: span 2; align-self: start; }
.about__photo--short { aspect-ratio: 1/1; align-self: center; transform: rotate(2.5deg); }
.about__copy h2 { font-size: clamp(2rem, 5.5vw, 2.85rem); line-height: 1.06; margin-top: .3rem; }
.about__copy p { margin-top: 1.1rem; color: var(--ink-soft); font-weight: 500; font-size: 1.05rem; }
@media (min-width: 860px) { .about__grid { grid-template-columns: .9fr 1.1fr; } }

/* ---------- why ---------- */
.why {
  background:
    radial-gradient(120% 70% at 0% 0%, #e4f0ea 0%, transparent 55%),
    radial-gradient(120% 70% at 100% 100%, #ffe1e9 0%, transparent 55%),
    linear-gradient(180deg, #f4eef8 0%, #f3f7f1 100%);
}
.why__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.why__photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg); transform: rotate(1.4deg); max-width: 420px; }
.why__photo img { width: 100%; aspect-ratio: 520/646; object-fit: cover; }
.why__copy h2 { font-size: clamp(2rem, 5.5vw, 2.85rem); line-height: 1.06; margin-top: .3rem; }
.why__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-direction: column; gap: 14px; }
.why__list li { background: #fff; border-radius: var(--r-md); padding: 22px 22px; box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 16px; }
.why__num { font-family: var(--font-display); font-size: 2.4rem; line-height: .9; flex-shrink: 0; }
.why__list li:nth-child(1) .why__num { color: var(--pink); }
.why__list li:nth-child(2) .why__num { color: var(--orchid); }
.why__list li:nth-child(3) .why__num { color: var(--teal); }
.why__list h3 { font-size: 1.25rem; color: var(--ink); }
.why__list p { margin-top: 4px; color: var(--muted); font-weight: 500; font-size: .95rem; }
@media (min-width: 860px) { .why__grid { grid-template-columns: .85fr 1.15fr; } }

/* ---------- flavors ---------- */
.flavors {
  background:
    radial-gradient(120% 60% at 100% 0%, #e7dcf5 0%, transparent 55%),
    linear-gradient(180deg, #eef6f1 0%, #f6eefa 100%);
}
.flavors__block { max-width: 760px; margin: 0 auto; }
.flavors__block + .flavors__block { margin-top: clamp(2.5rem, 6vw, 4rem); }
.flavors__blockhead { text-align: center; margin-bottom: 1.5rem; }
.flavors__blockhead h3 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--ink); }
.flavors__blockhead p { margin-top: .4rem; color: var(--muted); font-weight: 500; font-size: .95rem; }

.specialties { display: grid; grid-template-columns: 1fr; gap: 11px; }
.specialty {
  border-radius: var(--r-sm); padding: 18px 18px; min-height: 62px;
  display: flex; align-items: center; box-shadow: var(--shadow-sm);
  background: var(--grad, var(--grad-cta));
  transition: transform .18s ease, box-shadow .18s ease;
}
.specialty:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.specialty span {
  font-family: var(--font-display); font-size: 1.02rem; color: #fff; line-height: 1.15;
  text-shadow: 0 1px 6px rgba(46,39,64,.55);
}
@media (min-width: 560px) { .specialties { grid-template-columns: 1fr 1fr; } }

/* flavor marquee — two rows of cards flowing left */
.flavor-marquee {
  width: 100vw; margin-left: calc(50% - 50vw);
  margin-top: clamp(1.25rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 12px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.flavor-marquee__row { overflow: hidden; }
/* fallback (no JS / reduced motion): tidy centered wrap */
.flavor-track {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; padding: 6px 8px;
}
/* enhanced: single-line track that scrolls */
.flavor-marquee.is-enhanced .flavor-track {
  flex-wrap: nowrap; justify-content: flex-start; width: max-content;
  animation: flavor-flow 58s linear infinite;
}
.flavor-marquee.is-enhanced .flavor-track--b { animation-duration: 44s; }
.flavor-marquee.is-enhanced .flavor-track:hover { animation-play-state: paused; }
@keyframes flavor-flow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.flavor-card {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(74,56,47,.05); border-radius: var(--r-sm);
  padding: 13px 20px; box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .95rem; color: var(--ink); white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}
.flavor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.flavor-card::before {
  content: ""; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: var(--dot, var(--pink));
}

.flavors__note {
  margin: 26px auto 0; max-width: 620px;
  background: #fff; border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: .95rem; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.flavors__note span { font-family: var(--font-display); font-size: 1.7rem; color: var(--teal); line-height: 1; }

/* ---------- gallery ---------- */
.gallery { background: var(--bg); }
.gallery__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width: 720px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
.gallery__item {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); border: 4px solid #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__item:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }

/* ---------- venue ---------- */
.venue {
  background:
    radial-gradient(120% 70% at 100% 0%, #e7dcf5 0%, transparent 55%),
    radial-gradient(120% 70% at 0% 100%, #ffe1e9 0%, transparent 55%),
    linear-gradient(180deg, #f6eefa 0%, #eef6f1 100%);
}
.venue__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.venue__copy h2 { font-size: clamp(2rem, 5.5vw, 2.85rem); line-height: 1.06; margin-top: .3rem; }
.venue__copy > p { margin-top: 1.1rem; color: var(--ink-soft); font-weight: 500; font-size: 1.05rem; }
.chips { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li { background: #fff; border-radius: var(--r-pill); padding: 10px 17px; font-weight: 700; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.venue__card { background: #fff; border-radius: var(--r-lg); padding: 26px 24px; margin-top: 1.8rem; box-shadow: var(--shadow-md); }
.venue__card h3 { font-size: 1.35rem; color: var(--ink); }
.ticks { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 26px; color: var(--ink-soft); font-weight: 500; font-size: .97rem; line-height: 1.45; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; }
.ticks li:nth-child(1)::before { background: var(--pink); }
.ticks li:nth-child(2)::before { background: #7cc6e8; }
.ticks li:nth-child(3)::before { background: var(--teal); }
.venue__card .btn { margin-top: 1.5rem; }
.venue__photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg); transform: rotate(-1.4deg); }
.venue__photo img { width: 100%; aspect-ratio: 574/418; object-fit: cover; }
@media (min-width: 860px) { .venue__grid { grid-template-columns: 1.1fr .9fr; } .venue__photo { order: 2; } }

/* ---------- location ---------- */
.location {
  background:
    radial-gradient(120% 70% at 0% 0%, #dcefe6 0%, transparent 55%),
    linear-gradient(180deg, #eef6f1 0%, #f3f7f1 100%);
}
/* consolidated "come chill" band — smaller map + address + CTAs in one gradient container */
.chill {
  position: relative; overflow: hidden; max-width: var(--wrap); margin: 0 auto;
  border-radius: var(--r-lg); background: var(--grad-band);
  padding: clamp(2rem, 5vw, 3.25rem);
}
.chill__blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.13); pointer-events: none; }
.chill__blob--a { top: -50px; left: -40px; width: 160px; height: 160px; }
.chill__blob--b { bottom: -70px; right: -50px; width: 210px; height: 210px; }
.chill__inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center;
}
.chill__copy { color: #fff; }
.chill h2 { font-size: clamp(2.2rem, 6vw, 3.2rem); color: #fff; line-height: 1; text-shadow: 0 3px 16px rgba(150,40,80,.22); }
.chill__lede { color: rgba(255,255,255,.95); font-weight: 600; font-size: clamp(1rem, 2.3vw, 1.12rem); margin-top: 1rem; max-width: 44ch; }
.chill__addr { display: flex; align-items: center; gap: 9px; margin-top: 1.2rem; font-weight: 800; font-size: .98rem; color: #fff; }
.chill__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.chill__note { margin-top: 1.2rem; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); }
.chill__note a { color: #fff; text-decoration: underline; font-weight: 700; }
.chill__map { margin: 0; border-radius: var(--r-md); overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-lg); line-height: 0; }
.chill__map iframe { width: 100%; height: clamp(220px, 30vw, 290px); border: 0; display: block; }
@media (min-width: 820px) { .chill__inner { grid-template-columns: 1.08fr .92fr; } }

/* ---------- message-us lightbox ---------- */
.lightbox {
  border: none; padding: 0; margin: auto; color: var(--ink);
  width: min(460px, calc(100% - 28px)); background: transparent; overflow: visible;
}
.lightbox::backdrop { background: rgba(46,39,64,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.lightbox__panel { position: relative; background: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(74,56,47,.14); background: #fff; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .25s ease;
}
.lightbox__close:hover { background: var(--bg); transform: rotate(90deg); }
.lightbox__title { font-size: clamp(1.6rem, 5vw, 2.05rem); color: var(--ink); margin-top: .25rem; line-height: 1.05; }
.lightbox__sub { color: var(--ink-soft); font-weight: 500; font-size: .95rem; margin-top: .55rem; line-height: 1.5; }
.lightbox__form { display: flex; flex-direction: column; gap: 13px; margin-top: 1.35rem; }
.lightbox__row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lightbox label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: .78rem; letter-spacing: .3px; color: var(--ink); }
.lightbox input, .lightbox textarea {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--ink);
  background: var(--bg); border: 1.5px solid rgba(74,56,47,.12); border-radius: 12px;
  padding: 12px 14px; width: 100%; transition: border-color .18s ease, background .18s ease;
}
.lightbox input:focus, .lightbox textarea:focus { outline: none; border-color: var(--orchid); background: #fff; }
.lightbox textarea { resize: vertical; min-height: 92px; }
.lightbox__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.lightbox__submit { margin-top: .3rem; }
.lightbox__status { margin: 2px 0 0; font-size: .9rem; font-weight: 700; min-height: 1.1em; }
.lightbox__status.is-ok { color: var(--teal); }
.lightbox__status.is-err { color: #d6455d; }
.lightbox[open] { animation: lb-pop .28s cubic-bezier(.22,.61,.36,1); }
@keyframes lb-pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
@media (max-width: 420px) { .lightbox__row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--night); color: #d9d0e6; padding: clamp(2.5rem, 6vw, 3.5rem) var(--pad) clamp(2rem, 5vw, 3rem); text-align: center; }
.site-footer__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.site-footer__tag { font-size: .95rem; color: #a99cc4; margin-top: 1rem; line-height: 1.65; font-weight: 500; }
.site-footer__social { display: flex; justify-content: center; gap: 14px; margin-top: 1.3rem; }
.site-footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(217,208,230,.3); color: #d9d0e6; display: flex; align-items: center; justify-content: center; transition: transform .18s ease, background .18s ease; }
.site-footer__social a:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.site-footer__banner { margin-top: 1.5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(217,208,230,.16); border-radius: var(--r-sm); padding: 14px 18px; font-weight: 600; font-size: .9rem; color: #d9d0e6; line-height: 1.55; }
.site-footer__banner a { color: #ff9ec0; text-decoration: underline; font-weight: 700; }
.site-footer__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 1.5rem; }
.site-footer__nav a { text-decoration: none; color: #d9d0e6; font-weight: 600; font-size: .85rem; }
.site-footer__nav a:hover { color: #ff9ec0; }
.site-footer__legal { font-size: .72rem; color: #6f6588; margin-top: 1.5rem; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- motion / a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon__track, .flavor-track, .light, .lightbox[open] { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .gallery__item, .specialty, .flavor-card, .social-rail a { transition: none; }
}
