:root {
  --bg: #f5efe7;
  --surface: rgba(255, 252, 248, 0.78);
  --line: rgba(94, 71, 49, 0.16);
  --ink: #251d15;
  --muted: #665443;
  --accent: #8e4a2a;
  --shadow: 0 18px 50px rgba(74, 49, 24, 0.09);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.7), transparent 24%),
    linear-gradient(180deg, #f7f2eb 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; width: 100%; }

.page {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.masthead,
.featured-story,
.section,
.about,
.contact,
.intro-block {
  border-bottom: 1px solid var(--line);
}

.masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: start;
  gap: 2rem;
  padding: 1.25rem 0 1.35rem;
}

.eyebrow,
.story-type {
  margin: 0 0 0.65rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 16ch;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }

p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 0.55rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}
.top-nav a { color: var(--muted); }

.intro-block { padding: 1rem 0 1.75rem; }
.intro-block p {
  max-width: 46rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.featured-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
}

.featured-copy,
.story-copy,
.about-text { display: grid; gap: 1rem; }

.featured-media img {
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.section { padding: 2.5rem 0; }
.section-head { margin-bottom: 1.5rem; }

.story-grid {
  display: grid;
  gap: 1.5rem;
}

.clips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story {
  display: grid;
  gap: 1.1rem;
}

.compact-story {
  grid-template-rows: auto 1fr;
}

.story-media {
  background: var(--surface);
}

.story-media img {
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
}

.flyer-image,
.chillum-image,
.dog-image {
  object-fit: cover !important;
  background: transparent;
  padding: 0;
}

.note {
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
  color: var(--ink);
}

.about-text { max-width: 46rem; }
.contact-line { color: var(--ink); }
.contact-line a { color: var(--accent); }

.contact-button {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(142, 74, 42, 0.22);
  border-radius: 999px;
  background: rgba(142, 74, 42, 0.08);
  color: var(--accent) !important;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.contact-button:hover {
  background: rgba(142, 74, 42, 0.14);
  color: var(--accent) !important;
}

@media (max-width: 980px) {
  .masthead,
  .featured-story,
  .clips-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .featured-media img { height: 300px; }
  .story-media img { height: 220px; }
}

@media (max-width: 640px) {
  .page {
    width: min(calc(100% - 1.25rem), var(--max));
    padding-top: 1rem;
  }

  h1 { max-width: none; }
  .featured-media img { height: 240px; }
  .story-media img { height: 190px; }
}
