/* ============================================================
   자신만만렌터카 JGR — Main CSS
   Design: hair426-inspired Light Editorial v3.0
   brand_tier: premium | Light bg · Gold accent · Navy type
   2026-05-13
   ============================================================ */

/* ── 0. Fonts ────────────────────────────────────────────── */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

/* ── 1. Design Tokens ────────────────────────────────────── */
:root {
  /* Primary palette — Deep Navy */
  --navy-900:      #0D1B2A;
  --navy-800:      #152234;
  --navy-700:      #1B3A5C;
  --navy-500:      #2C5282;
  --navy-300:      #4A7FAD;

  /* Accent palette — Gold */
  --gold-700:      #B8860B;
  --gold-600:      #D4A017;
  --gold-500:      #E8B422;
  --gold-400:      #F0B429;
  --gold-soft:     rgba(212,160,23,0.10);

  /* Neutral palette */
  --white:         #FFFFFF;
  --off-white:     #F7F6F2;
  --warm-white:    #F2EFE8;
  --gray-100:      #EEF0F4;
  --gray-200:      #DDE1E9;
  --gray-400:      #9CA3AF;
  --gray-600:      #6B7280;
  --gray-900:      #111827;

  /* Semantic */
  --bg-main:       var(--white);
  --bg-offwhite:   var(--off-white);
  --bg-warm:       var(--warm-white);
  --bg-dark:       var(--navy-900);
  --text-main:     var(--navy-900);
  --text-sub:      #334155;
  --text-muted:    var(--gray-600);
  --border-main:   var(--gray-200);
  --border-soft:   rgba(13,27,42,0.08);

  /* Typography */
  --ff-main: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont,
             'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;

  /* Scale — hair426 기준 대형 타이포 */
  --fs-hero:     clamp(2.5rem, 7vw, 5.5rem);   /* H1 hero */
  --fs-h2:       clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h3:       clamp(1.125rem, 2vw, 1.375rem);
  --fs-lede:     clamp(1rem, 1.6vw, 1.15rem);
  --fs-label:    0.6875rem;
  --fs-body:     1rem;
  --fs-sm:       0.875rem;
  --fs-xs:       0.8125rem;
  --fs-button:   0.8125rem;

  --nav-height:  5rem;
  --container:   1280px;
  --sec-pad:     clamp(5rem, 10vw, 8rem);   /* hair426 넉넉한 패딩 */
  --radius:      0px;

  /* Transitions */
  --ease:    cubic-bezier(.22, 1, .36, 1);
  --tr-fast: 0.18s cubic-bezier(.22, 1, .36, 1);
  --tr-base: 0.28s cubic-bezier(.22, 1, .36, 1);
  --tr-slow: 0.44s cubic-bezier(.22, 1, .36, 1);
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-main);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Hide default WP block theme wrapper elements */
.wp-site-blocks,
.wp-block-template-part,
body > .site,
.is-layout-constrained,
.wp-container-core-group-layout-1 {
  all: unset;
  display: block;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. Typography ───────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-main);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: break-word;
}

p { line-height: 1.7; word-break: keep-all; overflow-wrap: break-word; }

/* Eyebrow label — gold uppercase small-caps */
.jgr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

/* Legacy alias */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); }
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--light  { color: var(--gold-400); }

/* ── 4. Layout ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--ff-main);
  font-size: var(--fs-button);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
  white-space: nowrap;
  min-height: 52px;
  cursor: pointer;
  word-break: keep-all;
}

.btn--gold {
  background: var(--gold-600);
  color: var(--navy-900);
  border-color: var(--gold-600);
}
.btn--gold:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.btn--navy:hover { background: var(--navy-700); border-color: var(--navy-700); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold-600);
  border-color: var(--gold-600);
}
.btn--outline-gold:hover { background: var(--gold-600); color: var(--navy-900); }

.btn--sm { padding: 10px 22px; font-size: 0.75rem; min-height: 40px; }

.btn--full { width: 100%; justify-content: center; }

.btn .arrow { display: inline-block; transition: transform var(--tr-fast); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── 6. Navigation ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background var(--tr-base), box-shadow var(--tr-base);
}

/* Hero is now light — nav starts as white immediately */
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
}

/* On light hero, always show dark text */
.jgr-hero-v2 ~ * .site-nav,
body .site-nav { background: transparent; }

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Logo */
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ff-main);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--navy-900);
  letter-spacing: -0.025em;
  transition: color var(--tr-fast);
  flex-shrink: 0;
}

