/* ============================================================
   Molino Liquor Store — Design tokens
   ============================================================ */
:root {
  --navy: #0d1b3d;
  --navy-dark: #081029;
  --navy-soft: #16295c;
  --gold: #e7b350;
  --gold-light: #f6d98a;
  --burgundy: #7c1f2a;
  --burgundy-dark: #591620;
  --cream: #faf3e3;
  --cream-dark: #f0e4c8;
  --sunset: #e0793a;
  --ink: #1c1c22;
  --muted: #6b6f7b;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(13, 27, 61, 0.08);
  --shadow-md: 0 12px 30px rgba(13, 27, 61, 0.14);
  --shadow-lg: 0 24px 60px rgba(13, 27, 61, 0.22);
  --container: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: .25rem;
  display: block;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-light); }

.section { padding: 88px 0; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-title.center { text-align: center; }
.section-lead { max-width: 640px; color: var(--muted); }
.section-lead.center { margin-inline: auto; text-align: center; }
.section-lead.light { color: rgba(255,255,255,.8); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: .85em 1.6em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-lg { padding: 1em 2em; font-size: 1rem; }
.btn-sm { padding: .55em 1.2em; font-size: .85rem; margin-top: .5rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   Age Verification Gate
   ============================================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 999;
  background: radial-gradient(circle at top, var(--navy-soft), var(--navy-dark) 70%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  background: rgba(8, 16, 41, 0.55);
  border: 1px solid rgba(231, 179, 80, 0.35);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.age-gate__logo { margin: 0 auto 16px; border-radius: 50%; }
.age-gate__card h2 { color: var(--gold-light); font-size: 1.8rem; }
.age-gate__card p { color: rgba(255,255,255,.85); }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 20px 0 10px; }
.age-gate__fine { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }

/* ============================================================
   Header
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.85); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; gap: 16px; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact a, .topbar__address { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__contact a:hover { color: var(--gold-light); }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); font-size: .75rem;
  transition: background .18s ease;
}
.topbar__social a:hover { background: var(--gold); color: var(--navy-dark); }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); padding-block: 14px; box-shadow: var(--shadow-sm);
}
.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__brand img { border-radius: 50%; }
.navbar__brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
.navbar__brand-text em { display: block; font-style: normal; font-family: var(--font-script); font-size: 1.05rem; color: var(--burgundy); }

.navbar__menu { display: flex; align-items: center; gap: 28px; }
.nav-link { font-weight: 600; font-size: .95rem; color: var(--navy); position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .2s ease;
}
.nav-link:hover::after { width: 100%; }
.navbar__cta { margin-left: 8px; }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.navbar__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, var(--burgundy-dark) 100%);
  padding: 90px 0 130px;
  color: var(--white);
}
.hero__decor {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(231, 179, 80, .25), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(224, 121, 58, .18), transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; }
.hero__content .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-bottom: .4em; }
.hero h1 span { color: var(--gold-light); display: block; }
.hero__lead { color: rgba(255,255,255,.82); max-width: 520px; font-size: 1.05rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.hero__logo { display: flex; justify-content: center; }
.hero__logo img {
  border-radius: 50%;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; }
.hero__wave path { fill: var(--white); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip { background: var(--cream); padding: 34px 0; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: .92rem; }
.trust-item i { font-size: 1.6rem; color: var(--burgundy); }

/* ============================================================
   Categories
   ============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.category-card {
  background: var(--white); border: 1px solid #eee1c4; border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-card__icon {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy-dark);
}
.category-card h3 { font-size: 1.2rem; }
.category-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ============================================================
   Spotlight
   ============================================================ */
.spotlight {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy) 55%, var(--sunset));
  color: var(--white); padding: 90px 0; text-align: center;
}
.spotlight__headline { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); text-transform: uppercase; letter-spacing: 1px; }
.spotlight__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 20px; }
.spotlight-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 32px 20px; backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease;
}
.spotlight-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); }
.spotlight-card i { font-size: 2rem; color: var(--gold-light); margin-bottom: 12px; }
.spotlight-card h3 { color: var(--white); font-size: 1.15rem; }
.spotlight-card p { color: rgba(255,255,255,.78); font-size: .9rem; margin: 0; }
.spotlight__note { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }

