/* I Bagel Your Pardon — marketing site */
:root {
  --coral: #e85a4f;
  --coral-deep: #c43d35;
  --coral-soft: #f8c4be;
  --pink: #f26b8a;
  --teal: #2a9d8f;
  --teal-deep: #1d7a6f;
  --teal-soft: #d4ebe7;
  --wood: #f4ebe0;
  --wood-dark: #e8d9c8;
  --chalk: #1a1a18;
  --chalk-soft: #2c2c28;
  --cream: #fffaf5;
  --ink: #1c1412;
  --muted: #5c524c;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(28, 20, 18, 0.12);
  --radius: 18px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --script: "Pacifico", cursive;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--wood) 40%, var(--wood-dark) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--coral); color: #fff; padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 90, 79, 0.15);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd4a8, var(--coral));
  display: grid; place-items: center; font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(232, 90, 79, 0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; font-weight: 700; font-size: 0.95rem; }
.brand-text em { font-style: normal; color: var(--coral); font-family: var(--display); font-size: 1.15em; }
.site-nav { display: flex; align-items: center; gap: 0.35rem 1.1rem; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  padding: 0.35rem 0.15rem;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--coral-deep); }
.nav-cta {
  background: var(--coral) !important; color: #fff !important;
  padding: 0.5rem 1rem !important; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(232, 90, 79, 0.35);
}
.nav-cta:hover { background: var(--coral-deep) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.4rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.2s;
}

/* Hero */
.hero {
  max-width: 1120px; margin: 0 auto; padding: 2.5rem 1.25rem 3rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 1rem -1rem auto; height: 70%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(42, 157, 143, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(242, 107, 138, 0.16), transparent 45%);
  pointer-events: none; z-index: -1;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 700;
  color: var(--coral-deep); margin: 0 0 0.75rem;
}
.eyebrow.teal { color: var(--teal-deep); }
.hero h1 {
  font-family: var(--display); font-weight: 700; line-height: 0.95;
  margin: 0 0 1rem; font-size: clamp(2.8rem, 7vw, 4.6rem);
  display: flex; flex-direction: column;
}
.hero-small { font-size: 0.55em; letter-spacing: 0.02em; }
.hero-accent { color: var(--coral); font-style: italic; }
.tagline {
  font-size: 1.15rem; color: var(--muted); max-width: 34ch; margin: 0 0 1.25rem;
}
.winner-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--chalk); color: #f5f0e6; padding: 0.75rem 1.1rem;
  border-radius: 14px; margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 120, 0.35);
  box-shadow: var(--shadow);
}
.winner-star { color: #f0c14b; font-size: 1.4rem; }
.winner-badge strong { display: block; font-size: 0.85rem; font-weight: 600; }
.winner-year {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em; color: var(--coral-soft); font-weight: 700;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 700;
  text-decoration: none; font-size: 0.95rem; border: 2px solid transparent;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-deep); }
