/* Eiffel Waffle Creamery — shared styles */
:root {
  --ivory: #FFF8F0;
  --cream: #FBEFE2;
  --ink: #35242C;
  --soft: #7A6570;
  --pink: #E4548C;
  --pink-deep: #C93B74;
  --pink-tint: #FBDFE9;
  --blue: #4D9FCE;
  --blue-deep: #2F7CA8;
  --blue-tint: #DEEFF8;
  --gold: #E8A94C;
  --gold-tint: #FAECD4;
  --berry: #2D1E26;
  --white: #FFFFFF;
  --line: #F0DFE0;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.12; text-wrap: balance; }
a { color: var(--blue-deep); }
img { max-width: 100%; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { position: fixed; left: 12px; top: 12px; background: #fff; padding: 10px 16px; z-index: 99; border-radius: 8px; }

/* Top bar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,240,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; gap: 16px; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; }
.wordmark { font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none; white-space: nowrap; display: flex; align-items: center; }
.wordmark .a1 { color: var(--pink); }
.wordmark .a2 { color: var(--blue); }
.logo-img { height: 42px; width: auto; display: block; }
@media (max-width: 640px) { .logo-img { height: 34px; } }
.topnav { display: flex; gap: 16px; margin-left: auto; font-size: 15px; font-weight: 600; flex-wrap: wrap; }
.topnav a { color: var(--soft); text-decoration: none; padding: 4px 2px; border-bottom: 2px solid transparent; }
.topnav a:hover, .topnav a:focus-visible { color: var(--pink-deep); }
.topnav a[aria-current="page"] { color: var(--pink-deep); border-bottom-color: var(--pink); }

/* Buttons */
.btn {
  display: inline-block; font-weight: 700; text-decoration: none; text-align: center;
  border-radius: 999px; padding: 12px 24px; font-size: 16px; border: 2px solid transparent;
  transition: transform .12s ease; cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 6px 18px rgba(228,84,140,.35); }
.btn-pink:hover { background: var(--pink-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(77,159,206,.35); }
.btn-blue:hover { background: var(--blue-deep); }
.btn-sm { padding: 8px 18px; font-size: 14.5px; }

/* Hero (shared) */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 72px 0 60px;
  background:
    radial-gradient(circle at 12% 18%, rgba(228,84,140,.10) 0 90px, transparent 91px),
    radial-gradient(circle at 88% 12%, rgba(77,159,206,.12) 0 70px, transparent 71px),
    radial-gradient(circle at 78% 82%, rgba(232,169,76,.13) 0 110px, transparent 111px),
    radial-gradient(circle at 6% 88%, rgba(77,159,206,.09) 0 60px, transparent 61px),
    var(--ivory);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(53,36,44,0.05) 8px, transparent 9px);
  background-size: 56px 56px;
}
.hero .wrap { position: relative; }
.hero h1 { font-size: clamp(36px, 6.4vw, 60px); font-weight: 700; margin: 0 0 14px; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero .sub { font-size: clamp(17px, 2.4vw, 20px); color: var(--soft); max-width: 36em; margin: 0 auto 28px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero .fineprint { margin-top: 20px; font-family: "Spline Sans Mono", monospace; font-size: 13px; color: var(--soft); letter-spacing: .03em; }
.hero.compact { padding: 52px 0 44px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-tint); color: #8A6420;
  font-family: "Spline Sans Mono", monospace; font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 16px; margin-bottom: 20px;
}
.badge a { color: inherit; text-decoration: none; }
.badge a:hover { text-decoration: underline; }

/* Sections */
section { padding: 64px 0; }
.kicker { font-family: "Spline Sans Mono", monospace; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-deep); margin-bottom: 10px; }
section h2 { font-size: clamp(27px, 4.2vw, 38px); margin-bottom: 10px; }
.lede { color: var(--soft); max-width: 42em; margin-bottom: 32px; font-size: 18px; }
.prose { max-width: 46em; }
.prose p { margin-bottom: 16px; }

/* Story */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 8px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.pillar .ico { font-size: 26px; }
.pillar h3 { font-size: 19px; margin: 10px 0 6px; }
.pillar p { color: var(--soft); font-size: 15px; }
.quote {
  background: var(--berry); color: #fff; border-radius: 22px;
  padding: 44px 40px; margin: 48px 0 8px; position: relative; overflow: hidden;
}
.quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 8px, transparent 9px);
  background-size: 56px 56px;
}
.quote blockquote { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; font-size: clamp(24px, 3.6vw, 34px); line-height: 1.25; position: relative; }
.quote blockquote::before { content: "“"; color: var(--pink); font-size: 1.6em; line-height: 0; vertical-align: -0.25em; margin-right: 4px; }
.quote figcaption { margin-top: 16px; color: #CBB3BF; font-size: 15px; position: relative; }

/* Cards (menu) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; top: -34px; right: -34px; width: 96px; height: 96px; border-radius: 50%; opacity: .14; }
.card.pink::after { background: var(--pink); }
.card.blue::after { background: var(--blue); }
.card.gold::after { background: var(--gold); }
.card h3 { font-size: 21px; margin-bottom: 4px; }
.card .price { font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 26px; color: var(--pink-deep); font-variant-numeric: tabular-nums; }
.card p { color: var(--soft); font-size: 15px; margin-top: 8px; }
.card ul { color: var(--soft); font-size: 14.5px; padding-left: 18px; margin-top: 8px; }

/* Flavor chips */
.band { background: var(--cream); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 18px; font-weight: 600; font-size: 15px; }
.chip.star { border-color: var(--pink); color: var(--pink-deep); }
.note { margin-top: 18px; color: var(--soft); font-size: 15px; }

/* Dark band (catering) */
.dark { background: var(--berry); color: #F9EFF4; }
.dark .kicker { color: var(--gold); }
.dark h2, .dark h3 { color: #fff; }
.dark .lede { color: #CBB3BF; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } }
.offer { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 26px; margin-bottom: 18px; }
.offer h3 { font-size: 22px; margin-bottom: 6px; }
.offer p { color: #CBB3BF; font-size: 15px; margin-top: 8px; }
.offer ul { color: #CBB3BF; font-size: 14.5px; padding-left: 18px; margin-top: 10px; }
.offer .fine { font-size: 13.5px; color: #A98D9B; margin-top: 10px; }

/* Forms */
form.panel { background: var(--white); border-radius: 18px; padding: 30px 28px; color: var(--ink); border: 1px solid var(--line); }
form.panel h3 { font-size: 22px; margin-bottom: 4px; }
form.panel .formsub { color: var(--soft); font-size: 14.5px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 5px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; font: inherit; font-size: 15.5px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--ivory); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
form.panel button { width: 100%; }

/* Info cards / visit */
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 840px) { .grid-2 { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-family: "Spline Sans Mono", monospace; font-size: 14.5px; font-weight: 600; }
.panel-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.panel-card .addr { font-size: 17px; font-weight: 700; }
.panel-card .sub2 { color: var(--soft); font-size: 15px; margin: 4px 0 18px; }
.btns { display: flex; flex-wrap: wrap; gap: 10px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .n {
  width: 40px; height: 40px; border-radius: 50%; background: var(--pink-tint); color: var(--pink-deep);
  font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 19px;
  display: grid; place-items: center;
}
.step h3 { font-size: 17.5px; margin-bottom: 3px; font-family: "Nunito Sans", sans-serif; font-weight: 700; }
.step p { color: var(--soft); font-size: 15px; }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: 18px; }

/* Trust strip + footer */
.strip { background: var(--berry); color: #F6E8EE; }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 8px 36px; justify-content: center; padding: 14px 22px; font-weight: 600; font-size: 15px; }
.strip span::before { content: "●"; color: var(--pink); margin-right: 9px; font-size: 10px; vertical-align: 2px; }
footer { background: var(--berry); color: #A98D9B; padding: 38px 0 46px; font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between; align-items: center; }
footer .fm { font-family: "Fraunces", Georgia, serif; color: #fff; font-size: 18px; font-weight: 600; }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: #D9BFCC; text-decoration: none; }
footer a:hover { color: #fff; }

/* Menu page — photo-forward layout */
.subnav { background: rgba(255,248,240,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .subnav { position: sticky; top: 63px; z-index: 40; } }
.subnav .wrap { display: flex; gap: 8px; overflow-x: auto; padding: 10px 22px; scrollbar-width: none; }
.subnav .wrap::-webkit-scrollbar { display: none; }
.subnav a {
  white-space: nowrap; text-decoration: none; font-weight: 700; font-size: 14px;
  color: var(--soft); background: var(--white); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 7px 16px;
}
.subnav a:hover, .subnav a:focus-visible { color: var(--pink-deep); border-color: var(--pink); }
.msection { padding: 60px 0 10px; }
.msection:last-of-type { padding-bottom: 60px; }
.mhead { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 18px; margin-bottom: 6px; }
.mhead h2 { margin-bottom: 0; }
.mprice {
  font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 24px;
  color: var(--pink-deep); font-variant-numeric: tabular-nums;
}
.msub { color: var(--soft); max-width: 46em; margin-bottom: 26px; font-size: 16px; }
.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.mcard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.mcard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.mcard .noimg {
  width: 100%; aspect-ratio: 4 / 3; display: grid; place-items: center; font-size: 40px;
  background:
    radial-gradient(circle at 25% 30%, var(--pink-tint) 0 26px, transparent 27px),
    radial-gradient(circle at 75% 22%, var(--blue-tint) 0 20px, transparent 21px),
    radial-gradient(circle at 65% 75%, var(--gold-tint) 0 30px, transparent 31px),
    var(--cream);
}
.mcard .pad { padding: 14px 18px 18px; }
.mcard h4 { font-family: "Fraunces", Georgia, serif; font-size: 18.5px; margin: 0 0 4px; display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.mcard h4 .p { font-size: 16px; color: var(--pink-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.mcard p { color: var(--soft); font-size: 14px; margin: 0; line-height: 1.5; }
.mlist { columns: 2; column-gap: 40px; max-width: 700px; padding-left: 18px; color: var(--soft); font-size: 15px; }
@media (max-width: 600px) { .mlist { columns: 1; } }
.mfoot { color: var(--soft); font-size: 13.5px; margin-top: 28px; }
.drinkgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.drinkcard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 20px; }
.drinkcard h4 { font-family: "Fraunces", Georgia, serif; font-size: 19px; margin: 0 0 8px; display: flex; justify-content: space-between; align-items: baseline; }
.drinkcard h4 .p { color: var(--pink-deep); font-size: 16px; }
.drinkcard p, .drinkcard li { color: var(--soft); font-size: 14.5px; }
.drinkcard ul { padding-left: 18px; margin: 0; }

/* Menu page — in-store TV board layout */
.tvwrap { background: #171014; }
.tvsection { padding: 44px 0; border-top: 1px solid rgba(255,255,255,.07); }
.tvsection:first-child { border-top: 0; }
.tvhead { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; margin-bottom: 20px; }
.tvhead h2 { color: #fff; font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 3.4vw, 34px); margin: 0; }
.tvhead .tvprice { font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: clamp(19px, 2.6vw, 26px); color: #F58BB4; font-variant-numeric: tabular-nums; }
.tvhead .tvnote { width: 100%; color: #B49CA7; font-size: 14.5px; }
.tvgrid { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 34px; align-items: start; }
@media (max-width: 800px) { .tvgrid { grid-template-columns: 1fr; } }
.tvcarousel { position: relative; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; background: #241920; }
.tvcarousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); opacity: 0; transition: opacity 1.1s ease; }
.tvcarousel img.on { opacity: 1; }
.tvcarousel .cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(23,16,20,.82); color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 999px; padding: 7px 16px; backdrop-filter: blur(4px);
}
.tvlist { list-style: none; padding: 0; margin: 0; }
.tvlist li { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.10); }
.tvlist li:last-child { border-bottom: 0; }
.tvlist .iname { display: block; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 15.5px; }
.tvlist li:nth-child(odd) .iname { color: #F58BB4; }
.tvlist li:nth-child(even) .iname { color: #7CC3E8; }
.tvlist .iname .ip { color: #fff; font-weight: 700; text-transform: none; letter-spacing: 0; float: right; font-variant-numeric: tabular-nums; }
.tvlist .idesc { color: #CBB3BF; font-size: 14px; line-height: 1.45; }
.tvcols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
@media (max-width: 640px) { .tvcols { grid-template-columns: 1fr; } }
.tvfoot { color: #8F7683; font-size: 13px; padding: 20px 0 34px; text-align: center; }
