:root {
  --bg: #f6f1e8;
  --bg-top: #fbf8f2;
  --bg-mid: #f6f1e8;
  --bg-bottom: #efe5d8;
  --surface: rgba(255, 252, 245, 0.78);
  --surface-strong: rgba(255, 250, 242, 0.84);
  --ink: #1e241d;
  --muted: #5f685c;
  --line: rgba(30, 36, 29, 0.12);
  --sage: #7f9274;
  --moss: #35513a;
  --clay: #b8714a;
  --glow-a: rgba(197, 156, 95, 0.18);
  --glow-b: rgba(127, 146, 116, 0.2);
  --topbar: rgba(246, 241, 232, 0.8);
  --code-bg: rgba(53, 81, 58, 0.08);
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 24px 60px rgba(53, 81, 58, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--glow-a), transparent 34%),
    radial-gradient(circle at top right, var(--glow-b), transparent 28%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 45%, var(--bg-bottom));
  font-family: var(--font-body);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--content)); margin: 0 auto; }

.hero-band {
  position: relative;
  overflow: clip;
  padding: 0 0 1.5rem;
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(72vh, 760px);
  background:
    linear-gradient(90deg, rgba(22, 27, 19, 0.74), rgba(22, 27, 19, 0.28)),
    linear-gradient(180deg, rgba(246, 241, 232, 0), rgba(246, 241, 232, 0.72)),
    url("/Pictures/4.%2010%20Backyard%20Fire%20Pit%20Landscaping%20Ideas%20for%20Cozy%20Nights%20With%20Family%20and%20Friends/4--10-Backyard-Fire-Pit-Landscaping-Ideas-for-Cozy-Nights-With-Family-and-Friends-001.webp") center/cover;
  filter: saturate(0.9);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--topbar);
  backdrop-filter: blur(18px);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .container { padding: 1rem 0; }
.brand { display: flex; flex-direction: column; gap: 0.15rem; }

.brand-mark {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 800;
}

.brand-name { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.brand-tagline { color: var(--muted); font-size: 0.95rem; }
.nav { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.nav a { color: var(--muted); font-size: 0.95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--moss); }

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button.secondary { background: transparent; border-color: var(--line); color: var(--ink); }
main { padding: 2rem 0 4rem; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 3rem;
}

.hero-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: min(74vh, 860px);
}

.hero-copy {
  padding: 2rem 0 1rem;
  animation: rise-in 700ms ease both;
}

.hero-copy .eyebrow { background: rgba(255, 248, 241, 0.12); color: #ffe6d6; }

.hero-copy h1,
.hero-copy p { color: #fff9f2; }

.hero-copy p {
  max-width: 54ch;
  color: rgba(255, 249, 242, 0.82);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.hero-note {
  margin-top: 1.4rem;
  padding-top: 1rem;
  max-width: 32rem;
  border-top: 1px solid rgba(255, 249, 242, 0.22);
}

.hero-note span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd5be;
  font-weight: 800;
}

.hero-note p { margin: 0.55rem 0 0; font-size: 0.98rem; }

.hero-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 210px 170px 170px;
  gap: 0.9rem;
  align-self: stretch;
  animation: rise-in 850ms ease both;
}

.hero-panel,
.mood-tile,
.editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 30px 80px rgba(20, 28, 20, 0.22);
}

.hero-panel::after,
.mood-tile::after,
.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 12, 0.02), rgba(12, 14, 12, 0.46));
  pointer-events: none;
}

.hero-panel img,
.mood-tile img,
.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hero-panel-main {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-panel-copy,
.mood-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.15rem;
  z-index: 1;
  color: #fff8f3;
}

.hero-panel-copy span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd6bc;
}

.hero-panel-copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.eyebrow {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 113, 74, 0.12);
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.article-hero h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0.7rem 0 1rem;
}

.hero p,
.page-hero p,
.article-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-card,
.card,
.legal-card,
.article-section,
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card { overflow: hidden; }

.hero-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-tight { padding-top: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }

.stat {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--line);
}

.stat strong { display: block; font-size: 1.4rem; font-family: var(--font-display); }

.stats-featured {
  margin-top: 0;
  transform: translateY(-1.2rem);
}

.section { padding: 1.4rem 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.section-head p { color: var(--muted); max-width: 55ch; margin: 0; }
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mood-tile,
.editorial-card {
  min-height: 420px;
}

.mood-copy h3 {
  margin: 0.35rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.02;
}

.card { overflow: hidden; }
.article-card {
  display: block;
  cursor: pointer;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover img,
.hero-panel:hover img,
.mood-tile:hover img,
.editorial-card:hover img {
  transform: scale(1.05);
}

.card-body { padding: 1.15rem; }

.meta {
  color: var(--clay);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card h3,
.article-section h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: 1.8rem;
}

.card p,
.article-section p,
.legal-card p,
.legal-card li,
.callout p,
.page-hero p,
.article-list li {
  color: var(--muted);
}

.article-list,
.legal-list { padding-left: 1.2rem; }
.article-list li,
.legal-list li { margin-bottom: 0.5rem; }
.page-hero,
.article-hero { padding: 1.8rem 0 2rem; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: start;
}

.article-main { display: grid; gap: 1.25rem; }
.article-cover { overflow: hidden; }

.article-cover img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-section { padding: 1.5rem; }

.idea {
  display: block;
  padding: 1.2rem;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 45px rgba(53, 81, 58, 0.06);
}

.idea:first-of-type { margin-top: 0; }

.idea img {
  width: 100%;
  min-height: 420px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.idea h3 {
  font-size: 2rem;
  margin: 1rem 0 0.65rem;
}

.idea p { margin: 0; }
.sidebar { position: sticky; top: 6rem; display: grid; gap: 1rem; }

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-card {
  min-height: 360px;
  display: block;
}

.editorial-card > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
  color: #fff8f3;
}

.editorial-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.callout,
.legal-card { padding: 1.3rem; }

.callout-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.25rem;
  align-items: end;
}

.callout-wide h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  background: rgba(255, 251, 245, 0.55);
}

.footer-copy p,
.footer-links {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.article-teaser { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--moss); font-weight: 700; }

.clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.clean-hero-copy h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.clean-hero-copy p {
  margin: 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.clean-hero-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 540px;
  box-shadow: var(--shadow);
}

.clean-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 14, 0.02), rgba(15, 18, 14, 0.52));
  pointer-events: none;
}

.clean-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-hero-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.2rem;
  color: #fff9f2;
}

.clean-hero-caption h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.hero-mini-list div {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
}

.hero-mini-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.hero-mini-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero-clean {
  padding-bottom: 0.8rem;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero,
  .article-layout,
  .grid-3,
  .grid-2,
  .idea,
  .clean-hero,
  .hero-split,
  .mood-grid,
  .editorial-strip,
  .callout-wide {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 240px 180px 180px;
  }

  .hero-panel-main { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr; }

  .site-header .container,
  .site-footer .container,
  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .sidebar { position: static; }
  .hero-mini-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 1.45rem; }
  .hero h1, .page-hero h1, .article-hero h1 { font-size: 2.45rem; }
  main { padding-top: 1rem; }
  .hero-collage { grid-template-columns: 1fr; grid-template-rows: none; }
  .hero-panel,
  .hero-panel-main,
  .mood-tile,
  .editorial-card {
    min-height: 280px;
    grid-column: auto;
    grid-row: auto;
  }
  .stats-featured { transform: none; }
}