.site-nav__logo-img { width: 34px; height: 34px; flex-shrink: 0; }
.site-nav__logo-text { display: flex; flex-direction: column; gap: 0.05em; }
.site-nav__logo-name { font-size: 0.9375rem; font-weight: 800; letter-spacing: -0.025em; color: var(--navy-900); line-height: 1.2; }
.site-nav__logo-sub  { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.08em; color: var(--gold-600); line-height: 1; }

/* Phone center */
.site-nav__phone {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  transition: color var(--tr-fast);
}
.site-nav__phone:hover { color: var(--gold-600); }

/* CTA */
.site-nav__cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold-600);
  color: var(--navy-900) !important;
  border: 2px solid var(--gold-600);
  border-radius: 2px;
  transition: background var(--tr-fast), border-color var(--tr-fast);
  white-space: nowrap;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}
.site-nav__cta:hover { background: var(--gold-400) !important; border-color: var(--gold-400) !important; }

/* Hamburger */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.site-nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900);
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}

/* Mobile Menu */
.site-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--navy-900);
  border-top: 2px solid var(--gold-600);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0;
  overflow-y: auto;
}
.site-nav__mobile.open { display: flex; }
.site-nav__mobile a {
  display: block; padding: 1.125rem 0;
  font-size: 1.125rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transition: color var(--tr-fast);
}
.site-nav__mobile a:hover { color: var(--gold-400); }
.site-nav__mobile .cta-mobile {
  margin-top: 1.5rem;
  background: var(--gold-600);
  color: var(--navy-900) !important;
  padding: 1.25rem 1.5rem !important;
  text-align: center;
  border: 2px solid var(--gold-600) !important;
  border-bottom: 2px solid var(--gold-600) !important;
  font-weight: 700;
  border-radius: 2px;
}

.nav-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: color var(--tr-fast);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.875rem; right: 0.875rem;
  height: 1px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-fast);
}
.nav-link:hover, .nav-link.active { color: var(--gold-600); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

@media (max-width: 960px) {
  .site-nav__phone { display: none; }
  .site-nav__hamburger { display: flex; }
}

/* ── 7. Hero v2 — Light background, centred editorial ─────── */
.jgr-hero-v2 {
  position: relative;
  background: var(--off-white);
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Gold top accent bar */
.jgr-hero-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-400) 50%, transparent 100%);
  z-index: 5;
}

.jgr-hero-v2__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

/* Right/bg media */
.jgr-hero-v2__media {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
  z-index: 1;
}

.jgr-hero-v2__media picture,
.jgr-hero-v2__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Fade overlay from left */
.jgr-hero-v2__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, rgba(247,246,242,0.92) 18%, rgba(247,246,242,0.45) 45%, transparent 100%);
  z-index: 2;
}

.jgr-hero-v2__copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Eyebrow */
.jgr-hero-v2__eyebrow {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.jgr-hero-v2__eyebrow::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* 저신용자 뱃지 */
.jgr-hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--gold-200);
  border: 1.5px solid var(--gold-400);
  padding: 0.4em 0.9em;
  border-radius: 2em;
  width: fit-content;
  letter-spacing: 0.01em;
}
.jgr-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* H1 + 부제 — 타이포그래피 그룹 */
.jgr-hero-v2__headline {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.jgr-hero-v2__title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--navy-900);
  word-break: keep-all;
}

.jgr-hero-v2__subtitle {
  font-size: clamp(1.75rem, 4.5vw, 4rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gold-600);
  word-break: keep-all;
}

.jgr-hero-v2__title em {
  font-style: normal;
  color: var(--gold-600);
  position: relative;
  display: inline-block;
}

/* Gold underline animation */
.jgr-hero-v2__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  animation: jgr-underline-in 1.1s cubic-bezier(.22,1,.36,1) 0.5s forwards;
}
@keyframes jgr-underline-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.jgr-hero-v2__sub {
  font-size: var(--fs-lede);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  word-break: keep-all;
}

.jgr-hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

/* Stats strip */
.jgr-hero-v2__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border-main);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.jgr-hero-v2__stat {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 2rem;
}

.jgr-hero-v2__stat-sep {
  width: 1px;
  background: var(--border-main);
  margin-right: 2rem;
  flex-shrink: 0;
  align-self: stretch;
}

