:root {
  --primary: #335516;
  --primary-2: #66823a;
  --matcha: #a9be78;
  --cream: #f7f2e7;
  --cream-2: #fffaf0;
  --ink: #18220f;
  --muted: #66705c;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(51, 85, 22, 0.14);
  --shadow: 0 24px 70px rgba(51, 85, 22, 0.13);
  --radius: 28px;
  --header-h: 82px;
}

body.dark-mode {
  --primary: #d6e7ad;
  --primary-2: #9cb66a;
  --matcha: #46672b;
  --cream: #10170d;
  --cream-2: #172012;
  --ink: #f5f9ec;
  --muted: #bac8a8;
  --card: rgba(28, 38, 22, 0.82);
  --border: rgba(214, 231, 173, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body.sunset-mode {
  --primary: #6b3a13;
  --primary-2: #b96b2b;
  --matcha: #c4b66f;
  --cream: #fff0d7;
  --cream-2: #fff8ed;
  --ink: #2b1d10;
  --muted: #7a6149;
  --card: rgba(255, 250, 240, 0.8);
  --border: rgba(107, 58, 19, 0.15);
  --shadow: 0 24px 70px rgba(107, 58, 19, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(169, 190, 120, .32), transparent 27%),
    radial-gradient(circle at 82% 0%, rgba(169, 190, 120, .24), transparent 28%),
    linear-gradient(145deg, var(--cream), var(--cream-2));
  overflow-x: hidden;
  transition: background .5s ease, color .4s ease;
}
body.drawer-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-loader {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-items: center;
  background: var(--cream);
  transition: opacity .6s ease, visibility .6s ease;
}
.site-loader.hide { opacity: 0; visibility: hidden; }
.loader-cloud { position: relative; width: 130px; height: 64px; animation: floatCloud 1.9s ease-in-out infinite; }
.loader-cloud span { position: absolute; bottom: 0; background: var(--primary); border-radius: 999px; }
.loader-cloud span:nth-child(1) { width: 82px; height: 36px; left: 18px; }
.loader-cloud span:nth-child(2) { width: 48px; height: 48px; left: 10px; bottom: 14px; }
.loader-cloud span:nth-child(3) { width: 62px; height: 62px; right: 8px; bottom: 8px; }
.site-loader p { margin: 100px 0 0; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); }
@keyframes floatCloud { 50% { transform: translateY(-14px); } }

.site-header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px)); height: 68px; z-index: 1200;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 18px;
  background: color-mix(in srgb, var(--card) 86%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .12em; color: var(--primary); }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a { color: var(--muted); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.desktop-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  border: 0; background: var(--card); color: var(--primary); cursor: pointer;
  width: 44px; height: 44px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: transform .2s ease, background .2s ease;
}
.icon-button:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--matcha) 20%, var(--card)); }
.mobile-menu-button { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 12px 18px; font-weight: 900; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(51, 85, 22, .16); }
.btn.primary { background: var(--primary); color: var(--cream-2); }
.btn.soft { background: color-mix(in srgb, var(--matcha) 30%, transparent); color: var(--primary); border-color: var(--border); }
.btn.ghost { color: var(--primary); border-color: var(--border); background: transparent; }
.btn.large { padding: 15px 24px; font-size: 16px; }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 1500;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(22px);
  transform: translateX(110%); transition: transform .35s ease;
  display: grid; place-items: center;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav { display: grid; gap: 26px; text-align: center; }
.mobile-drawer nav a { font-size: 28px; font-weight: 900; color: var(--primary); }
.close-drawer { position: absolute; top: 22px; right: 22px; }

