/* ==========================================================================
   Kato Auto Service — Design System
   Palette derived from the shop's own mark (navy body line, ember stripe).
   Display face (Rajdhani) is the brand's existing font, carried forward.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* ---- Color: pulled from the logo's navy linework + ember stripe ---- */
  --navy:        #14213D;
  --navy-deep:   #0B1526;
  --navy-soft:   #24345C;
  --ember:       #D6472E;
  --ember-deep:  #B1391F;
  --steel-50:    #FBFAF7;
  --steel-100:   #F4F1EA;
  --steel-200:   #E7E2D5;
  --line:        #DAD4C4;
  --graphite:    #2C2E33;
  --graphite-60: #6B6D72;
  --white:       #FFFFFF;

  /* ---- Type ---- */
  --f-display: 'Rajdhani', sans-serif;
  --f-body-ja: 'Noto Sans JP', sans-serif;
  --f-body-en: 'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-body: var(--f-body-ja);

  /* ---- Spacing scale ---- */
  --sp-2xs: 0.4rem;
  --sp-xs:  0.8rem;
  --sp-sm:  1.2rem;
  --sp-md:  2rem;
  --sp-lg:  3.2rem;
  --sp-xl:  5.2rem;
  --sp-2xl: 8rem;

  --radius: 3px;
  --shadow-md: 0 12px 32px -12px rgba(11, 21, 38, 0.28);
  --shadow-sm: 0 4px 14px -6px rgba(11, 21, 38, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1220px;
}

html:lang(en) { --f-body: var(--f-body-en); }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--f-body);
  color: var(--graphite);
  background: var(--steel-50);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-md); }
@media (max-width: 640px) { .container { padding-inline: var(--sp-sm); } }

section[id] { scroll-margin-top: 92px; }

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--ember); display: inline-block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.85em 1.7em;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ember); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ember-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-line { color: var(--navy); border-bottom: 1.5px solid var(--navy); padding: 0.2em 0; border-radius: 0; }
.btn-line:hover { color: var(--ember); border-color: var(--ember); }
.btn-line svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.btn-line:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--steel-50);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
/* Frosted effect via a pseudo-element so backdrop-filter never creates a
   containing block for the fixed-position mobile nav (avoids clipping it). */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: var(--sp-md); }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: var(--sp-lg); }
.main-nav ul { display: flex; gap: var(--sp-md); }
.main-nav a {
  font-family: var(--f-display); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.02em; color: var(--navy); position: relative; padding: 0.3em 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--ember); transition: right .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--ember); }

