/* =========================================================
   RSP Automotive Solutions — Sarasota, FL
   German marque specialist: carbon + chrome + schwarz-rot-gold
   Chakra Petch (display) / Space Mono (labels) / IBM Plex Sans (body)
   ========================================================= */

:root {
  --black:    #000000;
  --carbon:   oklch(0.165 0.012 265);
  --carbon-2: oklch(0.205 0.013 265);
  --panel:    oklch(0.235 0.014 265);
  --panel-2:  oklch(0.275 0.014 265);
  --line:     oklch(0.33 0.013 265);
  --line-2:   oklch(0.43 0.012 265);
  --chrome:   oklch(0.965 0.003 265);
  --silver:   oklch(0.82 0.006 265);
  --steel:    oklch(0.66 0.009 265);
  --steel-d:  oklch(0.52 0.009 265);
  --red:      oklch(0.575 0.215 27);
  --red-2:    oklch(0.505 0.20 27);
  --gold:     oklch(0.82 0.155 84);
  --gold-2:   oklch(0.74 0.15 80);

  --display: "Chakra Petch", "Arial Narrow", sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;
  --body:    "IBM Plex Sans", system-ui, "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(64px, 9vw, 128px);
  --max: 1280px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--carbon);
  color: var(--silver);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--red); color: #fff; padding: 12px 16px; z-index: 200; }
.skip:focus { left: 14px; top: 14px; }

.g-grad {
  background: linear-gradient(96deg, var(--chrome) 8%, var(--silver) 38%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- schwarz-rot-gold brand rule ---------- */
.flag-rule {
  display: block; width: 132px; height: 4px;
  background: linear-gradient(90deg, var(--steel-d) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66% 100%);
}

/* ---------- section title + mono index ---------- */
.sec-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(29px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0; color: var(--chrome); max-width: 18ch;
}
.sec-title--chrome { color: var(--chrome); }
.index {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel); display: inline-flex; align-items: center; gap: 11px; margin: 0 0 18px;
}
.index span { color: var(--gold); font-weight: 700; }
.index::after { content: ""; width: 34px; height: 1px; background: var(--line-2); }

/* ---------- brand mark ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { height: 30px; width: auto; display: block; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: 0.02em; color: var(--chrome); line-height: 1; }
.brand__name em { display: block; font-style: normal; font-family: var(--mono); font-weight: 400; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); margin-top: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
  padding: 13px var(--gutter);
  background: color-mix(in oklab, var(--black) 86%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__links { display: flex; gap: 28px; justify-content: center; font-family: var(--mono); font-weight: 400; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.nav__links a { color: var(--silver); text-decoration: none; padding: 6px 0; position: relative; transition: color .25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: var(--chrome); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.01em; text-decoration: none;
  color: #fff; background: var(--red); padding: 10px 18px; border-radius: 3px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease); white-space: nowrap;
}
.nav__call svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.8; }
.nav__call:hover { background: var(--red-2); transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 40px; padding: 0 10px; background: transparent; border: 1px solid var(--line-2); border-radius: 4px; cursor: pointer; }
.nav__toggle span { display: block; height: 2px; background: var(--chrome); 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: 920px) {
  .nav { grid-template-columns: 1fr auto; gap: 12px; }
  .nav__links, .nav__call { display: none; }
  .nav__toggle { display: flex; }
}

/* ---------- mobile menu drawer ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); opacity: 0; transition: opacity .35s var(--ease); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 87vw);
  background: var(--black); border-left: 1px solid var(--line);
  padding: 80px 30px calc(30px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 26px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__close { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; background: transparent; border: none; color: var(--chrome); font-size: 32px; line-height: 1; cursor: pointer; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__links a { font-family: var(--display); font-weight: 700; font-size: 25px; letter-spacing: .005em; color: var(--chrome); text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mobile-menu__cta .btn { justify-content: center; }
@media (prefers-reduced-motion: reduce) { .mobile-menu__backdrop, .mobile-menu__panel, .nav__toggle span { transition: none !important; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; padding: 14px 24px; border-radius: 3px; border: 1.5px solid transparent;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--chrome); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--big { font-size: 16px; padding: 17px 30px; }

.link-arrow { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover { color: var(--gold-2); }
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--black); color: #fff; min-height: min(94vh, 800px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--black) 2%, color-mix(in oklab, var(--black) 42%, transparent) 44%, transparent 80%),
    linear-gradient(to right, color-mix(in oklab, var(--black) 86%, transparent), color-mix(in oklab, var(--black) 30%, transparent) 52%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: clamp(48px, 8vw, 104px) var(--gutter) clamp(44px, 6vw, 76px); }
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 8.2vw, 104px); line-height: 0.98; letter-spacing: -0.015em;
  margin: 0 0 24px; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero__lede { max-width: 52ch; font-size: clamp(16px, 1.45vw, 18.5px); color: color-mix(in oklab, #fff 84%, transparent); margin: 0 0 32px; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: color-mix(in oklab, #fff 80%, transparent); margin: 0; }
.hero__rating strong { font-size: 16px; color: #fff; font-family: var(--display); }
.stars, .rev__stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- marque band ---------- */
.marques { background: var(--black); padding: clamp(44px, 6vw, 76px) var(--gutter); border-bottom: 1px solid var(--line); text-align: center; }
.marques__lead { max-width: 60ch; margin: 0 auto clamp(26px, 3.5vw, 40px); font-size: clamp(16px, 1.8vw, 21px); color: var(--silver); font-weight: 500; }
.marque-rail { list-style: none; margin: 0 auto; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(18px, 3.4vw, 46px); }
.marque-rail li { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 3.4vw, 40px); letter-spacing: 0.01em; color: var(--chrome); position: relative; transition: color .3s var(--ease); }
.marque-rail li + li::before { content: ""; position: absolute; left: clamp(-9px, -1.7vw, -23px); top: 50%; width: 1px; height: 1.1em; background: var(--line-2); transform: translateY(-50%); }
.marque-rail li:hover { color: var(--gold); }
.marques .flag-rule { margin: clamp(28px, 4vw, 44px) auto 0; }