.hero { position: relative; min-height: 96vh; padding: 142px 0 76px; display: flex; align-items: center; overflow: hidden; }
.cloud-field { position: absolute; inset: 0; pointer-events: none; opacity: .7; }
.cloud { position: absolute; width: 170px; height: 52px; background: rgba(255,255,255,.58); border-radius: 99px; filter: blur(1px); animation: drift linear infinite; }
.cloud::before, .cloud::after { content: ''; position: absolute; border-radius: 50%; background: inherit; }
.cloud::before { width: 62px; height: 62px; top: -28px; left: 28px; }
.cloud::after { width: 84px; height: 84px; top: -42px; right: 22px; }
.c1 { top: 18%; left: -20%; animation-duration: 50s; }
.c2 { top: 42%; left: -30%; transform: scale(.75); animation-duration: 38s; animation-direction: reverse; }
.c3 { top: 74%; left: -25%; transform: scale(1.2); animation-duration: 62s; }
.c4 { top: 9%; left: -25%; transform: scale(.55); animation-duration: 32s; }
@keyframes drift { to { left: 115%; } }
.hero-grid { position: relative; z-index: 5; display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary-2); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 900; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.02; }
h1 { font-size: clamp(52px, 8vw, 104px); margin: 0; letter-spacing: -.055em; color: var(--primary); }
.hero-description { max-width: 580px; font-size: 19px; line-height: 1.75; color: var(--muted); }
.hero-buttons, .inline-actions, .visit-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-info { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hours-pill { padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); color: var(--muted); font-weight: 800; }
.hero-visual { position: relative; min-height: 580px; }
.hero-photo-card {
  position: relative; border-radius: 42px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transform: rotate(1.5deg);
  background: var(--card);
}
.hero-photo-card img { width: 100%; height: 580px; object-fit: cover; }
.floating-chip { position: absolute; background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 13px 16px; font-weight: 900; box-shadow: var(--shadow); backdrop-filter: blur(14px); color: var(--primary); }
.chip-one { left: -22px; top: 48px; }
.chip-two { right: -18px; bottom: 62px; }

.ticker { overflow: hidden; padding: 18px 0; border-block: 1px solid var(--border); background: color-mix(in srgb, var(--matcha) 18%, transparent); }
.ticker-track { display: flex; gap: 38px; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: .12em; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 92px 0; }
.section-heading { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.section-heading h2, .split-copy h2, .gift-grid h2, .visit-grid h2, .options-grid h2 { font-size: clamp(36px, 5vw, 58px); margin: 0 0 14px; color: var(--primary); letter-spacing: -.035em; }
.section-heading p, .split-copy p, .gift-grid p, .visit-grid p, .options-grid p { color: var(--muted); line-height: 1.7; font-size: 17px; }
code { background: color-mix(in srgb, var(--matcha) 20%, transparent); padding: 2px 7px; border-radius: 8px; color: var(--primary); font-weight: 800; }

.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.promo-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-rows: 190px 1fr; }
.promo-card img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-body { padding: 24px; }
.promo-label { display: inline-block; padding: 7px 10px; border-radius: 999px; background: color-mix(in srgb, var(--matcha) 30%, transparent); color: var(--primary); font-weight: 900; font-size: 12px; text-transform: uppercase; }
.promo-card h3 { margin: 14px 0 8px; font-size: 25px; color: var(--primary); }
.promo-card p { color: var(--muted); line-height: 1.65; }

.split-section, .gift-grid, .visit-grid, .options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-image img, .gift-card-preview img { width: 100%; border-radius: 34px; box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--card); }
.stamp-card { display: grid; grid-template-columns: repeat(5, minmax(40px, 1fr)); gap: 13px; margin: 28px 0; max-width: 460px; }
.stamp { aspect-ratio: 1.15 / .75; border-radius: 999px 999px 22px 22px; background: var(--cream-2); border: 2px dashed color-mix(in srgb, var(--primary) 45%, transparent); display: grid; place-items: center; color: var(--primary); font-weight: 900; }
.stamp.free { background: var(--primary); color: var(--cream-2); border-style: solid; grid-column: span 2; border-radius: 24px; }
.gift-section { background: color-mix(in srgb, var(--matcha) 18%, transparent); border-block: 1px solid var(--border); }

.menu-tools { display: grid; gap: 16px; margin-bottom: 24px; }
.search-box { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border: 1px solid var(--border); background: var(--card); border-radius: 999px; box-shadow: var(--shadow); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.category-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 7px; }
.tab-button { border: 1px solid var(--border); background: var(--card); color: var(--muted); border-radius: 999px; padding: 11px 15px; cursor: pointer; font-weight: 900; white-space: nowrap; }
.tab-button.active { background: var(--primary); color: var(--cream-2); }
.featured-strip { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 26px; }
.featured-chip { background: color-mix(in srgb, var(--matcha) 28%, transparent); color: var(--primary); padding: 9px 12px; border-radius: 999px; font-weight: 900; font-size: 13px; }
.menu-grid { display: grid; gap: 28px; }
.menu-category { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.menu-category-header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; margin-bottom: 20px; }
.menu-category h3 { font-size: 34px; color: var(--primary); margin: 0 0 6px; }
.menu-category p { color: var(--muted); margin: 0; line-height: 1.55; }
.menu-note { font-weight: 800; color: var(--primary); font-size: 13px; }
.drink-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.drink-card { position: relative; overflow: hidden; padding: 18px; border-radius: 22px; border: 1px solid var(--border); background: color-mix(in srgb, var(--cream-2) 70%, transparent); min-height: 170px; transition: transform .2s ease, border-color .2s ease; }
.drink-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 45%, transparent); }
.drink-top { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; }
.drink-card h4 { margin: 0; font-size: 18px; line-height: 1.25; color: var(--ink); }
.drink-card p { color: var(--muted); line-height: 1.45; margin: 10px 0 14px; font-size: 14px; }
.price { color: var(--primary); font-weight: 900; text-align: right; white-space: nowrap; }
.badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { padding: 5px 8px; border-radius: 999px; background: color-mix(in srgb, var(--matcha) 26%, transparent); color: var(--primary); font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: .04em; }
.drink-img { position: absolute; right: 8px; bottom: 6px; width: 86px; height: 86px; object-fit: contain; opacity: .16; pointer-events: none; }