.lang-switch { display: flex; align-items: center; font-family: var(--f-mono); font-size: 0.82rem; font-weight: 600; letter-spacing: .04em; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.lang-switch a { padding: 0.4em 0.85em; color: var(--graphite-60); transition: background .2s, color .2s; }
.lang-switch a[aria-current="true"] { background: var(--navy); color: var(--white); }
.lang-switch a:not([aria-current="true"]):hover { color: var(--navy); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 110; }
.nav-toggle span { height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0; background: var(--navy); flex-direction: column; justify-content: center;
    align-items: center; gap: var(--sp-xl); transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: center; gap: var(--sp-md); }
  .main-nav a { color: var(--white); font-size: 1.4rem; }
  .lang-switch { border-color: rgba(255,255,255,0.3); }
  .lang-switch a { color: rgba(255,255,255,0.65); }
  .lang-switch a[aria-current="true"] { background: var(--ember); color: var(--white); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  padding-top: 84px; overflow: hidden; background: var(--navy-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,21,38,0.94) 0%, rgba(11,21,38,0.55) 46%, rgba(11,21,38,0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: var(--sp-xl); width: 100%; }
.hero-tag { color: var(--steel-100); font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--sp-sm); display: block; }
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 16ch; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--ember); }
.hero p { color: var(--steel-100); font-size: 1.15rem; max-width: 46ch; margin-top: var(--sp-md); font-family: var(--f-body); line-height: 1.8; }
.hero-actions { display: flex; gap: var(--sp-sm); margin-top: var(--sp-lg); flex-wrap: wrap; }
.hero-scroll { position: absolute; right: var(--sp-md); bottom: var(--sp-lg); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--sp-xs); }
.hero-scroll span { writing-mode: vertical-rl; color: rgba(255,255,255,0.6); font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.2em; }
.hero-scroll .line { width: 1px; height: 46px; background: rgba(255,255,255,0.35); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--ember); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { to { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .line::after { animation: none; top: 40%; } }
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* Short-to-medium viewports: the bottom-anchored hero text plus its padding
   can outgrow min-height, leaving little to no breathing room under the
   fixed header since flex-end has no slack left to give. This covers the
   shortest phones through the most common standard-phone height class
   (~844–852px) where that slack runs out. Below this height, anchor content
   to the top instead, with an explicit, guaranteed gap. */
@media (max-height: 880px) {
  .hero { align-items: flex-start; min-height: 480px; padding-top: 130px; }
  .hero-inner { padding-bottom: var(--sp-lg); }
}

/* ==========================================================================
   Sections / generic
   ========================================================================== */
.section { padding-block: var(--sp-2xl); }
.section-head { max-width: 62ch; margin-bottom: var(--sp-xl); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: var(--sp-xs); }
.section-head p { margin-top: var(--sp-sm); color: var(--graphite-60); font-size: 1.08rem; }
.section-dark { background: var(--navy); color: var(--steel-100); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-head p { color: rgba(255,255,255,0.68); }
.section-tint { background: var(--steel-100); }

/* ---- About / intro split ---- */
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-xl); align-items: center; }
.intro-media { position: relative; }
.intro-media img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro-media::before {
  content: ''; position: absolute; top: -18px; left: -18px; width: 120px; height: 120px;
  border-top: 3px solid var(--ember); border-left: 3px solid var(--ember);
}
.intro-copy .eyebrow { margin-bottom: var(--sp-sm); }
.intro-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: var(--sp-md); }
.intro-copy p { color: var(--graphite-60); font-size: 1.05rem; margin-bottom: var(--sp-lg); }
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

/* ---- Service rows (spec-sheet styling) ---- */
.service-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 88px 260px 1fr auto; gap: var(--sp-lg); align-items: center;
  padding-block: var(--sp-lg); border-bottom: 1px solid var(--line);
}
.service-index { font-family: var(--f-mono); font-size: 0.85rem; color: var(--ember); font-weight: 600; letter-spacing: .04em; }
.service-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-row:hover .service-photo img { transform: scale(1.06); }
.service-copy h4 { font-size: 1.32rem; margin-bottom: 0.5em; }
.service-copy p { color: var(--graphite-60); max-width: 56ch; }
.service-link { justify-self: end; }
@media (max-width: 980px) {
  .service-row { grid-template-columns: 60px 1fr; grid-template-areas: "idx photo" "idx copy" "idx link"; row-gap: var(--sp-sm); }
  .service-index { grid-area: idx; }
  .service-photo { grid-area: photo; max-width: 220px; }
  .service-copy { grid-area: copy; }
  .service-link { grid-area: link; justify-self: start; }
}

/* ---- News list ---- */
.news-list { border-top: 1px solid var(--line); }
.news-item { display: flex; gap: var(--sp-lg); padding-block: var(--sp-md); border-bottom: 1px solid var(--line); align-items: baseline; flex-wrap: wrap; }
.news-date { font-family: var(--f-mono); font-size: 0.9rem; color: var(--graphite-60); flex-shrink: 0; width: 8.5em; }
.news-badge { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: .08em; background: var(--ember); color: var(--white); padding: 0.2em 0.6em; border-radius: 3px; margin-right: 0.8em; }
.news-item h4 { font-family: var(--f-body); font-weight: 600; font-size: 1.05rem; color: var(--navy); flex: 1; }
.news-item h4 a:hover { color: var(--ember); }

