/* ==========================================================================
   JAPAN AUTO HUB — Cinematic Sports Design System
   Prefix: jah-  |  Colors: Matte Black / Racing Red / Titanium Silver
   Fonts: Bebas Neue (display) + Noto Sans JP (body)
   ========================================================================== */

:root {
  --jah-black: #0A0A0A;
  --jah-red: #E10600;
  --jah-red-dim: #8f0400;
  --jah-silver: #C0C0C0;
  --jah-white: #F5F5F5;
  --jah-carbon: #1C1C1C;
  --jah-carbon-2: #141414;
  --jah-font-display: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  --jah-font-body: 'Noto Sans JP', sans-serif;
  --jah-shell: 1360px;
  --jah-ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }
*::-webkit-scrollbar { display: none; width: 0; height: 0; }

html { scroll-behavior: smooth; background: var(--jah-black); }

body.jah-body {
  margin: 0;
  background: var(--jah-black);
  color: var(--jah-white);
  font-family: var(--jah-font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.js .jah-reveal { opacity: 0; }

.jah-skip {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--jah-red); color: var(--jah-white); padding: 12px 20px;
}
.jah-skip:focus { left: 12px; top: 12px; }

.jah-shell {
  max-width: var(--jah-shell);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.jah-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--jah-red); z-index: 1000; transition: width .1s linear;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.jah-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--jah-font-display);
  font-size: .82rem;
  letter-spacing: .22em;
  color: var(--jah-red);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.jah-kicker::before { content: ''; width: 28px; height: 2px; background: var(--jah-red); display: block; }
.jah-kicker--light { color: var(--jah-white); }
.jah-kicker--light::before { background: var(--jah-red); }
.jah-kicker--center { justify-content: center; }

.jah-display {
  font-family: var(--jah-font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
}

.jah-h2 {
  font-family: var(--jah-font-body);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.3;
  color: var(--jah-white);
  margin: 0 0 20px;
}

.jah-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(245,245,245,.72);
  max-width: 62ch;
}

.jah-body-text { color: rgba(245,245,245,.68); font-size: 1rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.jah-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px;
  font-family: var(--jah-font-display);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .35s var(--jah-ease), background .35s ease, color .35s ease, border-color .35s ease;
  white-space: nowrap;
}
.jah-btn--red { background: var(--jah-red); color: var(--jah-white); }
.jah-btn--red:hover { background: var(--jah-white); color: var(--jah-black); transform: translateY(-2px); }
.jah-btn--ghost { background: transparent; color: var(--jah-white); border-color: rgba(245,245,245,.4); }
.jah-btn--ghost:hover { border-color: var(--jah-red); color: var(--jah-red); transform: translateY(-2px); }
.jah-btn--outline-red { background: transparent; color: var(--jah-red); border-color: var(--jah-red); }
.jah-btn--outline-red:hover { background: var(--jah-red); color: var(--jah-white); transform: translateY(-2px); }
.jah-btn--lg { padding: 20px 44px; font-size: 1.05rem; }
.jah-btn--block { width: 100%; }

/* ==========================================================================
   Section framework
   ========================================================================== */

.jah-section { position: relative; padding: 6.5rem 0; }
.jah-section--carbon { background: var(--jah-carbon); }
.jah-section--black { background: var(--jah-black); }
.jah-section--tight { padding: 4rem 0; }

.jah-kinetic {
  position: absolute; height: 2px; left: 0; right: 0;
  background: linear-gradient(90deg, transparent, var(--jah-red) 35%, var(--jah-red) 65%, transparent);
  background-size: 220% 100%;
  animation: jahSweep 4.5s linear infinite;
  opacity: .8;
}
@keyframes jahSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -20% 0; }
}

/* Diagonal slash divider between sections */
.jah-divider { position: relative; height: 88px; overflow: hidden; background: var(--jah-black); z-index: 3; }
.jah-divider::before {
  content: ''; position: absolute; inset: -40% 0; transform: skewY(-3deg);
  background: var(--jah-carbon);
}
.jah-divider--to-black::before { background: var(--jah-black); }
.jah-divider--to-red::before { background: var(--jah-red); }
.jah-divider--rev::before { transform: skewY(3deg); }
.jah-divider--sm { height: 52px; }

/* ==========================================================================
   Header
   ========================================================================== */

.jah-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: linear-gradient(to bottom, rgba(10,10,10,.85), transparent);
  transition: background .4s ease, backdrop-filter .4s ease;
}
.jah-header.is-scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(10px); }
.jah-header__inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.jah-header__line {
  position: absolute; bottom: 0; left: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(225,6,0,.5), transparent);
}

.jah-brand { display: flex; align-items: center; gap: 12px; }
.jah-brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--jah-red); color: var(--jah-white);
  font-family: var(--jah-font-display); font-size: 1rem; letter-spacing: .05em;
}
.jah-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.jah-brand__name { font-family: var(--jah-font-display); font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; }
.jah-brand__jp { font-size: .68rem; color: var(--jah-silver); letter-spacing: .05em; }

