:root {
  --ink: #18312c;
  --forest: #16352f;
  --mint: #d9f4d7;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --line: #ded9cf;
  --muted: #687672;
  --orange: #ef7147;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; }
a { color: inherit; }
.site-header, main, .site-footer { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.site-header { height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.directory-link { font-size: .78rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
main { padding-block: 44px 72px; }
.breadcrumbs { display: flex; gap: 8px; color: var(--muted); font-size: .72rem; margin-bottom: 42px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: #a6aeab; }
.eyebrow { display: block; color: var(--orange); font: 500 .7rem "DM Mono", ui-monospace, monospace; letter-spacing: .14em; text-transform: uppercase; }
.restaurant-hero { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .65fr); gap: 54px; align-items: end; }
h1 { max-width: 760px; margin: 16px 0 20px; font-size: clamp(3rem, 7vw, 5.5rem); line-height: .94; letter-spacing: -.07em; overflow-wrap: anywhere; }
.lede { max-width: 680px; margin: 0; color: #52615d; font-size: 1.02rem; line-height: 1.7; }
.booking-card { padding: 28px; background: var(--mint); border-radius: 2px 34px 2px 34px; box-shadow: 0 20px 60px rgba(21, 50, 44, .08); }
.booking-card span { display: block; color: #4f635e; font-size: .7rem; }
.booking-card strong { display: block; margin: 5px 0 18px; font-size: 1.25rem; }
.booking-button { display: flex; justify-content: center; padding: 13px 18px; border-radius: 999px; background: var(--forest); color: white; text-decoration: none; font-size: .78rem; font-weight: 800; }
.facts { margin: 56px 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border: 1px solid var(--line); }
.fact { min-width: 0; padding: 24px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fact strong { font-size: .86rem; overflow-wrap: anywhere; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 24px; }
.answer-section, .source-card, .related { background: var(--paper); border: 1px solid var(--line); padding: 32px; }
.answer-section h2, .source-card h2, .related h2 { margin: 8px 0 22px; font-size: 1.65rem; letter-spacing: -.04em; }
.answer { padding: 20px 0; border-top: 1px solid var(--line); }
.answer h3 { margin: 0 0 7px; font-size: .92rem; }
.answer p, .source-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.source-card { align-self: start; }
.source-card a { display: inline-block; margin-top: 18px; font-size: .76rem; font-weight: 800; overflow-wrap: anywhere; }
.source-meta { margin-top: 18px !important; padding-top: 18px; border-top: 1px solid var(--line); }
.related { margin-top: 24px; }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-links a { padding: 16px; background: #f4f1e9; text-decoration: none; font-size: .78rem; font-weight: 800; }
.site-footer { padding: 25px 0 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .7rem; }
.site-footer a, .site-footer button { border: 0; border-bottom: 1px solid currentColor; padding: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; text-decoration: none; }
.cookie-consent { position: fixed; z-index: 100; right: 20px; bottom: 20px; width: min(430px, calc(100vw - 32px)); padding: 20px; display: grid; gap: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 70px rgba(21, 50, 44, .2); }
.cookie-consent[hidden] { display: none; }
.cookie-consent-copy strong { display: block; margin-bottom: 5px; font-size: .88rem; }
.cookie-consent-copy p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cookie-consent-actions button { min-height: 40px; border: 1px solid var(--forest); border-radius: 999px; background: transparent; color: var(--forest); cursor: pointer; font-size: .73rem; font-weight: 800; }
.cookie-consent-actions button:last-child { background: var(--forest); color: white; }
.cookie-consent-actions button:focus-visible, .site-footer button:focus-visible { outline: 3px solid rgba(107,139,131,.3); outline-offset: 2px; }

@media (max-width: 760px) {
  .site-header, main, .site-footer { width: min(100% - 32px, 1080px); }
  main { padding-top: 32px; }
  .breadcrumbs { margin-bottom: 32px; }
  .restaurant-hero, .content-grid { grid-template-columns: 1fr; gap: 24px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .related-links { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .cookie-consent { right: 16px; bottom: 16px; }
}