.options-section { background: color-mix(in srgb, var(--matcha) 15%, transparent); border-block: 1px solid var(--border); }
.option-cards { display: grid; gap: 14px; }
.option-card, .extras-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.option-card { padding: 19px; display: flex; gap: 14px; align-items: flex-start; }
.option-card i { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--matcha) 25%, transparent); color: var(--primary); }
.option-card h3 { font-family: 'Outfit'; font-size: 17px; margin: 0 0 5px; color: var(--primary); }
.option-card p { margin: 0; color: var(--muted); font-size: 14px; }
.extras-panel { display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 24px; padding: 24px; margin-top: 26px; }
.extras-panel h3 { font-size: 24px; margin: 0 0 14px; color: var(--primary); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { padding: 9px 11px; border-radius: 999px; background: color-mix(in srgb, var(--cream-2) 78%, transparent); border: 1px solid var(--border); color: var(--muted); font-weight: 800; font-size: 13px; }
.pill.new::after { content: 'NEW'; margin-left: 7px; color: var(--primary); font-size: 10px; font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 260px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 30px; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; left: 14px; right: 14px; bottom: 14px; background: rgba(255,255,255,.78); color: #1f2b14; padding: 10px 12px; border-radius: 16px; font-weight: 900; backdrop-filter: blur(12px); }

.visit-section { padding-bottom: 100px; }
.visit-grid { background: var(--primary); color: var(--cream-2); border-radius: 38px; padding: 36px; box-shadow: var(--shadow); }
.visit-grid .eyebrow, .visit-grid h2, .visit-grid p { color: var(--cream-2); }
.hours-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; padding: 24px; }
.hours-card h3 { margin-top: 0; font-size: 28px; }
.hour-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-weight: 800; }
.hour-row:last-child { border-bottom: 0; }

.site-footer { padding: 58px 0 24px; background: #11190d; color: #eff7df; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 22px; color: #d6e7ad; }
.footer-brand img { width: 54px; }
.site-footer p, .site-footer a { color: #bac8a8; line-height: 1.7; }
.site-footer a { display: block; margin: 8px 0; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); }
.footer-bottom { text-align: center; color: #879779; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }

.mobile-action-bar { display: none; }
.announcement-modal[hidden] { display: none; }
.announcement-modal { position: fixed; inset: 0; z-index: 2500; display: grid; place-items: center; padding: 18px; }
.announcement-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.48); backdrop-filter: blur(8px); }
.announcement-card { position: relative; width: min(760px, 100%); background: var(--cream-2); border-radius: 34px; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; box-shadow: 0 30px 90px rgba(0,0,0,.26); border: 1px solid var(--border); }
.close-announcement { position: absolute; right: 14px; top: 14px; z-index: 3; background: rgba(255,255,255,.82); }
.announcement-image-wrap { background: color-mix(in srgb, var(--matcha) 24%, transparent); display: grid; place-items: center; padding: 26px; }
.announcement-image-wrap img { border-radius: 22px; max-height: 330px; object-fit: contain; }
.announcement-copy { padding: 44px 36px; }
.announcement-copy h2 { font-size: 40px; color: var(--primary); margin: 0 0 12px; }
.announcement-copy p { color: var(--muted); line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  .desktop-nav, .desktop-action { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .site-header { top: 10px; height: 64px; }
  .hero { padding-top: 116px; min-height: auto; }
  .hero-grid, .split-section, .gift-grid, .visit-grid, .options-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-photo-card img { height: 430px; }
  .chip-one { left: 10px; }
  .chip-two { right: 10px; bottom: 20px; }
  .extras-panel { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand span { display: none; }
  .hero { padding-bottom: 42px; }
  h1 { font-size: 52px; }
  .hero-description { font-size: 16px; }
  .hero-buttons .btn { width: 100%; }
  .section { padding: 64px 0; }
  .section-heading { text-align: left; }
  .promo-card { grid-template-rows: 170px 1fr; }
  .stamp-card { grid-template-columns: repeat(3, 1fr); }
  .stamp.free { grid-column: span 3; }
  .menu-category { padding: 16px; }
  .menu-category-header { display: block; }
  .drink-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item:first-child { grid-row: span 1; }
  .visit-grid { border-radius: 28px; padding: 24px; }
  .announcement-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .announcement-copy { padding: 28px 24px; }
  .announcement-copy h2 { font-size: 32px; }
  .mobile-action-bar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1100;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 8px;
    background: var(--card); border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow); backdrop-filter: blur(18px);
  }
  .mobile-action-bar a { display: grid; place-items: center; gap: 2px; color: var(--primary); font-size: 12px; font-weight: 900; }
  .mobile-action-bar i { font-size: 17px; }
  .site-footer { padding-bottom: 96px; }
}