.jah-header__actions { display: flex; align-items: center; gap: 28px; }
.jah-nav { display: flex; align-items: center; gap: 30px; }
.jah-nav__link {
  position: relative; font-family: var(--jah-font-display); letter-spacing: .08em;
  font-size: .92rem; text-transform: uppercase; color: rgba(245,245,245,.8); padding: 6px 0;
}
.jah-nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--jah-red);
  transition: width .3s var(--jah-ease);
}
.jah-nav__link:hover, .jah-nav__link.is-active { color: var(--jah-white); }
.jah-nav__link:hover::after, .jah-nav__link.is-active::after { width: 100%; }
.jah-nav__cta {
  font-family: var(--jah-font-display); letter-spacing: .08em; font-size: .85rem;
  background: var(--jah-red); color: var(--jah-white); padding: 10px 22px; text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
}
.jah-nav__cta:hover { background: var(--jah-white); color: var(--jah-black); transform: translateY(-2px); }

.jah-menu { display: none; flex-direction: column; gap: 6px; width: 34px; background: none; border: none; padding: 6px 0; z-index: 1001; }
.jah-menu span { display: block; height: 2px; width: 100%; background: var(--jah-white); transition: transform .35s var(--jah-ease), opacity .25s ease; }
body.jah-menu-open .jah-menu span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.jah-menu-open .jah-menu span:nth-child(2) { opacity: 0; }
body.jah-menu-open .jah-menu span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile full-screen menu with red wipe transition */
.jah-wipe {
  position: fixed; inset: 0; background: var(--jah-red); z-index: 900;
  transform: scaleY(0); transform-origin: top; pointer-events: none;
  transition: transform .55s var(--jah-ease);
}
body.jah-menu-open .jah-wipe { transform: scaleY(1); }

.jah-nav-mobile {
  position: fixed; inset: 0; z-index: 950; background: var(--jah-black);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .6s;
}
body.jah-menu-open .jah-nav-mobile {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .3s ease .32s, visibility 0s linear 0s;
}
.jah-nav-mobile__inner {
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(24px, 8vw, 80px); gap: 6px;
}
.jah-nav-mobile__label { font-family: var(--jah-font-display); color: var(--jah-red); letter-spacing: .2em; font-size: .85rem; margin-bottom: 18px; }
.jah-nav-mobile__link {
  font-family: var(--jah-font-display); font-size: clamp(2.4rem, 9vw, 4.5rem);
  text-transform: uppercase; color: var(--jah-white); display: flex; align-items: baseline; gap: 18px;
  padding: 8px 0; border-bottom: 1px solid rgba(245,245,245,.08);
  opacity: 0; transform: translateY(24px);
}
body.jah-menu-open .jah-nav-mobile__link {
  animation: jahLinkIn .5s var(--jah-ease) forwards;
  animation-delay: calc(.15s + var(--i) * .07s);
}
@keyframes jahLinkIn { to { opacity: 1; transform: translateY(0); } }
.jah-nav-mobile__link.is-active { color: var(--jah-red); }
.jah-nav-mobile__num { font-size: .9rem; color: var(--jah-silver); letter-spacing: .1em; }
.jah-nav-mobile__cta {
  margin-top: 28px; display: inline-flex; width: fit-content; background: var(--jah-red); color: var(--jah-white);
  font-family: var(--jah-font-display); letter-spacing: .1em; padding: 16px 30px; text-transform: uppercase;
  opacity: 0; transform: translateY(24px);
}
body.jah-menu-open .jah-nav-mobile__cta { animation: jahLinkIn .5s var(--jah-ease) forwards; animation-delay: .55s; }
.jah-nav-mobile__tagline { margin-top: 30px; color: var(--jah-silver); font-size: .85rem; opacity: 0; }
body.jah-menu-open .jah-nav-mobile__tagline { animation: jahLinkIn .5s var(--jah-ease) forwards; animation-delay: .65s; }

/* ==========================================================================
   Sticky left rail (desktop)
   ========================================================================== */

.jah-rail { position: fixed; left: 28px; top: 50%; transform: translateY(-50%); z-index: 300; }
.jah-rail__line { position: absolute; left: 2px; top: -30px; bottom: -30px; width: 1px; background: rgba(245,245,245,.12); }
.jah-rail__list { display: flex; flex-direction: column; gap: 22px; }
.jah-rail__item { display: flex; align-items: center; gap: 12px; cursor: default; }
.jah-rail__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(245,245,245,.3); transition: all .3s ease; flex-shrink: 0; }
.jah-rail__label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--jah-font-display); font-size: .68rem; letter-spacing: .15em;
  color: rgba(245,245,245,.28); transition: color .3s ease, opacity .3s ease;
  height: 90px; display: flex; align-items: center;
}
.jah-rail__item.is-active .jah-rail__dot { background: var(--jah-red); transform: scale(1.6); box-shadow: 0 0 12px rgba(225,6,0,.7); }
.jah-rail__item.is-active .jah-rail__label { color: var(--jah-red); }

@media (max-width: 1180px) {
  .jah-rail { display: none; }
}

.jah-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(245,245,245,.3);
  background: rgba(10,10,10,.7); color: var(--jah-white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
}
.jah-top:hover { border-color: var(--jah-red); color: var(--jah-red); transform: translateY(-3px); }

