/* MichelONE @54 — light & cute theme
   Anton (display) · Archivo (text) · Caveat (handwritten accents)
   Cream background · soft brown ink · mocha/caramel accent · rounded + soft */

:root {
  /* surfaces & ink */
  --bg: #faf2e4;
  --surface: #fffdf8;
  --surface-2: #f4ead8;
  --ink: #3a2c20;
  --ink-soft: #6d5d4d;
  --mut: #998975;
  --mut-2: #bcae9a;
  --cream: #fdf7ec;
  --cream-dim: #d8ccb8;
  --espresso: #1d150e;
  --espresso-2: #271c12;

  /* accent — mocha / caramel */
  --accent: #a6754c;
  --accent-2: #c4965f;
  --accent-deep: #855a36;

  /* lines */
  --line: rgba(58, 44, 32, 0.12);
  --line-2: rgba(58, 44, 32, 0.20);
  --line-cream: rgba(253, 247, 236, 0.16);

  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 8px 28px rgba(58, 44, 32, 0.08);
  --shadow-sm: 0 4px 16px rgba(58, 44, 32, 0.07);

  /* legacy aliases (used by inline styles on free-coffee / find-us) */
  --orange: var(--accent);
  --orange-2: var(--accent-2);
  --orange-deep: var(--accent-deep);
  --paper: var(--cream);
  --paper-dim: var(--cream-dim);
  --black: var(--espresso);
  --black-2: var(--espresso-2);

  --display: 'Anton', 'Archivo', sans-serif;
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  min-height: 100svh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(196, 150, 95, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* subtle paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); }

/* handwritten accent */
.script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
}

/* ============ TICKER / ANNOUNCE ============ */
.announce-bar {
  position: relative;
  z-index: 51;
  background: var(--accent);
  color: var(--cream);
  overflow: hidden;
}
.announce-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announce-inner strong { font-weight: 800; }
.announce-inner a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid rgba(253, 247, 236, 0.5);
  padding-bottom: 1px;
}
.announce-inner a:hover { border-color: var(--cream); }
.announce-inner .sep { opacity: 0.55; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--cream); flex: 0 0 auto; }
@media (max-width: 540px) { .announce-inner { padding: 8px 14px; font-size: 10.5px; gap: 8px; } }

/* ============ HEADER (dark espresso crown) ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(29, 21, 14, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-cream);
}
.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--cream); }
.brand img { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
.brand-name em { font-style: normal; color: var(--accent-2); }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--accent-2); }
.nav a.active { color: var(--accent-2); }
.nav a.cta {
  background: var(--accent-2);
  color: var(--espresso);
  font-weight: 700;
  padding: 9px 18px;
  margin-left: 8px;
}
.nav a.cta:hover { background: var(--cream); color: var(--espresso); }

@media (max-width: 660px) {
  .site-header-inner { padding: 10px 16px; flex-wrap: wrap; }
  .nav { gap: 0; flex-wrap: wrap; justify-content: flex-end; }
  .nav a { padding: 6px 9px; font-size: 12px; }
  .brand-name { font-size: 18px; }
}

/* ============ SECTION ============ */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 24px;
}
.section.tight { padding-top: clamp(26px, 5vw, 46px); padding-bottom: clamp(26px, 5vw, 46px); }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1.display, h2.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
h1.display b, h2.display b { font-weight: 400; color: var(--accent); }

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
h3 { font-family: var(--display); font-weight: 400; font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }

.lead { font-size: clamp(16px, 1.7vw, 19px); font-weight: 400; line-height: 1.65; color: var(--ink-soft); max-width: 58ch; }
.body { font-size: 15.5px; font-weight: 400; line-height: 1.75; color: var(--ink-soft); }
.body + .body { margin-top: 14px; }
.muted { color: var(--mut); }

