/* ============================================================
   JAŚKO KAJAKI – HOMEPAGE STYLES
   Brand palette:
     Deep River   #0E3A5B
     Kayak Teal   #1F7A8C
     Forest Shore #5C7A5B
     Sand Light   #E9DFCF
     Sun Accent   #F4A261
     Foam White   #F8FAFB
     Ink          #1C2730
   ============================================================ */


/* ============================================================
   SKIP LINK
   ============================================================ */

.jk-skip-link {
  position: absolute;
  top: -9999px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  border-radius: 8px;
  background: #0E3A5B;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.jk-skip-link:focus {
  top: 12px;
}


/* ============================================================
   SITE HEADER  (homepage-only, won't affect other pages)
   ============================================================ */

.jk-site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 32, 52, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Thin gradient accent on top edge */
.jk-site-header::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #F4A261 0%, #1F7A8C 50%, transparent 100%);
}

.jk-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.jk-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.jk-site-header__brand:hover {
  opacity: 0.85;
}

.jk-site-header__brand:focus-visible {
  outline: 2px solid #F4A261;
  outline-offset: 4px;
  border-radius: 6px;
}

.jk-site-header__logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /*
   * Jeśli logo jest ciemne na przezroczystym tle i nieczytelne na ciemnym
   * headerze, odkomentuj linię poniżej, żeby zamienić je na białe:
   * filter: brightness(0) invert(1);
   */
}

.jk-site-header__brand-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.jk-site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jk-site-header__nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  position: relative;
  transition: color 0.2s ease;
}

.jk-site-header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: #F4A261;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.jk-site-header__nav-list a:hover {
  color: #fff;
}

.jk-site-header__nav-list a:hover::after {
  transform: scaleX(1);
}

.jk-site-header__nav-list a:focus-visible {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
  border-radius: 6px;
  color: #fff;
}

/* ── Nav dropdown ────────────────────────────────────────── */
.jk-nav-has-dropdown {
  position: relative;
}

.jk-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
  position: relative;
}

.jk-nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: #F4A261;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.jk-nav-dropdown-toggle:hover,
.jk-nav-has-dropdown.is-open .jk-nav-dropdown-toggle {
  color: #fff;
}

.jk-nav-dropdown-toggle:focus-visible {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
  border-radius: 6px;
  color: #fff;
}

.jk-nav-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.jk-nav-has-dropdown.is-open .jk-nav-chevron,
.jk-nav-has-dropdown:hover .jk-nav-chevron {
  transform: rotate(180deg);
}

.jk-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 8px 6px 6px; /* padding-top bridguje gap między buttonem a menu */
  background: rgba(14, 42, 66, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.jk-nav-has-dropdown:hover .jk-nav-dropdown,
.jk-nav-has-dropdown:focus-within .jk-nav-dropdown,
.jk-nav-has-dropdown.is-open .jk-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jk-nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.jk-nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.jk-nav-dropdown a::after {
  display: none;
}

/* ── Mobile sub-menu (Trasy accordion) ───────────────────── */
.jk-mobile-nav__has-sub .jk-mobile-nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.jk-mobile-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 4px 12px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.jk-mobile-nav__has-sub.is-open .jk-mobile-nav__sub {
  max-height: 200px;
}

.jk-mobile-nav__sub li a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.9375rem;
  border-bottom: none;
}

.jk-mobile-nav__sub li a:hover {
  color: #F4A261;
}

.jk-mobile-nav__has-sub.is-open .jk-nav-chevron {
  transform: rotate(180deg);
}

.jk-site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.jk-site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 10px;
  background: #F4A261;
  color: #1C2730 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
  box-shadow: 0 2px 12px rgba(244, 162, 97, 0.32);
}

.jk-site-header__cta:hover {
  background: #E58D47;
  transform: translateY(-1px);
  color: #1C2730 !important;
  box-shadow: 0 4px 18px rgba(244, 162, 97, 0.40);
}

.jk-site-header__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 10px;
}

.jk-site-header__cta-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.jk-site-header__cta-label {
  font-variant-numeric: tabular-nums;
}