/* ==========================================================================
   Hero (cinematic full-bleed)
   ========================================================================== */

.jah-hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--jah-black);
}
.jah-hero__bg { position: absolute; inset: 0; z-index: 0; }
.jah-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: contrast(1.1) saturate(.9); }
.jah-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.55) 45%, var(--jah-black) 96%),
              linear-gradient(90deg, rgba(10,10,10,.75), transparent 55%);
}
.jah-hero__content { position: relative; z-index: 2; padding: 180px clamp(20px, 5vw, 64px) 90px; }
.jah-hero__kicker { color: var(--jah-red); }
.jah-hero__brand { overflow: hidden; }
.jah-hero__brand-line {
  font-family: var(--jah-font-display);
  font-size: clamp(3.6rem, 13vw, 11.5rem);
  line-height: .84;
  letter-spacing: .01em;
  color: var(--jah-white);
  display: block;
  -webkit-text-stroke: 0;
}
.jah-hero__brand-line--accent { color: var(--jah-red); }
.jah-hero__headline {
  font-family: var(--jah-font-body); font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  margin: 28px 0 18px; max-width: 26ch; color: var(--jah-white);
}
.jah-hero__lead { font-size: 1.02rem; color: rgba(245,245,245,.72); max-width: 56ch; margin-bottom: 40px; }
.jah-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; }
.jah-hero__scroll {
  position: absolute; bottom: 28px; right: clamp(20px, 5vw, 64px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--jah-font-display); font-size: .72rem; letter-spacing: .2em; color: rgba(245,245,245,.6);
}
.jah-hero__scroll-line { width: 1px; height: 54px; background: rgba(245,245,245,.3); position: relative; overflow: hidden; }
.jah-hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--jah-red);
  animation: jahScrollLine 2.2s ease-in-out infinite;
}
@keyframes jahScrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

.jah-hero__lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.jah-hero__lines .jah-kinetic:nth-child(1) { top: 22%; }
.jah-hero__lines .jah-kinetic:nth-child(2) { top: 78%; animation-duration: 6s; animation-direction: reverse; }

/* ==========================================================================
   Manifesto (diagonal split)
   ========================================================================== */

.jah-manifesto { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 560px; }
.jah-manifesto__media { position: relative; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); }
.jah-manifesto__media img { width: 100%; height: 100%; object-fit: cover; }
.jah-manifesto__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.5), transparent 50%); }
.jah-manifesto__body { padding: 5rem clamp(24px, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.jah-manifesto__stat { margin-top: 32px; display: flex; align-items: baseline; gap: 14px; border-top: 1px solid rgba(245,245,245,.15); padding-top: 22px; }
.jah-manifesto__stat-value { font-family: var(--jah-font-display); font-size: 2.4rem; color: var(--jah-red); }
.jah-manifesto__stat-label { color: var(--jah-silver); font-size: .85rem; letter-spacing: .05em; }

@media (max-width: 900px) {
  .jah-manifesto { grid-template-columns: 1fr; min-height: auto; }
  .jah-manifesto__media { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); height: 340px; }
}

/* ==========================================================================
   Runway (horizontal scroll)
   ========================================================================== */

.jah-runway { padding: 6.5rem 0; background: var(--jah-black); overflow: hidden; }
.jah-runway__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 46px; }
.jah-runway__hint { font-family: var(--jah-font-display); font-size: .8rem; letter-spacing: .1em; color: var(--jah-silver); }
.jah-runway__track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px clamp(20px, 5vw, 64px) 30px; cursor: grab; user-select: none;
}
.jah-runway__track:active { cursor: grabbing; }
.jah-runway__card {
  position: relative; flex: 0 0 clamp(270px, 32vw, 420px); aspect-ratio: 4/5;
  scroll-snap-align: start; overflow: hidden; background: var(--jah-carbon);
}
.jah-runway__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--jah-ease); }
.jah-runway__card:hover img { transform: scale(1.08); }
.jah-runway__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.92) 10%, transparent 55%);
}
.jah-runway__card-info { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.jah-runway__card-name { font-family: var(--jah-font-display); font-size: 1.5rem; text-transform: uppercase; color: var(--jah-white); }
.jah-runway__card-tag { font-size: .78rem; color: var(--jah-red); letter-spacing: .08em; margin-top: 4px; }
.jah-runway__card-index {
  position: absolute; top: 18px; left: 22px; z-index: 2; font-family: var(--jah-font-display);
  font-size: .85rem; color: rgba(245,245,245,.6); letter-spacing: .1em;
}
.jah-runway__foot { margin-top: 30px; padding: 0 clamp(20px, 5vw, 64px); }

/* ==========================================================================
   Metrics ribbon
   ========================================================================== */

.jah-metrics { background: var(--jah-carbon); padding: 5.5rem 0; }
.jah-metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.jah-metric { text-align: center; padding: 0 20px; border-left: 1px solid rgba(245,245,245,.1); }
.jah-metric:first-child { border-left: none; }
.jah-metric__value-row { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.jah-metric__value { font-family: var(--jah-font-display); font-size: clamp(3rem, 6vw, 5rem); color: var(--jah-white); }
.jah-metric__suffix { font-family: var(--jah-font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--jah-red); }
.jah-metric__label { margin-top: 10px; font-size: .82rem; letter-spacing: .05em; color: var(--jah-silver); }

@media (max-width: 760px) {
  .jah-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .jah-metric:nth-child(3) { border-left: none; }
}

/* ==========================================================================
   Process (vertical numbered)
   ========================================================================== */

.jah-process { padding: 6.5rem 0; background: var(--jah-black); }
.jah-process__list { margin-top: 50px; position: relative; }
.jah-process__list::before { content: ''; position: absolute; left: 45px; top: 10px; bottom: 10px; width: 1px; background: rgba(245,245,245,.14); }
.jah-process__item { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 32px 0; }
.jah-process__num {
  font-family: var(--jah-font-display); font-size: 2.6rem; color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,245,245,.4); text-stroke: 1.5px rgba(245,245,245,.4);
  position: relative; z-index: 2; text-align: center;
}
.jah-process__item:hover .jah-process__num { -webkit-text-stroke-color: var(--jah-red); color: var(--jah-red); }
.jah-process__title { font-family: var(--jah-font-body); font-weight: 500; font-size: 1.35rem; margin-bottom: 10px; }
.jah-process__desc { color: rgba(245,245,245,.65); max-width: 60ch; }

/* ==========================================================================
   Spotlight (video-frame)
   ========================================================================== */

.jah-spotlight { padding: 6.5rem 0; background: var(--jah-carbon); }
.jah-spotlight__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.jah-spotlight__frame { position: relative; border: 1px solid rgba(245,245,245,.18); padding: 14px; }
.jah-spotlight__frame::before, .jah-spotlight__frame::after {
  content: ''; position: absolute; width: 26px; height: 26px; border: 2px solid var(--jah-red);
}
.jah-spotlight__frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.jah-spotlight__frame::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.jah-spotlight__media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.jah-spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.jah-spotlight__rec {
  position: absolute; top: 16px; left: 16px; display: flex; align-items: center; gap: 8px;
  font-family: var(--jah-font-display); font-size: .78rem; letter-spacing: .1em; color: var(--jah-white);
  background: rgba(10,10,10,.55); padding: 6px 12px; z-index: 2;
}
.jah-spotlight__rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jah-red); animation: jahBlink 1.4s ease-in-out infinite; }
@keyframes jahBlink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.jah-spotlight__caption { position: absolute; bottom: 16px; right: 16px; font-family: var(--jah-font-display); font-size: .72rem; letter-spacing: .08em; color: var(--jah-silver); z-index: 2; }