/* ---------- services (asymmetric) ---------- */
.services { background: var(--carbon); padding: var(--section-y) var(--gutter); }
.services { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.services__intro { position: sticky; top: 96px; }
.services__blurb { margin: 18px 0 22px; color: var(--steel); font-size: 16px; line-height: 1.7; max-width: 42ch; }
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc { display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 2.4vw, 32px); padding: clamp(24px, 3vw, 34px) 0; border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc__no { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--gold); padding-top: 6px; }
.svc__name { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2vw, 27px); color: var(--chrome); margin: 0 0 8px; letter-spacing: -0.005em; }
.svc__desc { margin: 0; font-size: 16px; color: var(--steel); line-height: 1.65; max-width: 50ch; }
.svc { transition: background .3s var(--ease); }
.svc:hover .svc__name { color: var(--gold); }
@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; gap: 28px; }
  .services__intro { position: static; }
}

/* ---------- full-bleed statement ---------- */
.statement { position: relative; min-height: min(60vh, 540px); display: flex; align-items: center; overflow: hidden; background: var(--black); }
.statement__media { position: absolute; inset: 0; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.statement::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,.86), rgba(0,0,0,.34) 64%, rgba(0,0,0,.6)); }
.statement__overlay { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: clamp(56px, 8vw, 110px) var(--gutter); width: 100%; }
.statement__big { font-family: var(--display); font-weight: 700; font-size: clamp(27px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -0.01em; color: #fff; margin: 0; max-width: 20ch; }
.statement__big::before { content: ""; display: block; width: 132px; height: 4px; margin-bottom: 28px; background: linear-gradient(90deg, var(--steel-d) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66% 100%); }

/* ---------- specialist (split) ---------- */
.specialist { background: var(--carbon-2); padding: var(--section-y) var(--gutter); }
.specialist { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); gap: clamp(32px, 5vw, 76px); align-items: center; max-width: var(--max); margin: 0 auto; }
.specialist__media { margin: 0; overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 3.4; border: 1px solid var(--line); }
.specialist__media img { width: 100%; height: 100%; object-fit: cover; }
.specialist__para { color: var(--silver); font-size: 16.5px; line-height: 1.75; margin: 20px 0 26px; max-width: 54ch; }
.check-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; color: var(--silver); font-weight: 500; font-size: 16px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 13px; background: var(--red); clip-path: polygon(0 0, 100% 50%, 0 100%); }
@media (max-width: 880px) { .specialist { grid-template-columns: 1fr; } .specialist__media { aspect-ratio: 16 / 11; order: -1; } }

/* ---------- gallery ---------- */
.gallery { background: var(--carbon); padding: var(--section-y) var(--gutter); }
.gallery__head { max-width: var(--max); margin: 0 auto clamp(34px, 4.5vw, 54px); }
.gallery-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gal { position: relative; margin: 0; overflow: hidden; border-radius: 4px; border: 1px solid var(--line); background: var(--panel); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal:hover img { transform: scale(1.05); }
.gal figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 26px 16px 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.82), transparent); opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.gal:hover figcaption { opacity: 1; transform: none; }
.gal--tall { grid-row: span 2; }
.gal--wide { grid-column: span 2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal--wide { grid-column: span 2; }
  .gal--tall { grid-row: span 1; }
}
@media (max-width: 520px) { .gallery-grid { grid-auto-rows: 132px; } }