/* ===== MAY TEA BLUE MOBILE + LOYALTY/GIFT UPDATE ===== */
:root {
  --primary: #174a78;
  --primary-2: #2e76ad;
  --matcha: #8fc7f2;
  --cream: #eef8ff;
  --cream-2: #ffffff;
  --ink: #14324a;
  --muted: #5b7488;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(23, 74, 120, 0.14);
  --shadow: 0 24px 70px rgba(23, 74, 120, 0.14);
}
body.dark-mode {
  --primary: #9bd7ff;
  --primary-2: #60b7f2;
  --matcha: #174a78;
  --cream: #081522;
  --cream-2: #102337;
  --ink: #f2fbff;
  --muted: #b8d2e4;
  --card: rgba(16, 35, 55, 0.84);
  --border: rgba(155, 215, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}
body.sunset-mode {
  --primary: #174a78;
  --primary-2: #2e76ad;
  --matcha: #b7dcf7;
  --cream: #f4fbff;
  --cream-2: #ffffff;
  --ink: #14324a;
  --muted: #5b7488;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(23, 74, 120, 0.14);
  --shadow: 0 24px 70px rgba(23, 74, 120, 0.14);
}
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(143, 199, 242, .40), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(189, 225, 249, .52), transparent 30%),
    linear-gradient(145deg, var(--cream), var(--cream-2));
}
.site-loader {
  background: linear-gradient(145deg, #eef8ff, #ffffff);
  align-content: center;
  gap: 18px;
}
.loader-logo {
  width: min(190px, 48vw);
  height: auto;
  object-fit: contain;
  animation: logoFloat 1.9s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(23, 74, 120, .16));
}
.site-loader p {
  margin: 0;
  color: #174a78;
}
.loader-cloud { display: none; }
@keyframes logoFloat { 50% { transform: translateY(-10px) scale(1.02); } }

