/* Blackbird Hollow — application styles (static rebuild) */

/* ───────── Type utilities ───────── */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.sans { font-family: var(--sans); }
.italic { font-style: italic; }
.accent { color: var(--accent-deep); }
.muted { color: var(--ink-soft); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--accent { color: var(--accent-deep); }

/* ───────── Layout ───────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--gutter); }
.section--tight { padding: 60px var(--gutter); }
.tint { background: var(--bg-tint); position: relative; }
.ink-bg { background: var(--ink); color: var(--off-white); }

/* ───────── Linen texture ───────── */
.linen { position: relative; }
.linen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 2px, rgba(107,142,111,0.04) 2px 3px),
    repeating-linear-gradient(-45deg, transparent 0 2px, rgba(201,122,92,0.03) 2px 3px);
  opacity: var(--linen-opacity);
  pointer-events: none;
  z-index: 0;
}
.linen > * { position: relative; z-index: 1; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer; border: none; transition: all 180ms ease; text-decoration: none;
}
.btn svg { flex-shrink: 0; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-light { background: var(--off-white); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

/* ───────── Links ───────── */
a { color: inherit; }
.tlink {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
  transition: color 180ms ease, border-color 180ms ease; font-size: 14px;
}
.tlink:hover { color: var(--accent-deep); }

/* ───────── Chip ───────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--hairline);
  font-size: 12px; font-weight: 500; color: var(--ink);
  text-decoration: none; cursor: pointer; transition: background 180ms ease;
}
.chip:hover { background: #fff; }

/* ───────── Images ───────── */
.img { display: block; position: relative; overflow: hidden; width: 100%; }
.img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9) contrast(0.98); }
.img--radius, .img--radius img { border-radius: 2px; }
.img-ph {
  background:
    radial-gradient(120% 100% at 20% 15%, rgba(168,190,169,0.55), transparent 60%),
    linear-gradient(135deg, var(--sand-soft), var(--sage-soft) 140%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 120px; color: var(--sage-deep);
}
.img-ph span {
  font-family: var(--serif); font-style: italic; font-size: 15px; opacity: 0.7;
  padding: 16px; max-width: 80%; line-height: 1.3;
}
.hero__img .img, .hero__img .img-ph { height: 100%; }
.hero__img .img-ph span { font-size: 20px; color: var(--off-white); opacity: 0.85; }
.dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: currentColor; vertical-align: middle; margin: 0 10px; opacity: 0.5; }

/* ───────── Nav ───────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(245, 242, 237, 0.78);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  text-decoration: none; font-weight: 500; opacity: 0.78; transition: opacity 160ms ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; }

/* Wordmark */
.wordmark { display: inline-flex; align-items: center; gap: 10px; line-height: 1; text-decoration: none; }
.wordmark__name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: 0.01em; }

/* ───────── Footer ───────── */
.site-footer { background: var(--ink); color: var(--off-white); margin-top: 120px; position: relative; }
.site-footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter) 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; position: relative;
}
.site-footer__blurb { font-size: 14px; line-height: 1.65; opacity: 0.7; max-width: 340px; margin: 20px 0 0; }
.footer-col__title { font-family: var(--serif); font-size: 18px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: inherit; text-decoration: none; font-size: 14px; opacity: 0.7; }
.footer-col a:hover { opacity: 1; }
.site-footer__bar {
  max-width: var(--maxw); margin: 0 auto; padding: 24px var(--gutter);
  border-top: 1px solid rgba(245,242,237,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; opacity: 0.6; position: relative;
}
.ig-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; opacity: 0.85; }
.ig-link:hover { opacity: 1; }

