/* ============================================================================
   車なしキャンプ — forest editorial design system
   Concept: warm forest green + cream paper + amber accents for a family,
            outdoors, public-transport-camping feel. Dark panels reserved
            for the hero only; everything else is light/warm.
   Fonts: Zen Old Mincho (display) / IBM Plex Sans JP (body) / IBM Plex Mono (data only)
   ============================================================================ */

:root {
  --paper: #f6f4ed;
  --paper-deep: #ece7d8;
  --card: #fffdf6;
  --ink: #1c2a20;
  --ink-soft: #46544c;
  --ink-faint: #5d6963;
  --line: #ddd6c5;
  --line-strong: #c2bba4;

  /* forest panels (dark, reserved for hero / footer accents) */
  --forest: #13241c;
  --forest-soft: #1d2a1f;
  --forest-edge: #2a3b30;

  /* primary accent: forest green for light backgrounds */
  --accent: #2c6e49;
  --accent-ink: #1f5436;

  /* amber: the lead accent for numbers, links, rules, affordances */
  --amber: #c8821f;
  --amber-ink: #9a5e0f;
  --amber-tint: #f4e7cf;

  /* sage: muted, for one-off hover / lane fill */
  --sage: #6f9176;
  --sage-tint: #e5ede2;

  --caution: #a05a18;
  --caution-ink: #8a4a10;
  --caution-bg: #f7ead8;

  --serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --sans: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --mono: "IBM Plex Mono", "Menlo", monospace;

  --maxw: 72rem;
  --article-w: 42rem;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(28, 42, 32, 0.05), 0 6px 22px -12px rgba(28, 42, 32, 0.16);
  --shadow-hairline: 0 1px 2px rgba(28, 42, 32, 0.06);
  --shadow-offset: 3px 3px 0 rgba(28, 42, 32, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.85;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(28, 42, 32, 0.03) 1px, transparent 1px);
  background-size: 5px 5px;
}
main, header, footer { position: relative; z-index: 1; }

a { color: var(--amber-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

::selection { background: var(--amber-tint); color: var(--forest); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}
.photo-hero :focus-visible, .article-hero :focus-visible, .site-footer :focus-visible {
  outline-color: var(--amber);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--amber);
  color: #1d2a1f;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- PR bar */
.pr-bar {
  background: var(--forest);
  color: #cfe0d4;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 7px 14px;
  line-height: 1.5;
}
.pr-bar b { color: var(--amber); font-weight: 600; }

/* ---------------------------------------------------------------- header (cream/light by default) */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line-strong);
  padding: 0 20px;
}
.site-header .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; flex-wrap: wrap; min-width: 0; row-gap: 2px; }
.brand .mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.brand .mark em { font-style: normal; color: var(--amber-ink); }
.brand .sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 6px;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--accent-ink); background: var(--sage-tint); }
.site-nav a[aria-current="page"] { color: var(--accent-ink); border-bottom-color: var(--amber); border-radius: 6px 6px 0 0; }