/* ==========================================================================
   Testimonials ticker
   ========================================================================== */

.jah-testimonials { padding: 6.5rem 0; background: var(--jah-black); overflow: hidden; }
.jah-quote-track { display: flex; gap: 26px; width: max-content; animation: jahMarquee 42s linear infinite; }
.jah-testimonials:hover .jah-quote-track { animation-play-state: paused; }
@keyframes jahMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.jah-quote-card { width: min(440px, 82vw); flex-shrink: 0; background: var(--jah-carbon); padding: 34px; border-top: 3px solid var(--jah-red); }
.jah-quote-card__text { font-size: 1rem; color: rgba(245,245,245,.85); margin-bottom: 22px; }
.jah-quote-card__author { font-family: var(--jah-font-display); letter-spacing: .05em; color: var(--jah-white); }
.jah-quote-card__role { font-size: .8rem; color: var(--jah-silver); margin-top: 2px; }

/* ==========================================================================
   Journal teasers / Post cards
   ========================================================================== */

.jah-journal { padding: 6.5rem 0; background: var(--jah-carbon); }
.jah-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.jah-post-card { display: block; background: var(--jah-black); position: relative; overflow: hidden; }
.jah-post-card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.jah-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--jah-ease); }
.jah-post-card:hover .jah-post-card__media img { transform: scale(1.06); }
.jah-post-card__cat { position: absolute; top: 14px; left: 14px; background: var(--jah-red); color: var(--jah-white); font-family: var(--jah-font-display); font-size: .7rem; letter-spacing: .08em; padding: 5px 10px; z-index: 2; }
.jah-post-card__body { padding: 24px; }
.jah-post-card__date { font-size: .78rem; color: var(--jah-silver); letter-spacing: .05em; }
.jah-post-card__title { font-family: var(--jah-font-body); font-weight: 500; font-size: 1.12rem; margin: 10px 0 12px; line-height: 1.5; }
.jah-post-card__excerpt { font-size: .9rem; color: rgba(245,245,245,.6); }

