/* SEO / help shells — same MonHunt editorial system as landing */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--track-body);
  color: var(--ink);
  background: var(--bg-atmosphere);
  min-height: 100vh;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
.seo-wrap {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  /* Top spacing lives on body > .mh-nav — content starts tight under chrome */
  padding: 0.25rem var(--page-inline-end, 24px) 3rem var(--page-inline-start, 24px);
  box-sizing: border-box;
  overflow-x: visible;
  /* backwards: avoid permanent identity transform from fill-mode both */
  animation: seoRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes seoRise {
  from { opacity: 0; transform: translateY(12px); }
  99% { opacity: 1; transform: translateY(0); }
  to { opacity: 1; transform: none; }
}
@keyframes seoReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.seo-hub-hero {
  position: relative;
  margin: 0 0 0.35rem;
  padding: 0.35rem 0 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* No local bloom/glow — page already uses --bg-atmosphere */
  background: none;
  /* One clean hairline under masthead — no teal ::after stacked on grey */
  border-bottom: 1px solid var(--line);
}
/* Hero rule is enough; stats strip must not add a second top hairline */
.seo-hub-hero + .seo-stats {
  border-top: none;
}
/*
 * One left edge for brand / kicker / H1 / lead — shared by /bot, /kupit, /free, …
 * No stray pad/margin that crooks the masthead stack.
 */
.seo-hub-hero > .seo-brand-mark,
.seo-hub-hero > .seo-kicker,
.seo-hub-hero > h1,
.seo-hub-hero > .seo-lead,
.seo-hub-hero > .bot-note,
.seo-hub-hero > .bot-cta-row,
.seo-hub-hero > .seo-cta-row {
  margin-inline: 0;
  padding-inline: 0;
  text-indent: 0;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Same flush when masthead is not wrapped in .seo-hub-hero (realty, auto, …) */
.seo-wrap > .seo-brand-mark,
.seo-wrap > .seo-kicker,
.seo-wrap > h1,
.seo-wrap > .seo-lead {
  margin-inline: 0;
  padding-inline: 0;
  text-indent: 0;
}
.seo-brand-mark {
  margin: 0 0 0.4rem;
  padding-inline: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: var(--track-display, -0.03em);
  line-height: 0.98;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-mid) 0%, var(--cyan-deep) 55%, #c9b06a 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seo-hub-hero .seo-kicker,
.seo-kicker {
  color: var(--muted);
  font-size: var(--fs-meta, 0.76rem);
  font-weight: 600;
  letter-spacing: var(--track-meta, 0.06em);
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  padding-inline: 0;
}
.seo-hub-hero h1 {
  margin-bottom: 0.55rem;
}
.seo-hub-hero .seo-lead {
  margin-bottom: 0.35rem;
}
.seo-reveal {
  animation: seoReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s backwards;
}
.seo-cta-row.seo-reveal {
  animation-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .seo-wrap,
  .seo-reveal {
    animation: none;
  }
}
.seo-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.65rem; gap: 12px;
}
.seo-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700;
  letter-spacing: var(--track-title); font-size: 1.05rem; color: var(--white);
}
.seo-brand img { width: 34px; height: 34px; border-radius: 10px; }
.seo-brand-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: var(--fs-display);
  letter-spacing: var(--track-display);
  line-height: var(--lh-display);
  margin-bottom: 0.45rem; color: var(--white);
}
h1 {
  font-family: var(--font);
  font-size: var(--fs-title);
  letter-spacing: var(--track-title);
  line-height: var(--lh-title);
  font-weight: 600;
  margin: 0 0 0.65rem;
  max-width: none;
  color: var(--white);
  /* Column already has --page-inline-*; no extra optical inset */
  padding-inline-start: 0;
}
/* Short intros use full content column; wrap only when viewport forces it */
.seo-lead { color: var(--muted); margin-bottom: 1.15rem; max-width: none; font-weight: 400; }
.seo-stats {
  display: flex; gap: 1.35rem; flex-wrap: wrap;
  margin: 0.95rem 0 1.35rem; padding: 0.15rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.seo-stats div { padding: 0.75rem 0; }
/* Flush with location / verdict / CTA — no optical inset on meta labels */
.seo-stats span {
  display: block; font-size: var(--fs-meta); font-weight: 500;
  letter-spacing: var(--track-meta); text-transform: uppercase; color: var(--muted);
  padding-inline: 0;
}
.seo-stats strong {
  display: block; font-family: var(--font);
  font-size: 1.35rem; letter-spacing: var(--track-title); margin-top: 0.12rem; font-weight: 700;
  color: var(--ink); font-variant-numeric: tabular-nums;
  padding-inline-start: 0;
}
.seo-cta {
  display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  gap: 8px;
  min-height: 42px;
  background: var(--cyan-deep); color: var(--white); font-weight: 600;
  padding: 12px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--cyan-deep);
  margin: 0.2rem 0 1.5rem; font-family: var(--font);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.seo-cta:hover { background: var(--cyan); border-color: var(--cyan); }
section h2 {
  font-family: var(--font); font-size: 1.2rem;
  letter-spacing: var(--track-title); margin-bottom: 0.7rem; font-weight: 600;
  color: var(--white);
  padding-inline-start: 0;
}
section { margin-bottom: 1.6rem; }
.seo-list { list-style: none; padding: 0; margin: 0; }
.seo-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}
/* Produce calendar — soft BY month strip (May–Oct) */
.produce-cal {
  margin: 0.9rem 0 0.35rem;
  padding: 0.85rem 0 0.35rem;
  border-top: 1px solid var(--season-line, rgba(196, 160, 106, 0.22));
}
.produce-cal-lead {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 42rem;
}
.produce-cal-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}
.produce-cal-col {
  min-width: 0;
  padding: 0.45rem 0.4rem 0.55rem;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid transparent;
  background: rgba(12, 20, 36, 0.28);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.produce-cal-col.is-now {
  border-color: var(--season-line, rgba(196, 160, 106, 0.4));
  background: rgba(196, 160, 106, 0.08);
}
.produce-cal-col.is-focus {
  border-color: rgba(196, 160, 106, 0.55);
  background: rgba(196, 160, 106, 0.12);
}
.produce-cal-month {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--season, #c4a06a);
  margin-bottom: 0.35rem;
}
.produce-cal-crops {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.produce-cal-crop {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.15s ease;
}
.produce-cal-crop:hover {
  color: #f0e2c0;
}
.produce-cal-crop.is-active,
.produce-cal-crop.is-peak {
  color: #f0e2c0;
  font-weight: 600;
}
.produce-cal-quiet {
  font-size: 0.74rem;
  color: var(--muted);
  opacity: 0.75;
}
@media (max-width: 720px) {
  .produce-cal-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 420px) {
  .produce-cal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Produce seasonal chips — amber season accent, not cyan pills */
.produce-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 0.25rem;
}
.produce-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid var(--season-line, rgba(196, 160, 106, 0.32));
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  background: rgba(12, 20, 36, 0.35);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.produce-chip:hover {
  border-color: var(--season, #c4a06a);
  color: #f0e2c0;
  background: var(--season-soft, rgba(196, 160, 106, 0.1));
}
.produce-chip.is-active {
  border-color: var(--season, #c4a06a);
  color: #f0e2c0;
  background: rgba(196, 160, 106, 0.16);
  font-weight: 600;
}
.produce-chips-hint {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.seo-item:hover { background: rgba(42, 154, 168, 0.04); }
.seo-item img,
.seo-item-thumb {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(10, 27, 47, 0.06);
  flex-shrink: 0;
}
.seo-item-ph {
  width: 120px;
  height: 90px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px dashed var(--line);
  background: linear-gradient(145deg, rgba(42,154,168,0.12), rgba(10,27,47,0.35));
  box-sizing: border-box;
}
.seo-item a { font-weight: 500; color: var(--ink); }
.seo-item a:hover { color: var(--cyan-mid); }
.seo-item a.mh-card-title {
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.seo-item a.mh-card-title:hover,
.seo-item a.mh-card-title:hover .mh-card-title-text { color: var(--cyan-mid); }
.seo-item .mh-card-title-text { font-weight: inherit; color: inherit; }
.seo-price { margin: 0.25rem 0 0; color: var(--muted); font-weight: 500; }
.seo-drop-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-right: 0.35rem;
  vertical-align: middle;
  color: #9ec9a8;
  background: rgba(46, 160, 110, 0.16);
}
.seo-soft-badges {
  display: inline;
  margin-right: 0.15rem;
}
.seo-soft-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  margin-right: 0.3rem;
  vertical-align: middle;
  border: 1px solid transparent;
}
.seo-soft-caution {
  color: #c4a06a;
  background: rgba(196, 160, 106, 0.12);
  border-color: rgba(196, 160, 106, 0.22);
}
.seo-soft-look {
  color: var(--cyan-mid);
  background: rgba(43, 184, 198, 0.1);
  border-color: rgba(43, 184, 198, 0.22);
}
.seo-soft-shop {
  color: #9aa6b8;
  background: rgba(154, 166, 184, 0.12);
  border-color: rgba(154, 166, 184, 0.22);
}
.seo-loc { letter-spacing: 0.01em; }
/* .seo-kicker flush is defined with the masthead stack above */

/* Shared action rows — wrap cleanly as 2×2 on narrow, row on wide */
.seo-cta-row,
.mh-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.65rem;
  align-items: stretch;
  margin: 0.85rem 0 1.25rem;
  max-width: 100%;
}
@media (min-width: 640px) {
  .seo-cta-row,
  .mh-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-template-columns: none;
  }
}
.seo-cta-row .seo-cta,
.seo-cta-row .seo-cta-soft,
.seo-cta-row .mh-btn,
.mh-actions .mh-btn {
  margin: 0;
  flex: 0 1 auto;
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  justify-content: center;
}
@media (min-width: 640px) {
  .seo-cta-row .mh-btn,
  .mh-actions .mh-btn,
  .seo-cta-row .seo-cta,
  .seo-cta-row .seo-cta-soft {
    width: auto;
  }
}

/* Lot photo plane — full content width, soft empty */
.mh-lot-media {
  margin: 0.85rem 0 1.15rem;
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1220;
  max-width: 100%;
}
.mh-lot-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 58vw);
  object-fit: cover;
  background: #0a1220;
}
.mh-lot-media.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.25rem 1rem;
}
.mh-lot-media.is-empty span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  max-width: 28ch;
}