/* ───────── Marquee ───────── */
.marquee {
  background: var(--bg-tint); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; position: relative;
}
.marquee__track {
  display: flex; gap: 40px; padding: 22px 0; white-space: nowrap;
  font-family: var(--serif); font-size: 24px; color: var(--ink);
  width: max-content; animation: marquee 40s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ───────── Hero (fullbleed, approved default) ───────── */
.hero { position: relative; height: 90vh; min-height: 640px; overflow: hidden; }
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,58,58,0.15) 0%, rgba(58,58,58,0.65) 100%); }
.hero__body {
  position: relative; z-index: 2; color: #fff; max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 var(--gutter) 80px; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__title { font-family: var(--serif); font-size: clamp(64px, 9vw, 140px); line-height: 0.96; margin: 0; font-weight: 400; max-width: 900px; letter-spacing: -0.025em; }
.hero__title em { font-style: italic; color: var(--sage); }
.hero__dek { margin-top: 28px; max-width: 540px; font-size: 18px; line-height: 1.6; opacity: 0.9; }
.hero__actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero { max-width: var(--maxw); margin: 0 auto; padding: 60px var(--gutter) 40px; }
.page-hero__title { font-family: var(--serif); font-size: clamp(48px, 6vw, 88px); line-height: 0.98; margin: 0; font-weight: 400; letter-spacing: -0.02em; }
.page-hero__title em { font-style: italic; color: var(--accent-deep); }

/* ───────── Section head ───────── */
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); margin: 12px 0 0; line-height: 1.05; font-weight: 400; letter-spacing: -0.02em; }
.h2-lg { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 64px); line-height: 1.05; margin: 0; font-weight: 400; letter-spacing: -0.02em; }

