/* =========================================================
   Roll Cafe — "Sweet Editorial"
   Fraunces (display) + Hanken Grotesk (body)
   ========================================================= */

:root {
  /* warm dessert palette */
  --espresso: #1c1109;
  --espresso-2: #2a1810;
  --cocoa: #3d2417;
  --cream: #f7ecdc;
  --cream-2: #fdf6ea;
  --paper: #fbf3e6;
  --line: #e7d6bd;
  --line-soft: #f0e3cf;
  --muted: #7a6a58;
  --muted-dark: #c9b49a;

  /* accents */
  --raspberry: #e23d57;
  --raspberry-deep: #c52c46;
  --caramel: #e3a23f;
  --pistachio: #8bbf7a;
  --berry: #a8456f;

  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(40, 22, 10, 0.06);
  --shadow-md: 0 14px 40px rgba(40, 22, 10, 0.12);
  --shadow-lg: 0 30px 70px rgba(40, 22, 10, 0.20);

  --display: "Fraunces", Georgia, ui-serif, serif;
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* content protection (casual-copy deterrent only) */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
::selection { background: transparent; }

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 600; }
h3 { font-size: 1.15rem; line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--raspberry);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--raspberry);
}
.eyebrow.light { color: var(--caramel); }
.eyebrow.light .dot { background: var(--caramel); }

/* ---------- Buttons ---------- */
.button {
  --bg: var(--raspberry);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button.small { min-height: 44px; padding: 11px 20px; font-size: 0.9rem; }
.button.full { width: 100%; }

.button.primary {
  background: var(--raspberry);
  color: #fff;
  box-shadow: 0 14px 30px rgba(226, 61, 87, 0.32);
}
.button.primary:hover { background: var(--raspberry-deep); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(226, 61, 87, 0.42); }

.button.outline { background: transparent; color: var(--cream); border-color: rgba(247, 236, 220, 0.4); }
.button.outline:hover { background: var(--cream); color: var(--espresso); transform: translateY(-2px); }

.button.glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}
.button.glass:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.button.ink { background: var(--espresso); color: var(--cream-2); }
.button.ink:hover { background: var(--cocoa); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.button.line { background: transparent; color: var(--espresso); border-color: var(--line); }
.button.line:hover { border-color: var(--espresso); transform: translateY(-2px); }

.text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--raspberry);
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover { border-color: var(--raspberry); }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
  padding: 11px 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-x 55s linear infinite;
}
.ticker-track > * { margin-right: 28px; }
.ticker-track i { color: var(--caramel); font-style: normal; }
.ticker span { white-space: nowrap; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 243, 230, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding-top: 9px; padding-bottom: 9px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(40, 22, 10, 0.07);
}
.brand { display: inline-flex; }
.brand img { width: 158px; transition: width .25s ease; }
.site-header.is-scrolled .brand img { width: 132px; }

.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  margin: 0 auto 0 12px;
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--raspberry); transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.main-nav a:hover { color: var(--raspberry); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.phone-link { font-weight: 700; font-size: 0.95rem; }
.phone-link:hover { color: var(--raspberry); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-2);
  padding: 11px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--espresso); border-radius: 2px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,10,6,0.94) 0%, rgba(18,10,6,0.82) 34%, rgba(18,10,6,0.42) 64%, rgba(18,10,6,0.30) 100%),
    linear-gradient(180deg, rgba(18,10,6,0.30) 0%, rgba(18,10,6,0) 30%, rgba(18,10,6,0.55) 100%),
    radial-gradient(700px 500px at 12% 88%, rgba(226, 61, 87, 0.22), transparent 60%);
}
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 56px) clamp(80px, 9vw, 120px);
  min-height: calc(100svh - 119px);
}
.hero-copy { max-width: 640px; animation: rise 800ms cubic-bezier(.2,.8,.2,1) both; }

.hero h1 {
  font-size: clamp(3.4rem, 8.5vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--cream-2);
}
.hero h1 .line { display: block; }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--caramel);
}
.hero-lede {
  max-width: 480px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--muted-dark);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(247, 236, 220, 0.14);
}
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 600;
  color: var(--cream-2);
  line-height: 1;
}
.hero-stats span {
  display: block; margin-top: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-dark);
}

@keyframes rise { from{ opacity:0; transform: translateY(28px);} to{ opacity:1; transform: translateY(0);} }

.scroll-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 22px;
  width: 26px; height: 44px; transform: translateX(-50%);
  border: 2px solid rgba(247, 236, 220, 0.3); border-radius: 999px;
}
.scroll-cue span {
  display: block; width: 5px; height: 5px; margin: 9px auto 0;
  border-radius: 50%; background: var(--caramel);
  animation: dot 1.5s ease-in-out infinite;
}
@keyframes dot { 0%{opacity:0;transform:translateY(0);} 40%{opacity:1;} 100%{opacity:0;transform:translateY(16px);} }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--cocoa);
  color: var(--cream);
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: scroll-x 60s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.marquee-track > * { margin-right: 32px; }
.marquee-track b { color: var(--caramel); font-style: normal; font-size: 0.7em; }