.spotlight__grid--photo { text-align: left; }
.spotlight-photo-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.spotlight-photo-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); box-shadow: var(--shadow-lg); }
.spotlight-photo-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.spotlight-photo-card__body { padding: 22px; }
.spotlight-photo-card__tag {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.spotlight-photo-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.spotlight-photo-card p { color: rgba(255,255,255,.8); font-size: .88rem; margin: 0; }

/* ============================================================
   About
   ============================================================ */
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.about__art img { border-radius: 50%; box-shadow: var(--shadow-lg); margin-inline: auto; }
.about__list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.about__list i { color: var(--gold); background: var(--navy-dark); border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; }

/* ============================================================
   Location
   ============================================================ */
.location { background: var(--cream); }
.location__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; margin-top: 48px; align-items: stretch; }
.location__card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.location__card h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.location__card h3:first-child { margin-top: 0; }
.location__card h3 i { color: var(--burgundy); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table th, .hours-table td { text-align: left; padding: 6px 0; font-size: .92rem; border-bottom: 1px dashed #e6dcc0; }
.hours-table th { color: var(--navy); font-weight: 700; }
.hours-table td { color: var(--muted); text-align: right; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 340px; }
.location__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============================================================
   FAQ / Accordion
   ============================================================ */
.accordion { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid #ece2c9; border-radius: var(--radius); overflow: hidden; background: var(--white); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 22px; font-family: var(--font-body); font-weight: 700; font-size: .98rem; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.accordion-trigger i { transition: transform .2s ease; color: var(--burgundy); }
.accordion-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; }
.accordion-panel p { color: var(--muted); font-size: .92rem; padding-bottom: 18px; margin: 0; }
.accordion-item.open .accordion-panel { max-height: 200px; }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; }
.contact__list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.contact__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.contact__list i { color: var(--burgundy); width: 20px; }
.contact__form { background: var(--cream); padding: 32px; border-radius: var(--radius-lg); }
.contact__form-note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; text-align: center; }

