/* StonePeak Chimney Services — site stylesheet */

:root {
  --bg: #f7f5f1;
  --bg-alt: #eee8dd;
  --surface: #ffffff;
  --text: #23262b;
  --text-muted: #5c6570;
  --primary: #26333d;
  --primary-dark: #161e24;
  --primary-tint: #3c4d59;
  --accent: #c17d3a;
  --accent-dark: #9c5f24;
  --accent-tint: #eecfa4;
  --border: #e2ddd2;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(22, 30, 36, 0.25);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--primary);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); color: #eef1f3; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #ffffff; }
.section-dark p { color: #c7d0d6; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--accent-tint); }

.lead { font-size: 1.15rem; }

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(193, 125, 58, 0.6);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
}
.brand-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; color: var(--primary); line-height: 1.1; }
.brand-text span { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.65rem; letter-spacing: 0.14em; color: var(--accent-dark); text-transform: uppercase; margin-top: 2px; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo-footer { filter: brightness(0) invert(1); opacity: 0.96; }
@media (max-width: 560px) { .brand-logo { height: 42px; } }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--accent-dark); text-decoration: none; }
.main-nav a.active { color: var(--accent-dark); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-trigger .caret { width: 13px; height: 13px; transition: transform 0.15s ease; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-trigger .caret,
.nav-dropdown.open .nav-dropdown-trigger .caret { transform: rotate(180deg); }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-heading {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-dark); margin: 0 0 6px;
}
.nav-dropdown-col a { padding: 7px 9px; border-radius: 7px; color: var(--text); font-size: 0.9rem; font-weight: 500; }
.nav-dropdown-col a:hover { background: var(--bg-alt); color: var(--accent-dark); text-decoration: none; }

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1; visibility: visible;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none; border: none; border-radius: 0;
    padding: 4px 0 12px 28px;
    margin-top: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.header-phone small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.72rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  margin: 6px 0;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--border); }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 260px;
  background: var(--accent);
  opacity: 0.12;
  clip-path: polygon(0% 100%, 20% 30%, 38% 65%, 55% 10%, 74% 55%, 100% 0%, 100% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero p { color: #cdd6db; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #eef1f3;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--primary-tint), var(--primary-dark));
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 320px; margin: 0 auto; }
}

/* Page header (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd6db; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--accent-tint); margin-bottom: 14px; }
.breadcrumb a { color: var(--accent-tint); }

/* Grid / cards */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px dashed var(--accent);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.section-dark .card-icon, .texture-stone .card-icon { border-color: var(--accent-tint); color: var(--accent-tint); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }

/* Stats */
.stats { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat strong { display: block; font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--accent); }
.stat span { font-size: 0.85rem; color: var(--text-muted); }

/* Testimonials */
.quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.quote-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.quote-name { font-weight: 700; color: var(--primary); margin-top: 14px; }
.quote-loc { font-size: 0.82rem; color: var(--text-muted); }

/* CTA banner */
.cta-banner {
  background: var(--accent);
  border-radius: 20px;
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { color: #fbe9d4; margin: 0; }

/* Forms */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent-tint); border-color: var(--accent); }
.field { margin-bottom: 18px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; }

/* Coupons */
.coupon-card {
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--surface);
  position: relative;
}
.coupon-value { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--accent-dark); }
.coupon-code { display: inline-block; margin-top: 14px; background: var(--bg-alt); padding: 8px 16px; border-radius: 8px; font-weight: 700; letter-spacing: 0.05em; color: var(--primary); }

/* Blog */
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.post-thumb { height: 160px; background: linear-gradient(145deg, var(--primary-tint), var(--primary)); display: flex; align-items: center; justify-content: center; }
.post-thumb svg { width: 48px; height: 48px; color: var(--accent-tint); }
.post-body { padding: 24px; }
.post-meta { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.post-content { max-width: 720px; margin: 0 auto; }
.post-content h2 { margin-top: 1.4em; }
.post-content p { color: var(--text); }

/* List check */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--text); }
.check-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent-dark); margin-top: 2px; }

