@font-face { font-family: 'Million Smiles'; src: url('fonts/MillionSmiles.ttf') format('truetype'); font-display: swap; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --teal: #1CAF8A; --teal-d: #138A6A; --teal-text: #08634C; --amber: #F2A800; --tomato: #D4400E; --mint: #82C8A4; --peach: #F5A05C; --purple: #4A1A6B; --cream: #FFF8EE; --sand: #F5E6CC; --tan: #D4B896; --brown: #6B4226; --bark: #3D2010; --muted: #6E5035; }
html { scroll-behavior: smooth; }
body { background: var(--cream); font-family: 'Nunito Sans', sans-serif; color: var(--bark); }

/* ── NAV ── */nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,248,238,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--sand); padding: 0 5vw; height: 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav-logo { height: 58px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; color: var(--brown); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.lang-toggle { background: transparent; border: 1.5px solid var(--sand); border-radius: 999px; padding: 6px 14px; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.08em; color: var(--brown); display: inline-flex; align-items: center; gap: 6px; transition: border-color 0.18s, color 0.18s; }
.lang-toggle:hover { border-color: var(--teal); color: var(--teal); }

/* ── BURGER ── */.nav-burger { display: none; background: transparent; border: none; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; }
.nav-burger span { display: block; width: 26px; height: 2.5px; background: var(--brown); border-radius: 2px; position: relative; transition: transform 0.25s, opacity 0.2s, top 0.25s; }
.nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; width: 26px; height: 2.5px; background: var(--brown); border-radius: 2px; transition: transform 0.25s, top 0.25s; }
.nav-burger span::before { top: -8px; }
.nav-burger span::after { top: 8px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { position: fixed; top: 88px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--sand); box-shadow: 0 12px 30px rgba(61,32,16,0.10); z-index: 99; transform: translateY(-110%); transition: transform 0.32s cubic-bezier(.4,.0,.2,1); padding: 12px 5vw 28px; display: none; }
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 22px; color: var(--brown); text-decoration: none; padding: 16px 4px; border-bottom: 1px solid var(--sand); transition: color 0.18s; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--teal); }
.mobile-menu .mobile-actions { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.mobile-menu .nav-cta { width: auto; flex: 1; text-align: center; }
.lang-toggle .lang-sep { color: var(--muted); font-weight: 600; }
body.is-en .lang-toggle .lang-en { color: var(--teal); }
body.is-es .lang-toggle .lang-es { color: var(--teal); }
body.is-en .lang-toggle .lang-es, body.is-es .lang-toggle .lang-en { opacity: 0.55; }
.nav-cta { background: var(--teal); color: white; border: none; border-radius: 999px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; padding: 10px 26px; cursor: pointer; box-shadow: 0 3px 14px rgba(28,175,138,0.30); transition: background 0.2s, transform 0.15s; text-decoration: none; }
.nav-cta:hover { background: var(--teal-d); transform: scale(1.03); }

/* ── HERO ── */.hero { min-height: 100vh; background: var(--purple); display: grid; grid-template-columns: 1fr 1fr; padding-top: 88px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(28,175,138,0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(242,168,0,0.16) 0%, transparent 50%); }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 8vw; position: relative; z-index: 1; }
.hero-eyebrow { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); margin-bottom: 20px; }
.hero-title { font-family: 'Million Smiles', cursive; font-size: clamp(64px, 7vw, 108px); line-height: 1.05; color: var(--peach); letter-spacing: 0.15em; margin-bottom: 28px; }
.hero-sub { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: clamp(17px, 1.8vw, 22px); color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 440px; margin-bottom: 44px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 17px; border-radius: 999px; padding: 16px 42px; cursor: pointer; border: none; text-decoration: none; display: inline-block; transition: transform 0.18s, box-shadow 0.18s; }
.btn-hero:hover { transform: scale(1.04); }
.btn-primary-hero { background: var(--teal); color: white; box-shadow: 0 5px 22px rgba(28,175,138,0.40); }
.btn-primary-hero:hover { background: var(--teal-d); }
.btn-ghost-hero { background: rgba(255,255,255,0.10); color: white; border: 2px solid rgba(255,255,255,0.25); }
.btn-ghost-hero:hover { background: rgba(255,255,255,0.18); }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(74,26,107,0.45) 0%, transparent 40%); }