.jgr-hero-v2__stat-hl {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  line-height: 1;
  word-break: keep-all;
}
.jgr-hero-v2__stat-hl span { color: var(--gold-600); }

.jgr-hero-v2__stat-cap {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .jgr-hero-v2__media { width: 100%; position: relative; height: 280px; }
  .jgr-hero-v2__media::before {
    background: linear-gradient(180deg, rgba(247,246,242,0.1) 0%, var(--off-white) 100%);
  }
  .jgr-hero-v2__copy { max-width: 100%; }
}

@media (max-width: 480px) {
  .jgr-hero-v2__actions { flex-direction: column; }
  .jgr-hero-v2__actions .btn { width: 100%; justify-content: center; }
  .jgr-hero-v2__stat-sep { display: none; }
}

/* ── 8. Marquee Strips ────────────────────────────────────── */
.jgr-marquee {
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.jgr-marquee--navy {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.jgr-marquee--gold {
  background: var(--gold-600);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.jgr-marquee__track {
  display: inline-flex;
  animation: jgr-marquee-scroll 28s linear infinite;
  will-change: transform;
}
.jgr-marquee:hover .jgr-marquee__track { animation-play-state: paused; }

@keyframes jgr-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.jgr-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 2.5rem;
  word-break: keep-all;
}

.jgr-marquee--navy .jgr-marquee__item { color: var(--gold-400); }
.jgr-marquee--gold .jgr-marquee__item { color: var(--navy-900); }

.jgr-marquee__gem {
  font-size: 0.625rem;
  flex-shrink: 0;
}
.jgr-marquee--navy .jgr-marquee__gem { color: var(--gold-600); }
.jgr-marquee--gold .jgr-marquee__gem { color: var(--navy-700); }

/* Legacy marquee alias */
.marquee-strip { overflow: hidden; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0; white-space: nowrap; position: relative; z-index: 2; }
.marquee-strip--light { background: var(--gold-600); }
.marquee-strip__track { display: inline-flex; animation: jgr-marquee-scroll 28s linear infinite; will-change: transform; }
.marquee-strip:hover .marquee-strip__track { animation-play-state: paused; }
.marquee-strip__item { display: inline-flex; align-items: center; gap: 1.25rem; padding: 1rem 0; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); white-space: nowrap; padding-right: 2.5rem; }
.marquee-strip--light .marquee-strip__item { color: var(--navy-900); }
.marquee-strip__gem { color: var(--gold-600); font-size: 0.75rem; flex-shrink: 0; }
.marquee-strip--light .marquee-strip__gem { color: var(--navy-700); }

/* ── 9. Sections — Generic ────────────────────────────────── */
.jgr-section {
  padding-block: var(--sec-pad);
}

.jgr-section--white   { background: var(--white); }
.jgr-section--offwhite { background: var(--off-white); }
.jgr-section--warm    { background: var(--warm-white); }
.jgr-section--navy    { background: var(--navy-900); color: var(--white); }

/* Section head */
.jgr-section__head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.jgr-section__head--center { text-align: center; }

.jgr-section__head h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 0.875rem;
  position: relative;
  display: inline-block;
  word-break: keep-all;
}

/* Gold underline accent on section H2 */
.jgr-section__head h2::after {
  content: '';
  display: block;
  width: 2.5rem; height: 3px;
  background: var(--gold-600);
  margin-top: 0.75rem;
}

.jgr-section__head--center h2::after {
  margin-inline: auto;
}

.jgr-section__head p {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  word-break: keep-all;
  margin-top: 0.5rem;
}

.jgr-section__head--center p { margin-inline: auto; }

.jgr-section__head-link { margin-top: 1rem; }

.jgr-section__foot {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-top: 2.5rem;
}

/* Legacy section-head alias */
.section-head { text-align: left; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; }
.section-head__h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; color: var(--navy-900); margin-bottom: 0.875rem; word-break: keep-all; }
.section-head__sub { font-size: var(--fs-body); color: var(--text-muted); max-width: 560px; line-height: 1.75; word-break: keep-all; }
.section-head--center .section-head__sub { margin-inline: auto; }