.jk-site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.jk-site-header__toggle:hover {
  background: rgba(255, 255, 255, 0.09);
}

.jk-site-header__toggle:focus-visible {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}

.jk-site-header__toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Mobile nav */
.jk-mobile-nav {
  display: none;
  background: rgba(10, 28, 44, 0.99);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 16px 20px;
}

.jk-mobile-nav.is-open {
  display: block;
}

.jk-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.jk-mobile-nav__list a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
  min-height: 52px;
  transition: background 0.18s ease, color 0.18s ease;
}

.jk-mobile-nav__list a:hover,
.jk-mobile-nav__list a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.jk-mobile-nav__list li.is-cta a {
  background: #F4A261;
  color: #1C2730 !important;
  font-weight: 700;
  margin-top: 8px;
}

.jk-mobile-nav__list li.is-cta a:hover {
  background: #E58D47;
}


/* ============================================================
   HOMEPAGE SCOPE — RESET + TOKENS
   ============================================================ */

.jk-homepage,
.jk-homepage * {
  box-sizing: border-box;
}

.jk-homepage {
  --jk-bg: #F8FAFB;
  --jk-surface: #ffffff;
  --jk-surface-2: #F3F6F7;
  --jk-surface-3: #E9DFCF;
  --jk-text: #1C2730;
  --jk-text-soft: #52606B;
  --jk-primary: #0E3A5B;
  --jk-primary-2: #174C74;
  --jk-teal: #1F7A8C;
  --jk-forest: #5C7A5B;
  --jk-sun: #F4A261;
  --jk-border: rgba(14, 58, 91, 0.10);
  --jk-shadow: 0 16px 40px rgba(14, 58, 91, 0.08);
  background: linear-gradient(180deg, #F8FAFB 0%, #E9DFCF 100%);
  color: var(--jk-text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
}

.jk-homepage img {
  max-width: 100%;
  height: auto;
  display: block;
}

.jk-homepage a {
  color: inherit;
  text-decoration: none;
}

.jk-homepage .jk-btn,
.jk-homepage .jk-btn:link,
.jk-homepage .jk-btn:visited,
.jk-homepage .jk-btn:hover,
.jk-homepage .jk-btn:focus {
  text-decoration: none !important;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.jk-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}


/* ============================================================
   ANCHOR SCROLL OFFSET  (accounts for sticky header)
   ============================================================ */

#trasy,
#kontakt,
#primary {
  scroll-margin-top: 80px;
}


/* ============================================================
   SECTIONS
   ============================================================ */

.jk-section {
  padding: 80px 0;
}

.jk-section--routes,
.jk-section--faq {
  padding-top: 0;
}


/* ============================================================
   EYEBROW LABELS
   ============================================================ */

.jk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248, 250, 251, 0.92);
  border: 1px solid rgba(31, 122, 140, 0.12);
  color: var(--jk-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jk-eyebrow--plain {
  padding: 0;
  background: none;
  border: 0;
}

.jk-eyebrow--forest { color: var(--jk-forest); }

/* FIX contrast: sun amber on dark – readable */
.jk-eyebrow--sun    { color: #C47830; }

/* FIX: was rgba(255,255,255,0.58) – already passed; kept at 0.82 for clarity */
.jk-eyebrow--white      { color: rgba(255, 255, 255, 0.88); }

/* FIX: was rgba(255,255,255,0.46) – WCAG fail → 0.75 passes ~5.4:1 */
.jk-eyebrow--white-soft { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.jk-title,
.jk-section-title,
.jk-footer-title {
  font-family: 'Newsreader', Georgia, serif;
  margin: 0;
}

.jk-title {
  font-size: clamp(30px, 5.2vw, 78px);
  max-width: 760px;
  margin-top: 18px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* FIX: line-height 0.98 → 1.1 (prevents descender clipping on serifs) */
.jk-section-title {
  font-size: clamp(26px, 3.6vw, 56px);
  margin-top: 10px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.jk-section-title--small {
  font-size: clamp(24px, 2.8vw, 44px);
  margin-top: 12px;
}

/* FIX: line-height 0.98 → 1.08 */
.jk-footer-title {
  font-size: clamp(26px, 3.6vw, 56px);
  margin-top: 10px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
}

.jk-lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 20px 0 0;
  line-height: 1.65;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.jk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.jk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  min-height: 52px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease, border-color 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.jk-btn:focus-visible {
  outline: 3px solid #F4A261;
  outline-offset: 3px;
}

.jk-btn-primary {
  background: var(--jk-sun);
  color: var(--jk-text) !important;
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.28);
}

.jk-btn-primary:hover {
  background: #E58D47;
  color: var(--jk-text) !important;
  transform: translateY(-1px);
}

.jk-btn-primary:focus-visible {
  outline-color: var(--jk-primary);
}

.jk-btn-secondary {
  background: rgba(248, 250, 251, 0.88);
  border-color: rgba(31, 122, 140, 0.24);
  color: var(--jk-teal) !important;
}

.jk-btn-secondary:hover {
  background: #ffffff;
  color: var(--jk-primary) !important;
  border-color: rgba(14, 58, 91, 0.28);
}

.jk-btn-footer-primary {
  background: var(--jk-sun);
  color: var(--jk-text) !important;
  border-color: rgba(244, 162, 97, 0.2);
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.28);
}

.jk-btn-footer-primary:hover {
  background: #E58D47;
  color: var(--jk-text) !important;
  transform: translateY(-1px);
}

.jk-btn-footer-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.jk-btn-footer-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.38);
}

.jk-btn-footer-secondary:focus-visible {
  outline-color: #fff;
}


/* ============================================================
   HERO
   ============================================================ */

.jk-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    linear-gradient(90deg, rgba(14, 58, 91, 0.82) 0%, rgba(14, 58, 91, 0.62) 42%, rgba(14, 58, 91, 0.30) 100%),
    radial-gradient(circle at top right, rgba(31, 122, 140, 0.24), transparent 30%),
    radial-gradient(circle at left, rgba(244, 162, 97, 0.18), transparent 35%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: center;
}


/* ============================================================
   METRICS
   ============================================================ */

.jk-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 860px;
}

