/* Harbor & Vine Bistro — fine-dining editorial. Serif display, cream + wine, hairline rules, dotted-leader menu. */
:root {
  --cream: #faf6ef;
  --cream-deep: #f2ecdf;
  --ink: #2b2320;
  --wine: #7c2d12;
  --wine-deep: #5d200c;
  --gold: #b98a2e;
  --rule: #e2d9c8;
  --muted: #8a7d6e;
  --white: #fffdf9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

.display, h1, h2, h3, .wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 28px; }

/* ---- masthead ---- */
.masthead { padding: 30px 0 26px; border-bottom: 1px solid var(--rule); text-align: center; }
.topnav { display: flex; justify-content: center; gap: 34px; margin-bottom: 26px; }
.topnav a {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.topnav a:hover { color: var(--wine); }
.wordmark { font-size: clamp(1.7rem, 4vw, 2.3rem); letter-spacing: 0.04em; color: var(--wine); }
.tagline { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---- hero ---- */
.hero { text-align: center; padding: 84px 28px 70px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--wine); }
.hero p { max-width: 34em; margin: 22px auto 30px; color: var(--muted); font-size: 1.02rem; }
.hero-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: 0.9rem; }
.hero-links a { color: var(--wine); font-weight: 700; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.hero-links a:hover { color: var(--wine-deep); }
.hero-links span { color: var(--rule); }

/* ---- story ---- */
.story { border-top: 1px solid var(--rule); padding: 70px 28px; text-align: center; }
.label {
  font-size: 0.76rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.pull {
  font-family: Georgia, serif; font-style: italic; font-size: clamp(1.4rem, 3vw, 1.9rem);
  max-width: 22em; margin: 0 auto 22px; color: var(--ink);
}
.story .body { max-width: 40em; margin: 0 auto; color: var(--muted); font-size: 0.98rem; }

/* ---- menu: dotted leaders ---- */
.menu { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 70px 28px; }
.menu h2, .menu .label { text-align: center; }
.menu-grid { max-width: 760px; margin: 36px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.menu-item { padding: 14px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 1fr auto; column-gap: 14px; align-items: center; }
.menu-item h3 {
  font-size: 1.04rem; color: var(--ink);
  display: flex; align-items: baseline; gap: 10px;
}
.menu-item h3::after { content: ""; flex: 1; border-bottom: 1px dotted var(--gold); transform: translateY(-4px); }
.menu-item p { grid-column: 1; color: var(--muted); font-size: 0.86rem; margin-top: 3px; }
.menu-item .price { color: var(--wine); font-size: 0.98rem; }
.menu-note { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 30px; font-style: italic; }

/* ---- visit ---- */
.visit { padding: 70px 28px; text-align: center; }
.visit h2 { margin-bottom: 36px; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: left; }
.visit h3 { font-size: 1.06rem; color: var(--wine); margin-bottom: 12px; letter-spacing: 0.02em; }
.visit p { color: var(--muted); font-size: 0.9rem; margin-bottom: 6px; }
.hours td { padding: 5px 0; font-size: 0.9rem; }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours td:first-child { padding-right: 24px; }
.btn-outline {
  display: inline-block; margin-top: 14px;
  border: 1px solid var(--wine); color: var(--wine);
  padding: 11px 26px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
}
.btn-outline:hover { background: var(--wine); color: var(--white); }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--rule); padding: 34px 0 44px; text-align: center; color: var(--muted); font-size: 0.85rem; }

/* ---- responsive ---- */
@media (max-width: 760px) {
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .hours { margin: 0 auto; }
}
