/* ─────────────────────────────────────────────────────────────
   Jakana Logistics — Shared site styles
   ───────────────────────────────────────────────────────────── */

@font-face { font-family:'Inter'; src:url('fonts/Inter_18pt-Medium.ttf') format('truetype'); font-weight:500; }
@font-face { font-family:'Inter'; src:url('fonts/Inter_18pt-Bold.ttf') format('truetype'); font-weight:700; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0A1020; background: #fff; }

:root {
  --navy: #153D7A; --navy-dark: #091E3E; --orange: #E05C00;
  --slate: #F7F9FC; --text-mid: #3E5478; --text-light: #7D95B5; --border: #E2E8F2;
}

main { padding-top: 0; }

/* ── Nav ──────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 18px 56px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  gap: 24px;
  transition: background 300ms, box-shadow 300ms, padding 300ms;
}nav.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 24px -14px rgba(11, 27, 58, 0.20);
  padding: 12px 56px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; justify-self: start; }
.nav-logo img { display: block; width: auto; object-fit: contain; }
.nav-logo-word { height: 76px; filter: none; }

.floating-logo {
  position: fixed; top: 14px; left: 56px;
  z-index: 101;
  display: flex; align-items: center;
  transition: top 300ms, left 300ms;
}
.floating-logo img { display: block; width: auto; height: 44px; object-fit: contain; filter: none; }
.floating-logo.on-dark img { filter: brightness(0) invert(1); }
.floating-logo.on-dark.scrolled img { filter: none; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: none;
  padding: 0;
  min-width: 0;
}
.nav-links a {
  position: relative;
  color: var(--navy-dark); text-decoration: none; font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  transition: color 200ms; white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 320ms cubic-bezier(.6,.05,.2,1);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  padding: 12px 36px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  text-decoration: none; transition: filter 200ms, transform 200ms, box-shadow 200ms; white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(217, 92, 0, 0.55);
  isolation: isolate;
}
.nav-cta::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 700ms cubic-bezier(.4,0,.2,1);
  pointer-events: none; z-index: 1;
}
.nav-cta:hover::before { left: 130%; }
.nav-cta:hover { filter: brightness(0.94); transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(217, 92, 0, 0.7); }

nav.site-nav.on-dark .nav-links a { color: rgba(255,255,255,0.86); }
nav.site-nav.on-dark .nav-links a:hover,
nav.site-nav.on-dark .nav-links a.active { color: var(--orange); }
nav.site-nav.on-dark .nav-logo-word { filter: brightness(0) invert(1); }
nav.site-nav.on-dark.scrolled .nav-links a { color: var(--navy-dark); }
nav.site-nav.on-dark.scrolled .nav-links a:hover,
nav.site-nav.on-dark.scrolled .nav-links a.active { color: var(--orange); }
nav.site-nav.on-dark.scrolled .nav-logo-word { filter: none; }

@media (max-width: 1100px) {
  nav.site-nav { padding: 14px 24px; }
  .nav-logo-word { height: 64px; }
  .floating-logo { top: 12px; left: 24px; }
  .floating-logo img { height: 38px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 8px 10px; font-size: 10px; letter-spacing: 0.16em; }
  .nav-cta { padding: 10px 22px; font-size: 10px; letter-spacing: 0.16em; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  nav.site-nav { padding: 12px 20px; }
  .floating-logo { top: 10px; left: 20px; }
  .floating-logo img { height: 32px; }
}

/* ── Page header (used on every non-home page) ─────────────── */
.page-header { background: var(--navy-dark); padding: 80px 80px 64px; color: #fff; }
.page-header .max-w { max-width: 1200px; }
.page-header .crumbs { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.page-header .crumbs a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 150ms; }
.page-header .crumbs a:hover { color: #fff; }
.page-header .crumbs .sep { color: var(--orange); }
.page-header h1 { font-family: 'Sora', sans-serif; font-size: clamp(40px, 5.4vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: #fff; }
.page-header h1 em { font-style: normal; color: var(--orange); }
.page-header .sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-top: 18px; max-width: 640px; }

/* ── Hero (home only) ─────────────────────────────────────── */
#hero {
  height: 100vh; min-height: 640px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 80px 80px;
  background: url('assets/photos/hero-truck-new.png') center/cover no-repeat;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,38,0) 35%, rgba(8,18,38,0.55) 100%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  opacity: 0.85; transition: opacity 200ms, transform 200ms;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-arrow {
  display: block; width: 1px; height: 38px;
  background: rgba(255,255,255,0.7);
  position: relative;
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}
.hero-scroll-arrow::after {
  content: '';
  position: absolute; left: 50%; bottom: -1px;
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(255,255,255,0.85);
  border-bottom: 1.5px solid rgba(255,255,255,0.85);
  transform: translateX(-50%) rotate(45deg);
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 620px;
}
.hero-logo {
  display: block; width: auto; height: 140px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}
.hero-h1 {
  font-family: 'Barlow Condensed', 'DIN', 'DIN Next', 'Sora', sans-serif;
  font-size: clamp(72px, 8.6vw, 132px);
  font-weight: 500; line-height: 0.92; letter-spacing: -0.005em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 32px;
}
.hero-h1 .accent { color: #fff; }
.hero-h1 .accent .dot { color: var(--orange); }
.hero-p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.92);
  max-width: 480px; margin-bottom: 44px;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 38px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  text-decoration: none; transition: filter 200ms, transform 200ms, box-shadow 200ms; border: none; cursor: pointer; font-family: inherit;
  min-width: 160px;
  isolation: isolate;
}
.btn-hero::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 800ms cubic-bezier(.4,0,.2,1);
  pointer-events: none; z-index: 1;
}
.btn-hero:hover::before { left: 130%; }
.btn-hero-light { background: #fff; color: var(--navy-dark); }
.btn-hero-light:hover { filter: brightness(0.94); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(0,0,0,0.35); }
.btn-hero-dark { background: var(--navy-dark); color: #fff; }
.btn-hero-dark:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(9,30,62,0.6); }

@media (max-width: 760px) {
  #hero { padding: 0 28px; }
  .hero-content { max-width: 100%; }
  .hero-p { max-width: 100%; }
  .btn-hero { min-width: 130px; padding: 14px 28px; }
}

/* legacy button classes retained for sub-pages */
.btn-orange { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; background: var(--orange); border-radius: 4px; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: filter 200ms, transform 200ms, box-shadow 200ms; border: none; cursor: pointer; font-family: inherit; }
.btn-orange::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%); transform: skewX(-22deg); transition: left 800ms cubic-bezier(.4,0,.2,1); pointer-events: none; z-index: 1; }
.btn-orange:hover::before { left: 130%; }
.btn-orange:hover { filter: brightness(0.92); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(217,92,0,0.55); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 4px; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: all 200ms; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.hero-tag, .hero-subline, .hero-mark { display: none !important; }

/* ── Section frame ─────────────────────────────────────────── */
section { padding: 100px 80px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }
h2 { font-family: 'Sora', sans-serif; font-size: clamp(30px,3.8vw,50px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy-dark); margin-bottom: 20px; text-wrap: balance; }
h2 em { font-style: normal; color: var(--orange); }
.lead { font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.divider { width: 44px; height: 3px; background: var(--orange); margin: 22px 0; }
.max-w { max-width: 1200px; }

/* ── Slideshow ─────────────────────────────────────────────── */
#showcase { padding: 0; background: var(--navy-dark); position: relative; }
.slides { position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden; background: #000; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 800ms ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,30,62,0.85) 0%, rgba(9,30,62,0.35) 45%, rgba(9,30,62,0.15) 70%, rgba(9,30,62,0.4) 100%); pointer-events: none; }
.slide-cap { position: absolute; left: 80px; right: 80px; bottom: 110px; z-index: 2; max-width: 720px; pointer-events: none; }
.slide-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); margin-bottom: 22px; }
.slide-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.slide-title { font-family: 'Sora', sans-serif; font-size: clamp(32px,4.4vw,58px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin-bottom: 14px; }
.slide-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 540px; }
.slide-cap > * { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.slide.active .slide-cap > * { opacity: 1; transform: none; }
.slide.active .slide-cap > *:nth-child(1) { transition-delay: 250ms; }
.slide.active .slide-cap > *:nth-child(2) { transition-delay: 380ms; }
.slide.active .slide-cap > *:nth-child(3) { transition-delay: 500ms; }

.slide-controls { position: absolute; right: 80px; bottom: 44px; z-index: 5; display: flex; align-items: center; gap: 14px; }
.slide-btn { width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 200ms, border-color 200ms; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.slide-btn:hover { background: var(--orange); border-color: var(--orange); }
.slide-counter { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; min-width: 48px; text-align: center; }
.slide-counter .cur { color: #fff; font-size: 16px; }

.slide-dots { position: absolute; left: 80px; bottom: 56px; z-index: 5; display: flex; gap: 8px; align-items: center; }
.slide-dot { width: 32px; height: 3px; background: rgba(255,255,255,0.22); border: none; padding: 0; cursor: pointer; transition: background 200ms, width 300ms; border-radius: 2px; }
.slide-dot.active { background: var(--orange); width: 56px; }
.slide-dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

.slide-progress { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.08); z-index: 5; }
.slide-progress-bar { height: 100%; background: var(--orange); width: 0%; transition: width 100ms linear; }

/* ── About ─────────────────────────────────────────────────── */
#about { background: var(--slate); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; }

/* ── Services ──────────────────────────────────────────────── */
#services { background: #fff; }

/* ── Process ───────────────────────────────────────────────── */
#process { background: var(--navy-dark); }
#process h2 { color: #fff; }
#process .lead { color: rgba(255,255,255,0.5); max-width: 560px; }
#process .section-tag { color: var(--orange); }

/* ── Quality ───────────────────────────────────────────────── */
#quality { background: #fff; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; }
.q-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; }
.qpoints { display: flex; flex-direction: column; gap: 26px; margin-top: 32px; }
.qpoint { display: flex; gap: 16px; align-items: flex-start; }
.qicon { width: 42px; height: 42px; border-radius: 7px; background: #EDF2FA; display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--navy); flex-shrink: 0; }
.qpoint-title { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: 4px; }
.qpoint-desc { font-size: 14px; line-height: 1.65; color: var(--text-mid); }

/* ── Seasonal ──────────────────────────────────────────────── */
#seasonal { background: var(--navy); display: flex; align-items: center; gap: 80px; padding: 100px 80px; }
#seasonal h2 { color: #fff; }
#seasonal .lead { color: rgba(255,255,255,0.55); }
#seasonal .section-tag { color: var(--orange); }
#seasonal .divider { background: var(--orange); }
.seasonal-content { flex: 1; max-width: 540px; }
.seasonal-extra { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-top: 20px; }
.seasonal-cards { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 22px; }
.scard-icon { font-size: 22px; color: var(--orange); display: block; margin-bottom: 10px; }
.scard-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.scard-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.45); }

/* ── Team ──────────────────────────────────────────────────── */
#team { background: var(--slate); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; }
.team-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; }
.team-vals { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.tval { display: flex; align-items: center; gap: 13px; padding: 14px 18px; background: #fff; border-radius: 5px; border: 1px solid var(--border); }
.tval i { font-size: 18px; color: var(--navy); flex-shrink: 0; }
.tval-text { font-size: 14px; font-weight: 500; color: var(--navy-dark); }

/* ── Partners ──────────────────────────────────────────────── */
#partners { background: var(--slate); }

/* Named partner detail cards */
#partner-detail { background: #fff; padding-top: 90px; }
.partner-list { display: flex; flex-direction: column; gap: 0; max-width: 1080px; margin: 0 auto; border-top: 1px solid var(--border); }
.partner-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px;
  padding: 48px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.partner-id { display: flex; flex-direction: column; gap: 14px; }
.partner-num { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; }
.partner-name { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; color: var(--navy-dark); }
.partner-logo { height: 40px; width: auto; object-fit: contain; display: block; }
.partner-name-row { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.partner-role { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.partner-role::before { content: ''; width: 18px; height: 2px; background: var(--orange); flex-shrink: 0; }
.partner-body { font-size: 16px; line-height: 1.8; color: var(--text-mid); max-width: 680px; }
.partner-row:hover .partner-name { color: var(--navy); }

@media (max-width: 880px) {
  #partner-detail { padding-left: 28px; padding-right: 28px; }
  .partner-row { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .partner-body { font-size: 15px; }
}

/* ── Contact ───────────────────────────────────────────────── */
#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; max-width: 1200px; align-items: flex-start; }
.cinfo { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.citem { display: flex; gap: 14px; align-items: flex-start; }
.citem-icon { width: 40px; height: 40px; background: #EDF2FA; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--navy); flex-shrink: 0; }
.citem-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; }
.citem-val { font-size: 15px; font-weight: 500; color: var(--navy-dark); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--navy-dark); }
.field input, .field textarea { padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 14px; color: #0A1020; background: var(--slate); outline: none; transition: border-color 150ms; width: 100%; }
.field input:focus, .field textarea:focus { border-color: var(--navy); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-btn { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: var(--navy); color: #fff; border: none; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: filter 200ms, transform 200ms, box-shadow 200ms; align-self: flex-start; }
.form-btn::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%); transform: skewX(-22deg); transition: left 800ms cubic-bezier(.4,0,.2,1); pointer-events: none; z-index: 1; }
.form-btn:hover::before { left: 130%; }
.form-btn:hover { filter: brightness(1.18); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(21, 61, 122, 0.55); }

/* ── Page nav (prev/next at bottom of each page) ──────────── */
.page-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 56px 80px 80px; border-top: 1px solid var(--border); }
.page-nav a { display: flex; flex-direction: column; gap: 6px; text-decoration: none; padding: 22px 26px; border: 1px solid var(--border); border-radius: 8px; background: #fff; transition: border-color 200ms, transform 200ms, box-shadow 200ms; }
.page-nav a:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.page-nav a.next { text-align: right; align-items: flex-end; }
.page-nav .pn-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: inline-flex; align-items: center; gap: 8px; }
.page-nav .pn-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy-dark); display: inline-flex; align-items: center; gap: 10px; }
.page-nav .next .pn-eyebrow { flex-direction: row-reverse; }

/* ── Footer ────────────────────────────────────────────────── */
footer.site-footer { background: var(--navy-dark); padding: 44px 80px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
footer.site-footer img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 150ms; }
.footer-links a:hover { color: #fff; }

/* ── Hover lift + shine, scroll-reveal ─────────────────────── */
.qpoint, .scard, .tval, .citem {
  transition: transform 350ms cubic-bezier(.2,.7,.2,1), box-shadow 350ms ease, border-color 250ms ease, background 250ms ease;
}
.qpoint:hover, .tval:hover, .citem:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(9, 30, 62, 0.25);
}
.scard:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.6);
}
.tval:hover { border-color: var(--navy); }
.qpoint:hover .qicon { background: var(--orange); color: #fff; }
.qicon { transition: background 250ms, color 250ms, transform 250ms; }

/* Home quick-link cards */
#quick-links > a {
  position: relative; overflow: hidden;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1), box-shadow 350ms ease, border-color 250ms ease, background 250ms ease !important;
}
#quick-links > a:hover {
  transform: translateY(-4px);
  border-color: var(--navy) !important;
  box-shadow: 0 22px 44px -22px rgba(9, 30, 62, 0.28) !important;
  background: #fff !important;
}
#quick-links > a i { transition: transform 300ms ease, color 250ms ease; }
#quick-links > a:hover i { transform: translateY(-2px); color: var(--orange) !important; }

