:root {
  --cream: #F0F8FF;
  --white: #FFFFFF;
  --ice: #DCF0FF;
  --soft-blue: #A8D4F5;
  --sky: #6EC4F5;
  --blue: #3BA7E8;
  --deep-sky: #1E8AD4;
  --navy: #163A5F;
  --muted: #4A7599;
  --mango: #FFC857;
  --orange: #FF8A3D;
  --berry: #FF5A7A;
  --berry-soft: #FF8FA8;
  --green: #5CBF6A;
  --green-soft: #8ED99A;
  --shadow: 0 20px 50px rgba(30, 100, 160, 0.12);
  --radius: 24px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Nunito", "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background:
    radial-gradient(ellipse 900px 500px at 10% -10%, rgba(110, 196, 245, 0.35), transparent 55%),
    radial-gradient(ellipse 700px 400px at 90% 5%, rgba(168, 212, 245, 0.4), transparent 50%),
    linear-gradient(180deg, #E8F5FF 0%, #F0F8FF 35%, #F7FBFF 100%);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.bg-blob {
  position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  pointer-events: none; z-index: 0;
}
.b1 { width: 480px; height: 480px; background: #7EC8F0; top: -100px; right: -80px; opacity: 0.4; }
.b2 { width: 420px; height: 420px; background: #A8D4F5; bottom: 15%; left: -120px; opacity: 0.55; }
.b3 { width: 360px; height: 360px; background: #5BB8EB; top: 42%; right: -100px; opacity: 0.28; }

.site-header, main, .site-footer { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 5vw;
  background: rgba(232, 245, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(110, 196, 245, 0.45);
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
}
.logo em { font-style: normal; color: #1E6BFF; }
.logo img { border-radius: 10px; }
.logo .nav-logo {
  height: 42px; width: auto; max-width: min(220px, 48vw);
  object-fit: contain; border-radius: 0;
}
.nav { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--muted);
  transition: color 0.15s;
}
.nav a:hover { color: var(--navy); }
.nav-cta {
  background: linear-gradient(135deg, #1E8AD4, #3BA7E8);
  color: #fff !important; padding: 0.55rem 1rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(30, 138, 212, 0.3);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.4rem; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #1E8AD4, #5BB8EB);
  color: #fff; box-shadow: 0 10px 28px rgba(30, 138, 212, 0.32);
}
.btn-ghost {
  background: rgba(255,255,255,0.9); border-color: var(--soft-blue); color: var(--navy);
}
.btn-accent {
  background: linear-gradient(135deg, var(--orange), #FFB347);
  color: #163A5F; box-shadow: 0 10px 28px rgba(255, 168, 70, 0.28);
}

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem;
  align-items: center; padding: 4rem 5vw 3rem; max-width: 1280px; margin: 0 auto;
}
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 900;
}
.hero h1 span {
  background: linear-gradient(135deg, #1E8AD4, #5BB8EB 55%, #7EC8F0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  margin-top: 1.1rem; font-size: 1.15rem; color: var(--muted); max-width: 36ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.hero-stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 1.35rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--soft-blue);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1rem; }
.hero-stats span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.float-chip {
  position: absolute; background: rgba(255,255,255,0.95);
  font-weight: 800; font-size: 0.9rem; padding: 0.55rem 0.95rem;
  border-radius: 999px; box-shadow: 0 8px 24px rgba(27,42,65,0.12);
}
.float-chip.c1 { left: 1rem; bottom: 1.2rem; }
.float-chip.c2 { right: 1rem; top: 1.2rem; color: var(--blue); }

/* Sections */
.section { padding: 4.5rem 5vw; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.section-head h2, .loyalty-card h2, .about h2, .visit-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em; font-weight: 900; line-height: 1.15;
}
.section-sub { margin-top: 0.75rem; color: var(--muted); font-size: 1.05rem; }
.section-head.light .eyebrow, .section-head.light h2 { color: #fff; }
.section-head.light .eyebrow { color: var(--mango); }

.tag.hot { background: #FFF0E0; color: #C45E12; }
.tag.limited { background: #E8F8FF; color: #1E6BFF; }

/* Hot food feature */
.hotfood-section {
  max-width: none;
  padding: 4rem 5vw;
  background:
    linear-gradient(180deg, rgba(220, 240, 255, 0.9), rgba(232, 245, 255, 0.95));
  border-top: 1px solid rgba(110, 196, 245, 0.35);
  border-bottom: 1px solid rgba(110, 196, 245, 0.35);
}
.hotfood-inner { max-width: 1280px; margin: 0 auto; }
.hotfood-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.hot-card {
  background: var(--white);
  border: 2px solid rgba(110, 196, 245, 0.45);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(30, 100, 160, 0.1);
  display: grid;
  grid-template-rows: 220px auto;
}
.hot-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.hot-card-body { padding: 1.5rem 1.6rem 1.7rem; }
.hot-card-body h3 {
  font-size: 1.45rem; font-weight: 900; margin: 0.4rem 0 0.5rem;
}
.hot-card-body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1rem; }
.hot-prices {
  list-style: none; display: flex; flex-direction: column; gap: 0.55rem;
}
.hot-prices li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-weight: 600; padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(110, 196, 245, 0.5);
}
.hot-prices li:last-child { border-bottom: none; }
.hot-prices em {
  font-style: normal; font-weight: 800; color: var(--deep-sky); white-space: nowrap;
}
.hot-note {
  margin-top: 0.85rem; font-size: 0.88rem; font-weight: 600;
  color: #1E6BFF; background: #E8F5FF;
  padding: 0.55rem 0.85rem; border-radius: 12px;
}
.hotfood-banner {
  margin-top: 1.5rem;
  border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(110, 196, 245, 0.4);
  box-shadow: var(--shadow);
}
.hotfood-banner img {
  width: 100%; max-height: 280px; object-fit: cover; object-position: top;
}

.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(184,217,240,0.7); box-shadow: 0 10px 30px rgba(27,42,65,0.05);
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.menu-card.featured { grid-column: 1 / -1; grid-template-columns: 1.1fr 1fr; }
.menu-card img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
/* The studio shots are portrait; without a cap the featured card grows tall
   enough to leave a dead gap beside its short body copy. */
.menu-card.featured img { max-height: 400px; }
.menu-card-body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.menu-card h3 { font-size: 1.35rem; font-weight: 800; }
.menu-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.tag.mango { background: #FFF3DC; color: #C45E12; }
.tag.berry { background: #FFE8EE; color: #C41E48; }
.tag.green { background: #E8F8EC; color: #1F7A38; }
.tag.blue { background: var(--ice); color: #1B5F8A; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.5rem; padding-top: 0.75rem; border-top: 1px dashed var(--soft-blue);
  font-weight: 600; color: var(--muted);
}
.price-row strong { color: var(--deep-sky); font-size: 1.1rem; }

.mini-note { margin-top: 1rem; color: var(--muted); font-size: 0.9rem; }

/* Loyalty */
.loyalty { max-width: none; padding-left: 5vw; padding-right: 5vw; }
.loyalty-card {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: linear-gradient(135deg, #0E4F7A 0%, #1E8AD4 45%, #3BA7E8 100%);
  color: #fff; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow);
}
.loyalty-card > div:first-child { padding: 3rem 2.5rem; }
.loyalty-card .eyebrow { color: #D4F0FF; }
.loyalty-card .section-sub { color: rgba(255,255,255,0.8); }
.loyalty-form {
  display: grid; gap: 0.75rem; margin-top: 1.5rem; max-width: 420px;
}
.loyalty-form input,
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 14px;
  border: 2px solid transparent; background: rgba(255,255,255,0.12);
  color: #fff; outline: none;
}
.loyalty-form input::placeholder { color: rgba(255,255,255,0.55); }
.loyalty-form input:focus { border-color: var(--mango); background: rgba(255,255,255,0.18); }
.loyalty-art img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.card {
  background: var(--white); border: 1px solid var(--soft-blue);
  border-radius: var(--radius); padding: 1.5rem;
}
.contact-form label {
  font-size: 0.8rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  background: var(--cream); color: var(--navy); border: 2px solid var(--soft-blue);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--blue); background: #fff;
}
.form-msg { margin-top: 0.75rem; font-weight: 700; color: var(--green); }

/* Honeypot — hidden from people, visible to bots that fill every field. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* "Rated best bingsoo in OC" hero badge */
.rated-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--mango), var(--orange));
  color: var(--navy); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.02em; padding: 0.45rem 0.95rem;
  border-radius: 999px; margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(255, 138, 61, 0.3);
}
.rated-badge .stars { letter-spacing: 0.08em; font-size: 0.78rem; }

/* Menu request form */
.request-form {
  max-width: 760px; margin: 0 auto; display: grid; gap: 1rem;
  box-shadow: var(--shadow);
}
.request-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; }
.request-form .field { display: grid; gap: 0.4rem; }
.request-form label {
  font-size: 0.8rem; font-weight: 700; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.request-form .opt {
  text-transform: none; letter-spacing: 0; font-weight: 600;
  color: var(--soft-blue); font-size: 0.78rem;
}
.request-form input, .request-form textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 14px;
  border: 2px solid var(--soft-blue); background: var(--cream);
  color: var(--navy); outline: none; font-family: inherit; font-size: 1rem;
}
.request-form input:focus, .request-form textarea:focus {
  border-color: var(--blue); background: #fff;
}
.request-form button { justify-self: start; }

/* Join-free perks list on the loyalty card */
.join-perks {
  list-style: none; display: grid; gap: 0.55rem;
  margin: 1.5rem 0 0.5rem;
}
.join-perks li {
  position: relative; padding-left: 1.75rem;
  color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.98rem;
}
.join-perks li::before {
  content: "❄"; position: absolute; left: 0; top: 0;
  color: var(--mango); font-size: 1rem;
}
.join-fine {
  margin-top: 0.85rem; font-size: 0.82rem; color: rgba(255,255,255,0.65);
}

@media (max-width: 720px) {
  .request-row { grid-template-columns: 1fr; }
  .request-form button { justify-self: stretch; }
}

/* ---------------------------------------------------------------
   Join popup — first-visit email capture.
   Shown only to visitors who haven't joined; see app.js for the rules.
   --------------------------------------------------------------- */
.join-modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 1.25rem;
}
.join-modal[hidden] { display: none; }
.join-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 40, 65, 0.55); backdrop-filter: blur(4px);
  animation: joinFade 0.25s ease;
}
.join-modal-card {
  position: relative; width: min(440px, 100%);
  background: linear-gradient(150deg, #0E4F7A 0%, #1E8AD4 55%, #3BA7E8 100%);
  color: #fff; border-radius: 28px; padding: 2.25rem 2rem 1.5rem;
  box-shadow: 0 30px 80px rgba(11, 40, 65, 0.45);
  text-align: center; animation: joinPop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  max-height: calc(100vh - 2.5rem); overflow-y: auto;
}
.join-modal-logo { margin: 0 auto 0.75rem; display: block; }
.join-modal-card .eyebrow { color: #D4F0FF; }
.join-modal-card h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 0.6rem;
}
.join-modal-card > p:not(.eyebrow):not(.hp-field) {
  color: rgba(255,255,255,0.85); font-size: 0.98rem;
}
.join-modal-form { display: grid; gap: 0.7rem; margin-top: 1.5rem; text-align: left; }
.join-modal-form input {
  width: 100%; padding: 0.9rem 1rem; border-radius: 14px;
  border: 2px solid transparent; background: rgba(255,255,255,0.14);
  color: #fff; outline: none; font-family: inherit; font-size: 1rem;
}
.join-modal-form input::placeholder { color: rgba(255,255,255,0.55); }
.join-modal-form input:focus {
  border-color: var(--mango); background: rgba(255,255,255,0.2);
}
.join-modal-form .form-msg { text-align: center; }
.join-modal-close {
  position: absolute; top: 0.85rem; right: 1rem;
  background: none; border: 0; color: rgba(255,255,255,0.7);
  font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 0.15rem 0.4rem;
  border-radius: 10px;
}
.join-modal-close:hover { color: #fff; background: rgba(255,255,255,0.12); }
.join-modal-skip {
  margin-top: 1rem; background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,0.6); font-family: inherit;
  font-size: 0.85rem; font-weight: 600; text-decoration: underline;
}
.join-modal-skip:hover { color: rgba(255,255,255,0.9); }

@keyframes joinFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes joinPop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .join-modal-backdrop, .join-modal-card { animation: none; }
}

/* Seasonal */
.seasonal {
  max-width: none;
  background: linear-gradient(135deg, #0B3A5C, #1E6FA8 45%, #2A9AD4);
  padding-top: 4rem; padding-bottom: 4rem;
}
.seasonal .season-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.25rem;
  padding: 0 5vw;
}
.season-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.75rem; color: #fff;
  backdrop-filter: blur(8px);
}
.season-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; }
.season-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.season-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1rem; }
.coming {
  display: inline-block; background: linear-gradient(135deg, var(--mango), var(--orange));
  color: var(--navy); font-size: 0.75rem; font-weight: 800;
  padding: 0.4rem 0.8rem; border-radius: 999px; text-transform: uppercase;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.about p { color: var(--muted); margin-top: 0.9rem; }
.check-list {
  list-style: none; margin-top: 1.4rem; display: grid; gap: 0.55rem;
}
.check-list li {
  font-weight: 600; padding-left: 1.6rem; position: relative;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900;
}
.about-photo {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Visit */
.visit-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
.addr, .hours { margin: 1rem 0; color: var(--muted); line-height: 1.6; }
.addr strong, .hours strong { color: var(--navy); }
.contact-form { display: grid; gap: 0.5rem; }
.qr-inline {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding: 1rem;
  background: var(--white); border: 1px solid var(--soft-blue);
  border-radius: 18px; max-width: 340px;
}
.qr-inline img {
  width: 96px; height: 96px; border-radius: 12px;
  border: 1px solid var(--soft-blue);
}
.qr-inline p { font-size: 0.92rem; color: var(--muted); line-height: 1.4; }
.qr-inline strong { color: var(--navy); }

/* Footer */
.site-footer {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; padding: 2rem 5vw;
  border-top: 1px solid var(--soft-blue); color: var(--muted); font-size: 0.9rem;
  background: rgba(232, 245, 255, 0.65);
}
.site-footer a { color: var(--deep-sky); font-weight: 700; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; }
.footer-brand strong { display: block; color: var(--navy); }
.footer-brand span { font-size: 0.8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-weight: 700; }
.addr a { color: var(--deep-sky); font-weight: 700; }

/* Responsive */
@media (max-width: 960px) {
  .hero, .menu-card, .menu-card.featured, .loyalty-card,
  .about-grid, .visit-card, .hotfood-grid {
    grid-template-columns: 1fr;
  }
  .seasonal .season-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(232, 245, 255, 0.98); padding: 1rem 5vw 1.25rem;
    border-bottom: 1px solid var(--soft-blue); gap: 0.35rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.65rem 0; }
  .nav-cta { text-align: center; }
}
@media (max-width: 560px) {
  .seasonal .season-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
}