.jk-metric {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(14, 58, 91, 0.07);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--jk-shadow);
}

.jk-metric strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
  color: var(--jk-primary);
}

.jk-metric span {
  display: block;
  margin-top: 6px;
  color: var(--jk-text-soft);
  font-size: 13px;
  line-height: 1.4;
}


/* ============================================================
   HERO CARD (right column)
   ============================================================ */

.jk-hero-card {
  background: linear-gradient(160deg, #0E3A5B 0%, #1F7A8C 55%, #5C7A5B 100%);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 24px 64px rgba(14, 58, 91, 0.20);
  border: 1px solid rgba(14, 58, 91, 0.08);
}

.jk-hero-card-inner {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jk-hero-panel {
  background: #E9DFCF;
  border-radius: 20px;
  padding: 20px;
}

.jk-panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--jk-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.jk-mini-list {
  display: grid;
  gap: 10px;
}

.jk-mini-item {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(16, 38, 28, 0.05);
}

.jk-mini-item strong {
  display: block;
  font-size: 14px;
  color: var(--jk-text);
}

.jk-mini-item span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--jk-text-soft);
  line-height: 1.5;
}

.jk-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jk-mini-box {
  border-radius: 20px;
  padding: 18px;
}

.jk-mini-box h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  margin: 8px 0 0;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.jk-mini-box p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.jk-mini-box-1 {
  background: #F8FAFB;
  color: var(--jk-text);
  border: 1px solid rgba(14, 58, 91, 0.06);
}

/* FIX: was #6D5523/#775f30 on #E7DCC0 (borderline fail) → darkened to #4E3C12/#5C481A */
.jk-mini-box-2 {
  background: #E7DCC0;
  color: #5C481A;
  border: 1px solid rgba(109, 85, 35, 0.10);
}