/* Legacy section alias */
.section { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--warm { background: var(--warm-white); }
.section--light { background: var(--gray-100); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--navy .section-head__h2 { color: var(--white); }
.section--navy .section-head__sub { color: rgba(255,255,255,0.5); }

/* ── 10. Vehicle Grid ─────────────────────────────────────── */
.jgr-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

@media (min-width: 769px) and (max-width: 1150px) {
  .jgr-vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jgr-vehicle-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .jgr-vehicle-grid { grid-template-columns: 1fr; }
}

.jgr-vehicle-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-main);
  overflow: hidden;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.jgr-vehicle-card:hover {
  box-shadow: 0 12px 36px rgba(13,27,42,0.10);
  transform: translateY(-4px);
}

.jgr-vehicle-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.jgr-vehicle-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.jgr-vehicle-card:hover .jgr-vehicle-card__media img {
  transform: scale(1.06);
}

/* Badge */
.jgr-vehicle-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1;
  z-index: 2;
}
.jgr-vehicle-badge--best { background: var(--gold-600); color: var(--navy-900); }
.jgr-vehicle-badge--recommend { background: var(--navy-900); color: var(--white); }
.jgr-vehicle-badge--new { background: var(--navy-500); color: var(--white); }

.jgr-vehicle-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.jgr-vehicle-card__cat {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.375rem;
}

.jgr-vehicle-card__name {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 0.375rem;
  word-break: keep-all;
}

.jgr-vehicle-card__price {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 0.75rem;
}

.jgr-vehicle-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  position: relative;
}
.jgr-vehicle-card__more::after {
  content: ' →';
}
.jgr-vehicle-card__more::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
}
.jgr-vehicle-card:hover .jgr-vehicle-card__more::before { transform: scaleX(1); }

/* ── 11. About Split ──────────────────────────────────────── */
.jgr-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}

@media (max-width: 768px) {
  .jgr-about-split { grid-template-columns: 1fr; gap: 2.5rem; }
}

.jgr-about-split__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jgr-about-split__body h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-900);
  word-break: keep-all;
}

.jgr-about-split__body p {
  color: var(--text-muted);
  line-height: 1.85;
  word-break: keep-all;
}

.jgr-about-split__gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}

.jgr-about-split__img {
  overflow: hidden;
}
.jgr-about-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.jgr-about-split__img:hover img { transform: scale(1.04); }

.jgr-about-split__img--main { aspect-ratio: 4/3; }
.jgr-about-split__img--sub  { aspect-ratio: 16/9; }

/* Legacy about-split alias */
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(3rem, 6vw, 5rem); max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); align-items: center; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } }
.about-split__img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tr-slow); }
.about-split__img:hover img { transform: scale(1.04); }
.about-split__body { display: flex; flex-direction: column; gap: 1.5rem; }
.about-split__body p { color: var(--text-muted); line-height: 1.85; word-break: keep-all; }

/* ── 12. Advantage Cards (hair426 style: 숫자+여백) ─────────── */
.jgr-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--border-main);
  border: 1px solid var(--border-main);
}

@media (max-width: 768px) {
  .jgr-adv-grid { grid-template-columns: 1fr; }
}

.jgr-adv-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 2.5rem);
  border-top: 3px solid transparent;
  transition: border-color var(--tr-base);
  position: relative;
}

.jgr-adv-card:hover { border-color: var(--gold-600); }

.jgr-adv-card__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.jgr-adv-card__title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 0.875rem;
  word-break: keep-all;
}

.jgr-adv-card__desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.8;
  word-break: keep-all;
}

/* ── 13. Service Package Cards ────────────────────────────── */
.jgr-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

@media (min-width: 769px) and (max-width: 1150px) {
  .jgr-pkg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jgr-pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .jgr-pkg-grid { grid-template-columns: 1fr; }
}

.jgr-pkg-card {
  background: var(--white);
  border: 1px solid var(--border-main);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.jgr-pkg-card:hover {
  box-shadow: 0 16px 48px rgba(13,27,42,0.1);
  transform: translateY(-4px);
}

.jgr-pkg-card--featured {
  border-color: var(--gold-600);
  border-width: 2px;
}

.jgr-pkg-card__badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  padding: 4px 12px;
  background: var(--gold-600);
  color: var(--navy-900);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}

.jgr-pkg-card__tier {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.jgr-pkg-card__label {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  word-break: keep-all;
}

.jgr-pkg-card__price {
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy-900);
}

.jgr-pkg-card__desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.75;
  word-break: keep-all;
}

.jgr-pkg-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-main);
  padding-top: 1rem;
  flex: 1;
}