/* ── CONCEPT ── */.concept { background: var(--cream); padding: 96px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
.concept-label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.concept-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.1; color: var(--bark); margin-bottom: 24px; text-wrap: pretty; }
.concept-title em { font-style: normal; color: var(--teal); font-family: 'Million Smiles', cursive; letter-spacing: 0.16em; }
.concept-body { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: var(--brown); margin-bottom: 36px; text-wrap: pretty; }
.concept-pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { flex-shrink: 0; margin-top: 3px; }
.pillar-text { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 16px; color: var(--bark); }
.pillar-sub { font-size: 14px; color: var(--muted); font-family: 'Nunito Sans', sans-serif; font-weight: 400; }
/* Concept image mosaic */.concept-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-radius: 32px; overflow: hidden; }
.mosaic-main { grid-column: 1 / -1; border-radius: 24px; overflow: hidden; }
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.mosaic-tile { border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/5; }
.mosaic-tile-a { background: linear-gradient(135deg, #1CAF8A, #82C8A4); }
.mosaic-tile-b { background: linear-gradient(135deg, #F2A800, #F5A05C); }

/* ── MENU SECTION ── */.menu-section { background: var(--sand); padding: 96px 5vw; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(28px, 3vw, 44px); color: var(--bark); line-height: 1.15; text-wrap: pretty; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.menu-card { background: white; border-radius: 28px; overflow: hidden; box-shadow: 0 4px 20px rgba(61,32,16,0.09); transition: transform 0.22s, box-shadow 0.22s; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(61,32,16,0.14); }
.menu-card-img { height: 260px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.menu-card-body { padding: 22px 24px 26px; }
.menu-card-badge { display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.05em; border-radius: 999px; padding: 4px 12px; margin-bottom: 10px; }
.badge-teal { background: rgba(28,175,138,0.13); color: #0E7A5E; }
.badge-amber { background: rgba(242,168,0,0.18); color: #7A5500; }
.badge-tomato { background: rgba(212,64,14,0.12); color: #9A2A06; }
.menu-card-name { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 20px; color: var(--bark); margin-bottom: 8px; }
.menu-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: var(--teal); }
.menu-btn { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; background: var(--teal); color: white; border: none; border-radius: 999px; padding: 9px 20px; cursor: pointer; transition: background 0.18s, transform 0.15s; }
.menu-btn:hover { background: var(--teal-d); transform: scale(1.04); }
.menu-grid-4 { grid-template-columns: repeat(4, 1fr); }
.menu-card { cursor: pointer; }
.menu-lightbox { position: fixed; inset: 0; background: rgba(20,12,30,0.88); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 24px; backdrop-filter: blur(6px); }
.menu-lightbox.is-open { display: flex; }
.menu-lightbox img { max-width: 100%; max-height: 100%; border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); object-fit: contain; display: block; }
.menu-lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25); color: white; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.18s; }
.menu-lightbox-close:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 600px) { .menu-lightbox {  padding: 0; }
 .menu-lightbox img {  border-radius: 0;  max-width: 100vw;  max-height: 100vh; }
}
.menu-note { text-align: center; margin-top: 36px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; color: var(--muted); }
.menu-note a { color: var(--teal); text-decoration: none; font-weight: 800; }

/* ── HOW IT WORKS ── */.how { background: var(--teal); padding: 88px 5vw; text-align: center; }
.how .section-label { color: rgba(255,255,255,0.6); }
.how .section-title { color: white; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 56px auto 0; }
.step { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.18); border: 3px solid rgba(255,255,255,0.35); font-family: 'Million Smiles', cursive; font-size: 36px; color: white; display: flex; align-items: center; justify-content: center; }
.step-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: white; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 200px; }

/* ── LOCATION ── */.location { padding: 96px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
.location-info { }
.location-name { font-family: 'Million Smiles', cursive; font-size: 68px; line-height: 0.9; color: var(--peach); -webkit-text-stroke: 2px var(--purple); margin-bottom: 28px; }
.location-address { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 20px; color: var(--bark); margin-bottom: 6px; }
.location-sub { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--sand); }
.hours-day { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; color: var(--brown); }
.hours-time { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: var(--teal); }
.hours-closed { color: var(--muted); font-weight: 600; }
.location-map { border-radius: 32px; overflow: hidden; height: 420px; background: var(--sand); position: relative; box-shadow: 0 8px 40px rgba(61,32,16,0.14); }
.map-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #82C8A4 0%, #1CAF8A 40%, #4ABFA3 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.map-pin { width: 56px; height: 56px; background: var(--purple); border-radius: 50% 50% 50% 4px; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(74,26,107,0.4); }
.map-pin-inner { width: 20px; height: 20px; background: white; border-radius: 50%; transform: rotate(45deg); }
.map-label { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 20px; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.map-sublabel { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; }

/* ── FOOTER ── */footer { background: var(--purple); padding: 100px 5vw 72px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.12); text-align: center; }
.footer-logo { height: 64px; filter: none; display: block; margin: 0 auto; }
.footer-tagline { margin-top: 14px; color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 600; line-height: 1.6; }
.footer-heading { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; margin-top: 20px; }
.footer-links { display: flex; flex-direction: row; gap: 28px; align-items: center; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.65); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; transition: color 0.18s; white-space: nowrap; }
.footer-links a:hover { color: var(--mint); }
.footer-social { display: flex; gap: 14px; justify-content: center; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.10); display: inline-flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: background 0.18s; }
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── SCROLL OFFSET FOR FIXED NAV ── */
#concept, #menu, #location, #reviews { scroll-margin-top: 88px; }