/* ───────── Directory teaser ───────── */
.split { display: grid; gap: 80px; align-items: center; }
.split--1-1 { grid-template-columns: 1fr 1fr; }
.split--1-13 { grid-template-columns: 1fr 1.3fr; }
.split--13-1 { grid-template-columns: 1.3fr 1fr; }
.split--1-2 { grid-template-columns: 1fr 2fr; }
.searchbar {
  display: flex; gap: 8px; align-items: stretch; background: #fff; padding: 8px; border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid var(--hairline); max-width: 480px;
}
.searchbar__icon { display: flex; align-items: center; padding: 0 16px; color: var(--ink-soft); }
.searchbar input { border: none; outline: none; flex: 1; font-family: var(--sans); font-size: 15px; background: transparent; color: var(--ink); }
.chip-row { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.stack-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stack-imgs__col { display: flex; flex-direction: column; gap: 16px; }

/* ───────── Story cards ───────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.story-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.story-card__imgwrap { overflow: hidden; margin-bottom: 20px; }
.story-card__imgwrap img { transition: transform 600ms ease; }
.story-card:hover .story-card__imgwrap img { transform: scale(1.03); }
.story-card h3 { font-family: var(--serif); font-size: 26px; line-height: 1.2; margin: 12px 0 0; font-weight: 500; letter-spacing: -0.01em; }
.story-card__meta { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }

/* ───────── Goods ───────── */
.good { text-decoration: none; color: inherit; display: block; }
.good__frame { background: #fff; padding: 12px; margin-bottom: 14px; }
.good__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.good__name { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.good__tag { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.good__price { font-family: var(--serif); font-size: 18px; color: var(--accent-deep); white-space: nowrap; }

/* ───────── Pull quote ───────── */
.pullquote { max-width: 900px; margin: 0 auto; padding: 140px var(--gutter); text-align: center; }
.pullquote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.pullquote__by { margin-top: 40px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.15em; text-transform: uppercase; }

/* ───────── States grid ───────── */
.states { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.states a {
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 24px 20px; text-align: left; text-decoration: none;
  display: flex; justify-content: space-between; align-items: baseline; transition: background 200ms ease;
}
.states a:hover { background: var(--bg-tint); }
.states .st-name { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.states .st-count { font-size: 12px; color: var(--ink-soft); }

/* ───────── Newsletter ───────── */
.newsletter {
  background: var(--accent); color: #fff; border-radius: 4px; padding: clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden;
}
.newsletter h2 { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 48px); margin: 0; font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.newsletter p { margin: 0; opacity: 0.9; font-size: 16px; line-height: 1.6; }
.newsletter__form { margin-top: 28px; display: flex; gap: 8px; background: #fff; padding: 8px; border-radius: 999px; }
.newsletter__form input { border: none; outline: none; flex: 1; background: transparent; padding: 10px 14px; font-size: 14px; color: var(--ink); font-family: var(--sans); }

/* ───────── Breadcrumb ───────── */
.crumbs { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--gutter) 0; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 10px; }
.crumbs .cur { color: var(--ink); }

/* ───────── Shop card (directory list) ───────── */
.shop-card { text-decoration: none; color: inherit; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.shop-card__imgwrap { overflow: hidden; }
.shop-card__imgwrap img { transition: transform 500ms ease; }
.shop-card:hover .shop-card__imgwrap img { transform: scale(1.04); }
.shop-card__body { display: flex; flex-direction: column; justify-content: space-between; padding: 8px 0; }
.shop-card h3 { font-family: var(--serif); font-size: 28px; line-height: 1.1; margin: 12px 0 6px; font-weight: 500; letter-spacing: -0.01em; }
.shop-card__loc { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.shop-card__blurb { font-size: 14px; line-height: 1.55; color: var(--ink); margin-top: 14px; font-style: italic; text-wrap: pretty; }
.shop-card__foot { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--hairline); font-size: 12px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); display: inline-block; }

/* ───────── Shop detail ───────── */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; height: 520px; }
.gallery__col { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery .img, .gallery__col .img { height: 100%; }
.detail-grid { max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter) 0; display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; }
.prose { font-size: 17px; line-height: 1.75; color: var(--ink); max-width: 640px; }
.prose p { margin: 0 0 1.25em; }
.prose h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 1.6em 0 0.5em; letter-spacing: -0.01em; }
.prose blockquote { margin: 1.4em 0; font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.35; color: var(--accent-deep); border: none; padding: 0; }
.prose a { color: var(--accent-deep); }
.lede { font-family: var(--serif); font-size: 28px; line-height: 1.35; font-weight: 400; font-style: italic; letter-spacing: -0.005em; text-wrap: pretty; }
.card-plain { background: #fff; padding: 28px; border: 1px solid var(--hairline); }
.card-tint { background: var(--bg-tint); padding: 24px 28px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.info-row .k { color: var(--ink-soft); }
.sticky { position: sticky; top: 100px; }
.known-row { display: flex; flex-wrap: wrap; gap: 10px; }
.known-row span { padding: 10px 18px; border: 1px solid var(--hairline); border-radius: 999px; font-family: var(--serif); font-size: 16px; font-style: italic; background: #fff; }

/* ───────── Notes / rails ───────── */
.note { font-size: 13px; color: var(--ink-soft); }
.callout {
  border: 1px solid var(--hairline); border-radius: 4px; padding: 16px 20px; background: rgba(255,255,255,0.5);
  font-size: 13px; color: var(--ink-soft); line-height: 1.6; display: flex; gap: 12px; align-items: flex-start;
}
.callout svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-deep); }
.disclosure-line { font-size: 12px; color: var(--ink-soft); border-top: 1px solid var(--hairline); padding-top: 20px; margin-top: 40px; line-height: 1.6; }

/* claim strip */
.claim {
  margin-top: 32px; padding: 20px 24px; border: 1px dashed var(--hairline); border-radius: 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; background: rgba(255,255,255,0.4);
}
.claim__t { font-family: var(--serif); font-size: 18px; }
.claim__s { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

/* age banner */
.age-banner { background: var(--ink); color: var(--off-white); font-size: 12px; letter-spacing: 0.06em; text-align: center; padding: 8px var(--gutter); }
.age-banner strong { color: #fff; }

/* article */
.article-head { max-width: 820px; margin: 0 auto; padding: 60px var(--gutter) 0; text-align: center; }
.article-head h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 66px); line-height: 1.05; margin: 18px 0 0; font-weight: 400; letter-spacing: -0.02em; }
.article-head .dek { font-size: 19px; color: var(--ink-soft); line-height: 1.5; margin: 22px auto 0; max-width: 620px; font-style: italic; font-family: var(--serif); }
.article-head .byline { margin-top: 26px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; }
.article-hero { max-width: 1100px; margin: 48px auto 0; padding: 0 var(--gutter); }
.article-body { max-width: 680px; margin: 0 auto; padding: 56px var(--gutter) 0; }
.article-body .prose { max-width: none; font-size: 18px; }

/* ───────── Feature article (flagship) ───────── */
.feature-open { display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: clamp(440px, 62vh, 640px); border-bottom: 1px solid var(--hairline); }
.feature-open__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 92px); background: var(--paper); }
.feature-open__kicker { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 26px; }
.feature-open__title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 78px); line-height: 1.0; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.feature-open__dek { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.4; color: var(--ink-soft); margin: 24px 0 0; max-width: 32ch; }
.feature-open__byline { display: flex; align-items: center; gap: 12px; margin-top: 36px; font-size: 12.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); }
.feature-open__byline img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.feature-open__byline a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--sage-soft); }
.feature-open__img { position: relative; overflow: hidden; min-height: 300px; }
.feature-open__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.feature-intro { max-width: 720px; margin: 0 auto; padding: clamp(48px, 6vw, 84px) var(--gutter) 0; }
.feature-intro p { font-family: var(--serif); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.5; color: var(--ink); margin: 0 0 0.85em; text-wrap: pretty; }
.feature-intro p:first-child::first-letter { font-family: var(--serif); float: left; font-size: 5.4em; line-height: 0.8; padding: 8px 14px 0 0; color: var(--sage-deep); font-weight: 500; }