.page-nav a:hover { box-shadow: 0 18px 36px -18px rgba(9, 30, 62, 0.28); }

/* Ken-burns on slideshow */
.slide img { transform: scale(1.02); transition: transform 7s ease-out; }
.slide.active img { transform: scale(1.08); }

/* Footer link underline sweep */
.footer-links a { position: relative; }
.footer-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 320ms cubic-bezier(.6,.05,.2,1);
}
.footer-links a:hover::after { transform: scaleX(1); }

/* Breadcrumb sweep */
.page-header .crumbs a { position: relative; }
.page-header .crumbs a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 320ms cubic-bezier(.6,.05,.2,1);
}
.page-header .crumbs a:hover::after { transform: scaleX(1); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 380ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 460ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 540ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 620ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .nav-cta::before, .btn-hero::before, .btn-orange::before, .form-btn::before { display: none; }
  .slide img { transition: none; transform: none; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav-links a { padding: 6px 10px; font-size: 10px; }
}
@media (max-width: 960px) {
  main { padding-top: 96px; }
  nav.site-nav { left: 16px; right: 16px; top: 12px; gap: 10px; }
  .nav-bubble { padding: 8px 12px 8px 18px; gap: 12px; }
  .nav-logo-mark { height: 26px; }
  .nav-logo-word { height: 11px; }
  .nav-links { max-width: calc(100vw - 280px); }
  section, #seasonal { padding: 72px 28px; }
  .page-header { padding: 60px 28px 48px; }
  #hero { padding: 0 28px 80px; height: calc(100vh - 96px); }
  .about-grid, .quality-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  #seasonal { flex-direction: column; }
  .seasonal-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer.site-footer { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-links { justify-content: center; }
  .page-nav { grid-template-columns: 1fr; padding: 40px 28px 60px; gap: 14px; }
  .page-nav a.next { text-align: left; align-items: flex-start; }
  .slides { height: 100vh; min-height: 460px; }
  .slide-cap { left: 28px; right: 28px; bottom: 120px; }
  .slide-controls { right: 28px; bottom: 28px; }
  .slide-dots { left: 28px; bottom: 40px; }
  .slide-dot { width: 24px; }
  .slide-dot.active { width: 42px; }
}

/* ── Quick links responsive grid ──────────────────────────── */
@media (max-width: 900px) {
  #quick-links { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  #quick-links { grid-template-columns: 1fr !important; }
}