/* ── NAV LAYOUT + UNDERLINE ── */
.nav-links { justify-self: center; }
.nav-right { display: flex; align-items: center; gap: 12px; justify-self: end; }
.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 2px; background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── RESPONSIVE: 900px ── */
@media (max-width: 900px) {
  /* Nav */
  nav { height: 72px; display: flex; justify-content: space-between; align-items: center; }
  nav .nav-logo { height: 46px; width: auto; max-width: 55vw; }
  .nav-right { min-width: 0; flex-shrink: 0; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu { display: block; top: 72px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; overflow: visible; padding-top: 72px; }
  .hero-image { height: 55vw; min-height: 280px; }
  .hero-image::after { background: linear-gradient(to top, rgba(74,26,107,0.6) 0%, transparent 60%); }
  .hero-text { padding: 60px 6vw 48px; text-align: center; }
  .hero-title { text-align: left; width: fit-content; margin: 0 auto; }
  .hero-actions { justify-content: center; }

  /* Sections */
  #concept, #menu, #location, #reviews { scroll-margin-top: 72px; }
  .concept { grid-template-columns: 1fr; gap: 40px; padding: 64px 6vw; }
  .menu-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .menu-grid-4 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { text-align: center; align-items: center; }
  .step-title { min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
  .step-desc { max-width: 100%; }
  .how .section-title, .how .section-label { text-align: center; }
  .location { grid-template-columns: 1fr; gap: 40px; padding: 64px 6vw; }
}

/* ── RESPONSIVE: 480px ── */
@media (max-width: 480px) {
  .menu-grid, .menu-grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  footer { padding: 60px 6vw 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-links a { white-space: normal; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; }
}

/* ── COMING SOON ── */
.coming { padding: 60px 5vw; background: var(--teal); color: var(--cream); display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.coming .badge { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); padding: 8px 14px; border-radius: 999px; background: rgba(255,248,238,0.16); border: 1px solid rgba(255,248,238,0.4); justify-self: start; white-space: nowrap; }
.coming h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(18px, 2.4vw, 28px); color: var(--cream); margin: 0; }
.coming form { display: flex; gap: 6px; padding: 5px; background: rgba(255,248,238,0.12); border-radius: 999px; border: 1px solid rgba(255,248,238,0.25); }
.coming form input[type="email"] { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px 18px; font-family: 'Nunito Sans', sans-serif; font-size: 14px; color: var(--cream); outline: none; }
.coming form input[type="email"]::placeholder { color: rgba(255,248,238,0.65); }
.coming form button { background: var(--cream); color: var(--teal-d); padding: 11px 22px; border-radius: 999px; border: none; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.04em; cursor: pointer; white-space: nowrap; transition: opacity 0.18s; }
.coming form button:hover { opacity: 0.88; }
.coming .row-success { display: none; color: rgba(255,248,238,0.9); font-family: 'Nunito', sans-serif; font-size: 14px; padding: 14px 0; }
@media (max-width: 900px) {
  .coming { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 48px 6vw; }
  .coming .badge { justify-self: center; }
  .coming form { width: 100%; }
}

/* ── LOYALTY ── */
.loyalty { background: var(--bark); padding: 110px 5vw; position: relative; overflow: hidden; font-family: 'Nunito Sans', sans-serif; }
.loyalty::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(242,168,0,0.22) 0%, transparent 45%), radial-gradient(circle at 92% 88%, rgba(28,175,138,0.18) 0%, transparent 50%); pointer-events: none; }
.loyalty-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 420px 1fr; gap: 96px; align-items: center; position: relative; z-index: 1; }
.loyalty-phone { position: relative; display: flex; justify-content: center; }
.loyalty-phone-frame { width: 320px; aspect-ratio: 9/19; background: #0c0c0c; border-radius: 46px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.06) inset; position: relative; transform: rotate(-3deg); }
.loyalty-phone-frame::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 26px; background: #000; border-radius: 14px; z-index: 2; }
.loyalty-phone-screen { width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #FFD93D; position: relative; }
.loyalty-phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.loyalty-sticker { position: absolute; background: var(--tomato); color: white; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; line-height: 1.1; text-align: center; padding: 18px 22px; border-radius: 999px; box-shadow: 0 10px 28px rgba(212,64,14,0.45); transform: rotate(8deg); top: 30px; right: -28px; z-index: 3; }
.loyalty-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 22px; }
.loyalty-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--amber); }
.loyalty-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(36px, 4vw, 60px); line-height: 1.05; color: var(--cream); margin: 0 0 22px; text-wrap: pretty; }
.loyalty-title em { color: var(--peach); font-style: normal; font-family: 'Million Smiles', cursive; letter-spacing: 0.16em; }
.loyalty-body { font-size: 18px; line-height: 1.7; color: rgba(255,248,238,0.72); max-width: 520px; margin: 0 0 32px; text-wrap: pretty; }
.loyalty-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.loyalty-perk { display: flex; align-items: center; gap: 16px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; color: var(--cream); }
.loyalty-perk-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(28,175,138,0.18); color: var(--mint); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loyalty-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.loyalty-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--amber); color: var(--bark); font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 16px; padding: 16px 28px; border-radius: 999px; text-decoration: none; box-shadow: 0 6px 22px rgba(242,168,0,0.35); transition: transform 0.18s, box-shadow 0.18s; }
.loyalty-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(242,168,0,0.5); }
.loyalty-cta .url { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 13px; opacity: 0.65; }
.loyalty-powered { display: flex; align-items: center; gap: 12px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,248,238,0.5); }
.loyalty-powered img { height: 26px; opacity: 0.92; }
@media (max-width: 900px) {
  .loyalty { padding: 72px 6vw; }
  .loyalty-inner { grid-template-columns: 1fr; gap: 56px; }
  .loyalty-phone { order: 2; }
  .loyalty-phone-frame { width: 260px; transform: rotate(-2deg); }
  .loyalty-sticker { right: 50px; top: -20px; font-size: 16px; padding: 14px 18px; }
}