.rule { width: 64px; height: 4px; background: var(--accent); border-radius: 999px; margin: 22px 0; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ============ HOME (photo hero) ============ */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(24px, 4vw, 44px) 20px clamp(40px, 7vw, 72px);
  position: relative;
  z-index: 1;
  gap: clamp(22px, 4vw, 34px);
}
.home-banner {
  position: relative;
  width: 100%;
  max-width: 880px;
  min-height: clamp(230px, 40vw, 380px);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(29, 21, 14, 0.42), rgba(29, 21, 14, 0.64)),
    url("/assets/images/Michelone54-347.jpg") 50% 42% / cover no-repeat;
  box-shadow: var(--shadow);
}
.home .logo { width: clamp(168px, 42vw, 270px); filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)); position: relative; z-index: 1; }
.home .wrap { width: 100%; max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: clamp(14px, 2.6vw, 22px); }
.home h1 {
  font-family: var(--display);
  font-weight: 400;
  width: 100%;
  font-size: clamp(40px, 11vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}
.home h1 b { font-weight: 400; color: var(--accent); }
.home .script, .home .date-line { color: var(--accent); }

.tagline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 16px;
  font-size: clamp(11px, 2.6vw, 13px); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
}
.tagline span { position: relative; }
.tagline span:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); transform: translateY(-50%); }

.location { font-size: clamp(14px, 1.6vw, 16px); font-weight: 400; color: var(--cream); line-height: 1.7; text-align: center; }
.location a { color: var(--accent-2); text-decoration: none; border-bottom: 2px solid rgba(196, 150, 95, 0.5); }
.location a:hover { border-color: var(--accent-2); }

/* rubber stamp */
.home-stamp { position: absolute; top: 16px; right: 16px; z-index: 2; }
@media (max-width: 600px) { .home-stamp { transform: scale(0.78); transform-origin: top right; } }
.stamp-badge {
  display: inline-grid; place-items: center; text-align: center;
  width: 132px; height: 132px;
  border: 3px solid var(--accent-2); border-radius: 50%;
  color: var(--accent-2);
  transform: rotate(-9deg);
  font-family: var(--display); text-transform: uppercase; line-height: 0.95; letter-spacing: 0.03em;
  box-shadow: inset 0 0 0 2px rgba(196, 150, 95, 0.35);
}
.stamp-badge .s-top { font-size: 12px; letter-spacing: 0.16em; }
.stamp-badge .s-big { font-size: 30px; }
.stamp-badge .s-sub { font-family: var(--font); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; }