@media (max-width: 940px) {
  .jah-journal__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Membership strip
   ========================================================================== */

.jah-membership { padding: 6rem 0; background: linear-gradient(120deg, var(--jah-red-dim), var(--jah-black) 65%); position: relative; overflow: hidden; }
.jah-membership__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.jah-membership__points { display: flex; flex-direction: column; gap: 16px; }
.jah-membership__point { display: flex; align-items: center; gap: 14px; font-size: .98rem; }
.jah-membership__point-icon { width: 26px; height: 26px; border: 1px solid var(--jah-red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--jah-red); }

/* ==========================================================================
   Footer CTA dock
   ========================================================================== */

.jah-footer-cta { position: relative; padding: 7rem 0; background: var(--jah-red); overflow: hidden; text-align: center; }
.jah-footer-cta__lines { position: absolute; inset: 0; pointer-events: none; opacity: .35; }
.jah-footer-cta__lines span { position: absolute; left: -10%; right: -10%; height: 1px; background: rgba(245,245,245,.5); }
.jah-footer-cta__lines span:nth-child(1) { top: 20%; transform: rotate(-4deg); }
.jah-footer-cta__lines span:nth-child(2) { top: 55%; transform: rotate(2deg); }
.jah-footer-cta__lines span:nth-child(3) { top: 82%; transform: rotate(-2deg); }
.jah-footer-cta .jah-kicker { color: var(--jah-black); justify-content: center; }
.jah-footer-cta .jah-kicker::before { background: var(--jah-black); }
.jah-footer-cta__title { position: relative; z-index: 2; font-family: var(--jah-font-display); font-size: clamp(2.4rem, 6vw, 4.6rem); color: var(--jah-white); text-transform: uppercase; margin-bottom: 18px; }
.jah-footer-cta__desc { position: relative; z-index: 2; color: rgba(245,245,245,.9); max-width: 56ch; margin: 0 auto 34px; }
.jah-footer-cta .jah-btn--red { position: relative; z-index: 2; background: var(--jah-black); }
.jah-footer-cta .jah-btn--red:hover { background: var(--jah-white); color: var(--jah-black); }

/* ==========================================================================
   Footer
   ========================================================================== */

.jah-footer { background: var(--jah-black); padding: 4.5rem 0 0; border-top: 1px solid rgba(245,245,245,.08); }
.jah-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr .8fr; gap: 40px; padding-bottom: 3rem; }
.jah-footer__logo { display: flex; align-items: center; gap: 10px; font-family: var(--jah-font-display); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 14px; }
.jah-footer__jp { color: var(--jah-silver); font-size: .82rem; margin-bottom: 18px; }
.jah-footer__about { color: rgba(245,245,245,.6); font-size: .92rem; max-width: 42ch; margin-bottom: 16px; }
.jah-footer__meta { font-size: .82rem; color: var(--jah-silver); }
.jah-footer__col h3 { font-family: var(--jah-font-display); letter-spacing: .08em; font-size: .95rem; text-transform: uppercase; color: var(--jah-red); margin-bottom: 18px; }
.jah-footer__col a { display: block; color: rgba(245,245,245,.65); font-size: .92rem; margin-bottom: 12px; transition: color .25s ease; }
.jah-footer__col a:hover { color: var(--jah-white); }
.jah-footer__col address { font-style: normal; }
.jah-footer__social { display: flex; gap: 12px; }
.jah-social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(245,245,245,.2); color: var(--jah-white); transition: all .25s ease; }
.jah-social:hover { background: var(--jah-red); border-color: var(--jah-red); }
.jah-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding: 26px 0; border-top: 1px solid rgba(245,245,245,.08); font-size: .82rem; color: rgba(245,245,245,.5); }
.jah-footer__legal { display: flex; gap: 20px; }
.jah-footer__legal a:hover { color: var(--jah-white); }

@media (max-width: 940px) {
  .jah-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .jah-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Generic grids / cards (shared across inner pages)
   ========================================================================== */

.jah-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.jah-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.jah-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 940px) {
  .jah-grid-2, .jah-grid-3, .jah-grid-4 { grid-template-columns: 1fr; }
}

.jah-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .jah-split { grid-template-columns: 1fr; gap: 34px; } }
.jah-split--rev { direction: rtl; }
.jah-split--rev > * { direction: ltr; }

.jah-media-frame { position: relative; overflow: hidden; }
.jah-media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Page hero (inner pages, shorter than home hero) */
.jah-page-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.jah-page-hero__bg { position: absolute; inset: 0; }
.jah-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.jah-page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.4), var(--jah-black) 92%); }
.jah-page-hero__content { position: relative; z-index: 2; padding: 180px clamp(20px, 5vw, 64px) 80px; max-width: 900px; }
.jah-page-hero__title { font-family: var(--jah-font-display); font-size: clamp(3rem, 8vw, 6.5rem); text-transform: uppercase; color: var(--jah-white); line-height: .92; margin-bottom: 22px; }
.jah-page-hero__lead { color: rgba(245,245,245,.72); font-size: 1.05rem; max-width: 60ch; }

/* ===== About: Origin split ===== */
.jah-origin { padding: 6.5rem 0; background: var(--jah-black); }