/* ---------- Values ---------- */
.values {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 56px);
}
.values article {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--espresso);
}
.val-num {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--raspberry);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.values h3 { font-size: 1.6rem; margin-bottom: 10px; }
.values p { margin: 0; color: var(--muted); max-width: 32ch; }

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 56px);
}
.section.menu { max-width: 1500px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 28px; margin-bottom: 44px;
}

/* ---------- Filters ---------- */
.category-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  min-height: 44px; padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--cream-2);
  color: var(--espresso);
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.filter:hover { border-color: var(--espresso); transform: translateY(-1px); }
.filter.active {
  background: var(--espresso); color: var(--cream-2); border-color: var(--espresso);
  box-shadow: 0 10px 24px rgba(28, 17, 9, 0.22);
}

/* ---------- Menu grid ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.card[hidden] { display: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line); }

.card-img { overflow: hidden; }
.card-img img, .card.featured > img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--cream);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-img img { transform: scale(1.07); }

.card-body { padding: 16px 18px 20px; }
.tag {
  display: inline-block; margin-bottom: 9px;
  padding: 4px 11px; border-radius: var(--radius-pill);
  background: rgba(28, 17, 9, 0.06);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.tag.new { background: var(--raspberry); color: #fff; }
.card h3 { font-size: 1.12rem; }

/* category color cues on tag text */
.card[data-category="crepes"] .tag:not(.new)    { color: var(--raspberry); }
.card[data-category="ice-cream"] .tag  { color: var(--berry); }
.card[data-category="milkshakes"] .tag { color: var(--pistachio); }
.card[data-category="sundaes"] .tag    { color: var(--caramel); }

/* featured */
.card.featured {
  grid-column: span 2; grid-row: span 1;
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(150deg, var(--espresso-2), var(--espresso));
  border-color: transparent; color: var(--cream);
}
.card.featured > img { height: 100%; aspect-ratio: auto; min-height: 100%; }
.card.featured:hover > img { transform: none; }
.card.featured .card-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(22px, 2.6vw, 38px);
}
.card.featured h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--cream-2); }
.card.featured p { margin: 12px 0 18px; color: var(--muted-dark); }

/* ---------- Order band ---------- */
.order-band {
  position: relative; overflow: hidden;
  max-width: var(--maxw); margin: clamp(20px, 4vw, 40px) auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cocoa), var(--espresso));
  color: var(--cream);
}
.order-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px 400px at 88% 12%, rgba(227,162,63,0.28), transparent 60%);
}
.order-text { position: relative; z-index: 1; }
.order-text h2 { color: var(--cream-2); }
.order-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 70px); align-items: start;
}
.about-copy h2 { margin-bottom: 22px; max-width: 14ch; }
.about .lead { font-size: 1.12rem; color: var(--muted); max-width: 48ch; }
.checks { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 10px; }
.checks li {
  position: relative; padding: 14px 18px 14px 50px;
  background: var(--cream-2); border: 1px solid var(--line-soft);
  border-radius: 14px; font-weight: 600;
}
.checks li::before {
  content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pistachio); color: #fff; font-size: 0.8rem; font-weight: 900;
  display: grid; place-items: center;
}
.review-panel {
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--cream-2), var(--paper));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.rating-row { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.rating {
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--caramel); color: var(--espresso);
  font-family: var(--display); font-size: 1.8rem; font-weight: 600;
  box-shadow: 0 12px 26px rgba(227, 162, 63, 0.4);
}
.stars { color: var(--caramel); letter-spacing: 3px; font-size: 1.1rem; }
.rating-sub { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }
.review-panel blockquote {
  margin: 0 0 16px; padding-left: 18px;
  border-left: 3px solid var(--raspberry);
  font-family: var(--display); font-style: italic; font-size: 1.2rem;
  color: var(--cocoa);
}