.jgr-pkg-card__list li {
  font-size: var(--fs-xs);
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  word-break: keep-all;
}
.jgr-pkg-card__list li::before {
  content: '✓';
  color: var(--gold-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── 14. Pricing Table ────────────────────────────────────── */
.jgr-table-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  overflow-x: auto;
}

.jgr-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.jgr-table thead th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--navy-900);
  color: var(--navy-900);
  white-space: nowrap;
}

.jgr-table tbody td {
  font-size: var(--fs-sm);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-main);
  color: var(--text-main);
  word-break: keep-all;
}

.jgr-table__hl { color: var(--navy-700); font-weight: 700; }

.jgr-table tr:hover td { background: var(--off-white); }
.jgr-table tr:last-child td { border-bottom: none; }

.jgr-table__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.75;
  word-break: keep-all;
}

/* Legacy compare-table alias */
.compare-section { background: var(--gray-100); padding: var(--sec-pad) 0; }
.compare-inner { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.compare-table { width: 100%; border-collapse: collapse; border: none; }
.compare-table thead th { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 1.25rem; text-align: left; border-bottom: 2px solid var(--navy-900); background: var(--navy-900); color: var(--white); }
.compare-table thead th:first-child { background: var(--navy-700); }
.compare-table tbody td { font-size: var(--fs-sm); padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border-main); color: var(--text-main); }
.compare-table td.highlight { color: var(--navy-700); font-weight: 700; }
.compare-table tr:hover td { background: var(--white); }
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) { .compare-table { display: block; overflow-x: auto; } }

/* ── 15. CTA Band — Split layout ─────────────────────────── */
.jgr-cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .jgr-cta-band { grid-template-columns: 1fr; }
}

.jgr-cta-band__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.jgr-cta-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.jgr-cta-band:hover .jgr-cta-band__media img { transform: scale(1.04); }

/* Gold bar */
.jgr-cta-band__media::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold-600);
  z-index: 2;
}
@media (max-width: 768px) {
  .jgr-cta-band__media::before { width: 100%; height: 3px; }
}

.jgr-cta-band__body {
  background: var(--navy-900);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.jgr-cta-band__eyebrow {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.jgr-cta-band__eyebrow::before { content: '✦'; font-size: 0.6rem; }

.jgr-cta-band__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.12;
  word-break: keep-all;
}

.jgr-cta-band__sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  word-break: keep-all;
  max-width: 380px;
}

.jgr-cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Legacy cta-band alias */
.cta-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; overflow: hidden; }
@media (max-width: 768px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band__media { position: relative; overflow: hidden; min-height: 280px; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.9); transition: transform var(--tr-slow); }
.cta-band:hover .cta-band__media img { transform: scale(1.04); }
.cta-band__media::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold-600); z-index: 2; }
@media (max-width: 768px) { .cta-band__media::before { width: 100%; height: 3px; } }
.cta-band__body { background: var(--navy-900); padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
.cta-band__label { font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); display: flex; align-items: center; gap: 0.75rem; }
.cta-band__label::before { content: '✦'; font-size: 0.6rem; }
.cta-band__title { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.12; word-break: keep-all; }
.cta-band__sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); line-height: 1.75; word-break: keep-all; max-width: 380px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── 16. FAQ ──────────────────────────────────────────────── */
.jgr-faq-list {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border-main);
}

.jgr-faq-item { border-bottom: 1px solid var(--border-main); }

.jgr-faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 700;
  text-align: left;
  color: var(--navy-900);
  background: none;
  cursor: pointer;
  transition: color var(--tr-fast);
  word-break: keep-all;
}
.jgr-faq-item__btn:hover { color: var(--gold-600); }

.jgr-faq-item__toggle {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-main);
  font-size: 1.25rem; font-weight: 300;
  color: var(--navy-900);
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
  border-radius: 2px;
}

.jgr-faq-item[aria-expanded="true"] .jgr-faq-item__toggle {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

.jgr-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1);
}
.jgr-faq-item[aria-expanded="true"] .jgr-faq-item__answer { max-height: 600px; }

.jgr-faq-item__body {
  padding-bottom: 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  word-break: keep-all;
}