.date-line { font-size: clamp(13px, 1.7vw, 15px); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.date-line strong { font-weight: 800; }

/* ============ HERO (about / catering / menu) ============ */
.hero { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: clamp(44px, 7vw, 80px) 24px clamp(36px, 5vw, 56px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.hero-image {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface-2);
  box-shadow: var(--shadow);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .hero-grid { grid-template-columns: 1fr; } .hero-image { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; } }

/* ============ CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 18px; margin-top: 28px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(166, 117, 76, 0.4); }
.card h3 { color: var(--ink); }
.card p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); font-family: var(--font); }
.card .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }

.card-img {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-img:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img .img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.card-img .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card-img:hover .img img { transform: scale(1.04); }
.card-img .body-wrap { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }

/* ============ STATS ============ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 0; margin-top: 36px;
}
.stat { text-align: center; }
.stat .value { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); line-height: 1; color: var(--accent); }
.stat .label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mut); margin-top: 8px; }

/* ============ MENU ============ */
.menu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 5vw, 56px); margin-top: 26px; align-items: start; }
.menu-group + .menu-group { margin-top: clamp(34px, 5vw, 50px); }
.menu-group h3 {
  display: inline-block; background: var(--accent); color: var(--cream);
  font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 8px;
}
.menu-meta { display: inline; background: none; color: var(--mut); font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; text-transform: none; padding: 0; margin-left: 8px; }
.menu-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-family: var(--display); font-weight: 400; font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
.menu-item .desc { font-size: 14px; font-weight: 400; line-height: 1.55; color: var(--mut); margin-top: 4px; }
.menu-inline { font-size: 15.5px; font-weight: 400; line-height: 2; color: var(--ink-soft); margin-top: 16px; }
.menu-inline b { display: inline-block; font-family: var(--display); font-weight: 400; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.menu-inline + .menu-inline { margin-top: 18px; }

/* photo gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 28px; }
.gallery figure { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1 / 1; margin: 0; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
  background: linear-gradient(transparent, rgba(29, 21, 14, 0.85));
}

/* punch card */
.punchcard { border: 2px solid var(--accent); border-radius: var(--radius); padding: 26px 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.punchcard .pc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.punchcard .pc-top h3 { font-size: 30px; }
.punchcard .pc-top .pc-note { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.punchcard p { font-size: 14px; color: var(--mut); margin: 6px 0 18px; }
.dots { display: flex; gap: 11px; flex-wrap: wrap; }
.dots .d { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--accent); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--accent); }
.dots .d.on { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.dots .d.free { border-color: var(--accent-2); color: var(--accent-deep); }

/* reviews / heritage badge */
.proof {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; line-height: 1.3; color: var(--ink-soft);
  background: var(--surface);
}
.proof .stars { color: var(--accent-2); letter-spacing: 2px; font-size: 13px; flex: 0 0 auto; }
.proof b { color: var(--ink); font-weight: 700; }
.proof a { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid rgba(133, 90, 54, 0.4); }
.proof a:hover { border-color: var(--accent-deep); }
.home .proof { background: rgba(253, 247, 236, 0.1); border-color: rgba(253, 247, 236, 0.3); color: var(--cream); }
.home .proof b { color: var(--cream); }
.home .proof a { color: var(--accent-2); border-color: rgba(196, 150, 95, 0.5); }

/* ============ FORM ============ */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); max-width: 720px; margin: 0 auto; box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 8px; }
.form-card .form-sub { font-size: 14px; color: var(--mut); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row + .form-row, .form-field + .form-row, .form-row + .form-field { margin-top: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: 15px; color: var(--ink);
  background: #fffefb; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 12px 14px; outline: none; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--mut-2); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166, 117, 76, 0.14); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: var(--accent);
  border: 2px solid var(--accent); border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.05s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: default; }
.btn.ghost { background: transparent; color: var(--accent-deep); border-color: var(--line-2); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-deep); background: rgba(166, 117, 76, 0.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 16px; font-size: 14px; min-height: 1.2em; }
.form-msg.ok { color: var(--accent-deep); }
.form-msg.err { color: #c0563b; }

.form-success { display: none; text-align: center; padding: 8px 0; }
.form-success.show { display: block; }
.form-success h2 { color: var(--accent); margin-bottom: 10px; }
.form-success p { color: var(--mut); font-size: 15px; max-width: 48ch; margin: 0 auto; line-height: 1.6; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* inline notify form */
.notify { width: 100%; max-width: 460px; margin-top: 4px; }
.notify p { font-size: clamp(13px, 1.6vw, 15px); color: var(--mut); margin-bottom: 14px; }
.notify .field { display: flex; gap: 8px; flex-wrap: wrap; }
.notify .field input[type="email"] {
  flex: 1 1 200px; min-width: 0; padding: 14px 16px; font-family: var(--font); font-size: 15px; color: var(--ink);
  background: #fffefb; border: 1px solid var(--line-2); border-radius: var(--radius-sm); outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.notify .field input[type="email"]::placeholder { color: var(--mut-2); }
.notify .field input[type="email"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(166, 117, 76, 0.14); }
.notify .field button {
  flex: 0 0 auto; padding: 14px 24px; font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: var(--accent); border: 2px solid var(--accent); border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.18s ease;
}
.notify .field button:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.notify .field button:disabled { opacity: 0.6; cursor: default; }

/* ============ FAQ ============ */
.faq { margin-top: 28px; max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 16px; letter-spacing: 0.01em; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 400; font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--mut); }

/* ============ FOOTER (dark espresso base) ============ */
.site-footer { position: relative; z-index: 1; background: var(--espresso); border-top: 3px solid var(--accent); margin-top: clamp(48px, 8vw, 80px); }
.site-footer-inner { max-width: var(--max); margin: 0 auto; padding: 38px 24px 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.site-footer .address { font-size: 14px; color: var(--cream-dim); line-height: 1.6; }
.site-footer .address a { color: var(--accent-2); text-decoration: none; border-bottom: 2px solid rgba(196, 150, 95, 0.4); padding-bottom: 1px; }
.site-footer .hours { font-family: var(--display); font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2); }
.social a { display: inline-flex; align-items: center; gap: 8px; color: var(--cream-dim); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; transition: color 0.18s ease; }
.social a:hover { color: var(--accent-2); }
.social svg { width: 18px; height: 18px; }
.copyright { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(216, 204, 184, 0.5); }

/* ============ UTIL ============ */
.center { text-align: center; }
.spacer-lg { height: clamp(24px, 4vw, 40px); }
.signature { margin-top: 28px; font-family: var(--script); font-weight: 700; font-size: 30px; color: var(--accent); transform: rotate(-2deg); }

/* status pill (catering hero) */
.status-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  background: rgba(166, 117, 76, 0.08); border: 1px solid var(--accent); border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep);
  margin-bottom: 18px;
}
.status-pill .live-dot { width: 8px; height: 8px; background: var(--accent); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; z-index: 100; left: 16px; right: 16px; bottom: 16px;
  max-width: 720px; margin-left: auto; margin-right: auto;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: 0 16px 50px rgba(58, 44, 32, 0.18);
  animation: cb-in 0.3s ease;
}
.cookie-banner[hidden] { display: none; }
@keyframes cb-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cookie-inner { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.cookie-text { font-size: 13px; line-height: 1.55; color: var(--ink-soft); flex: 1 1 320px; margin: 0; }
.cookie-text a { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid rgba(133, 90, 54, 0.4); }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn { padding: 10px 18px; font-size: 13px; }
.manage-cookies { background: none; border: 0; padding: 0; font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mut); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.manage-cookies:hover { color: var(--accent); }

/* ============ HERITAGE BAND ============ */
.heritage-band { position: relative; z-index: 1; background: var(--espresso); color: var(--cream); }
.heritage-band .hb-inner {
  max-width: var(--max); margin: 0 auto; padding: clamp(34px, 5vw, 60px) 24px;
  display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap;
}
.hb-figure { text-align: center; flex: 0 0 auto; }
.hb-stars { color: var(--accent-2); letter-spacing: 3px; font-size: 16px; }
.hb-num { font-family: var(--display); font-size: clamp(56px, 9vw, 104px); line-height: 0.88; color: var(--accent-2); }
.hb-cap { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); margin-top: 4px; }
.hb-main { max-width: 48ch; }
.heritage-band h2 { color: var(--cream); font-size: clamp(26px, 3.6vw, 40px); }
.heritage-band h2 b { color: var(--accent-2); }
.hb-main p { color: var(--cream-dim); font-size: 15px; line-height: 1.65; margin-top: 10px; }
.hb-main .btn { margin-top: 18px; }
@media (max-width: 680px) { .heritage-band .hb-inner { flex-direction: column; text-align: center; } }

/* "From MichelONE" hero attribution */
.from-michelone { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.hero-full .from-michelone, .home .from-michelone { color: var(--accent-2); }
/* Michele photo inside heritage band */
.hb-figure .hb-photo { margin-bottom: 14px; }
.hb-figure .hb-photo img { width: clamp(112px, 15vw, 152px); height: clamp(112px, 15vw, 152px); object-fit: cover; object-position: 50% 26%; border-radius: 50%; border: 3px solid var(--accent-2); box-shadow: 0 8px 24px rgba(0,0,0,0.3); margin: 0 auto; }

/* heritage band — image-forward redesign (overrides the bold version) */
.heritage-band .hb-inner {
  display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(28px, 5vw, 60px);
  align-items: center; padding: clamp(38px, 6vw, 68px) 24px;
}
.heritage-band .hb-photo { margin: 0; }
.heritage-band .hb-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 28%;
  border-radius: var(--radius); border: 1px solid var(--line-cream);
  box-shadow: 0 18px 46px rgba(0,0,0,0.4);
}
.hb-rating {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px;
  border: 1px solid var(--line-cream); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--cream-dim); margin-bottom: 20px;
}
.hb-rating .hb-stars { color: var(--accent-2); letter-spacing: 2px; font-size: 13px; }
.hb-rating b { color: var(--cream); }
.heritage-band h2 { color: var(--cream); font-size: clamp(26px, 3.1vw, 40px); line-height: 1; }
.heritage-band h2 b { color: var(--accent-2); }
.heritage-band .hb-main p { color: var(--cream-dim); font-size: 15.5px; line-height: 1.7; margin-top: 12px; max-width: 52ch; }
.heritage-band .hb-main .btn { margin-top: 20px; }
@media (max-width: 760px) {
  .heritage-band .hb-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .heritage-band .hb-photo img { max-width: 320px; margin: 0 auto; aspect-ratio: 4 / 3; }
  .hb-rating { }
}