.announcement-card {
  width: min(680px, 100%);
  grid-template-columns: .82fr 1.18fr;
  transform-style: preserve-3d;
  animation: modalFlipIn .72s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes modalFlipIn {
  from { opacity: 0; transform: perspective(1100px) rotateY(-16deg) translateY(18px) scale(.96); }
  to { opacity: 1; transform: perspective(1100px) rotateY(0) translateY(0) scale(1); }
}
.announcement-image-wrap { padding: 20px; background: linear-gradient(145deg, rgba(143,199,242,.32), rgba(255,255,255,.78)); }
.announcement-image-wrap img { max-height: 260px; box-shadow: 0 18px 44px rgba(23,74,120,.14); }
.announcement-copy { padding: 34px 30px; }
.announcement-copy h2 { font-size: clamp(30px, 4vw, 40px); }

.stamp-card {
  grid-template-columns: repeat(5, 52px);
  gap: 10px;
  max-width: 340px;
  margin: 22px 0;
  align-items: center;
}
.stamp {
  width: 52px;
  height: 40px;
  aspect-ratio: auto;
  border: 1px dashed rgba(23,74,120,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  color: rgba(23,74,120,.72);
  font-size: 20px;
  box-shadow: inset 0 0 0 4px rgba(143,199,242,.12);
}
.stamp-note {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(23,74,120,.08);
  color: var(--primary);
  font-weight: 900;
}
.stamp-note span { color: var(--muted); font-size: 13px; font-weight: 700; }
.split-image img { max-height: 360px; object-fit: contain; padding: 10px; }

.gift-card-preview {
  perspective: 1200px;
}
.gift-card-preview img {
  transform-style: preserve-3d;
  animation: giftCardFlip 1.05s ease both;
  transition: transform .7s ease, box-shadow .3s ease;
}
.gift-card-preview:hover img { transform: rotateY(180deg); }
.gift-card-preview.reveal.visible img,
.gift-grid.visible .gift-card-preview img { animation: giftCardFlip 1.05s ease both; }
@keyframes giftCardFlip {
  from { opacity: 0; transform: perspective(1200px) rotateY(-115deg) scale(.92); }
  to { opacity: 1; transform: perspective(1200px) rotateY(0deg) scale(1); }
}

.menu-category { padding: 26px; }
.drink-list { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.drink-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  min-height: 160px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(232,247,255,.80));
}
.drink-photo {
  width: 118px;
  height: 132px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(143,199,242,.16);
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,74,120,.10);
}
.drink-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.drink-card:hover .drink-photo img { transform: scale(1.06); }
.placeholder-drink { color: var(--primary); font-size: 30px; }
.drink-content { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.drink-top { align-items: flex-start; gap: 10px; }
.price { font-size: 13px; white-space: normal; min-width: 72px; }
.drink-card p { margin: 9px 0 12px; }
.drink-img { display: none; }

.extras-panel { grid-template-columns: 1.4fr 1fr .8fr; }
#toppingGrid.pill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.topping-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--border);
}
.topping-card img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(143,199,242,.12);
}
.topping-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(143,199,242,.18);
  color: var(--primary);
}
.topping-card strong { display: block; color: var(--ink); font-size: 13px; line-height: 1.2; }
.topping-card span { display: block; color: var(--primary); font-weight: 900; font-size: 12px; margin-top: 3px; }
.topping-card.new::after { content: 'NEW'; position: absolute; }
.topping-card { position: relative; }
.topping-card.new::after {
  top: 6px; right: 6px; font-size: 9px; font-weight: 900; color: #fff; background: var(--primary); border-radius: 999px; padding: 3px 5px;
}

@media (max-width: 940px) {
  .hero-grid { gap: 28px; }
  .hero-photo-card img { height: 360px; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1180px); }
  .site-header { width: calc(100% - 16px); height: 60px; top: 8px; padding: 8px 9px 8px 13px; }
  .brand-logo { width: 42px; height: 42px; }
  .icon-button { width: 40px; height: 40px; }
  .hero { padding: 100px 0 36px; }
  h1 { font-size: 44px; letter-spacing: -.04em; }
  .hero-copy .eyebrow { font-size: 11px; }
  .hero-photo-card { border-radius: 28px; transform: none; }
  .hero-photo-card img { height: 310px; }
  .floating-chip { font-size: 12px; padding: 10px 12px; }
  .section-heading h2, .split-copy h2, .gift-grid h2, .visit-grid h2, .options-grid h2 { font-size: 34px; }
  .announcement-modal { padding: 12px; align-items: end; }
  .announcement-card { grid-template-columns: 1fr; max-height: 86vh; border-radius: 28px 28px 20px 20px; }
  .announcement-image-wrap { padding: 14px; }
  .announcement-image-wrap img { max-height: 190px; }
  .announcement-copy { padding: 24px 20px 22px; }
  .announcement-copy h2 { font-size: 28px; }
  .announcement-copy .btn { width: 100%; }
  .stamp-card { grid-template-columns: repeat(5, 42px); gap: 8px; max-width: 250px; }
  .stamp { width: 42px; height: 33px; font-size: 17px; }
  .stamp-note { display: block; padding: 11px 12px; font-size: 14px; }
  .stamp-note span { display: block; margin-top: 4px; }
  .drink-list { grid-template-columns: 1fr; }
  .drink-card { grid-template-columns: 96px 1fr; gap: 12px; padding: 12px; border-radius: 20px; }
  .drink-photo { width: 96px; height: 116px; border-radius: 18px; }
  .drink-card h4 { font-size: 16px; }
  .price { font-size: 12px; }
  #toppingGrid.pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extras-panel { padding: 16px; }
  .topping-card { grid-template-columns: 40px 1fr; padding: 8px; }
  .topping-card img, .topping-icon { width: 40px; height: 40px; }
}
