/* =========================================================
   Catrinas Cocktails & Grill — Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* Brand palette — warm, restrained, one accent color */
  --black:        #121011;
  --black-soft:   #1a1717;
  --black-card:   #211d1d;
  --cream:        #f6f0e6;
  --cream-dim:    #c9beac;

  --gold:         #c68a3d;
  --gold-light:   #e0ab5f;
  --gold-dark:    #9c6c2c;
  --rust:         #96392c;
  --rust-dark:    #712c22;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-card: 0 14px 34px rgba(0,0,0,.35);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body{
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: var(--header-h, 92px);
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .1px; }
p{ margin: 0 0 1em; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section{ position: relative; }

/* ---------- utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}
.eyebrow::before{ content:""; width:22px; height:1px; background: var(--gold); opacity:.8; }
.text-center{ text-align:center; }
.section-head{ max-width: 680px; margin: 0 auto 3rem; text-align:center; }
.section-head h2{ font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 600; }
.section-head p{ color: var(--cream-dim); font-size: 1.05rem; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .87rem; letter-spacing: .2px;
  padding: .9em 1.8em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--gold); color: var(--black); box-shadow: 0 8px 22px rgba(198,138,61,.28); }
.btn-primary:hover{ background: var(--gold-light); box-shadow: 0 10px 26px rgba(198,138,61,.35); }
.btn-outline{ background: transparent; color: var(--cream); border-color: rgba(246,240,230,.4); }
.btn-outline:hover{ background: rgba(246,240,230,.08); border-color: var(--cream); }
.btn-rust{ background: var(--rust); color: var(--cream); box-shadow: 0 8px 22px rgba(150,57,44,.3); }
.btn-rust:hover{ background: var(--rust-dark); }
.btn-block{ width: 100%; }

.divider-rule{ height: 1px; background: rgba(246,240,230,.1); }

/* ---------- header / nav ----------
   fixed (not sticky) so it never scrolls away, on any page, no matter
   how tall the content below it is — body gets a matching top padding
   (--header-h, measured live in js/main.js) so nothing sits underneath it */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(18,16,17,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(246,240,230,.08);
}
.topbar{
  background: var(--black-soft);
  font-size: .78rem;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(246,240,230,.06);
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 8px; padding-bottom: 8px;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-info{ display:flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-info a{ display:inline-flex; align-items:center; gap:.4em; }
.topbar-info a:hover{ color: var(--gold-light); }
.topbar-social{ display:flex; gap: .9rem; }
.topbar-social a{ color: var(--cream-dim); font-size: .95rem; }
.topbar-social a:hover{ color: var(--gold-light); }

@media (max-width: 780px){
  .topbar{ display:none; }
}

.navbar{ padding: 12px 0; }
.navbar .container{ display:flex; align-items:center; justify-content:space-between; gap: 1.2rem; }
.brand{ display:flex; align-items:center; gap:.6em; }
.brand img{ height: 52px; width:auto; }

.nav-links{ display:flex; align-items:center; gap: 1.9rem; }
.nav-links a{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem; letter-spacing: .8px; text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0%;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.lang-toggle{
  display:flex; align-items:center;
  border: 1px solid rgba(246,240,230,.25);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button{
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .5px;
  padding: .4em .8em; border-radius: 999px; border: none; cursor: pointer;
  background: transparent; color: var(--cream-dim);
  transition: background .18s ease, color .18s ease;
}
.lang-toggle button.active{ background: var(--gold); color: var(--black); }
.lang-toggle button:not(.active):hover{ color: var(--cream); }

.nav-cta{ display:flex; align-items:center; gap: 1rem; }
.nav-toggle{
  display:none;
  flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding: 8px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

.nav-backdrop{
  position: fixed; inset: 0; z-index: 450;
  background: rgba(0,0,0,.6);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav-backdrop.open{ opacity: 1; pointer-events: auto; }

@media (max-width: 940px){
  .nav-links{
    position: fixed; top: 0; right: 0; bottom: 0; height: 100vh; width: min(320px, 85vw);
    background: var(--black-soft);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
    z-index: 600;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links .lang-toggle{ margin-top: .5rem; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex; align-items:center;
  background: var(--black);
  overflow: hidden;
  padding-top: 40px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: url('../assets/images/hero-poster.jpg');
  background-size: cover; background-position: center;
  opacity: .3;
  filter: saturate(.9) contrast(1.05);
}
/* once the background video is confirmed active (js/main.js adds this
   class), the ::before fallback image is turned off — otherwise the two
   different shots showed through each other at once, a ghosted/doubled
   look. Matched to the same condition that hides the video below
   (reduced-motion only now that the video plays on mobile too), so only
   reduced-motion users (where the video itself is off) keep showing the
   single static image instead of nothing. */
@media (prefers-reduced-motion: no-preference){
  .hero.has-video::before{ opacity: 0; }
}
/* optional background video: sits between the ::before fallback image and
   the ::after gradient. If no video file has been added yet (or it fails
   to load), js/main.js hides it and the ::before image shows through
   underneath, so there is no broken/blank state either way. Plays on
   mobile too now (cropped via object-fit: cover), same as desktop. */
.hero-video{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(.9) contrast(1.05);
}
@media (prefers-reduced-motion: reduce){
  .hero-video{ display:none; }
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(18,16,17,.5) 0%, rgba(18,16,17,.88) 72%, var(--black) 100%);
}
.hero-content{
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
}
.hero-logo{ width: min(200px, 50vw); margin: 0 auto 1.6rem; }
.hero-content .eyebrow{ justify-content:center; }
.hero-content h1{
  font-size: clamp(2rem, 5.6vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  text-shadow: 0 6px 30px rgba(0,0,0,.6);
}
.hero-content .tagline{
  font-size: 1.1rem; color: var(--cream-dim); max-width: 580px; margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-actions{ display:flex; gap: 1rem; justify-content:center; flex-wrap:wrap; }

/* ---------- about ---------- */
/* land in-page anchor jumps (#about, #gallery, #location) below the
   fixed header instead of underneath it */
#about, #gallery, #location{ scroll-margin-top: var(--header-h, 92px); }

.about{ padding: 6rem 0 4rem; }
.about-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items:center; }
.about-photos{ position:relative; }
.about-photos .photo-main{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); }
.about-photos .photo-accent{
  position:absolute; width: 44%; border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-card); border: 6px solid var(--black);
  bottom: -8%; right: -8%;
}
.about-text h2{ font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom:.7em; }
.about-text p{ color: var(--cream-dim); font-size: 1.02rem; }
.about-text p + p{ margin-top: 1.2em; }

@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-photos{ margin-bottom: 2.5rem; }
  .about-photos .photo-accent{ right: 4%; bottom: -10%; }
}

/* ---------- menu teaser cards ---------- */
.menu-teaser{ padding: 5rem 0; background: var(--black-soft); }
.teaser-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.teaser-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.teaser-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.teaser-card:hover img{ transform: scale(1.06); }
.teaser-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(18,16,17,0) 30%, rgba(18,16,17,.95) 100%);
}
.teaser-card .label{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding: 1.1rem 1rem;
  text-align:center;
}
.teaser-card .label span{
  display:block; font-size:.68rem; letter-spacing:1.5px; text-transform:uppercase; color: var(--gold-light); margin-bottom:.35em;
}
.teaser-card .label strong{ font-family: var(--font-display); font-weight:600; font-size:1.05rem; }

@media (max-width: 980px){ .teaser-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 620px){ .teaser-grid{ grid-template-columns: repeat(2,1fr);} }

/* ---------- gallery ---------- */
.gallery{ padding: 6rem 0; }
.gallery-grid{
  columns: 3 260px; column-gap: 1.2rem;
}
.gallery-grid figure{
  margin: 0 0 1.2rem; break-inside: avoid;
  border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-card);
  position: relative;
}
.gallery-grid img{ width:100%; display:block; transition: transform .4s ease; }
.gallery-grid figure:hover img{ transform: scale(1.05); }
.gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: .8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  font-size: .85rem; font-weight:600;
  opacity:0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-grid figure:hover figcaption{ opacity:1; transform: translateY(0); }

/* ---------- info / location ---------- */
.info{ padding: 6rem 0; background: var(--black-soft); }
.info-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.info-card{
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(246,240,230,.06);
}
.info-card h3{ font-size: 1.25rem; font-weight: 600; color: var(--cream); display:flex; align-items:center; gap:.5em; }
.info-card h3 i{ color: var(--gold); font-size: .9em; }
.hours-table{ width:100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td{ padding: .6rem 0; border-bottom: 1px dashed rgba(246,240,230,.12); color: var(--cream-dim); font-size:.95rem; }
.hours-table td:last-child{ text-align:right; color: var(--cream); font-weight:600; }
.hours-table tr:last-child td{ border-bottom:none; }
.contact-list{ display:grid; gap: 1rem; margin-top: .5rem; }
.contact-list a, .contact-list div{ display:flex; gap:.9em; align-items:flex-start; color: var(--cream-dim); font-size:.95rem; }
.contact-list a:hover{ color: var(--gold-light); }
.contact-list i{ color: var(--gold); margin-top: 3px; }
.map-embed{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(246,240,230,.06); }
.map-embed iframe{ width:100%; height: 100%; min-height: 340px; border:0; filter: grayscale(.4) contrast(1.05); }

@media (max-width: 900px){ .info-grid{ grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner{
  padding: 4.5rem 0;
  text-align:center;
  background: var(--rust);
  position: relative;
  overflow:hidden;
}
.cta-banner h2{ color: var(--cream); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 600; }
.cta-banner p{ color: rgba(246,240,230,.85); max-width: 560px; margin: 0 auto 1.6rem; }
.cta-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-banner .btn-outline{ border-color: rgba(246,240,230,.5); }
.cta-banner .btn-outline:hover{ background: rgba(246,240,230,.12); border-color: var(--cream); }

/* ---------- footer ---------- */
.site-footer{ background: var(--black); padding-top: 3.5rem; }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,240,230,.08);
}
.footer-brand img{ height: 64px; margin-bottom: 1rem; }
.footer-brand p{ color: var(--cream-dim); font-size: .92rem; max-width: 280px; }
.footer-social{ display:flex; gap:.8rem; margin-top: 1rem; }
.footer-social a{
  width: 36px; height: 36px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--black-card); color: var(--cream);
  border: 1px solid rgba(246,240,230,.08);
  font-size: .85rem;
}
.footer-social a:hover{ background: var(--gold); color: var(--black); }
.footer-col h4{ font-family: var(--font-body); font-weight:700; font-size: .78rem; letter-spacing:1.2px; text-transform:uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul{ display:grid; gap: .7rem; }
.footer-col a{ color: var(--cream-dim); font-size: .92rem; }
.footer-col a:hover{ color: var(--cream); }
.footer-bottom{
  padding: 1.4rem 0 2rem;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: .8rem;
  font-size: .8rem; color: var(--cream-dim);
}
.footer-bottom a{ color: var(--cream-dim); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover{ color: var(--gold-light); }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */
.legal-hero{
  padding: 6.5rem 0 3rem;
  text-align:center;
  background: var(--black);
}
.legal-hero .eyebrow{ justify-content:center; }
.legal-hero h1{ font-size: clamp(2rem, 4.5vw, 2.8rem); }
.legal-hero p{ color: var(--cream-dim); font-size: .92rem; }
.legal-page{ padding-bottom: 2rem; }
.legal-content{ max-width: 720px; margin: 0 auto; padding: 0 0 5rem; }
.legal-section{ margin-bottom: 2.2rem; }
.legal-section:last-child{ margin-bottom: 0; }
.legal-content h2{ font-size: 1.3rem; color: var(--cream); margin-bottom: .6em; }
.legal-content p{ color: var(--cream-dim); font-size: .98rem; }
.legal-content p + p{ margin-top: 1em; }
.legal-content .contact-list{ margin-top: .8rem; }
.legal-content .contact-list a{
  display:flex; align-items:center; gap:.6em;
  color: var(--cream-dim); font-size: .95rem; margin-bottom: .5em;
}
.legal-content .contact-list a i{ color: var(--gold); }
.legal-content .contact-list a:hover{ color: var(--cream); }

/* =========================================================
   MENU PAGE
   ========================================================= */
.menu-hero{
  padding: 6.5rem 0 4.5rem;
  text-align:center;
  background: var(--black);
}
.menu-hero .eyebrow{ justify-content:center; }
.menu-hero h1{ font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 600; }
.menu-hero p{ color: var(--cream-dim); max-width: 600px; margin: .6rem auto 0; }

/* fixed (not scroll-dependent) group + category navigation, per explicit
   request: these must never scroll out of view while browsing a long menu */
.menu-group-nav{
  position: fixed; left: 0; right: 0; top: var(--header-h, 64px); z-index: 400;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(246,240,230,.08);
  opacity: 1; transition: opacity .15s ease;
}
.menu-group-nav .container{ display:flex; gap: .55rem; overflow-x:auto; padding-top: .85rem; padding-bottom: .85rem; scrollbar-width: thin; }
.group-btn{
  flex: 0 0 auto;
  font-family: var(--font-body); font-weight:600; font-size: .8rem; letter-spacing: .3px;
  padding: .65em 1.3em; border-radius: 999px;
  background: transparent; color: var(--cream-dim);
  border: 1px solid rgba(246,240,230,.16);
  cursor:pointer; white-space: nowrap;
  transition: all .2s ease;
}
.group-btn:hover{ border-color: var(--gold); color: var(--cream); }
.group-btn.active{ background: var(--gold); color: var(--black); border-color: transparent; font-weight:700; }

.menu-page{ padding: 2.2rem 0 2rem; }
.menu-layout{ display:grid; grid-template-columns: 220px 1fr; gap: 2.6rem; align-items:start; }
.cat-nav-slot{ grid-column: 1; height: 0; }

.cat-nav{
  position: fixed;
  top: var(--catnav-top, 150px);
  left: var(--catnav-left, 24px);
  width: var(--catnav-width, 220px);
  display:flex; flex-direction:column; gap: .2rem;
  max-height: calc(100vh - var(--catnav-top, 150px) - 24px);
  overflow-y: auto; padding-right: .5rem;
  z-index: 350;
  opacity: 1; transition: opacity .15s ease;
}
/* once the menu content has scrolled past, stop floating the fixed
   group-nav bar / category sidebar over whatever comes after it
   (CTA banner, footer) */
.menu-nav-hidden{
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
.cat-nav a{
  padding: .5em .8em; border-radius: var(--radius-sm);
  font-size: .85rem; color: var(--cream-dim);
  border-left: 2px solid transparent;
}
.cat-nav a:hover{ color: var(--cream); }
.cat-nav a.active{ color: var(--gold-light); border-left-color: var(--gold); background: rgba(198,138,61,.08); }

.menu-content{ min-width: 0; }
.menu-group{ display:none; }
.menu-group.active{ display:block; }

.menu-note{
  background: rgba(198,138,61,.08);
  border: 1px solid rgba(198,138,61,.28);
  color: var(--gold-light);
  padding: .9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: .87rem;
  margin-bottom: 2rem;
}

.menu-category{ margin-bottom: 3.2rem; }
.menu-category-head{ display:flex; align-items:baseline; gap: .8rem; margin-bottom: 1.4rem; }
.menu-category-head h2{ font-size: 1.4rem; font-weight: 600; color: var(--cream); white-space:nowrap; }
.menu-category-head .rule{ flex:1; height:1px; background: rgba(246,240,230,.14); }
.menu-category-sub{ color: var(--cream-dim); font-size:.85rem; margin: -1rem 0 1.4rem; }

.menu-items{ display:grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2.4rem; }
.menu-items.single{ grid-template-columns: 1fr; }
.menu-item{ padding-bottom: .9rem; border-bottom: 1px dashed rgba(246,240,230,.1); }
.menu-item-top{ display:flex; align-items:baseline; gap: .5rem; }
.menu-item-top h4{ font-family: var(--font-body); font-weight:600; font-size: .98rem; color: var(--cream); margin:0; }
.menu-item-top .leader{ flex:1; border-bottom: 1px dotted rgba(246,240,230,.2); transform: translateY(-4px); }
.menu-item-top .price{ font-family: var(--font-display); font-weight:600; color: var(--gold-light); font-size: .95rem; white-space:nowrap; }
.menu-item p{ color: var(--cream-dim); font-size: .87rem; margin: .3em 0 0; }

@media (max-width: 900px){
  .menu-layout{ grid-template-columns: 1fr; }
  .cat-nav-slot{ display:none; }
  .cat-nav{
    position: fixed; left: 0; right: 0; width: auto;
    top: var(--fixed-stack-h, 108px);
    flex-direction:row; overflow-x:auto; max-height:none;
    background: var(--black); padding: .65rem .9rem;
    border-bottom: 1px solid rgba(246,240,230,.08);
    gap: .5rem; z-index: 380;
  }
  .cat-nav a{
    border-left:none;
    white-space: nowrap; flex: 0 0 auto;
    background: var(--black-card);
    border: 1px solid rgba(246,240,230,.1);
    border-radius: 999px;
    font-size: .8rem;
  }
  .cat-nav a.active{ background: var(--gold); color: var(--black); border-color: transparent; font-weight:700; }
}
@media (max-width: 620px){
  .menu-items{ grid-template-columns: 1fr; }
}

/* back to top */
.to-top{
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: 46px; height:46px; border-radius:50%;
  background: var(--gold); color: var(--black);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  border:none; cursor:pointer;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: all .25s ease;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:none; }

::selection{ background: var(--gold); color: var(--black); }

/* scrollbar (webkit) */
::-webkit-scrollbar{ width: 10px; height: 8px; }
::-webkit-scrollbar-track{ background: var(--black); }
::-webkit-scrollbar-thumb{ background: var(--black-card); border-radius: 10px; }

/* =========================================================
   SIGN-UP POP-UP (appears once the "next celebration" CTA
   banner scrolls into view — see js/main.js)
   ========================================================= */
.signup-overlay{
  position: fixed; inset: 0; z-index: 900;
  background: rgba(18,16,17,.78);
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.signup-overlay.open{ opacity: 1; pointer-events: auto; }
.signup-overlay[hidden]{ display:flex; } /* keep it flex even while [hidden] handles removal via JS */
.signup-modal{
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(246,240,230,.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 440px; width: 100%;
  padding: 2.4rem 2.2rem;
  transform: translateY(14px) scale(.98);
  transition: transform .25s ease;
  max-height: 90vh; overflow-y: auto;
}
.signup-overlay.open .signup-modal{ transform: translateY(0) scale(1); }
.signup-modal .eyebrow{ justify-content: flex-start; }
.signup-modal h3{ font-size: 1.5rem; margin-bottom: .4em; }
.signup-modal > p{ color: var(--cream-dim); font-size: .95rem; margin-bottom: 1.4rem; }
.signup-close{
  position:absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(246,240,230,.08); color: var(--cream-dim);
  border:none; cursor:pointer; font-size: 1.3rem; line-height:1;
  transition: background .15s ease, color .15s ease;
}
.signup-close:hover{ background: rgba(246,240,230,.16); color: var(--cream); }
#signup-form{ display:grid; gap: .9rem; }
#signup-form input[type="text"],
#signup-form input[type="email"],
#signup-form input[type="tel"]{
  width:100%;
  font-family: var(--font-body); font-size: .92rem;
  color: var(--cream);
  background: var(--black-soft);
  border: 1px solid rgba(246,240,230,.16);
  border-radius: var(--radius-sm);
  padding: .8em 1em;
}
#signup-form input::placeholder{ color: var(--cream-dim); opacity:.7; }
#signup-form input:focus{ outline: none; border-color: var(--gold); }
.signup-check{
  display:flex; align-items:flex-start; gap: .6em;
  font-size: .8rem; color: var(--cream-dim); line-height: 1.5;
  cursor: pointer;
}
.signup-check input{ margin-top: .2em; flex: 0 0 auto; accent-color: var(--gold); }
.signup-privacy-link{ color: var(--gold-light); text-decoration: underline; }
.signup-thanks{ text-align:center; padding: 1rem 0; }
.signup-thanks p{ color: var(--cream); font-size: 1.05rem; }
@media (max-width: 480px){
  .signup-modal{ padding: 2rem 1.4rem; }
}