/* ===== About: Milestones timeline ===== */
.jah-timeline { position: relative; margin-top: 50px; padding-left: 20px; }
.jah-timeline::before { content: ''; position: absolute; left: 20px; top: 6px; bottom: 6px; width: 1px; background: rgba(245,245,245,.14); }
.jah-timeline__item { position: relative; padding: 0 0 44px 46px; }
.jah-timeline__item:last-child { padding-bottom: 0; }
.jah-timeline__dot { position: absolute; left: -4px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--jah-red); box-shadow: 0 0 0 4px rgba(225,6,0,.18); }
.jah-timeline__year { font-family: var(--jah-font-display); font-size: 1.6rem; color: var(--jah-red); letter-spacing: .05em; }
.jah-timeline__title { font-weight: 500; font-size: 1.1rem; margin: 6px 0 8px; }
.jah-timeline__desc { color: rgba(245,245,245,.62); max-width: 60ch; }

/* ===== About: Philosophy ===== */
.jah-philosophy-card { background: var(--jah-carbon); padding: 40px 32px; position: relative; }
.jah-philosophy-card__num { font-family: var(--jah-font-display); font-size: 3.2rem; color: transparent; -webkit-text-stroke: 1.5px var(--jah-red); margin-bottom: 20px; display: block; }
.jah-philosophy-card__title { font-weight: 500; font-size: 1.2rem; margin-bottom: 12px; }
.jah-philosophy-card__desc { color: rgba(245,245,245,.62); font-size: .94rem; }

/* ===== About: Team ===== */
.jah-team-card { text-align: center; }
.jah-team-card__avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
  font-family: var(--jah-font-display); font-size: 2.4rem; color: var(--jah-white); border: 1px solid rgba(245,245,245,.2);
}
.jah-team-card__avatar--red { background: linear-gradient(140deg, var(--jah-red), #6a0300); }
.jah-team-card__avatar--silver { background: linear-gradient(140deg, #3a3a3a, var(--jah-carbon)); color: var(--jah-silver); }
.jah-team-card__avatar--carbon { background: linear-gradient(140deg, var(--jah-carbon-2), #000); }
.jah-team-card__name { font-weight: 500; font-size: 1.15rem; margin-bottom: 4px; }
.jah-team-card__role { color: var(--jah-red); font-size: .82rem; letter-spacing: .04em; margin-bottom: 14px; }
.jah-team-card__bio { color: rgba(245,245,245,.6); font-size: .9rem; }

/* ===== About: Garage tour ===== */
.jah-garage-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; margin-top: 46px; }
.jah-garage-grid .jah-garage-item:first-child { grid-row: span 2; }
.jah-garage-item { position: relative; overflow: hidden; min-height: 220px; }
.jah-garage-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.jah-garage-item__caption { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(0deg, rgba(10,10,10,.88), transparent 60%); }
.jah-garage-item__title { font-weight: 500; font-size: 1.05rem; margin-bottom: 6px; }
.jah-garage-item__desc { font-size: .85rem; color: rgba(245,245,245,.7); }
@media (max-width: 900px) {
  .jah-garage-grid { grid-template-columns: 1fr; }
  .jah-garage-grid .jah-garage-item:first-child { grid-row: auto; }
  .jah-garage-item { min-height: 260px; }
}

/* ===== About: Culture ===== */
.jah-culture { position: relative; padding: 7rem 0; background: var(--jah-carbon); overflow: hidden; }
.jah-culture__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.jah-culture__points { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.jah-culture__point { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: rgba(245,245,245,.78); }
.jah-culture__point-mark { color: var(--jah-red); font-family: var(--jah-font-display); }

/* ===== About: Partners ===== */
.jah-partners-track { display: flex; gap: 0; width: max-content; animation: jahMarquee 30s linear infinite; margin-top: 46px; }
.jah-partners-badge { padding: 26px 46px; border-right: 1px solid rgba(245,245,245,.12); font-family: var(--jah-font-display); font-size: 1.1rem; letter-spacing: .05em; color: rgba(245,245,245,.55); white-space: nowrap; text-transform: uppercase; }

/* ===== About: Visit banner / Book banner (shared) ===== */
.jah-banner { position: relative; padding: 6rem 0; background: var(--jah-black); overflow: hidden; }
.jah-banner__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.jah-banner__media { position: absolute; inset: 0; z-index: 0; }
.jah-banner__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.jah-banner__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, var(--jah-black) 40%, transparent); }
.jah-banner__content { position: relative; z-index: 2; }
.jah-banner__title { font-family: var(--jah-font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; margin-bottom: 16px; }
@media (max-width: 760px) { .jah-banner__grid { grid-template-columns: 1fr; } }

/* ===== About: Closing ===== */
.jah-closing { padding: 8rem 0; text-align: center; background: var(--jah-black); }
.jah-closing__title { font-family: var(--jah-font-display); font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; max-width: 20ch; margin: 0 auto 24px; }
.jah-closing__body { max-width: 62ch; margin: 0 auto; color: rgba(245,245,245,.65); }

/* ==========================================================================
   Services page
   ========================================================================== */

.jah-svc-row { padding: 5.5rem 0; }
.jah-svc-row:nth-child(even) { background: var(--jah-carbon); }
.jah-svc-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jah-svc-row--rev .jah-svc-row__grid { direction: rtl; }
.jah-svc-row--rev .jah-svc-row__grid > * { direction: ltr; }
.jah-svc-row__num { font-family: var(--jah-font-display); font-size: 1.1rem; color: var(--jah-red); letter-spacing: .1em; margin-bottom: 8px; display: block; }
.jah-svc-row__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.jah-svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.jah-svc-points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.jah-svc-point { display: flex; align-items: center; gap: 12px; font-size: .94rem; color: rgba(245,245,245,.8); }
.jah-svc-point__check { width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--jah-red); color: var(--jah-red); display: flex; align-items: center; justify-content: center; font-size: .7rem; }
@media (max-width: 900px) {
  .jah-svc-row__grid, .jah-svc-row--rev .jah-svc-row__grid { grid-template-columns: 1fr; direction: ltr; }
}

/* FAQ Accordion */
.jah-faq-list { max-width: 900px; margin: 46px auto 0; }
.jah-faq-item { border-bottom: 1px solid rgba(245,245,245,.14); }
.jah-faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 4px; font-weight: 500; font-size: 1.02rem;
}
.jah-faq-item summary::-webkit-details-marker { display: none; }
.jah-faq-item__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; margin-left: 20px; }
.jah-faq-item__icon::before, .jah-faq-item__icon::after { content: ''; position: absolute; background: var(--jah-red); transition: transform .3s ease; }
.jah-faq-item__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.jah-faq-item__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.jah-faq-item[open] .jah-faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.jah-faq-item p { padding: 0 4px 26px; color: rgba(245,245,245,.65); max-width: 74ch; }
.jah-faq-cat-title { font-family: var(--jah-font-display); letter-spacing: .1em; color: var(--jah-red); font-size: 1rem; margin: 40px 0 10px; }
.jah-faq-cat-title:first-child { margin-top: 0; }

.jah-section-title-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; }

/* ==========================================================================
   Blog page
   ========================================================================== */

.jah-featured { padding: 6.5rem 0; background: var(--jah-black); }
.jah-featured__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; background: var(--jah-carbon); }
.jah-featured__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.jah-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.jah-featured__body { padding: 20px 46px 20px 0; }
.jah-featured__cat { display: inline-block; background: var(--jah-red); color: var(--jah-white); font-family: var(--jah-font-display); font-size: .72rem; letter-spacing: .08em; padding: 6px 12px; margin-bottom: 18px; }
.jah-featured__title { font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 16px; line-height: 1.4; }
.jah-featured__meta { display: flex; gap: 18px; font-size: .82rem; color: var(--jah-silver); margin-bottom: 22px; }
@media (max-width: 900px) {
  .jah-featured__grid { grid-template-columns: 1fr; }
  .jah-featured__body { padding: 24px; }
}