/* ---------------------------------------------------------------- hero (photo, dark panel — the ONLY dark block on the homepage) */
.photo-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  overflow: hidden;
  background: var(--forest);
  border-bottom: 3px solid var(--amber);
}
.photo-hero > picture, .photo-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.photo-hero img { object-fit: cover; object-position: 50% 42%; }
.photo-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 22, 16, 0.80) 0%, rgba(11, 22, 16, 0.56) 32%, rgba(11, 22, 16, 0.14) 60%, rgba(11, 22, 16, 0) 80%),
    linear-gradient(0deg, rgba(11, 22, 16, 0.36) 0%, rgba(11, 22, 16, 0) 38%);
  pointer-events: none;
}
.photo-hero__copy {
  position: absolute;
  inset: 0;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(22px, 5vw, 56px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.photo-hero .nb { display: inline-block; word-break: keep-all; overflow-wrap: normal; }
.photo-hero .kicker {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.06em;
  color: #f0d8a8;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.photo-hero .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}
.photo-hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.18;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  max-width: 16em;
  color: #f6faf6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.photo-hero h1 em { font-style: normal; color: #f0b65a; }
.photo-hero .lede {
  max-width: 30em;
  color: #e4efe7;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.85;
  margin: 0 0 26px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

/* buttons */
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.btn .glyph { font-size: 1.05em; line-height: 1; }
.btn-primary { background: var(--amber); color: #1d2a1f; }
.btn-primary:hover { background: #d9942d; color: #1d2a1f; transform: translateY(-2px); }
.btn-secondary { background: rgba(19, 36, 28, 0.72); color: #f6faf6; border-color: rgba(246, 250, 246, 0.85); }
.btn-secondary:hover { background: rgba(19, 36, 28, 0.88); color: #fff; border-color: #fff; transform: translateY(-2px); }

@media (max-width: 640px) {
  .photo-hero { aspect-ratio: 4 / 5; max-height: none; }
  .photo-hero img { object-position: 62% 38%; }
  .photo-hero__scrim {
    background: linear-gradient(0deg, rgba(11, 22, 16, 0.84) 0%, rgba(11, 22, 16, 0.44) 46%, rgba(11, 22, 16, 0.12) 100%);
  }
  .photo-hero__copy { justify-content: flex-end; padding-bottom: clamp(24px, 7vw, 40px); }
  .photo-hero h1 { max-width: 100%; }
  .photo-hero .lede { margin-bottom: 22px; }
  .hero-cta { width: 100%; gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 380px) {
  .photo-hero .lede { display: none; }
}

/* ---------------------------------------------------------------- layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0 8px; position: relative; }
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0 26px, var(--line) 26px 100%);
  opacity: 0.9;
}
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.section-head .spot-art {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  box-shadow: var(--shadow-hairline);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  margin: 0;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.section-head .idx {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--amber);
  letter-spacing: 0.04em;
}
.section-head .rule { flex: 1; height: 1px; background: var(--line-strong); }

/* ---------------------------------------------------------------- cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.a-card {
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.a-card:hover { transform: translateY(-4px); border-color: var(--accent); color: var(--ink); box-shadow: 0 2px 4px rgba(28,42,32,0.08), 0 16px 36px -14px rgba(44,110,73,0.4); }
.a-card__thumb {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--paper-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.a-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.a-card:hover .a-card__thumb img { transform: scale(1.04); }
.a-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 18px;
  flex: 1;
}
.a-card .meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.a-card .meta .ctx { font-family: var(--sans); letter-spacing: 0.02em; font-size: 11.5px; }
.a-card .lane {
  font-family: var(--mono);
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}
.a-card .lane.overnight { color: #eaf3ec; background: var(--accent); }
.a-card .lane.bbq { color: var(--amber-ink); background: var(--amber-tint); }
.a-card .lane.gear { color: #1f3a28; background: var(--sage); }
.a-card .lane.caution { color: var(--caution-ink); background: var(--caution-bg); border: 1px solid var(--caution); }
.a-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.a-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.a-card .go {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--amber-ink);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.a-card .go::after {
  content: "→";
  transition: transform 0.16s ease;
}
.a-card:hover .go::after { transform: translateX(4px); }
.a-card.flagship { border-color: var(--accent); }
.a-card.flagship .a-card__thumb::after {
  content: "FLAGSHIP";
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: #1d2a1f;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 1;
}

/* ---------------------------------------------------------------- article hero (dark panel, reserved per page) */
.article-hero {
  background: var(--forest);
  color: #e8f3ec;
  padding: 46px 20px 40px;
  border-bottom: 3px solid var(--amber);
}
.article-hero .inner { max-width: var(--article-w); margin: 0 auto; }
.article-hero .crumbs {
  font-family: var(--sans);
  font-size: 12px;
  color: #b9cdc0;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.article-hero .crumbs a { color: #cfe0d4; }
.article-hero .crumbs a:hover { color: #f0d8a8; }
.article-hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(25px, 4.4vw, 38px);
  line-height: 1.42;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.article-hero .stand {
  color: #c8dbce;
  font-size: 14.5px;
  margin: 0 0 20px;
  line-height: 1.9;
}
.article-hero .byline {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #9bb3a4;
  letter-spacing: 0.04em;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

main.body {
  max-width: var(--article-w);
  margin: 0 auto;
  padding: 44px 20px 24px;
}
main.body h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  margin: 56px 0 18px;
  letter-spacing: 0.02em;
}
main.body h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 18px;
}
main.body h2 .h-idx {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 17px;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-right: 10px;
}
main.body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  margin: 38px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--amber);
  letter-spacing: 0.02em;
}
main.body h2 + p { font-size: 1.06em; color: var(--ink); }
main.body p { margin: 0 0 1.5em; }
main.body ul, main.body ol { padding-left: 1.5em; margin: 0 0 1.5em; }
main.body li { margin-bottom: 0.45em; }

/* in-body figure */
figure.in-body { margin: 30px 0; }
figure.in-body img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
figure.in-body figcaption {
  font-size: 12.5px;
  color: var(--ink-faint);
  border-left: 2px solid var(--amber);
  padding-left: 10px;
  margin-top: 8px;
  line-height: 1.7;
}

/* pull-quote */
.pull {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 20px;
  margin: 34px 0;
  letter-spacing: 0.01em;
}

/* TOC */
.toc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 12px;
}
.toc .t {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.toc ol { margin: 0; padding-left: 1.4em; font-size: 14px; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* key-caption: CREAM callout with amber left-rule */
.key-caption {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.95;
}
.key-caption .k {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--amber-ink);
  display: block;
  margin-bottom: 8px;
}
.key-caption b, .key-caption strong { color: var(--accent-ink); font-weight: 700; }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0 30px; font-size: 14px; background: var(--card); }
.spec-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  padding-bottom: 8px;
}
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; line-height: 1.7; }
.spec-table thead th { background: var(--paper-deep); color: var(--ink); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.spec-table tbody th { background: var(--amber-tint); color: var(--amber-ink); font-weight: 700; white-space: nowrap; border-left: 3px solid var(--amber); }
.spec-table td.num { font-family: var(--mono); font-size: 13px; }
.table-scroll { overflow-x: auto; }
.table-scroll .spec-table { min-width: 560px; }

/* note / caution */
.note, .caution-box {
  border-radius: var(--radius);
  padding: 16px 20px 16px 46px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.9;
  position: relative;
}
.note { background: var(--card); border: 1px solid var(--line-strong); color: var(--ink-soft); }
.caution-box { background: var(--caution-bg); border: 1px solid var(--caution); color: #5c3a14; }
.note::before {
  content: "i";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.caution-box::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--caution);
  color: #fff;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.caution-box .k, .note .k {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
.caution-box .k { color: var(--caution-ink); }
.note .k { color: var(--ink-faint); }

/* sources */
.sources { font-size: 13px; color: var(--ink-soft); }
.sources ol { padding-left: 1.5em; }
.sources li { margin-bottom: 0.4em; overflow-wrap: anywhere; }

/* ---------------------------------------------------------------- offers */
.offer-slot { margin: 30px 0; }
.offer-card {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(200, 130, 31, 0.07) 0%, rgba(200, 130, 31, 0) 55%),
    var(--card);
  border: 1px solid var(--amber);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.offer-card .pr-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--amber);
  color: #1d2a1f;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 2px 10px;
  border-radius: 4px;
}
.offer-card .o-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  margin: 4px 0 6px;
  padding-left: 30px;
  position: relative;
}
.offer-card .o-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 38%, #ffe7b0 0%, var(--amber) 55%, var(--amber-ink) 100%);
  box-shadow: 0 0 0 3px var(--amber-tint);
}
.offer-card .o-note { font-size: 13px; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.8; }
.offer-links { display: flex; flex-direction: column; gap: 10px; }
.offer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--amber-tint);
  color: var(--amber-ink);
  text-decoration: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 700;
  border: 1.5px solid var(--amber);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.offer-links a:hover { background: var(--amber); color: #1d2a1f; border-color: var(--amber-ink); transform: translateY(-1px); }
.offer-links a .arrow { color: var(--amber-ink); font-size: 13px; font-weight: 700; white-space: nowrap; }
.offer-links a:hover .arrow { color: #5c3a14; }
.offer-card .o-disclaimer { font-size: 11px; color: var(--ink-faint); margin: 12px 0 0; line-height: 1.7; }

/* ---------------------------------------------------------------- footer (warm forest) */
.site-footer {
  margin-top: 72px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(200, 130, 31, 0.10) 0%, rgba(200, 130, 31, 0) 42%),
    #16241c;
  color: #c2d3c7;
  padding: 48px 20px 36px;
  font-size: 13px;
  border-top: 3px solid var(--amber);
}
.site-footer .inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 18px; }
.site-footer .f-brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  color: #f2f7f0;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-footer .f-brand::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  flex: 0 0 auto;
}
.site-footer .f-brand em { font-style: normal; color: #f0b65a; }
.site-footer .f-sign {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  color: #8aa093;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -8px;
  padding-left: 38px;
}
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.site-footer a { color: #c2d3c7; text-decoration: none; }
.site-footer a:hover { color: #f0d8a8; text-decoration: underline; }
.site-footer .attribution { font-size: 11.5px; color: #8aa093; line-height: 1.8; }

/* ---------------------------------------------------------------- misc */
.eyecatch {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-deep);
  margin: 0 0 30px;
  box-shadow: var(--shadow);
}
.lane-art {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-deep);
  margin: 0 0 22px;
  box-shadow: var(--shadow);
}
.back-to-hub { max-width: var(--article-w); margin: 0 auto; padding: 8px 20px 40px; }
.back-to-hub a { font-family: var(--sans); font-weight: 500; font-size: 13.5px; }

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 42px 0 4px; }
  .card-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-head { flex-wrap: wrap; }
  .section-head .rule { flex-basis: 100%; }
  .section-head .spot-art { width: 56px; height: 56px; }
  .brand .sub { font-size: 9.5px; letter-spacing: 0.1em; }
  .site-header .inner { min-width: 0; }
  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    padding: 0 24px 2px 0;
    mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; }
  .pr-bar { padding: 8px 14px 9px; }
  .pull { font-size: 19px; }
}

/* Fix 4 (P2): breathing room above hero headline on mobile */
@media (max-width: 480px) {
  .photo-hero__copy { padding-top: clamp(34px, 8vw, 52px); }
  .article-hero { padding-top: 58px; }
}

/* Fix 3 (P2): card excerpt clamp to 3 lines for uniform row height */
.a-card p {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* Fix 1 (P1): policy block — constrain measure + centre within page */
#policy .key-caption {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .a-card, .a-card__thumb img, .btn, .a-card .go::after, .offer-links a, .site-nav a { transition: none; }
  .a-card:hover { transform: none; }
  .a-card:hover .a-card__thumb img { transform: none; }
  .a-card:hover .go::after { transform: none; }
  .btn:hover, .btn-primary:hover, .btn-secondary:hover, .offer-links a:hover { transform: none; }
}