/* ---- Access / map ---- */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); margin-top: var(--sp-lg); }
.access-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: var(--sp-sm); display: flex; align-items: center; gap: 0.5em; }
.access-card p { color: var(--graphite-60); }
.access-card strong { color: var(--graphite); font-weight: 600; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: var(--sp-lg); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 780px) { .access-grid { grid-template-columns: 1fr; gap: var(--sp-md); } }

/* ---- CTA / contact band ---- */
.cta-band { text-align: center; }
.cta-band .eyebrow { justify-content: center; margin-inline: auto; }
.cta-band h2 { margin-top: var(--sp-sm); }
.cta-band p { max-width: 52ch; margin-inline: auto; margin-top: var(--sp-md); color: rgba(255,255,255,0.72); }
.cta-band .btn-primary { margin-top: var(--sp-lg); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding-top: var(--sp-2xl); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--sp-xl); padding-bottom: var(--sp-xl); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand img { height: 34px; width: auto; filter: brightness(0) invert(1); margin-bottom: var(--sp-md); }
.footer-brand p { max-width: 34ch; font-size: 0.95rem; line-height: 1.8; }
.footer-col h5 { font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: var(--sp-md); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.9em; }
.footer-col a:hover { color: var(--white); }
.footer-addr { font-size: 0.95rem; line-height: 1.9; }
.footer-addr .label { font-family: var(--f-mono); font-size: 0.7rem; color: var(--ember); letter-spacing: .08em; display: block; margin-top: var(--sp-sm); }
.footer-addr .label:first-child { margin-top: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: var(--sp-md); font-size: 0.85rem; flex-wrap: wrap; gap: var(--sp-xs); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

/* ==========================================================================
   Inner-page components
   ========================================================================== */

/* ---- Page banner (compact hero for non-home pages) ---- */
.page-banner { background: var(--navy); padding-top: calc(84px + var(--sp-xl)); padding-bottom: var(--sp-xl); text-align: center; }
.page-banner .eyebrow { justify-content: center; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-top: var(--sp-sm); }

/* ---- Breadcrumb ---- */
.breadcrumb { padding-block: var(--sp-md); font-family: var(--f-mono); font-size: 0.8rem; color: var(--graphite-60); letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb .sep { margin-inline: 0.6em; opacity: .5; }

/* ---- In-page pill sub-nav ---- */
.subnav { display: flex; gap: var(--sp-sm); flex-wrap: wrap; padding-block: var(--sp-md) var(--sp-xl); }
.subnav a {
  font-family: var(--f-display); font-weight: 600; font-size: 0.92rem; letter-spacing: .02em;
  padding: 0.6em 1.3em; border: 1.5px solid var(--line); border-radius: 30px; color: var(--navy);
  transition: background .2s, border-color .2s, color .2s;
}
.subnav a:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---- Timeline (About > history) ---- */
.timeline { position: relative; margin-top: var(--sp-lg); padding-left: var(--sp-lg); border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding-bottom: var(--sp-xl); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: calc(-1 * var(--sp-lg) - 7px); top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--ember); border: 3px solid var(--steel-50);
}
.timeline-year { font-family: var(--f-mono); color: var(--ember); font-weight: 600; font-size: 0.95rem; letter-spacing: .04em; }
.timeline-item h4 { margin-top: 0.4em; margin-bottom: 0.5em; font-size: 1.2rem; }
.timeline-item p { color: var(--graphite-60); max-width: 62ch; }
.timeline-quote {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: var(--navy);
  border-left: 3px solid var(--ember); padding-left: var(--sp-md); margin-block: var(--sp-xl); max-width: 34ch;
}

/* ---- Info table (Company profile) ---- */
.info-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-lg); }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { text-align: left; padding: var(--sp-md) var(--sp-sm); vertical-align: top; }
.info-table th {
  width: 11em; font-family: var(--f-mono); font-weight: 600; font-size: 0.82rem; letter-spacing: .04em;
  color: var(--ember); text-transform: uppercase; padding-left: 0;
}
.info-table td { color: var(--graphite); line-height: 1.85; }
.info-table td p + p { margin-top: 0.3em; }
@media (max-width: 640px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: auto; }
  .info-table tr { padding-block: var(--sp-sm); }
  .info-table th { padding-bottom: 0.3em; }
  .info-table td { padding-top: 0; }
}