.jah-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.jah-chip { padding: 10px 22px; border: 1px solid rgba(245,245,245,.25); font-family: var(--jah-font-display); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(245,245,245,.8); transition: all .25s ease; }
.jah-chip:hover, .jah-chip.is-active { background: var(--jah-red); border-color: var(--jah-red); color: var(--jah-white); }

.jah-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 24px; margin-top: 46px; }
.jah-bento .jah-post-card:nth-child(1) { grid-column: span 2; }
.jah-bento .jah-post-card:nth-child(1) .jah-post-card__media { aspect-ratio: 21/9; }
@media (max-width: 940px) {
  .jah-bento { grid-template-columns: 1fr; }
  .jah-bento .jah-post-card:nth-child(1) { grid-column: span 1; }
}

.jah-tech { padding: 6.5rem 0; background: var(--jah-carbon); }
.jah-tech__sidebar { background: var(--jah-black); padding: 30px; border-left: 3px solid var(--jah-red); }
.jah-tech__sidebar-item { padding: 14px 0; border-bottom: 1px solid rgba(245,245,245,.1); font-size: .88rem; color: rgba(245,245,245,.7); }
.jah-tech__sidebar-item:last-child { border-bottom: none; }
.jah-tech__sidebar-item strong { display: block; color: var(--jah-white); font-family: var(--jah-font-display); letter-spacing: .05em; margin-bottom: 4px; }

.jah-editor { padding: 6rem 0; background: var(--jah-black); text-align: center; }
.jah-editor__card { max-width: 760px; margin: 40px auto 0; background: var(--jah-carbon); padding: 50px clamp(24px, 5vw, 60px); position: relative; }
.jah-editor__quote-mark { font-family: var(--jah-font-display); font-size: 5rem; color: var(--jah-red); line-height: 1; opacity: .5; }
.jah-editor__body { font-size: 1.08rem; color: rgba(245,245,245,.85); margin: 10px 0 26px; }
.jah-editor__name { font-weight: 500; }
.jah-editor__role { font-size: .85rem; color: var(--jah-silver); margin-top: 4px; }

.jah-calendar-list { margin-top: 40px; display: flex; flex-direction: column; }
.jah-calendar-row { display: flex; align-items: center; gap: 30px; padding: 22px 0; border-bottom: 1px solid rgba(245,245,245,.12); }
.jah-calendar-date { font-family: var(--jah-font-display); font-size: 1.3rem; color: var(--jah-red); min-width: 140px; }
.jah-calendar-title { font-weight: 500; }
.jah-calendar-arrow { margin-left: auto; color: var(--jah-silver); }