.feature-band { margin: clamp(56px, 7vw, 92px) 0 0; }
.feature-band img { display: block; width: 100%; height: clamp(300px, 46vh, 520px); object-fit: cover; }

.feature__grid { max-width: 1160px; margin: 0 auto; padding: clamp(56px, 6vw, 84px) var(--gutter) 0; display: grid; grid-template-columns: 232px minmax(0, 680px); gap: clamp(40px, 5vw, 80px); justify-content: center; align-items: start; }
.feature-rail { position: sticky; top: 104px; }
.feature-rail__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-deep); padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 8px; }
.feature-rail__list { list-style: none; margin: 0; padding: 0; }
.feature-rail__list a { display: flex; gap: 12px; align-items: baseline; padding: 9px 0; text-decoration: none; color: var(--ink-soft); font-size: 14.5px; line-height: 1.3; transition: color 0.2s; }
.feature-rail__list a:hover { color: var(--ink); }
.feature-rail__n { font-family: var(--serif); font-size: 13px; color: var(--sage); min-width: 20px; }
.feature-rail__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hairline); }

.feature__body .practice { margin-top: clamp(48px, 5vw, 74px); scroll-margin-top: 100px; }
.feature__body .practice:first-child { margin-top: 0; }
.practice__head { display: flex; align-items: baseline; gap: clamp(16px, 2vw, 26px); border-top: 1px solid var(--hairline); padding-top: 26px; }
.practice__num { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5vw, 66px); line-height: 0.85; color: var(--sage-soft); }
.practice__title { font-family: var(--serif); font-weight: 400; font-size: clamp(25px, 2.8vw, 34px); letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
.feature__closeh { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; margin: 0; border-top: 1px solid var(--hairline); padding-top: 26px; }
.feature__body .prose { margin-top: 22px; font-size: 18px; max-width: none; }

.starthere { margin: 26px 0 0; background: var(--sand-soft); border-left: 3px solid var(--terra); padding: 18px 22px; border-radius: 0 8px 8px 0; }
.starthere__k { display: block; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600; margin-bottom: 6px; }
.starthere p { margin: 0; font-size: 16px; line-height: 1.62; color: var(--ink); }

@media (max-width: 900px) {
  .feature-open { grid-template-columns: 1fr; min-height: 0; }
  .feature-open__img { order: -1; min-height: 62vw; }
  .feature__grid { grid-template-columns: 1fr; gap: 8px; }
  .feature-rail { position: static; padding-bottom: 8px; }
  .feature-rail__list { columns: 2; column-gap: 28px; }
}

/* misc */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 40px; }
.maxw-440 { max-width: 440px; } .maxw-540 { max-width: 540px; } .maxw-620 { max-width: 620px; }
.p-lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
  .split--1-1, .split--1-13, .split--13-1, .split--1-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .states { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .newsletter { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery__col { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .shop-card { grid-template-columns: 1fr; }
  .sticky { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--off-white); border-bottom: 1px solid var(--hairline); padding: 8px var(--gutter) 16px; }
  .nav-links.is-open a { padding: 12px 0; opacity: 1; border-bottom: 1px solid var(--hairline); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .states { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 0; padding-top: 56vw; }
  .section-head { flex-direction: column; }
  .header-cta { display: none; }
}