.btn-secondary { background: var(--teal); color: #fff; }
.btn-secondary:hover { background: var(--teal-deep); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.hero-visual { position: relative; }
.hero-photo-card {
  margin: 0; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  transform: rotate(1.5deg);
  max-height: 520px;
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; max-height: 520px;
}

/* Sections */
.section { max-width: 1120px; margin: 0 auto; padding: 3.5rem 1.25rem; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2, .about-copy h2, .contact-panel h2 {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.75rem; line-height: 1.1;
}
.section-lede { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* Menu cards */
.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.menu-card {
  background: var(--white);
  border: 2px solid rgba(232, 90, 79, 0.45);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(28, 20, 18, 0.06);
  position: relative;
}
.menu-card::before {
  content: ""; position: absolute; top: -12px; right: 18px; width: 56px; height: 56px;
  background: radial-gradient(circle at 35% 35%, var(--teal-soft), var(--teal));
  border-radius: 50%; opacity: 0.55; z-index: 0;
}
.menu-card > * { position: relative; z-index: 1; }
.menu-card-wide { grid-column: 1 / -1; }
.menu-card-head { margin-bottom: 1rem; }
.menu-card-head h3 {
  margin: 0; font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em;
}
.script {
  font-family: var(--script); color: var(--teal-deep); margin: 0.2rem 0 0; font-size: 1.05rem;
}
.script.light { color: var(--coral-soft); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { margin-bottom: 0.85rem; }
.menu-list.tight li { margin-bottom: 0.55rem; }
.item-row {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.item-name { font-weight: 600; }
.item-name em { font-style: normal; font-weight: 500; color: var(--muted); font-size: 0.9em; }
.dots {
  flex: 1; border-bottom: 1px dotted rgba(92, 82, 76, 0.45); transform: translateY(-4px); min-width: 1rem;
}
.item-price { font-weight: 700; color: var(--coral-deep); white-space: nowrap; }
.item-price.sizes { font-size: 0.92rem; color: var(--ink); }
.item-note { margin: 0.2rem 0 0; font-size: 0.88rem; color: var(--muted); }
.mini-label {
  font-family: var(--script); color: var(--coral); margin: 0 0 0.4rem; font-size: 1.15rem; font-weight: 400;
}
.split-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.chip-list { margin: 0; font-size: 0.92rem; color: var(--muted); }
.drinks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.drink-list .dots { display: none; }
.drink-list .item-row { justify-content: space-between; gap: 1rem; }

/* Flavors chalkboard */
.flavors-board {
  margin-top: 2rem;
  background: linear-gradient(145deg, var(--chalk) 0%, var(--chalk-soft) 100%);
  color: #f5f0e6;
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 215, 120, 0.2);
}
.flavors-ribbon {
  display: inline-block;
  background: var(--coral);
  color: var(--ink);
  padding: 0.45rem 1.4rem;
  border-radius: 6px;
  transform: rotate(-1deg);
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}
.flavors-ribbon h3 { margin: 0; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.flavors-note {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem;
  color: #f0a060; font-weight: 700; margin: 0 0 1.25rem;
}
.flavor-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem;
}
.flavor-tags li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
  max-width: 100%;
  box-sizing: border-box;
}

.menu-photos {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.menu-photos figure {
  margin: 0; border-radius: 16px; overflow: hidden;
  border: 3px solid var(--white); box-shadow: var(--shadow);
  background: var(--chalk);
  display: flex; align-items: center; justify-content: center;
}
.menu-photos img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* About */
.about-section { padding-top: 2rem; }
.about-grid {
  display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 1.75rem; align-items: stretch;
}
.about-copy p { color: var(--muted); }
.about-copy strong { color: var(--ink); }
.about-pills {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 1.25rem 0 0;
}
.about-pills li {
  background: var(--teal-soft); color: var(--teal-deep);
  padding: 0.4rem 0.85rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
}
.chalkboard {
  background: linear-gradient(160deg, #222 0%, #161614 100%);
  color: #f3eee4;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.chalkboard h3 { font-family: var(--display); margin: 0 0 0.75rem; font-size: 1.75rem; }
.chalkboard p { color: rgba(245, 240, 230, 0.85); }
.about-card .btn { margin-top: 0.5rem; }

/* Schedule */
.schedule-primary { margin-bottom: 1rem; }
.sample-banner {
  background: rgba(232, 90, 79, 0.1);
  border: 1px dashed var(--coral);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  color: var(--muted); font-size: 0.95rem;
}
.sample-tag {
  display: inline-block; background: var(--coral); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem; border-radius: 6px; margin-right: 0.5rem; vertical-align: middle;
}
.schedule-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.sched-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  border-top: 4px solid var(--teal);
  box-shadow: 0 8px 24px rgba(28,20,18,0.06);
}
.sched-card.private { border-top-color: var(--coral); opacity: 0.92; }
.sched-card h3 {
  margin: 0 0 0.5rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep);
}
.sched-card .place { margin: 0; font-weight: 700; font-size: 1.15rem; }
.sched-card .time { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.92rem; }

/* Contact */
.contact-panel {
  display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 1.5rem;
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid rgba(42, 157, 143, 0.25);
  box-shadow: var(--shadow);
}
.phone-big {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
  margin: 0.75rem 0;
  line-height: 1;
}
.phone-big:hover { color: var(--coral-deep); }
.contact-meta { color: var(--muted); margin: 0 0 1.25rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.placeholder-note { font-weight: 500; font-size: 0.8em; opacity: 0.75; }
.fine-print { font-size: 0.8rem; color: var(--muted); margin: 1rem 0 0; }
.contact-aside { display: flex; flex-direction: column; justify-content: center; }

/* Footer */
.site-footer {
  background: var(--chalk);
  color: rgba(245, 240, 230, 0.8);
  padding: 2rem 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-brand {
  font-family: var(--display); font-size: 1.5rem; color: #fff; margin: 0 0 0.5rem;
}
.footer-brand em { font-style: italic; color: var(--coral-soft); }
.site-footer a { color: var(--coral-soft); }
.footer-note { font-size: 0.8rem; opacity: 0.7; }

/* Mobile */
@media (max-width: 900px) {
  .flavors-board { padding: 1.5rem 1rem 1.35rem; }
  .flavor-tags { gap: 0.45rem; justify-content: center; }
  .flavor-tags li { font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .menu-photos { max-width: min(100%, 420px); }
  .hero { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-photo-card { transform: none; max-height: 360px; }
  .hero-photo-card img { max-height: 360px; }
  .menu-grid { grid-template-columns: 1fr; }
  .drinks-grid, .split-two { grid-template-columns: 1fr; }
  .menu-photos { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .about-grid, .contact-panel { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(255, 250, 245, 0.98);
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(232, 90, 79, 0.15);
    transform: translateY(-120%);
    opacity: 0; pointer-events: none;
    transition: 0.25s ease;
  }
  .site-nav.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .site-nav a { padding: 0.75rem 0.5rem; border-radius: 10px; }
  .site-nav a:hover { background: var(--wood); }
  .nav-cta { text-align: center; margin-top: 0.35rem; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 520px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