/* ============ HEADER — light & bespoke (overrides dark band) ============ */
.site-header {
  background: rgba(250, 242, 228, 0.80);
  border-bottom: 1px solid var(--line);
}
.site-header .brand { color: var(--ink); gap: 0; }
.site-header .brand img { display: none; }          /* white logo can't sit on cream — wordmark carries it */
.site-header .brand-name { color: var(--ink); font-size: clamp(19px, 2.4vw, 23px); letter-spacing: 0.01em; }
.site-header .brand-name em { color: var(--accent); }
.site-header .nav { gap: clamp(14px, 2vw, 26px); }
.site-header .nav a {
  color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 15px;
  padding: 8px 2px; border-radius: 0; position: relative;
}
.site-header .nav a:hover { color: var(--ink); }
.site-header .nav a.active { color: var(--ink); }
.site-header .nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.site-header .nav a.cta {
  background: var(--accent); color: var(--cream);
  text-transform: none; letter-spacing: 0.01em; font-weight: 700;
  padding: 9px 18px; border-radius: 999px; margin-left: 6px;
}
.site-header .nav a.cta::after { display: none; }
.site-header .nav a.cta:hover { background: var(--accent-deep); color: var(--cream); }
@media (max-width: 660px) { .site-header .nav { gap: 12px; } .site-header .nav a { font-size: 13.5px; } }


/* ============ ORGANIC SECTION TRANSITIONS (scalloped seam) ============ */
.heritage-band { position: relative; }
.heritage-band::before, .heritage-band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 28px; z-index: 2; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201200%2028%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20d%3D%27M0%2C13%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20L1200%2C0%20L0%2C0%20Z%27%20fill%3D%27%23faf2e4%27%2F%3E%3C%2Fsvg%3E") center / 100% 100% no-repeat;
}
.heritage-band::before { top: -1px; }
.heritage-band::after { bottom: -1px; transform: scaleY(-1); }

.site-footer { position: relative; border-top: 0; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 28px; z-index: 2; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201200%2028%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20d%3D%27M0%2C13%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20a75%2C13%200%200%201%20150%2C0%20L1200%2C0%20L0%2C0%20Z%27%20fill%3D%27%23faf2e4%27%2F%3E%3C%2Fsvg%3E") center / 100% 100% no-repeat;
}

/* mobile: drop the wordmark from the header (logo already appears in the hero) */
@media (max-width: 600px) {
  .site-header .brand { display: none; }
  .site-header-inner { justify-content: center; }
  .site-header .nav { width: 100%; justify-content: center; }
}