.jk-mini-box-2 h3 { color: #4E3C12; }
.jk-mini-box-2 p  { color: #5C481A; }


/* ============================================================
   GRIDS
   ============================================================ */

.jk-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jk-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jk-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}


/* ============================================================
   CARDS
   ============================================================ */

.jk-card {
  background: var(--jk-surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--jk-shadow);
  border: 1px solid var(--jk-border);
}

.jk-card--sand {
  background: var(--jk-surface-3);
  border: 1px solid rgba(14, 58, 91, 0.07);
}

.jk-feature-title,
.jk-route-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--jk-text);
  line-height: 1.2;
}

.jk-feature-text,
.jk-soft-text,
.jk-list,
.jk-route-line,
.jk-faq-answer,
.jk-copy p {
  color: var(--jk-text-soft);
}

.jk-feature-text { margin-top: 10px; font-size: 15px; line-height: 1.6; }

.jk-section-copy {
  max-width: 540px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.jk-copy--spaced {
  margin-top: 20px;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.7;
}

.jk-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(31, 122, 140, 0.10);
  font-size: 22px;
  margin-bottom: 16px;
}


/* ============================================================
   SECTION HEAD
   ============================================================ */

.jk-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}


/* ============================================================
   ROUTE CARDS
   ============================================================ */

.jk-route-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.jk-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 8px 16px;
  min-width: 160px;
  min-height: 52px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.jk-pill-green {
  background: rgba(92, 122, 91, 0.14);
  color: var(--jk-primary);
  border: 1px solid rgba(92, 122, 91, 0.20);
}

/* FIX: #F4A261 on white = 2:1 contrast (fail) → #8C5620 = 6.1:1 (pass) */
.jk-price {
  font-size: 13px;
  color: #8C5620;
  font-weight: 800;
  line-height: 1.4;
}

.jk-route-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.jk-route-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
}

.jk-route-line {
  margin-top: 6px;
  font-size: 15px;
}

.jk-route-box {
  background: var(--jk-surface-2);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.jk-route-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.jk-route-row span   { color: var(--jk-text-soft); }
.jk-route-row strong { color: var(--jk-text); }

.jk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.jk-route-card .jk-list { flex: 1 1 auto; }

.jk-route-card .jk-btn {
  width: 100%;
  margin-top: auto;
}

.jk-list li {
  position: relative;
  padding-left: 22px;
}

.jk-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--jk-teal);
  font-weight: 800;
}


/* ============================================================
   DARK SECTION
   ============================================================ */

.jk-dark {
  background: var(--jk-primary);
  color: #fff;
}

.jk-dark .jk-section-title { color: #fff; }

.jk-dark .jk-soft-text,
.jk-dark .jk-copy p,
.jk-dark .jk-list,
.jk-dark .jk-section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.jk-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.jk-dark-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jk-dark-box {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.jk-dark-box h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
}

.jk-dark-box p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}


/* ============================================================
   LOCAL SEO + STEPS
   ============================================================ */

.jk-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.jk-tag {
  background: rgba(31, 122, 140, 0.08);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--jk-primary);
  border: 1px solid rgba(31, 122, 140, 0.10);
}

.jk-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.jk-step {
  background: rgba(248, 250, 251, 0.84);
  border-radius: 16px;
  padding: 16px;
  color: var(--jk-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  border: 1px solid rgba(31, 122, 140, 0.10);
}


/* ============================================================
   FAQ
   ============================================================ */

.jk-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jk-faq-item {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--jk-shadow);
  border: 1px solid var(--jk-border);
}

.jk-faq-question {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.3;
  color: var(--jk-text);
}

.jk-faq-answer {
  font-size: 15px;
  line-height: 1.65;
}


/* ============================================================
   HOMEPAGE FOOTER  (contact section)
   ============================================================ */

.jk-footer {
  background: var(--jk-primary);
  color: #fff;
  padding: 80px 0;
}

.jk-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.jk-footer-copy {
  color: rgba(255, 255, 255, 0.80);
  max-width: 580px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
}

.jk-contact-box {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
}

.jk-contact-stack {
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.90);
}

.jk-contact-item {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 16px;
}

/* FIX: was rgba(255,255,255,0.46) – WCAG fail → 0.65 passes ~4.7:1 */
.jk-contact-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.jk-contact-item a {
  color: rgba(255, 255, 255, 0.92);
}

