:root {
  --cream: #f8f3e8;
  --forest: #1f3d2e;
  --gold: #c08a2e;
  --rust: #a85b3a;
  --ink: #1a1a1a;
  --paper: #fffaf0;
  --muted: #6f665c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration-color: rgba(192, 138, 46, .55); text-underline-offset: .18em; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: .98;
  letter-spacing: 0;
  color: var(--forest);
}
.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dek { font-size: clamp(1.1rem, 2.4vw, 1.45rem); color: #332d27; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(248, 243, 232, .93);
  border-bottom: 1px solid rgba(192, 138, 46, .35);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  color: var(--forest);
  text-decoration: none;
  font-size: 1.28rem;
}
.brand span { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 1rem; }
.nav-link { font-size: .86rem; font-weight: 700; text-decoration: none; color: var(--forest); }
.nav-link.is-active { color: var(--rust); }
.menu-toggle {
  display: none;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--forest);
  padding: .45rem .7rem;
  font-weight: 700;
}

.home-hero, .section-hero, .article-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}
.home-hero img, .section-hero img, .article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.home-hero::after, .section-hero::after, .article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,61,46,.92), rgba(31,61,46,.45) 55%, rgba(31,61,46,.18));
}
.home-hero__content, .section-hero > div, .article-hero__overlay {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 8rem clamp(1.1rem, 5vw, 4rem) 5rem;
  color: var(--cream);
}
.home-hero h1, .section-hero h1, .article-hero h1 {
  max-width: 900px;
  margin: .25rem 0 1rem;
  color: var(--cream);
  font-size: clamp(3.2rem, 9vw, 7.6rem);
}
.section-hero, .article-hero { min-height: 68vh; }
.section-hero p, .article-hero .dek, .home-hero p { max-width: 710px; }

.email-form {
  margin-top: 2rem;
  max-width: 620px;
  padding-top: 1rem;
  border-top: 1px solid rgba(192, 138, 46, .75);
}
.email-form label {
  display: block;
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.email-form p { margin: .25rem 0 1rem; }
.email-form div { display: flex; gap: .5rem; }
.email-form input[type=email] {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(192, 138, 46, .8);
  background: rgba(255, 250, 240, .95);
  padding: .9rem 1rem;
  color: var(--ink);
}
.email-form button, .affiliate-card a, .right-now a {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  padding: .9rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
}
.form-note { display: block; min-height: 1.3rem; margin-top: .4rem; font-size: .86rem; color: var(--gold); }

.home-grid, .listing, .article-wrap, .plain-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.home-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 3rem; align-items: start; }
.section-heading { margin-bottom: 1.5rem; border-bottom: 1px solid var(--gold); }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin: 0 0 1rem; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2rem; }
.card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.story-card {
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid rgba(192, 138, 46, .58);
}
.story-card h3 { margin: .25rem 0 .65rem; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.story-card h3 a { text-decoration: none; }
.story-card p:last-child { color: #4e473f; margin-bottom: 0; }
.numbered-list { counter-reset: stories; }
.numbered-list .story-card {
  position: relative;
  padding-left: 4.1rem;
}
.numbered-list .story-card::before {
  counter-increment: stories;
  content: counter(stories, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
}

.sidebar { display: grid; gap: 1.4rem; }
.right-now, .sponsor-slot, .trust-block, .affiliate-card {
  border-top: 2px solid var(--gold);
  background: rgba(255, 250, 240, .55);
  padding: 1.2rem;
}
.right-now h2, .sponsor-slot h2, .affiliate-card h2 { font-size: 1.8rem; margin: .25rem 0 .7rem; }

.article-wrap { max-width: 900px; }
.article-main {
  font-size: 1.08rem;
  background: rgba(255, 250, 240, .35);
  padding: 0 clamp(.25rem, 2vw, 1rem);
}
.article-main p:first-child::first-letter {
  float: left;
  font-family: Fraunces, Georgia, serif;
  font-size: 5.2rem;
  line-height: .8;
  padding: .15rem .45rem 0 0;
  color: var(--gold);
}
.inline-photo {
  margin: 2.4rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: .65rem 0;
}
.inline-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
figcaption { color: var(--muted); font-size: .86rem; margin-top: .45rem; font-style: italic; }
.article-footer { margin-top: 3rem; border-top: 2px solid var(--gold); padding-top: 1.4rem; }
.article-footer .email-form { color: var(--ink); }
.related { margin-top: 2rem; }

.plain-page {
  max-width: 780px;
  min-height: 62vh;
}
.plain-page h1 { font-size: clamp(3rem, 7vw, 6rem); margin: .2rem 0 1rem; }
.plain-page p { font-size: 1.08rem; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--gold);
  color: var(--forest);
}
.site-footer p { max-width: 560px; margin: .5rem 0 0; }
.site-footer nav { display: flex; gap: 1rem; align-items: start; font-weight: 700; }

.fade-in { opacity: 0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* Where-to-Eat food directory */
.dir-intro { max-width: 760px; margin: 0 0 2.4rem; }
.dir-intro p { font-size: 1.08rem; }
.dir-meta { margin: .7rem 0 0; font-size: .9rem; color: var(--muted); font-style: italic; }
.cat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2rem; }
.mt-block { margin-top: 3.4rem; }
.venue-card .venue-area { color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .04em; margin: .1rem 0 .55rem; }
.venue-card .venue-why { color: #4e473f; margin: .2rem 0 .4rem; }
.venue-card .venue-note { font-size: .84rem; color: var(--muted); font-style: italic; margin: 0; }
.dir-editor {
  border-top: 2px solid var(--gold);
  background: rgba(255, 250, 240, .55);
  padding: 1.15rem 1.3rem;
  margin-top: 2.6rem;
  max-width: 760px;
  font-size: .92rem;
}
.dir-editor .eyebrow { margin-bottom: .3rem; }
.dir-editor p { margin: .35rem 0 0; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--gold);
  }
  .site-nav.is-open { display: flex; }
  .home-grid { grid-template-columns: 1fr; }
  .card-grid, .card-grid--two { grid-template-columns: 1fr; }
  .home-hero, .section-hero, .article-hero { min-height: 76vh; }
  .home-hero__content, .section-hero > div, .article-hero__overlay { padding-top: 6rem; padding-bottom: 3rem; }
  .email-form div { flex-direction: column; }
  .numbered-list .story-card { padding-left: 3.35rem; }
  .site-footer { flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
}