/* ---- Service detail blocks (Services page) ---- */
.service-detail { padding-block: var(--sp-2xl); border-bottom: 1px solid var(--line); scroll-margin-top: 92px; }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-xl); }
.service-detail-media { display: flex; flex-direction: column; gap: var(--sp-sm); min-width: 0; }
.service-detail-media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; }
.service-detail-media.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.service-detail-body { min-width: 0; }
.service-detail-body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: var(--sp-md); }
.service-detail-body > p { color: var(--graphite-60); margin-bottom: var(--sp-md); font-size: 1.02rem; }
@media (max-width: 880px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* ---- Price tables ---- */
.price-table-scroll-hint { display: none; font-family: var(--f-mono); font-size: 0.72rem; color: var(--graphite-60); letter-spacing: .04em; margin-top: -0.4em; margin-bottom: var(--sp-xs); }
@media (max-width: 640px) { .price-table-scroll-hint { display: block; } }
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-block: var(--sp-md); border: 1px solid var(--line); border-radius: var(--radius); }
.price-table { width: 100%; border-collapse: collapse; min-width: 420px; font-size: 0.92rem; }
.price-table caption { text-align: left; font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--graphite-60); padding: var(--sp-sm) var(--sp-sm) 0; }
.price-table th, .price-table td { padding: 0.85em 1em; text-align: center; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--navy); color: var(--white); font-family: var(--f-display); font-weight: 600; letter-spacing: .02em; }
.price-table td:first-child, .price-table th:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.price-table tbody tr:nth-child(even) { background: var(--steel-100); }
.price-table td.price { font-family: var(--f-mono); font-weight: 600; }
.price-notes { margin-top: var(--sp-sm); font-size: 0.86rem; color: var(--graphite-60); }
.price-notes p { margin-top: 0.3em; }

/* ---- Article prose (Privacy policy) ---- */
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.3rem; margin-top: var(--sp-xl); margin-bottom: var(--sp-sm); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--graphite); margin-bottom: var(--sp-sm); }
.prose address { font-style: normal; margin-top: var(--sp-md); padding-top: var(--sp-md); border-top: 1px solid var(--line); line-height: 1.9; }

/* ---- Simple form (contact) ---- */
.contact-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.contact-embed iframe { width: 100%; border: 0; display: block; }
.contact-note { display: flex; gap: 0.7em; align-items: flex-start; background: var(--steel-100); border-radius: var(--radius); padding: var(--sp-md); margin-bottom: var(--sp-lg); font-size: 0.95rem; color: var(--graphite-60); }
.contact-note svg { flex-shrink: 0; margin-top: 0.2em; color: var(--ember); width: 18px; height: 18px; }

/* ---- News index ---- */
.news-index-item { display: block; padding-block: var(--sp-lg); border-bottom: 1px solid var(--line); }
.news-index-item:first-child { border-top: 1px solid var(--line); }
.news-index-item .news-date { display: block; margin-bottom: 0.6em; }
.news-index-item h3 { font-family: var(--f-body); font-size: 1.15rem; font-weight: 600; color: var(--navy); }
.news-index-item:hover h3 { color: var(--ember); }
.news-post-body { max-width: 68ch; padding-block: var(--sp-lg); font-size: 1.05rem; }
.news-post-body p { margin-bottom: var(--sp-sm); }

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ember); color: var(--white); padding: 1em 1.4em; z-index: 200; font-family: var(--f-display); font-weight: 600; }
.skip-link:focus { left: var(--sp-sm); top: var(--sp-sm); }