/* ── ACCESSIBILITY: CONTRAST FIXES ── */
/* Teal on light backgrounds — use darker accessible teal */
.concept-label, .concept-title em { color: var(--teal-text); }
.section-label { color: var(--teal-text); }
.hours-time { color: var(--teal-text); }
/* Override back to light for sections with dark backgrounds */
.how .section-label { color: rgba(255,255,255,0.85); }

/* How section & coming section — darken teal bg so white text passes */
.how { background: #0B7557; }
.coming { background: #0B7557; }

/* Step descriptions — increase opacity */
.step-desc { color: rgba(255,255,255,0.9); }

/* Primary buttons — darken bg for white text contrast */
.btn-primary-hero { background: #0B7557; box-shadow: 0 5px 22px rgba(11,117,87,0.40); }
.btn-primary-hero:hover { background: #096045; }
.nav-cta { background: #0B7557; box-shadow: 0 3px 14px rgba(11,117,87,0.30); }
.nav-cta:hover { background: #096045; }
.menu-btn { background: #0B7557; }
.menu-btn:hover { background: #096045; }

/* Lang toggle active indicator — darken teal */
body.is-en .lang-toggle .lang-en,
body.is-es .lang-toggle .lang-es { color: var(--teal-text); }
body.is-en .lang-toggle .lang-es,
body.is-es .lang-toggle .lang-en { opacity: 0.65; }

/* Footer — increase text opacity */
.footer-heading { color: rgba(255,255,255,0.7); }
.footer-tagline { color: rgba(255,255,255,0.75); }
.footer-copy { color: rgba(255,255,255,0.65); }

/* Hero title — one word per line */
.hero-title br { display: none; }
.hero-word { display: block; }

/* ── REVIEWS ── */
.reviews-section { background: var(--cream); padding: 96px 5vw; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.reviews-score { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 36px; color: var(--bark); line-height: 1; }
.reviews-stars { display: flex; gap: 3px; color: var(--amber); }
.reviews-count { font-family: 'Nunito Sans', sans-serif; font-size: 15px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.review-card { background: white; border-radius: 24px; padding: 28px 28px 24px; box-shadow: 0 4px 20px rgba(61,32,16,0.08); display: flex; flex-direction: column; gap: 14px; }
.review-card-stars { display: flex; gap: 3px; color: var(--amber); }
.review-card-text { font-size: 15px; line-height: 1.65; color: var(--brown); flex: 1; }
.review-card-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card-avatar-fallback { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; color: var(--muted); flex-shrink: 0; }
.review-card-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--bark); }
.review-card-time { font-size: 12px; color: var(--muted); margin-top: 2px; }
.reviews-footer { text-align: center; }
.reviews-link { display: inline-flex; align-items: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: var(--teal-text); text-decoration: none; border: 2px solid var(--teal-text); border-radius: 999px; padding: 12px 28px; transition: background 0.18s, color 0.18s; }
.reviews-link:hover { background: var(--teal-text); color: white; }
@media (max-width: 900px) {
  .reviews-section { padding: 72px 6vw; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: var(--purple); color: var(--cream); padding: 18px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 -8px 32px rgba(0,0,0,0.25); }
#cookieBanner p { font-family: 'Nunito Sans', sans-serif; font-size: 13px; color: rgba(255,248,230,0.85); margin: 0; max-width: 640px; }
.cookie-btns { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
#cookieAccept { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; background: var(--teal); color: white; border: none; border-radius: 999px; padding: 10px 22px; cursor: pointer; transition: background 0.18s; }
#cookieAccept:hover { background: var(--teal-d); }
#cookieDecline { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 13px; color: rgba(255,248,230,0.7); background: none; border: 0; cursor: pointer; padding: 10px; }