.jk-contact-item a:hover {
  color: #F4A261;
}


/* ============================================================
   UTILITIES
   ============================================================ */

.jk-copy p {
  margin: 0 0 14px;
}

.jk-copy p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   RESPONSIVE – 1024px  (tablet landscape / small desktop)
   ============================================================ */

@media (max-width: 1024px) {
  .jk-hero-grid {
    grid-template-columns: 1fr;
  }

  .jk-hero-card {
    max-width: 640px;
  }

  .jk-dark-grid,
  .jk-footer-grid {
    grid-template-columns: 1fr;
  }

  .jk-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Stack section head vertically on tablet */
  .jk-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .jk-section-copy {
    max-width: 100%;
  }

  .jk-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .jk-dark-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================================================
   RESPONSIVE – 768px  (tablet portrait)
   ============================================================ */

@media (max-width: 768px) {
  /* Header switches to hamburger */
  .jk-site-header__nav,
  .jk-site-header__cta {
    display: none;
  }

  .jk-site-header__toggle {
    display: flex;
  }

  .jk-site-header__inner {
    height: 60px;
  }

  /* Sections */
  .jk-section {
    padding: 60px 0;
  }

  .jk-hero {
    padding: 40px 0 56px;
  }

  .jk-container {
    width: min(1200px, calc(100% - 32px));
  }

  .jk-grid-3,
  .jk-grid-2,
  .jk-faq-grid {
    grid-template-columns: 1fr;
  }

  .jk-card,
  .jk-faq-item {
    padding: 24px;
  }

  .jk-route-title {
    font-size: 28px;
  }

  .jk-pill {
    min-width: 140px;
    min-height: 48px;
    padding: 8px 14px;
  }
}


/* ============================================================
   RESPONSIVE – 480px  (large phone)
   ============================================================ */

@media (max-width: 480px) {
  .jk-site-header__logo {
    height: 44px;
  }

  .jk-site-header__brand-name {
    font-size: 1rem;
  }

  .jk-section {
    padding: 48px 0;
  }

  .jk-hero {
    padding: 32px 0 48px;
  }

  .jk-container {
    width: min(1200px, calc(100% - 24px));
  }

  .jk-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .jk-metric {
    padding: 14px;
  }

  .jk-mini-grid,
  .jk-dark-boxes,
  .jk-tag-grid {
    grid-template-columns: 1fr;
  }

  .jk-card,
  .jk-faq-item {
    padding: 20px;
    border-radius: 20px;
  }

  .jk-contact-box {
    padding: 18px;
  }

  .jk-pill {
    min-width: 0;
    width: auto;
    min-height: 44px;
  }

  /* CTA buttons full-width in hero */
  .jk-hero .jk-actions {
    flex-direction: column;
  }

  .jk-hero .jk-btn {
    width: 100%;
  }

  .jk-footer {
    padding: 56px 0;
  }
}


/* ============================================================
   RESPONSIVE – 375px  (standard iPhone / mid phone)
   ============================================================ */

@media (max-width: 375px) {
  .jk-site-header__logo {
    height: 38px;
  }

  .jk-site-header__brand-name {
    font-size: 0.9375rem;
  }

  .jk-site-header__brand {
    gap: 8px;
  }

  .jk-hero {
    padding: 24px 0 40px;
  }

  .jk-container {
    width: min(1200px, calc(100% - 20px));
  }

  .jk-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .jk-metric strong {
    font-size: 17px;
    word-break: break-all;
  }

  .jk-section {
    padding: 40px 0;
  }

  .jk-faq-question {
    font-size: 16px;
  }

  .jk-card,
  .jk-faq-item {
    padding: 18px;
    border-radius: 18px;
  }

  .jk-mini-item {
    padding: 12px;
  }
}


/* ============================================================
   RESPONSIVE – 320px  (very small phone)
   ============================================================ */

@media (max-width: 320px) {
  .jk-container {
    width: min(1200px, calc(100% - 16px));
  }

  .jk-metrics {
    grid-template-columns: 1fr;
  }

  .jk-site-header__inner {
    width: calc(100% - 16px);
  }
}