.form-row { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-row label { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.form-row label .optional { color: var(--muted); font-weight: 400; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #ddd0ac;
  font-family: var(--font-body); font-size: .95rem; background: var(--white); color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease;
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(28,28,34,.35); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.form-row input.has-error, .form-row textarea.has-error { border-color: #c0392b; }
.form-error { color: #c0392b; font-size: .8rem; margin-top: 5px; min-height: 1em; }

.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.form-captcha { max-width: 100%; overflow: hidden; border-radius: 10px; }
.form-captcha iframe { max-width: 100%; }

.contact__form .btn { width: 100%; justify-content: center; }
.contact__form .btn.is-loading { opacity: .7; cursor: not-allowed; }

.form-status { margin-top: 4px; font-size: .9rem; min-height: 1.3em; text-align: center; }
.form-status-success { color: #1f8a4c; }
.form-status-error { color: #c0392b; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand img { border-radius: 50%; margin-bottom: 12px; }
.footer__brand p { margin: 0 0 6px; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.footer__tagline { color: rgba(255,255,255,.6) !important; font-family: var(--font-body) !important; font-size: .88rem !important; font-weight: 400 !important; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; transition: background .18s ease;
}
.footer__social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer__col h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 10px; }
.footer__col a:hover { color: var(--gold-light); }
.footer__col i { width: 16px; margin-right: 6px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.55);
}

/* ============================================================
   Chatbot widget
   ============================================================ */
.chatbot { position: fixed; right: 22px; bottom: 22px; z-index: 200; font-family: var(--font-body); }

.chat-turnstile-mount { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Proactive discount teaser bubble */
.chat-teaser {
  position: absolute; bottom: 78px; right: 4px;
  width: 260px; background: var(--white); color: var(--ink);
  border: 1px solid #eee1c4; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px 18px 16px;
  animation: teaserpop .3s ease;
}
.chat-teaser[hidden] { display: none; }
@keyframes teaserpop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.chat-teaser__close {
  position: absolute; top: 8px; right: 10px; border: none; background: none; cursor: pointer;
  font-size: 1.1rem; line-height: 1; color: var(--muted);
}
.chat-teaser__close:hover { color: var(--burgundy); }
.chat-teaser p { margin: 0 0 12px; font-size: .88rem; line-height: 1.5; color: var(--navy); padding-right: 14px; }
.chat-teaser p strong { color: var(--burgundy); }
.chat-teaser__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-teaser__actions .btn { flex: 1 1 auto; min-width: 0; padding: .6em .5em; font-size: .78rem; white-space: nowrap; }
.chat-teaser__tail {
  position: absolute; bottom: -8px; right: 26px;
  width: 16px; height: 16px; background: var(--white);
  border-right: 1px solid #eee1c4; border-bottom: 1px solid #eee1c4;
  transform: rotate(45deg);
}
.chatbot__toggle {
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--navy-dark); font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
  position: relative;
}
.chatbot__toggle:hover { transform: scale(1.06); }
.chatbot__toggle .fa-xmark { display: none; }
.chatbot__toggle[aria-expanded="true"] .fa-comments { display: none; }
.chatbot__toggle[aria-expanded="true"] .fa-xmark { display: block; }

.chatbot__panel {
  position: absolute; bottom: 78px; right: 0;
  width: 340px; max-width: calc(100vw - 40px);
  height: 460px; max-height: 70vh;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid #eee1c4;
  animation: chatpop .22s ease;
}
@keyframes chatpop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.chatbot__panel[hidden] { display: none; }

.chatbot__header {
  background: var(--navy-dark); color: var(--white); padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chatbot__header img { border-radius: 50%; }
.chatbot__header strong { display: block; font-size: .95rem; }
.chatbot__header span { display: block; font-size: .72rem; color: rgba(255,255,255,.6); }

.chatbot__messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: #fbf7ec; }
.msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.45; }
.msg-bot { align-self: flex-start; background: var(--white); border: 1px solid #eee1c4; border-bottom-left-radius: 4px; color: var(--ink); }
.msg-user { align-self: flex-end; background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.msg a { color: var(--burgundy); font-weight: 700; }
.msg-bot a { color: var(--burgundy); }
.msg-user a { color: var(--gold-light); }

.chatbot__quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; background: #fbf7ec; }
.chip {
  border: 1px solid #e6d9b3; background: var(--white); color: var(--navy);
  font-size: .76rem; padding: 6px 12px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.chip:hover { background: var(--gold); color: var(--navy-dark); }

.chatbot__input { display: flex; border-top: 1px solid #eee1c4; }
.chatbot__input input {
  flex: 1; border: none; padding: 14px 16px; font-size: .9rem; font-family: var(--font-body);
}
.chatbot__input input:focus { outline: none; }
.chatbot__input button {
  border: none; background: var(--gold); color: var(--navy-dark); width: 52px; cursor: pointer;
  font-size: 1rem; transition: background .15s ease;
}
.chatbot__input button:hover { background: var(--gold-light); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__logo img { width: 260px; height: 260px; }
  .about__grid, .location__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__art { order: -1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__address { display: none; }
  .navbar__menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 80vw);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 90px 28px 28px; gap: 22px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s ease; z-index: 90;
  }
  .navbar__menu.open { transform: translateX(0); }
  .navbar__toggle { display: flex; }
  .navbar__cta { margin-left: 0; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .chatbot__panel { width: calc(100vw - 40px); }
}