/* ---------- Visit ---------- */
.visit {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 60px);
  background: linear-gradient(150deg, var(--espresso-2), var(--espresso));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
}
.visit h2 { color: var(--cream-2); margin-bottom: 36px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.visit-grid h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); margin-bottom: 10px; font-family: var(--sans); font-weight: 800; }
.visit-grid p { margin: 0; color: var(--muted-dark); font-size: 1.05rem; line-height: 1.7; }
.visit-grid a:hover { color: #fff; }
.visit-grid .text-link.light { display: inline-block; margin-top: 12px; color: var(--caramel); border-bottom-color: transparent; }
.visit-grid .text-link.light:hover { border-bottom-color: var(--caramel); color: var(--caramel); }

.visit-map {
  margin-top: clamp(22px, 3vw, 34px);
  height: clamp(260px, 32vw, 360px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}
.visit-map iframe { display: block; width: 100%; height: 100%; }

.hours {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  backdrop-filter: blur(8px);
}
.hours h3 { color: var(--cream-2); margin-bottom: 20px; font-size: 1.4rem; }
.hours dl { margin: 0 0 26px; display: grid; gap: 12px; }
.hours dl div {
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hours dl div:last-child { border-bottom: 0; padding-bottom: 0; }
.hours dt { font-weight: 700; color: var(--cream-2); }
.hours dd { margin: 0; color: var(--muted-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 56px) 40px;
}
.footer-top {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(247, 236, 220, 0.14);
}
.footer-logo { width: 168px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 26px; font-weight: 600; font-size: 0.92rem; }
.footer-links a:hover { color: var(--caramel); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px; padding-top: 26px;
}
.cards {
  width: auto; max-width: 80vw;
  padding: 9px 14px;
  background: #fff;
  border-radius: 10px;
}
.footer-bottom p { margin: 0; color: var(--muted-dark); font-size: 0.85rem; }

/* ---------- Clickable cards ---------- */
.card { cursor: pointer; }
.card:focus-visible { outline: 3px solid var(--raspberry); outline-offset: 3px; }
.card-img { position: relative; }
.card-img::after {
  content: "View +";
  position: absolute; right: 12px; bottom: 12px;
  padding: 7px 12px; border-radius: var(--radius-pill);
  background: rgba(28, 17, 9, 0.82); color: var(--cream-2);
  font-family: var(--sans); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.card:hover .card-img::after,
.card:focus-visible .card-img::after { opacity: 1; transform: translateY(0); }

/* ---------- Product modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(18, 10, 6, 0.6);
  backdrop-filter: blur(4px);
  animation: modal-fade .25s ease both;
}
.modal-card {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: modal-pop .3s cubic-bezier(.2,.8,.2,1) both;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(18, 10, 6, 0.55); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.modal-close:hover { background: var(--espresso); transform: rotate(90deg); }
.modal-figure { overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--cream); }
.modal-body { padding: clamp(22px, 4vw, 30px); }
.modal-cat { margin-bottom: 12px; }
.modal-body h3 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); }
.modal-note {
  margin: 16px 0 16px; color: var(--muted);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.modal-actions { display: grid; gap: 10px; }
.modal-actions .button { width: 100%; }

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
body.modal-open { overflow: hidden; }

/* ---------- Sub-page hero ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--espresso-2), var(--espresso));
  color: var(--cream);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 56px) clamp(40px, 5vw, 64px);
  text-align: center;
}
.page-hero .inner { max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1; color: var(--cream-2);
}
.page-hero p { margin: 18px auto 0; max-width: 56ch; color: var(--muted-dark); font-size: 1.1rem; }
.breadcrumb { margin: 0 0 18px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--muted-dark); }
.breadcrumb a:hover { color: var(--caramel); }

/* ---------- Blog list ---------- */
.blog-wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 56px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px, 2.4vw, 32px); }
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card .thumb { overflow: hidden; aspect-ratio: 3/2; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--raspberry); }
.post-card h2 { font-family: var(--display); font-size: 1.4rem; line-height: 1.1; }
.post-card p { margin: 0; color: var(--muted); font-size: 0.96rem; flex: 1; }
.post-card .text-link { margin-top: 4px; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 32px); }
.article-figure { margin: 0 0 clamp(24px, 4vw, 40px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.article-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.prose { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); }
.prose h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 38px 0 12px; color: var(--espresso); }
.prose h3 { font-family: var(--display); font-size: 1.3rem; margin: 26px 0 8px; }
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--raspberry); font-weight: 700; border-bottom: 1px solid transparent; }
.prose a:hover { border-color: var(--raspberry); }
.prose strong { color: var(--espresso); }
.article-cta {
  margin: 40px 0 0; padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg); text-align: center;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream)); border: 1px solid var(--line);
}
.article-cta h3 { font-family: var(--display); font-size: 1.6rem; margin-bottom: 8px; }
.article-cta p { color: var(--muted); margin: 0 0 18px; }
.article-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-back { display: inline-block; margin-top: 28px; font-weight: 700; color: var(--muted); }
.article-back:hover { color: var(--raspberry); }

@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; order: 3; }
  .header-cta { margin-left: auto; }
  .header-cta .phone-link { display: none; }

  .site-header.nav-open { flex-wrap: wrap; }
  .site-header.nav-open .main-nav {
    display: flex; order: 4; flex-basis: 100%; flex-direction: column;
    gap: 6px; margin: 6px 0 4px; font-size: 1.05rem;
  }
  .site-header.nav-open .main-nav a::after { display: none; }

  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about, .visit { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; gap: 0; }
  .values article { padding: 24px 0; border-top: 1px solid var(--line); }
  .values article:first-child { border-top: 2px solid var(--espresso); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .card.featured > img { aspect-ratio: 4/3; min-height: 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .order-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .visit-grid { grid-template-columns: 1fr; }
  .hero-actions .button { flex: 1 1 auto; }
  .hero-stats { gap: 22px; }
  .hero-bg { object-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18,10,6,0.74) 0%, rgba(18,10,6,0.55) 38%, rgba(18,10,6,0.88) 100%),
      radial-gradient(600px 400px at 20% 90%, rgba(226, 61, 87, 0.20), transparent 60%);
  }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .menu-grid { grid-template-columns: 1fr; }
  .card.featured { grid-column: span 1; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
}