.jah-archive-list { margin-top: 40px; }
.jah-archive-row { display: flex; align-items: baseline; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(245,245,245,.1); }
.jah-archive-num { font-family: var(--jah-font-display); font-size: 1.1rem; color: rgba(245,245,245,.35); }
.jah-archive-title { font-weight: 500; font-size: 1rem; }

.jah-newsletter { padding: 6.5rem 0; background: var(--jah-carbon); text-align: center; }
.jah-newsletter__form { max-width: 560px; margin: 34px auto 0; display: flex; gap: 12px; }
.jah-newsletter__form input { flex: 1; background: var(--jah-black); border: 1px solid rgba(245,245,245,.25); padding: 16px 18px; color: var(--jah-white); }
.jah-newsletter__form input:focus { outline: none; border-color: var(--jah-red); }
.jah-newsletter__disclaimer { font-size: .8rem; color: var(--jah-silver); margin-top: 16px; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.jah-form-section { padding: 6.5rem 0; background: var(--jah-black); }
.jah-form { max-width: 800px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.jah-form__full { grid-column: 1 / -1; }
.jah-field label { display: block; font-size: .82rem; letter-spacing: .05em; color: var(--jah-silver); margin-bottom: 8px; }
.jah-field input, .jah-field select, .jah-field textarea {
  width: 100%; background: var(--jah-carbon); border: 1px solid rgba(245,245,245,.15); padding: 15px 16px;
  color: var(--jah-white); font-size: .96rem; transition: border-color .25s ease;
}
.jah-field input:focus, .jah-field select:focus, .jah-field textarea:focus { outline: none; border-color: var(--jah-red); }
.jah-field textarea { resize: vertical; min-height: 130px; }
.jah-form__privacy { font-size: .8rem; color: var(--jah-silver); margin-top: 16px; }
@media (max-width: 700px) { .jah-form { grid-template-columns: 1fr; } }

.jah-hotline { padding: 5.5rem 0; background: var(--jah-carbon); }
.jah-hotline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 40px; }
.jah-hotline-card { background: var(--jah-black); padding: 40px; border-top: 3px solid var(--jah-red); text-align: center; }
.jah-hotline-card__label { font-size: .85rem; color: var(--jah-silver); margin-bottom: 12px; }
.jah-hotline-card__value { font-family: var(--jah-font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); word-break: break-word; }
.jah-hotline-note { text-align: center; margin-top: 26px; color: var(--jah-silver); font-size: .88rem; }
@media (max-width: 700px) { .jah-hotline-grid { grid-template-columns: 1fr; } }

.jah-map-section { padding: 6.5rem 0; background: var(--jah-black); }
.jah-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.jah-map-frame { position: relative; aspect-ratio: 4/3; border: 1px solid rgba(245,245,245,.18); padding: 10px; }
.jah-map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.92) contrast(.9); }
.jah-map-address { margin-top: 20px; }
.jah-map-address p { color: rgba(245,245,245,.7); margin-bottom: 8px; }
@media (max-width: 900px) { .jah-map-grid { grid-template-columns: 1fr; } }

.jah-hours { padding: 6rem 0; background: var(--jah-carbon); }
.jah-hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.jah-hours-card { background: var(--jah-black); padding: 34px; text-align: center; }
.jah-hours-card__label { font-family: var(--jah-font-display); letter-spacing: .08em; color: var(--jah-red); margin-bottom: 14px; }
.jah-hours-card__value { font-size: 1.3rem; font-weight: 500; }
.jah-hours-note { text-align: center; margin-top: 26px; color: var(--jah-silver); font-size: .88rem; }
@media (max-width: 760px) { .jah-hours-grid { grid-template-columns: 1fr; } }

.jah-protocol { padding: 6.5rem 0; background: var(--jah-black); }
.jah-protocol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 46px; position: relative; }
.jah-protocol-grid::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: rgba(245,245,245,.15); z-index: 0; }
.jah-protocol-step { position: relative; z-index: 1; text-align: center; }
.jah-protocol-step__num { width: 46px; height: 46px; border-radius: 50%; background: var(--jah-red); color: var(--jah-white); display: flex; align-items: center; justify-content: center; font-family: var(--jah-font-display); margin: 0 auto 18px; }
.jah-protocol-step__title { font-weight: 500; margin-bottom: 8px; }
.jah-protocol-step__desc { font-size: .88rem; color: rgba(245,245,245,.6); }
@media (max-width: 900px) {
  .jah-protocol-grid { grid-template-columns: 1fr; gap: 40px; }
  .jah-protocol-grid::before { display: none; }
}

.jah-social-row { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.jah-social-row .jah-social { width: 58px; height: 58px; }
.jah-social-row .jah-social svg { width: 24px; height: 24px; }

/* ==========================================================================
   Utility
   ========================================================================== */

.jah-text-center { text-align: center; }
.jah-mt-lg { margin-top: 3rem; }
.jah-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@media (max-width: 1180px) {
  .jah-nav, .jah-header__actions .jah-nav { display: none; }
  .jah-menu { display: flex; }
}
@media (min-width: 1181px) {
  .jah-nav-mobile, .jah-wipe { display: none; }
}