nav.seo-nav {
  display: flex; gap: 0.45rem; flex-wrap: wrap; align-items: center;
  margin-top: 1.65rem; padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}
/*
 * FAQ → related chips: one hairline only.
 * Last FAQ item already has border-bottom; nav must not add border-top.
 * Soft gap so chips don’t sit flush under the last rule.
 */
.seo-faq + nav.seo-nav,
.mh-faq + nav.seo-nav,
.free-faq + nav.seo-nav,
.auto-faq + nav.seo-nav,
.realty-faq + nav.seo-nav,
section:has(> .seo-faq) + nav.seo-nav,
section.seo-copy:has(.seo-faq) + nav.seo-nav,
.realty-page-end > nav.seo-nav {
  border-top: none;
  margin-top: 1.55rem;
  padding-top: 0.25rem;
}
nav.seo-nav a {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(12, 20, 36, 0.4);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
nav.seo-nav a:hover {
  color: var(--cyan-hot);
  border-color: rgba(58, 173, 184, 0.45);
  background: rgba(42, 154, 168, 0.08);
}
.seo-copy { margin: 0.35rem 0 0.45rem; }
/*
 * Shared section rhythm (lot / SEO shells):
 * CTA → watch / how-to, and consecutive .seo-copy blocks get one hairline
 * + ~1.5–2rem breathing — same cadence as FAQ breaks, not a double gap.
 */
.seo-cta-row + section.seo-copy,
.mh-actions + section.seo-copy,
section.seo-copy + section.seo-copy {
  margin-top: 1.55rem;
  padding-top: 1.55rem;
  border-top: 1px solid var(--line);
}
/*
 * Body prose fills the content column (.seo-wrap already caps at --content-max).
 * Do NOT re-measure with NNch — that left a skinny strip vs chips/footer.
 */
.seo-copy > p { margin-bottom: 0.9rem; color: var(--ink); max-width: none; }
.seo-copy > p.seo-lead,
.seo-copy > .seo-lead { max-width: none; }
/* Keep list markers inside the same column as masthead/title (no hanging outdent) */
.seo-copy ol,
.seo-copy ul {
  max-width: none;
  margin: 0 0 1rem;
  padding-inline-start: 1.35rem;
  list-style-position: outside;
}
.seo-copy ol { list-style-type: decimal; }
.seo-copy ul { list-style-type: disc; }
.seo-copy li {
  margin: 0.45rem 0;
  color: var(--ink);
  padding-inline-start: 0.15rem;
  line-height: 1.5;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.seo-copy li::marker { color: var(--muted); font-weight: 600; }

/* Shared FAQ chrome — one pattern for all hubs
 * Hairline + padding-top so «FAQ» / first row never sit flush on the rule. */
.seo-faq,
.mh-faq,
.free-faq,
.auto-faq,
.realty-faq {
  display: grid;
  gap: 0;
  margin: 0.85rem 0 0;
  padding-top: 1.65rem;
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: none;
}
/* Hub FAQ: title lives inside the bordered section */
.mh-faq > h2,
.free-faq > h2,
.auto-faq > h2,
.realty-faq > h2 {
  margin-top: 0;
  margin-bottom: 1.05rem;
}
/* Niche / digest: title sits above .seo-faq — move hairline onto the h2 */
.seo-copy > h2#faq,
.seo-copy > h2#digest-faq {
  margin-top: 1.85rem;
  padding-top: 1.65rem;
  margin-bottom: 1.05rem;
  border-top: 1px solid var(--line);
}
.seo-copy > h2#faq + .seo-faq,
.seo-copy > h2#digest-faq + .seo-faq {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.seo-faq-item,
.mh-faq > details,
.free-faq > details,
.auto-faq > details,
.realty-faq > details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: transparent;
  margin: 0;
}
.seo-faq-item > summary,
.mh-faq > details > summary,
.free-faq > details > summary,
.auto-faq > details > summary,
.realty-faq > details > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.12rem 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.35;
  user-select: none;
}
.seo-faq-item > summary::-webkit-details-marker,
.mh-faq > details > summary::-webkit-details-marker,
.free-faq > details > summary::-webkit-details-marker,
.auto-faq > details > summary::-webkit-details-marker,
.realty-faq > details > summary::-webkit-details-marker {
  display: none;
}
.seo-faq-item > summary::after,
.mh-faq > details > summary::after,
.free-faq > details > summary::after,
.auto-faq > details > summary::after,
.realty-faq > details > summary::after {
  content: '▾';
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
}
.seo-faq-item[open] > summary::after,
.mh-faq > details[open] > summary::after,
.free-faq > details[open] > summary::after,
.auto-faq > details[open] > summary::after,
.realty-faq > details[open] > summary::after {
  content: '▴';
}
.seo-faq-item > p,
.mh-faq > details > p,
.free-faq > details > p,
.auto-faq > details > p,
.realty-faq > details > p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: none;
}
.seo-howto-steps {
  margin: 0.5rem 0 1rem;
  padding-inline-start: 1.35rem;
  max-width: none;
}
.seo-howto-steps li {
  margin: 0.5rem 0;
  color: var(--ink);
  line-height: 1.5;
}
.seo-digest-meta {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}
.seo-digest-preview {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.seo-digest-preview a { color: var(--cyan-mid); font-weight: 500; }
.seo-digest-preview a:hover { color: var(--cyan-hot); }
.seo-digest-preview b,
.seo-digest-preview strong { color: var(--ink); font-weight: 600; }
.seo-digest-preview i,
.seo-digest-preview em { color: var(--ink-soft); }
.seo-cta-soft {
  display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(242, 246, 250, 0.18); color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-family: var(--font); letter-spacing: -0.01em; line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.seo-cta-soft:hover {
  border-color: rgba(58, 173, 184, 0.4); color: var(--white);
  background: rgba(42, 154, 168, 0.06);
}
footer.seo-foot { margin-top: 1.5rem; color: var(--muted); font-size: 0.88rem; font-weight: 400; }
footer.seo-foot a { color: var(--muted); }
footer.seo-foot a:hover { color: var(--cyan-mid); }
/* Shared footer chrome — match .seo-wrap column (content-max), not radar-max */
.mh-site-footer { margin-top: 0; }
.mh-site-footer .footer-shell { max-width: var(--content-max); }
@media (prefers-reduced-motion: reduce) {
  .seo-wrap, .seo-cta, .seo-cta-soft, .seo-item { animation: none !important; transition: none !important; }
}
