/* VSL Lone Oak — bright draft. Local only. */

:root {
  --bg: #f7f1ea;
  --bg-2: #fffdf9;
  --blush: #f3e6df;
  --ink: #241d18;
  --muted: #5e534c;
  --rose: #a85a64;
  --rose-2: #8f4751;
  --line: rgba(36, 29, 24, 0.1);
  --max: 1180px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --focus: #8f4751;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
nav a:hover, .btn:hover, .brand:hover { text-decoration: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.06; margin: 0; }
p { margin: 0; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 80; }
.draft-banner {
  background: #efe2c8; color: #5a4a32; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 12px;
}

.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 241, 234, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-in { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 38px; width: auto; }
.brand b { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; display: block; }
.brand span { display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
nav { display: flex; align-items: center; gap: 20px; }
nav a { font-size: 0.92rem; color: var(--muted); }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
.menu-btn span { display: block; height: 1.5px; background: currentColor; margin: 6px 10px; }
.mob-book { display: none !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px;
  background: var(--rose); color: #fff;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 0; cursor: pointer;
}
.btn:hover { background: var(--rose-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(36,29,24,0.22); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 1.18fr;
  min-height: min(86vh, 820px);
  background: var(--bg);
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 8px 64px 0;
  width: min(520px, 100%);
  margin-left: auto;
  margin-right: 36px;
}
.hero-photo { min-height: 420px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.kicker { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.hero p.lead { margin: 18px 0 28px; max-width: 34rem; color: var(--muted); font-size: 1.12rem; text-wrap: pretty; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

section { padding: 88px 0; }
.section-head { max-width: 36rem; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.section-head p { margin-top: 12px; color: var(--muted); }

.menu { border-top: 1px solid var(--line); }
.menu-row {
  display: grid; grid-template-columns: minmax(130px, 190px) 1fr auto;
  gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-row h3 { font-size: 1.55rem; }
.menu-row p { color: var(--muted); }
.price { font-family: var(--serif); font-size: 1.22rem; color: var(--rose); white-space: nowrap; }
.full-menu { margin-top: 24px; }
.full-menu a { color: var(--rose); }

.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about img { width: 100%; height: 540px; object-fit: cover; }
.about .copy h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 16px; }
.about .copy p + p { margin-top: 14px; }
.about .copy p { color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery img:first-child { grid-row: span 2; min-height: 448px; }

.reviews { background: var(--blush); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { background: var(--bg-2); padding: 22px 22px 20px; min-height: 168px; }
.stars { color: var(--rose); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.card p { color: var(--ink); }
.card .who { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }
.rating-line { margin-bottom: 22px; color: var(--muted); }
.rating-line strong { color: var(--ink); font-size: 1.5rem; font-family: var(--serif); }
.rating-line a { color: var(--rose); }

.visit { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: stretch; }
.visit-visual { display: grid; gap: 8px; }
.visit-visual img { width: 100%; height: 240px; object-fit: cover; }
.hours { list-style: none; padding: 0; margin: 18px 0 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.map { min-height: 240px; border: 0; width: 100%; background: var(--blush); }

.page-hero { padding: 48px 0 8px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.page-hero p { margin-top: 14px; color: var(--muted); max-width: 36rem; }
.page-hero img { width: 100%; height: 260px; object-fit: cover; object-position: center 35%; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 0 8px; }
.jump a {
  min-height: 36px; padding: 6px 12px; border: 1px solid var(--line);
  font-size: 0.82rem; color: var(--muted);
}
.jump a:hover { color: var(--ink); border-color: var(--ink); text-decoration: none; }
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 56px; padding: 24px 0 16px; }
.cat { break-inside: avoid; }
.cat.wide { grid-column: 1 / -1; }
.cat h2 { font-size: 2rem; }
.cat .sub { color: var(--muted); margin: 4px 0 8px; font-size: 0.92rem; }
.item { display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.item h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; }
.item p { grid-column: 1 / -1; color: var(--muted); font-size: 0.92rem; }
.page-cta { padding: 40px 0 80px; }

.book-layout { display: grid; grid-template-columns: 320px 1fr; gap: 32px; padding: 40px 0 72px; align-items: start; }
.book-aside { background: var(--bg-2); padding: 24px; border: 1px solid var(--line); }
.book-aside h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 0 0 12px; }
.book-aside p { color: var(--muted); }
.book-aside .cta-row { margin: 22px 0 8px; }
.book-aside img { width: 100%; height: 160px; object-fit: cover; margin: 18px 0 8px; }
.book-frame { background: var(--bg-2); min-height: 78vh; border: 1px solid var(--line); position: relative; overflow: hidden; }
.book-stage { position: relative; min-height: 78vh; }
.book-stage img { width: 100%; height: 78vh; object-fit: cover; }
.book-stage .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,29,24,0.15), rgba(36,29,24,0.45));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; color: #fff;
}
.book-stage .veil p { color: rgba(255,255,255,0.9); max-width: 28rem; margin-bottom: 16px; }
.book-note { margin-top: 12px; color: var(--muted); font-size: 0.92rem; }

footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--muted); font-size: 0.92rem; background: var(--bg); }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.foot b { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .mob-book { display: inline-flex !important; }
  nav { display: none !important; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .top.nav-open nav {
    display: flex !important; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 68px;
    background: var(--bg); padding: 16px 20px 22px; border-bottom: 1px solid var(--line);
    gap: 14px; z-index: 50;
  }
  .hero, .about, .visit, .menu-row, .review-grid, .page-hero, .cats, .book-layout, .foot {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; }
  .hero-copy { margin: 0; padding: 28px 24px 36px; width: 100%; }
  .hero-photo { min-height: 320px; order: -1; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .about img, .page-hero img { height: 280px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery img:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 220px; }
  .cat.wide { grid-column: auto; }
  .book-layout { padding-top: 24px; }
  .book-stage img { height: 70vh; }
}