/* Footer */
.site-footer { background: var(--primary-dark); color: #c7d0d6; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #c7d0d6; }
.site-footer a:hover { color: var(--accent-tint); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-brand p { color: #a7b2ba; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: #8b98a1; }
.footer-bottom a { color: #8b98a1; }

/* Misc */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-alt); color: var(--primary);
  padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
}
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* Photo banner — full-width service/content photo */
.photo-banner { padding: 40px 0 0; }
.photo-banner img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 620px) { .photo-banner img { aspect-ratio: 4 / 3; } }

/* Ridge divider — jagged mountain-line transition between hero and content */
.ridge-divider {
  height: 34px;
  background: var(--bg);
  margin-top: -1px;
  clip-path: polygon(0% 100%,0% 42%,3% 68%,7% 22%,11% 74%,15% 12%,19% 58%,23% 30%,27% 70%,31% 18%,35% 64%,39% 24%,43% 72%,47% 10%,51% 58%,55% 28%,59% 68%,63% 16%,67% 62%,71% 22%,75% 74%,79% 12%,83% 58%,87% 26%,91% 70%,95% 18%,100% 62%,100% 100%);
}
.ridge-divider.on-alt { background: var(--bg-alt); }

/* Stone texture band — for dark statistic / callout sections */
.texture-stone {
  position: relative;
  background-color: var(--primary-dark);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 16px);
}

/* Brick coursing rule — small decorative divider echoing masonry joints */
.brick-rule {
  width: 72px;
  height: 8px;
  margin-bottom: 20px;
  background-image: repeating-linear-gradient(90deg, var(--accent) 0 22px, transparent 22px 26px);
}
.section-dark .brick-rule, .texture-stone .brick-rule { background-image: repeating-linear-gradient(90deg, var(--accent-tint) 0 22px, transparent 22px 26px); }

/* Numbered process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem;
  margin-bottom: 18px;
}
.section-dark .step-num, .texture-stone .step-num { background: var(--accent); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Accent-bordered card — alternate card treatment (masonry-course accent edge) */
.card-bordered {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 4px 14px 14px 4px;
  padding: 28px 30px;
}
.card-mark {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

/* Pull quote */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-style: italic;
}

/* FAQ accordion (native details/summary, no JS required) */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.08rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; }

/* Service-field cards (used on Service Area page) */
.field-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.field-card h3 { display: flex; align-items: center; gap: 12px; }
.field-card .card-icon { margin-bottom: 0; }

/* Drop cap — editorial opening paragraph */
.drop-cap:first-letter {
  float: left;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 0.82;
  color: var(--accent);
  padding: 4px 10px 0 0;
}

/* Founder's note */
.founder-note {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 36px 38px;
  position: relative;
}
.founder-note::before {
  content: '“';
  position: absolute;
  top: 6px;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
}
.founder-signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 20px;
}
.founder-role { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* Est. seal badge */
.est-seal {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.est-seal strong { font-family: 'Fraunces', serif; font-size: 1.2rem; line-height: 1; }
.est-seal span { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 3px; }

/* Vertical timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -34px; top: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.timeline-year {
  font-family: 'Fraunces', serif; font-weight: 700;
  color: var(--accent-dark); font-size: 0.95rem; display: block; margin-bottom: 4px;
}

/* Ticket-style card — used for reviews, reads like a job ticket */
.ticket-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px dashed var(--accent);
  border-radius: 4px;
  padding: 26px;
}
.ticket-meta {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Callout box — cost factors, myths, asides */
.callout {
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  padding: 20px 26px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}
.callout-label {
  font-weight: 700; color: var(--primary);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px; display: block;
}
.callout p:last-child { margin-bottom: 0; }
.callout.callout-accent { border-left-color: var(--accent); }

/* Myth / fact pair */
.myth-fact { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin-bottom: 18px; }
.myth-fact .tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 10px; border-radius: 999px; height: fit-content; }
.myth-fact .tag-myth { background: #f4d9d3; color: #8a3b2c; }
.myth-fact .tag-fact { background: var(--accent-tint); color: var(--accent-dark); }
.myth-fact p { margin: 0; }

/* Topographic texture overlay — reinforces "Peak" motif on dark sections */
.topo-overlay { position: relative; }
.topo-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-radial-gradient(circle at 18% 24%, rgba(255,255,255,0.05) 0, transparent 1px, transparent 26px),
    repeating-radial-gradient(circle at 82% 70%, rgba(255,255,255,0.04) 0, transparent 1px, transparent 34px);
  pointer-events: none;
}

/* Almanac / seasonal grid */
.almanac { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.almanac-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.almanac-season {
  font-family: 'Fraunces', serif; font-weight: 600; color: var(--accent-dark);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px; display: block;
}
@media (max-width: 900px) { .almanac { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .almanac { grid-template-columns: 1fr; } }