/* Legacy faq alias */
.faq-section { background: var(--white); padding: var(--sec-pad) 0; }
.faq-list { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); border-top: 1px solid var(--border-main); }
.faq-item { border-bottom: 1px solid var(--border-main); }
.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.5rem 0; font-size: clamp(0.9375rem, 1.5vw, 1rem); font-weight: 700; text-align: left; color: var(--navy-900); background: none; cursor: pointer; transition: color var(--tr-fast); word-break: keep-all; }
.faq-item__btn:hover { color: var(--gold-600); }
.faq-item__toggle { width: 30px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border-main); font-size: 1.25rem; font-weight: 300; color: var(--navy-900); transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast); border-radius: 2px; }
.faq-item[aria-expanded="true"] .faq-item__toggle { background: var(--navy-900); color: var(--gold-400); border-color: var(--navy-900); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.22,1,.36,1); }
.faq-item[aria-expanded="true"] .faq-item__answer { max-height: 600px; }
.faq-item__body { padding-bottom: 1.75rem; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.85; word-break: keep-all; }

/* ── 17. Sub-page Hero ─────────────────────────────────────── */
.page-hero {
  background: var(--off-white);
  padding: calc(var(--nav-height) + clamp(2.5rem, 5vw, 4.5rem)) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-main);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-400) 40%, transparent 100%);
}

.page-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.page-hero__breadcrumb a { color: var(--text-muted); transition: color var(--tr-fast); }
.page-hero__breadcrumb a:hover { color: var(--gold-600); }
.page-hero__breadcrumb-sep { opacity: 0.4; }

.page-hero__eyebrow {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 1rem;
}

.page-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800; color: var(--navy-900);
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 1rem; word-break: keep-all;
}

.page-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px; word-break: keep-all; line-height: 1.75;
}

/* ── 18. Feature Cards (sub-pages) ───────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border-main);
  border-left: 1px solid var(--border-main);
}

@media (min-width: 769px) and (max-width: 1150px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.feat-card {
  border-right: 1px solid var(--border-main);
  border-bottom: 1px solid var(--border-main);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: var(--off-white);
  transition: background var(--tr-base);
}
.feat-card:hover { background: var(--navy-900); }
.feat-card:hover .feat-card__title { color: var(--white); }
.feat-card:hover .feat-card__desc  { color: rgba(255,255,255,0.55); }

.feat-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft);
  margin-bottom: 1.5rem;
  transition: background var(--tr-fast);
}
.feat-card:hover .feat-card__icon { background: rgba(212,160,23,0.18); }
.feat-card__icon svg { width: 22px; height: 22px; stroke: var(--gold-600); fill: none; stroke-width: 1.5; }
.feat-card__title { font-size: 0.9375rem; font-weight: 800; letter-spacing: -0.025em; color: var(--navy-900); margin-bottom: 0.625rem; word-break: keep-all; transition: color var(--tr-fast); }
.feat-card__desc  { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.75; word-break: keep-all; transition: color var(--tr-fast); }

/* ── 19. Process Steps ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border-main);
  border-left: 1px solid var(--border-main);
}

@media (min-width: 769px) and (max-width: 1150px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-item {
  border-right: 1px solid var(--border-main);
  border-bottom: 1px solid var(--border-main);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: var(--white);
  transition: background var(--tr-base);
}
.step-item:hover { background: var(--navy-900); }
.step-item:hover .step-item__num   { color: var(--gold-400); }
.step-item:hover .step-item__title { color: var(--white); }
.step-item:hover .step-item__desc  { color: rgba(255,255,255,0.55); }

.step-item__num { display: block; font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--gold-600); margin-bottom: 1.25rem; transition: color var(--tr-fast); }
.step-item__title { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-900); margin-bottom: 0.5rem; word-break: keep-all; transition: color var(--tr-fast); }
.step-item__desc  { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.75; word-break: keep-all; transition: color var(--tr-fast); }

/* ── 20. Process Timeline (home) ──────────────────────────── */
.process-section { background: var(--off-white); padding: var(--sec-pad) 0; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
@media (min-width: 769px) and (max-width: 1150px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .process-timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-timeline { grid-template-columns: 1fr; } }
.process-step { padding: clamp(1.5rem, 3vw, 2.5rem); border-top: 1px solid var(--border-main); }
.process-step__num { display: block; font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--gold-600); margin-bottom: 1.5rem; }
.process-step__title { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.625rem; word-break: keep-all; }
.process-step__desc { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.75; word-break: keep-all; }