/* ---------- reviews ---------- */
.reviews { background: var(--carbon-2); padding: var(--section-y) var(--gutter); }
.reviews__head { max-width: var(--max); margin: 0 auto clamp(34px, 4.5vw, 54px); }
.rev-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev { margin: 0; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 4px; padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 14px; }
.rev__stars { font-size: 15px; letter-spacing: 2px; }
.rev p { margin: 0; font-size: clamp(16px, 1.4vw, 18.5px); font-weight: 500; line-height: 1.55; color: var(--chrome); flex: 1; }
.rev cite { font-style: normal; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--silver); display: flex; flex-direction: column; gap: 2px; }
.rev cite span { color: var(--steel-d); font-weight: 400; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.rev--stat { background: var(--black); border-top-color: var(--gold); align-items: flex-start; justify-content: center; gap: 6px; }
.rev--stat .rev__big { font-family: var(--display); font-weight: 700; font-size: clamp(54px, 7vw, 84px); line-height: 0.9; color: var(--gold); }
.rev--stat p { color: var(--silver); font-weight: 500; flex: none; }
.rev--span { grid-column: span 2; }
.rev-link { display: block; width: max-content; margin: clamp(30px, 4vw, 44px) auto 0; font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--gold); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 4px; }
.rev-link:hover { color: var(--gold-2); }
@media (max-width: 920px) { .rev-grid { grid-template-columns: 1fr 1fr; } .rev--span { grid-column: span 2; } }
@media (max-width: 620px) { .rev-grid { grid-template-columns: 1fr; } .rev--span, .rev--stat { grid-column: auto; } }

/* ---------- visit ---------- */
.visit { background: var(--carbon); padding: var(--section-y) var(--gutter); }
.visit { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 4vw, 64px); align-items: stretch; max-width: var(--max); margin: 0 auto; }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 36px); margin-top: clamp(28px, 3.5vw, 44px); }
.visit__block { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 2px solid var(--red); }
.visit__block:nth-child(3) { border-top-color: var(--gold); }
.visit__label { font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); }
.visit__block address { font-style: normal; font-family: var(--display); font-weight: 600; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.35; color: var(--chrome); }
.hours { margin: 0; }
.hours > div { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours > div:last-child { border-bottom: none; }
.hours dt, .hours dd { margin: 0; }
.hours dt { color: var(--silver); font-weight: 500; }
.hours dd { color: var(--steel); font-family: var(--mono); font-size: 13.5px; }
.visit__phone { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); color: var(--chrome); text-decoration: none; letter-spacing: 0.005em; }
.visit__phone:hover { color: var(--gold); }
.visit__map { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05) brightness(0.92); }
@media (max-width: 880px) { .visit { grid-template-columns: 1fr; } .visit__map { min-height: 280px; } }
@media (max-width: 460px) { .visit__grid { grid-template-columns: 1fr; } }

/* ---------- cta band ---------- */
.cta-band { background: var(--black); padding: clamp(56px, 8vw, 104px) var(--gutter); text-align: center; border-top: 1px solid var(--line); }
.cta-band__big { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 4vw, 50px); line-height: 1.08; letter-spacing: -0.01em; color: var(--chrome); margin: 0 auto clamp(28px, 3.5vw, 40px); max-width: 18ch; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { background: var(--black); color: var(--silver); padding: clamp(52px, 6vw, 84px) var(--gutter) calc(40px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.foot__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.foot__logo { height: 84px; width: auto; margin: 0 0 16px; }
.foot__tag { margin: 0; font-size: 14px; color: var(--steel); max-width: 36ch; line-height: 1.6; }
.foot__h { font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-d); display: block; margin-bottom: 12px; }
.foot__col p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; color: var(--silver); }
.foot__col a { color: var(--silver); text-decoration: none; font-size: 14px; }
.foot__col a:hover { color: var(--gold); }
.foot__phone { font-family: var(--display); font-weight: 700; font-size: 21px !important; color: var(--chrome) !important; }
.foot__phone:hover { color: var(--gold) !important; }
.foot__social { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font-family: var(--mono); font-size: 13px; }
.foot__social svg { width: 22px; height: 22px; fill: var(--silver); transition: fill .25s var(--ease); }
.foot__social:hover svg { fill: var(--gold); }
.foot__base { max-width: var(--max); margin: clamp(36px, 4vw, 52px) auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot__copy { margin: 0; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--steel-d); }
.jtn-credit { margin: 0; font-size: 12.5px; color: var(--steel-d); }
.jtn-credit a { color: var(--steel); text-decoration: none; border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: color .25s var(--ease), border-color .25s var(--ease); }
.jtn-credit a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .foot__grid { grid-template-columns: 1fr; } }

/* ---------- mobile sticky call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: 0.02em;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.5);
}
.callbar svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.9; }
@media (max-width: 920px) { .callbar { display: flex; } body { padding-bottom: 56px; } }

/* ---------- reveals ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal-img] { opacity: 0; transform: translateY(12px) scale(0.99); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-delay="1"] { transition-delay: 80ms; } [data-delay="2"] { transition-delay: 160ms; } [data-delay="3"] { transition-delay: 240ms; }
.is-in[data-reveal], .is-in[data-reveal-img] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal], [data-reveal-img] { opacity: 1 !important; transform: none !important; transition: none !important; } }
