/* The Bracken Table — sample site by Prism
   Look: warm, soft, welcoming. Cream + sage, rounded, photography-led. */

:root {
  --cream:   #fbf7f1;
  --cream-2: #f3ece0;
  --ink:     #35302a;
  --ink-2:   #6b6459;
  --sage:    #5e7460;
  --sage-d:  #4a5d4d;
  --clay:    #c06b4f;
  --line:    #e6ddce;
  --sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--sage-d); }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
a:focus-visible, button:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; background: var(--sage-d); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }

.wrap { width: 100%; max-width: 1060px; margin-inline: auto; padding-inline: 22px; }
@media (min-width: 700px) { .wrap { padding-inline: 36px; } }
.wrap--narrow { max-width: 720px; }

h1, h2, h3 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 1.6rem + 3.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 1.35rem + 1.7vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem); color: var(--ink-2); }

.kicker {
  display: inline-block;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sage-d);
  background: var(--cream-2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Header */
.top { background: var(--cream); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.brand__leaf { width: 30px; height: 30px; flex-shrink: 0; }
.brand__name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--clay); }
.nav .btn { padding: 10px 20px; }
.nav__btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--cream-2); border-radius: 10px; }
.nav__btn span, .nav__btn span::before, .nav__btn span::after { content:""; display:block; width:18px; height:2px; background: var(--ink); margin: 4px auto; border-radius: 2px; }

@media (max-width: 800px) {
  .nav__btn { display: block; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; z-index: 90; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); display: none; padding-bottom: 10px; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 22px; border-top: 1px solid var(--line); }
  .nav .btn { margin: 10px 22px 0; text-align: center; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  padding: 14px 26px; border-radius: 999px;
  background: var(--sage); color: #fff; border: 2px solid var(--sage);
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--sage-d); border-color: var(--sage-d); color: #fff; }
.btn--ghost { background: transparent; color: var(--sage-d); border-color: var(--sage); }
.btn--ghost:hover { background: var(--sage); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

section { padding-block: clamp(48px, 6.5vw, 92px); }
.band { background: var(--cream-2); }
.band--sage { background: var(--sage-d); color: #e7ede5; }
.band--sage h2, .band--sage h3 { color: #fff; }
.band--sage .kicker { background: rgba(255,255,255,.14); color: #fff; }

/* Hero */
.hero { padding-block: 0; }
.hero__img {
  min-height: clamp(300px, 52vw, 520px);
  background-size: cover; background-position: center;
  border-radius: 0 0 26px 26px;
  position: relative;
}
.hero__panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  max-width: 620px;
  margin: -70px auto 0;
  position: relative;
  text-align: center;
}
.hero__panel h1 { margin-bottom: 12px; }
.hero__panel p { color: var(--ink-2); }
.hero__panel .btn-row { justify-content: center; margin-top: 22px; }

/* Cards */
.tiles { display: grid; gap: 22px; }
@media (min-width: 720px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.tile img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.tile__body { padding: 20px 22px 24px; }
.tile h3 { margin-bottom: 6px; }
.tile p { font-size: 0.96rem; color: var(--ink-2); }

/* Split */
.split { display: grid; gap: 30px; align-items: center; }
@media (min-width: 840px) { .split { grid-template-columns: 1fr 1fr; gap: 50px; } .split--rev .split__media { order: 2; } }
.split__media img { border-radius: 20px; }
.stack > * + * { margin-top: 16px; }

/* Menu list */
.menu-group { margin-top: 30px; }
.menu-group h3 {
  font-size: 1.35rem; color: var(--sage-d);
  padding-bottom: 8px; border-bottom: 2px solid var(--line); margin-bottom: 10px;
}
.menu-list li { display: flex; gap: 12px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); }
.menu-list .i-name { font-weight: 700; }
.menu-list .i-desc { display: block; font-weight: 400; color: var(--ink-2); font-size: 0.92rem; }
.menu-list .i-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-list .i-price { font-weight: 700; white-space: nowrap; }
.tagline { color: var(--ink-2); font-style: italic; margin-top: 6px; }

/* Reviews */
.says { display: grid; gap: 20px; }
@media (min-width: 820px) { .says { grid-template-columns: repeat(3, 1fr); } }
.say { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.say p { font-size: 0.98rem; }
.say .who { margin-top: 12px; font-weight: 700; color: var(--sage-d); font-size: 0.9rem; }

/* Hours / find */
.find { display: grid; gap: 32px; }
@media (min-width: 780px) { .find { grid-template-columns: 1fr 1fr; gap: 48px; } }
.hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours li.closed { color: var(--ink-2); }
.hours li span:last-child { font-weight: 700; }
.band--sage .hours li { border-color: rgba(255,255,255,.2); }

.addr { font-size: 1.15rem; line-height: 1.6; }
.addr a { color: inherit; text-decoration: none; }

/* Footer */
.foot { background: var(--ink); color: #b7afa2; padding-block: 46px; font-size: 0.9rem; }
.foot a { color: #fff; text-decoration: none; }
.foot__grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .foot__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot h4 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.foot li { margin-bottom: 6px; }
.foot__legal { margin-top: 30px; padding-top: 18px; border-top: 1px solid #4a443c; font-size: 0.82rem; }
.foot__legal a { color: #ddd5c8; }