/* ── 21. Trust Stats ──────────────────────────────────────── */
.trust-section { background: var(--white); padding: var(--sec-pad) 0; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); border-top: 1px solid var(--border-main); }
@media (max-width: 768px) { .trust-row { grid-template-columns: 1fr; } }
.trust-stat { text-align: center; padding: clamp(2.5rem, 5vw, 4rem) 2rem; border-right: 1px solid var(--border-main); }
.trust-stat:last-child { border-right: none; }
@media (max-width: 768px) { .trust-stat { border-right: none; border-bottom: 1px solid var(--border-main); } .trust-stat:last-child { border-bottom: none; } }
.trust-stat__hl { font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 900; letter-spacing: -0.04em; color: var(--navy-900); line-height: 1; margin-bottom: 0.875rem; }
.trust-stat__hl::after { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold-600); margin: 0.875rem auto 0; }
.trust-stat__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); word-break: keep-all; }

/* ── 22. Contact ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); gap: 1.5rem; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); padding: clamp(2rem, 5vw, 3.5rem); border-top: 3px solid var(--border-main); transition: border-color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base); display: flex; flex-direction: column; gap: 1rem; }
.contact-card:hover { border-color: var(--gold-600); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,0.1); }
.contact-card__type { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); }
.contact-card__title { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 800; letter-spacing: -0.03em; color: var(--navy-900); word-break: keep-all; }
.contact-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.75; word-break: keep-all; }
.contact-card__action { margin-top: auto; }

/* Hours */
.hours-section { background: var(--gray-100); padding: clamp(2rem, 5vw, 3.5rem) 0; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); border-top: 1px solid var(--border-main); border-left: 1px solid var(--border-main); }
@media (max-width: 640px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-item { border-right: 1px solid var(--border-main); border-bottom: 1px solid var(--border-main); padding: 1.5rem; background: var(--white); }
.hours-item__day { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.375rem; }
.hours-item__time { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--navy-900); }

/* ── 23. Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.55); border-top: 3px solid var(--gold-600); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem); max-width: var(--container); margin-inline: auto; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand__logo-img { width: 32px; height: 32px; }
.footer-brand__name { font-size: 0.9375rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer-brand__desc { font-size: var(--fs-xs); line-height: 1.75; margin-bottom: 1.5rem; word-break: keep-all; color: rgba(255,255,255,0.45); }
.footer-col__title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.25rem; }
.footer-info__list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-info__item { font-size: var(--fs-xs); display: flex; gap: 0.75rem; line-height: 1.6; }
.footer-info__label { color: rgba(255,255,255,0.3); flex-shrink: 0; min-width: 50px; }
.footer-info__val { color: rgba(255,255,255,0.6); word-break: keep-all; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: var(--fs-xs); color: rgba(255,255,255,0.45); transition: color var(--tr-fast); }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem); max-width: var(--container); margin-inline: auto; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom__copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-bottom__legal { display: flex; gap: 1.5rem; font-size: var(--fs-xs); color: rgba(255,255,255,0.25); }
.footer-disclaimer { padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem); max-width: var(--container); margin-inline: auto; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-disclaimer p { font-size: 0.6875rem; line-height: 1.75; color: rgba(255,255,255,0.25); word-break: keep-all; }

/* ── 24. Sticky CTA ───────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy-900);
  border-top: 2px solid var(--gold-600);
}
.sticky-cta__inner { display: grid; grid-template-columns: 1fr 1fr; max-width: 480px; margin-inline: auto; }
.sticky-cta__btn { padding: 1.125rem 1rem; font-size: 0.8125rem; font-weight: 800; text-align: center; letter-spacing: 0.04em; text-transform: uppercase; transition: background var(--tr-fast), color var(--tr-fast); }
.sticky-cta__btn--primary { background: var(--gold-600); color: var(--navy-900); }
.sticky-cta__btn--primary:hover { background: var(--gold-400); }
.sticky-cta__btn--secondary { background: var(--navy-700); color: var(--white); border-left: 1px solid rgba(255,255,255,0.08); }
.sticky-cta__btn--secondary:hover { background: var(--navy-500); }
@media (max-width: 768px) { .sticky-cta { display: block; } body { padding-bottom: 56px; } }

/* Floating Pill — desktop */
.floating-pill { display: none; position: fixed; bottom: 2rem; right: 2rem; z-index: 900; }
.floating-pill__btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 14px 28px; background: var(--gold-600); color: var(--navy-900); font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 2px; box-shadow: 0 8px 32px rgba(212,160,23,0.35); transition: background var(--tr-fast), transform var(--tr-fast); }
.floating-pill__btn:hover { background: var(--gold-400); transform: translateY(-2px); }
@media (min-width: 769px) { .floating-pill { display: block; } }

/* ── 25. Scroll Reveal ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── 26. 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; }

.label-tag { display: inline-block; font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); }

/* ── 27. Sitemap ──────────────────────────────────────────── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sitemap-grid { grid-template-columns: 1fr; } }
.sitemap-col__title { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-main); }
.sitemap-col__links { display: flex; flex-direction: column; gap: 0.75rem; }
.sitemap-col__links a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--tr-fast); }
.sitemap-col__links a:hover { color: var(--gold-600); }

/* ── 28. Legacy lineup grid (sub-pages) ───────────────────── */
.lineup-section { background: var(--white); padding: var(--sec-pad) 0; }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); border-top: 1px solid var(--border-main); border-left: 1px solid var(--border-main); }
@media (max-width: 768px) { .lineup-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lineup-grid { grid-template-columns: 1fr; } }
.lineup-card { position: relative; overflow: hidden; background: var(--navy-900); aspect-ratio: 16/11; border-right: 1px solid var(--border-main); border-bottom: 1px solid var(--border-main); cursor: pointer; }
.lineup-card__img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.65) brightness(0.8); transition: filter var(--tr-slow), transform var(--tr-slow); }
.lineup-card:hover .lineup-card__img { filter: saturate(1) brightness(0.85); transform: scale(1.05); }
.lineup-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 1.5rem; }
.lineup-badge { position: absolute; top: 1rem; right: 1rem; padding: 4px 10px; font-size: 0.625rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; line-height: 1; z-index: 2; }
.lineup-badge--best { background: var(--gold-600); color: var(--navy-900); }
.lineup-badge--recommend { background: var(--navy-700); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.lineup-card__cat { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 0.25rem; }
.lineup-card__name { font-size: 1.125rem; font-weight: 800; color: var(--white); letter-spacing: -0.025em; margin-bottom: 0.375rem; word-break: keep-all; }
.lineup-card__price { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); }
.lineup-card__more { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); margin-top: 0.625rem; opacity: 0; transform: translateY(6px); transition: opacity var(--tr-fast), transform var(--tr-fast); position: relative; }
.lineup-card__more::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: var(--gold-400); transform: scaleX(0); transform-origin: left; transition: transform var(--tr-base); }
.lineup-card:hover .lineup-card__more { opacity: 1; transform: translateY(0); }
.lineup-card:hover .lineup-card__more::after { transform: scaleX(1); }

/* ── 29. Why cards (legacy, home v1) ─────────────────────── */
.why-section { background: var(--off-white); padding: var(--sec-pad) 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--white); padding: clamp(1.75rem, 3.5vw, 2.75rem); border-top: 3px solid transparent; transition: border-color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base); }
.why-card:hover { border-color: var(--gold-600); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,0.1); }
.why-card__icon { width: 48px; height: 48px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); }
.why-card__icon svg { width: 24px; height: 24px; stroke: var(--gold-600); fill: none; stroke-width: 1.5; }
.why-card__title { font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.025em; color: var(--navy-900); margin-bottom: 0.75rem; word-break: keep-all; }
.why-card__desc  { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.75; word-break: keep-all; }

/* ── 30. Nav legacy lineup aliases ───────────────────────── */
.feat-grid { /* already declared above */ }

/* ── 31. AEO Answer Block ─────────────────────────────────── */
.jgr-answer-block {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold-600);
  border-radius: 0 6px 6px 0;
  max-width: 72ch;
  margin-inline: auto;
}
.jgr-answer-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}
.jgr-answer-block p:last-child {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-sub);
  word-break: keep-all;
}

/* ── 32. E-E-A-T Block ────────────────────────────────────── */
.jgr-eeat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  padding: 0.875rem 1.25rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold-600);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  word-break: keep-all;
}
.jgr-eeat [itemprop="name"] {
  font-weight: 800;
  color: var(--navy-900);
  font-size: 0.9375rem;
}
.jgr-eeat [itemprop="jobTitle"] {
  color: var(--text-sub);
}
.jgr-eeat [itemprop="worksFor"] [itemprop="name"] {
  font-weight: 600;
  color: var(--gold-700);
  font-size: var(--fs-xs);
}
