/* ---------- KEUM'S TRANSPORT — design tokens ---------- */
:root {
  --gold-50:  #FBF4DC;
  --gold-100: #F2E0A0;
  --gold-300: #E9B949;
  --gold-500: #D4AF37;
  --gold-600: #B8902A;
  --gold-700: #8C6B1B;

  --ink-900:  #0A0A0A;
  --ink-800:  #161616;
  --ink-700:  #1F1F1F;
  --ink-500:  #555;
  --ink-300:  #9A9A9A;
  --ink-100:  #E5E2D8;

  --bg:       #FAF7EE;
  --bg-alt:   #F3EFE2;
  --paper:    #FFFFFF;

  --shadow-1: 0 1px 2px rgba(10,10,10,.05), 0 6px 24px rgba(10,10,10,.06);
  --shadow-2: 0 2px 6px rgba(10,10,10,.06), 0 24px 60px rgba(10,10,10,.10);
  --shadow-gold: 0 18px 40px -16px rgba(212,175,55,.55);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease: cubic-bezier(.2,.7,.2,1);

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-feature-settings: "ss01" on, "cv11" on;
  color: var(--ink-900);
  background: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.display, h1, h2, h3 { font-family: "Bebas Neue", "DM Sans", sans-serif; font-weight: 400; letter-spacing: .01em; }
h1 { font-size: clamp(56px, 9vw, 132px); line-height: .92; margin: 0; }
h2 { font-size: clamp(40px, 5.2vw, 80px); line-height: .95; margin: 0; }
h3 { font-size: clamp(22px, 2vw, 30px); line-height: 1.1; margin: 0; }
.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold-500);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------- TOP NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(160%);
  background: rgba(250,247,238,.78);
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 56px; height: 56px; object-fit: contain; }
.nav-logo .word { font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: .06em; line-height: 1; }
.nav-logo .word small { display:block; font-family: "DM Sans"; font-size: 9px; letter-spacing:.32em; color: var(--ink-500); margin-top: 4px; font-weight: 500; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.nav-link:hover { background: rgba(10,10,10,.05); }
.nav-link.active { color: var(--ink-900); }
.nav-link.active::after {
  content:""; position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 2px; background: var(--gold-500); border-radius: 2px;
}
.nav.scrolled { box-shadow: 0 8px 20px -10px rgba(10,10,10,.15); }
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 999px; align-items: center; justify-content: center; }
.nav-burger svg { width: 18px; height: 18px; }
.nav-cta {
  display:inline-flex; align-items:center; gap: 10px;
  background: var(--ink-900); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--gold-600); }
.nav-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 0 var(--gold-500); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,.6); }
  70% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display:inline-flex; align-items:center; gap:12px;
  padding: 16px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-primary { background: var(--gold-500); color: var(--ink-900); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-300); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 1.5px solid rgba(10,10,10,.18); }
.btn-ghost:hover { border-color: var(--ink-900); background: var(--ink-900); color: #fff; }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--gold-500); color: var(--ink-900); border: 2px solid rgba(10,10,10,.18); }

.arrow {
  display:inline-flex; width: 22px; height: 22px;
  border-radius: 50%; background: currentColor;
  align-items: center; justify-content:center;
  color: var(--gold-500);
}
.arrow svg { width: 12px; height: 12px; color: var(--ink-900); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

/* ---------- HERO (PHOTO VARIANT) ---------- */
.hero.hero-photo {
  padding: 0;
  isolation: isolate;
  background: var(--ink-900);
}
.hero.hero-photo > .container {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 56px;
}
.hero.hero-photo .hero-grid { align-items: center; gap: 48px; }
.hero.hero-photo .hero-copy h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero.hero-photo .hero-copy h1 .gold { color: var(--gold-300); }
.hero.hero-photo .hero-copy h1 .out-light {
  -webkit-text-stroke: 2px #fff; color: transparent;
}
.hero.hero-photo .hero-copy p.lede { color: rgba(255,255,255,.82); }
.hero.hero-photo .eyebrow-light {
  color: var(--gold-300);
}
.hero.hero-photo .eyebrow-light::before { background: var(--gold-300); }

.hero.hero-photo .btn-glass {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero.hero-photo .btn-glass:hover {
  background: #fff; color: var(--ink-900); border-color: #fff;
}

.hero.hero-photo .hero-meta-light { border-top-color: rgba(255,255,255,.18) !important; }
.hero.hero-photo .hero-meta-light .stat .num { color: #fff; }
.hero.hero-photo .hero-meta-light .stat .lbl { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.45); }

/* ---- Background layers ---- */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: -4%;
  background-image: url('../images/home-hero-img.jpg');
  background-size: cover;
  background-position: center;
  transform-origin: 55% 50%;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.06) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.14) translate3d(1.5%, -1%, 0); }
}
/* warm-dark gradient overlay for legibility */
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.55) 36%, rgba(10,10,10,.18) 62%, rgba(10,10,10,.50) 100%),
    linear-gradient(180deg, rgba(10,10,10,.20) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,.45) 100%),
    radial-gradient(circle at 78% 30%, rgba(212,175,55,.22), transparent 55%);
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
/* sweeping light shimmer like sun through windows */
.hero-bg-shimmer {
  position: absolute; top: -20%; bottom: -20%; left: -40%; width: 50%;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,235,170,.10) 47%,
    rgba(255,235,170,.22) 50%,
    rgba(255,235,170,.10) 53%,
    transparent 65%);
  filter: blur(6px);
  animation: heroShimmer 11s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes heroShimmer {
  0%, 18%   { transform: translateX(0); opacity: 0; }
  25%       { opacity: 1; }
  60%       { opacity: 1; }
  72%, 100% { transform: translateX(360%); opacity: 0; }
}
/* subtle film grain */
.hero-bg-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 2px;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---- Floating gold dust particles ---- */
.dust-field {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.dust-field .mote {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, #FFE99A 0%, rgba(212,175,55,.7) 60%, transparent 100%);
  bottom: -20px;
  opacity: 0;
  animation-name: moteRise;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  filter: blur(.4px);
  box-shadow: 0 0 10px rgba(255,225,140,.7);
}
@keyframes moteRise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: .9; }
  60%  { opacity: .9; }
  100% { transform: translate3d(40px, -110vh, 0); opacity: 0; }
}
.dust-field .m1  { left: 6%;  width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s; }
.dust-field .m2  { left: 12%; width: 6px; height: 6px; animation-duration: 18s; animation-delay: -3s; }
.dust-field .m3  { left: 18%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: -7s; }
.dust-field .m4  { left: 24%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: -2s; }
.dust-field .m5  { left: 32%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: -10s; }
.dust-field .m6  { left: 40%; width: 6px; height: 6px; animation-duration: 22s; animation-delay: -5s; }
.dust-field .m7  { left: 48%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: -12s; }
.dust-field .m8  { left: 56%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: -1s; }
.dust-field .m9  { left: 64%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: -9s; }
.dust-field .m10 { left: 72%; width: 6px; height: 6px; animation-duration: 21s; animation-delay: -4s; }
.dust-field .m11 { left: 80%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: -11s; }
.dust-field .m12 { left: 86%; width: 5px; height: 5px; animation-duration: 18s; animation-delay: -6s; }
.dust-field .m13 { left: 92%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: -13s; }
.dust-field .m14 { left: 96%; width: 4px; height: 4px; animation-duration: 20s; animation-delay: -8s; }

/* ---- Ping markers locating workers ---- */
.ping {
  position: absolute; width: 14px; height: 14px;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.ping .ping-dot {
  position: absolute; inset: 0; margin: auto;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 0 14px rgba(255,217,100,.9);
}
.ping .ping-wave {
  position: absolute; inset: 0; margin: auto;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--gold-300);
  animation: pingWave 2.6s ease-out infinite;
}
.ping-1 .ping-wave { animation-delay: 0s; }
.ping-2 .ping-wave { animation-delay: .9s; }
.ping-3 .ping-wave { animation-delay: 1.8s; }
@keyframes pingWave {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(5.2); opacity: 0; }
}

/* ---- Route line drawing ---- */
.route-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .7;
}
.route-path {
  stroke-dasharray: 10 12;
  animation: routeDash 18s linear infinite;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.55));
}
@keyframes routeDash {
  to { stroke-dashoffset: -440; }
}

/* ---- Rising cardboard parcels ---- */
.parcel-stream {
  position: absolute;
  right: 0; bottom: 0;
  width: 18%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.parcel {
  position: absolute;
  bottom: -60px;
  width: 36px; height: 30px;
  background: linear-gradient(160deg, #C58A20 0%, #8C6B1B 100%);
  border-radius: 3px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.35);
  animation: parcelFloat 16s linear infinite;
  opacity: 0;
}
.parcel::before {
  content:""; position:absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: rgba(255,255,255,.55); transform: translateX(-50%);
}
.parcel::after {
  content:""; position:absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: rgba(0,0,0,.25);
}
.parcel.p1 { left: 18%; animation-delay: -1s;  animation-duration: 18s; }
.parcel.p2 { left: 48%; animation-delay: -6s;  animation-duration: 22s; transform: rotate(-6deg); }
.parcel.p3 { left: 72%; animation-delay: -11s; animation-duration: 19s; }
.parcel.p4 { left: 30%; animation-delay: -14s; animation-duration: 24s; transform: rotate(8deg); }
@keyframes parcelFloat {
  0%   { transform: translateY(0) rotate(0deg);    opacity: 0; }
  8%   { opacity: .55; }
  85%  { opacity: .55; }
  100% { transform: translateY(-130vh) rotate(28deg); opacity: 0; }
}

/* ---- Glass dispatch card ---- */
.hero-stage.hero-stage-glass {
  background: linear-gradient(160deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 28px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
  min-height: 0;
  padding: 26px;
  display: flex; align-items: stretch;
}

.dispatch {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%; color: #fff;
}
.dispatch-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.dispatch-head .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5BD16A;
  box-shadow: 0 0 0 0 #5BD16A; animation: chipPulse 1.6s infinite;
}
.dispatch-head .dispatch-time {
  margin-left: auto;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.dispatch-grid { display: flex; flex-direction: column; gap: 14px; }
.dispatch-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.dispatch-row:last-child { border-bottom: 0; }
.dispatch-ico {
  grid-row: 1 / span 2;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
}
.dispatch-row .dr-t {
  font-size: 14px; font-weight: 600; color: #fff;
}
.dispatch-row .dr-s {
  font-size: 12px; color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.dispatch-bar {
  grid-column: 2;
  height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}
.dispatch-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  border-radius: 4px;
  animation: barShimmer 3s ease-in-out infinite;
}
@keyframes barShimmer {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.25); }
}
.dispatch-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.df-stat {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 4px;
}
.df-stat strong {
  font-family: "Bebas Neue"; font-size: 28px; line-height: 1;
  color: var(--gold-300); letter-spacing: .04em;
}
.df-stat span {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* keep hero foot legible on dark hero */
.hero.hero-photo .hero-foot {
  border-top-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
}
.hero.hero-photo .hero-foot .marquee-track { color: #fff; }
.hero.hero-photo .hero-foot .marquee-track span::after { color: var(--gold-300); }

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img, .hero-bg-shimmer, .dust-field .mote, .parcel,
  .route-path, .ping .ping-wave { animation: none !important; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: end;
}
.hero-copy h1 .gold { color: var(--gold-500); }
.hero-copy h1 .out {
  -webkit-text-stroke: 2px var(--ink-900);
  color: transparent;
}
.hero-copy p.lede {
  font-size: 18px; max-width: 480px; color: var(--ink-500);
  margin: 28px 0 36px;
}
.hero-actions { display:flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(10,10,10,.1);
}
.hero-meta .stat .num { font-family: "Bebas Neue"; font-size: 56px; line-height: 1; }
.hero-meta .stat .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-top: 6px; }

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  border-radius: 32px;
  background: linear-gradient(160deg, #FFFDF5 0%, #F5EBC3 55%, #E9B949 100%);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.hero-foot {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid rgba(10,10,10,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 13px; color: var(--ink-500);
}
.hero-foot .marquee {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero-foot .marquee-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: "Bebas Neue"; font-size: 22px; letter-spacing: .08em;
  color: var(--ink-900);
}
.hero-foot .marquee-track span { display:inline-flex; align-items: center; gap: 16px; }
.hero-foot .marquee-track span::after { content: "★"; color: var(--gold-500); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION SCAFFOLD ---------- */
section.block { padding: 120px 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: end; margin-bottom: 64px;
}
.section-head h2 .gold { color: var(--gold-500); }
.section-head p { color: var(--ink-500); font-size: 17px; max-width: 460px; }

/* ---------- SERVICES (home grid) ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,.06);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-card:hover { transform: translateY(-6px); background: var(--ink-900); color: #fff; }
.svc-card .svc-num { font-family: "Bebas Neue"; font-size: 16px; color: var(--gold-500); letter-spacing: .12em; }
.svc-card h3 { font-size: 44px; line-height: .95; margin-top: auto; }
.svc-card p { font-size: 14px; color: var(--ink-500); margin: 12px 0 0; max-width: 320px; }
.svc-card:hover p { color: rgba(255,255,255,.7); }
.svc-card .svc-icon {
  position: absolute; top: 36px; right: 36px;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--bg);
  display:flex; align-items: center; justify-content: center;
  transition: background .4s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--gold-500); }
.svc-card .svc-arrow {
  position:absolute; right: 36px; bottom: 36px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(10,10,10,.18);
  display:flex; align-items:center; justify-content:center;
  transition: all .4s var(--ease);
}
.svc-card:hover .svc-arrow { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); transform: rotate(-45deg); }

/* Photo-backed service cards */
.svc-card.svc-card-photo {
  color: #fff;
  background-color: var(--ink-900);
  border: 1px solid rgba(255,255,255,.08);
  isolation: isolate;
}
.svc-card.svc-card-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
}
.svc-card.svc-card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.20) 0%, rgba(10,10,10,.45) 55%, rgba(10,10,10,.88) 100%),
    linear-gradient(110deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 60%);
  z-index: -1;
  transition: background .4s var(--ease);
}
.svc-card.svc-card-photo:hover { background-color: var(--ink-900); color: #fff; transform: translateY(-6px); }
.svc-card.svc-card-photo:hover::before { transform: scale(1.08); }
.svc-card.svc-card-photo:hover::after {
  background:
    linear-gradient(180deg, rgba(10,10,10,.10) 0%, rgba(10,10,10,.35) 55%, rgba(10,10,10,.75) 100%),
    linear-gradient(110deg, rgba(212,175,55,.25) 0%, rgba(10,10,10,0) 60%);
}
.svc-card.svc-card-photo h3 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.45); }
.svc-card.svc-card-photo p { color: rgba(255,255,255,.82); }
.svc-card.svc-card-photo:hover p { color: rgba(255,255,255,.92); }
.svc-card.svc-card-photo .svc-num { color: var(--gold-300); }
.svc-card.svc-card-photo .svc-icon {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-card.svc-card-photo:hover .svc-icon { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); }
.svc-card.svc-card-photo .svc-arrow {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-card.svc-card-photo:hover .svc-arrow { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); }

.svc-livraison::before     { background-image: url('../images/svc-livraison.jpg'); }
.svc-vide-grenier::before  { background-image: url('../images/svc-vide-grenier.jpg'); }
.svc-montage::before       { background-image: url('../images/svc-montage.jpg'); }
.svc-demenagement::before  { background-image: url('../images/svc-demenagement-2.jpg'); }

/* ---------- PROCESS ---------- */
.process {
  background: var(--ink-900); color: #fff;
  border-radius: 32px;
  padding: 80px 56px;
  position: relative; overflow: hidden;
}
.process::before {
  content:""; position: absolute; inset: -30%; background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,.10), transparent 50%);
  pointer-events: none;
}
.process h2 { color: #fff; max-width: 720px; }
.process h2 .gold { color: var(--gold-500); }
.steps {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  transition: all .4s var(--ease);
}
.step:hover { background: var(--gold-500); color: var(--ink-900); transform: translateY(-4px); }
.step .step-n {
  font-family: "Bebas Neue"; font-size: 14px; color: var(--gold-500); letter-spacing: .2em;
}
.step:hover .step-n { color: var(--ink-900); }
.step h3 { font-size: 28px; margin-top: 28px; }
.step p { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; }
.step:hover p { color: rgba(10,10,10,.7); }

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.gphoto {
  border-radius: 16px; overflow: hidden; position: relative;
  background-color: var(--ink-900);
  background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.gphoto::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.05) 40%, transparent 70%);
  opacity: .9; transition: opacity .4s var(--ease);
}
.gphoto .cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; font-weight: 500;
  z-index: 2;
  transform: translateY(6px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.gphoto .cap::before {
  content:""; width: 26px; height: 1px; background: var(--gold-500);
  flex: 0 0 auto;
}
.gphoto:hover { transform: translateY(-4px); }
.gphoto:hover .cap { transform: translateY(0); opacity: 1; }
.gphoto:hover::after { opacity: 1; }

.gphoto.a { grid-column: span 5; grid-row: span 2; }
.gphoto.b { grid-column: span 4; grid-row: span 2; }
.gphoto.c { grid-column: span 3; grid-row: span 3; }
.gphoto.d { grid-column: span 4; grid-row: span 2; }
.gphoto.e { grid-column: span 5; grid-row: span 2; }

/* ---------- TESTIMONIAL ---------- */
.quote-block {
  background: var(--bg-alt);
  border-radius: 32px;
  padding: 80px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px;
  align-items: center;
}
.quote-block blockquote {
  margin: 0;
  font-family: "Bebas Neue"; font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.05;
}
.quote-block blockquote .gold { color: var(--gold-600); }
.quote-block .who { display:flex; align-items: center; gap: 14px; margin-top: 32px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-500); display:flex; align-items:center; justify-content:center; font-family: "Bebas Neue"; color: var(--ink-900); font-size: 20px; }
.who div .nm { font-weight: 600; }
.who div .role { font-size: 13px; color: var(--ink-500); }

.quote-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qstat {
  background: var(--paper); border-radius: 16px; padding: 24px;
  border: 1px solid rgba(10,10,10,.06);
}
.qstat .big { font-family: "Bebas Neue"; font-size: 52px; line-height: 1; color: var(--gold-600); }
.qstat .sm { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-top: 8px; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  margin: 0 auto; max-width: var(--container); padding: 0 32px;
}
.cta-card {
  background: var(--gold-500); color: var(--ink-900);
  border-radius: 32px;
  padding: 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  overflow: hidden; position: relative;
}
.cta-card h2 { line-height: .95; }
.cta-card .actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink-900); color: #fff; margin-top: 80px; position: relative; overflow: hidden; }
.footer-stage {
  position: relative;
  height: 320px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  padding: 64px 0;
}
.footer-grid h4 { font-family: "DM Sans"; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500); margin: 0 0 20px; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 6px 0; color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s var(--ease); cursor: pointer; }
.footer-grid li:hover { color: var(--gold-500); }
.footer-brand .word { font-family: "Bebas Neue"; font-size: 36px; letter-spacing: .04em; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; max-width: 320px; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); }
.socials { display:flex; gap: 8px; margin-top: 20px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold-500); color: var(--ink-900); border-color: var(--gold-500); }

/* ---------- SERVICES PAGE ---------- */
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 1.4fr 220px;
  gap: 32px; padding: 40px 0; align-items: center;
  border-bottom: 1px solid rgba(10,10,10,.12);
  transition: padding .3s var(--ease);
}
.svc-row:hover { padding-left: 24px; }
.svc-row .n { font-family: "Bebas Neue"; font-size: 28px; color: var(--gold-500); }
.svc-row .nm { font-family: "Bebas Neue"; font-size: clamp(38px, 4vw, 58px); line-height: 1; }
.svc-row .desc { color: var(--ink-500); font-size: 15px; max-width: 460px; }
.svc-row .price { text-align: right; }
.svc-row .price .from { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500); }
.svc-row .price .amt { font-family: "Bebas Neue"; font-size: 40px; color: var(--ink-900); }

/* Accordion chevron — hidden on desktop */
.svc-row-toggle { display: none; }

.svc-feature {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px;
}
.svc-feature .chip {
  display:inline-flex; align-items:center; gap: 8px;
  font-size: 12px; color: var(--ink-700);
  background: var(--bg-alt); border-radius: 999px;
  padding: 6px 12px;
}
.svc-feature .chip::before { content:""; width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
}
.contact-card {
  background: var(--paper);
  border-radius: 32px;
  padding: 56px;
  border: 1px solid rgba(10,10,10,.06);
}
.form-row { display: grid; gap: 8px; margin-bottom: 24px; }
.form-row label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit; font-size: 15px;
  border: 0; border-bottom: 1.5px solid rgba(10,10,10,.16);
  padding: 12px 0; background: transparent;
  transition: border-color .25s var(--ease);
  width: 100%;
  color: var(--ink-900);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold-500);
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.placeholder {
  color: gray;
  opacity: .3;
  background: var(--ink-100);
}

.contact-side {
  display: flex; flex-direction: column; gap: 24px;
}
.info-block {
  background: var(--ink-900); color: #fff;
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
}
.info-block .label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500); }
.info-block .val { font-family: "Bebas Neue"; font-size: 36px; margin-top: 8px; line-height: 1; }
.info-block .sub { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 12px; }

.hours-grid {
  background: var(--bg-alt); border-radius: 24px; padding: 32px;
}
.hours-grid h4 { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-700); margin: 0 0 16px; }
.hours-grid ul { list-style: none; padding: 0; margin: 0; }
.hours-grid li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.hours-grid li + li { border-top: 1px dashed rgba(10,10,10,.1); }

/* ---------- PAGE TRANSITIONS ---------- */
.page-enter { animation: pageIn .6s var(--ease) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- PAGE HEADERS ---------- */
.page-head {
  padding: 80px 0 56px;
}
.page-head.has-bg {
  position: relative;
  isolation: isolate;
  padding: 140px 0 140px;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink-900);
}
.page-head.has-bg .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroBgPan 18s ease-in-out infinite alternate;
}
.page-head.has-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.25) 100%),
    linear-gradient(0deg, rgba(10,10,10,.55), rgba(10,10,10,.15));
}
.page-head.has-bg .crumbs { color: rgba(255,255,255,.7); }
.page-head.has-bg .crumbs a { color: rgba(255,255,255,.7); }
.page-head.has-bg .lede { color: rgba(255,255,255,.78); }
.page-head.has-bg .hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.page-head.has-bg .hero-badges .bdg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px; font-weight: 500;
  backdrop-filter: blur(8px);
}
.page-head.has-bg .hero-badges .bdg::before {
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
}
.page-head.has-bg .corner-mark {
  position: absolute; right: 32px; bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold-500); color: var(--ink-900);
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-gold);
  animation: chipFloat 4s ease-in-out infinite;
}
.page-head.has-bg .corner-mark svg { width: 16px; height: 16px; }
@keyframes heroBgPan {
  from { transform: scale(1.04) translate3d(-1%, 0, 0); }
  to   { transform: scale(1.10) translate3d(2%, -1%, 0); }
}

/* Illustration-style hero (light bg, transparent-edge illustration on right) */
.page-head.has-illo {
  position: relative;
  isolation: isolate;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--bg-alt);
}
.page-head.has-illo .illo-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/contact-hero.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  animation: illoFloat 7s ease-in-out infinite alternate;
}
.page-head.has-illo::before {
  /* fade left edge of illo into the panel so the embedded English text on the truck softens */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      var(--bg-alt) 0%,
      var(--bg-alt) 38%,
      rgba(243,239,226,.92) 50%,
      rgba(243,239,226,.55) 65%,
      rgba(243,239,226,0) 82%);
}
.page-head.has-illo::after {
  /* subtle gold radial wash so the blue accents read warmer */
  content:""; position:absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 78% 50%, rgba(212,175,55,.18), transparent 55%);
  mix-blend-mode: multiply;
}
.page-head.has-illo .container { position: relative; z-index: 2; }
.page-head.has-illo .content { max-width: 580px; }
.page-head.has-illo .hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.page-head.has-illo .hero-badges .bdg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(10,10,10,.08);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-1);
}
.page-head.has-illo .hero-badges .bdg::before {
  content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
}
.page-head.has-illo .corner-mark {
  position: absolute; left: 32px; bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink-900); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-2);
  animation: chipFloat 4s ease-in-out infinite;
  z-index: 3;
}
.page-head.has-illo .corner-mark .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 0 0 var(--gold-500); animation: pulse 1.8s infinite;
}

@keyframes illoFloat {
  from { background-position: right 0 center; }
  to   { background-position: right -14px top calc(50% - 8px); }
}

@media (max-width: 980px) {
  .page-head.has-illo {
    padding: 80px 0 380px;
  }
  .page-head.has-illo .illo-bg {
    background-position: center bottom -20px;
    background-size: 90% auto;
  }
  .page-head.has-illo::before {
    background:
      linear-gradient(180deg,
        var(--bg-alt) 0%,
        var(--bg-alt) 40%,
        rgba(243,239,226,.85) 55%,
        rgba(243,239,226,0) 75%);
  }
}
.page-head .crumbs {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500);
  display:flex; gap: 14px; align-items: center;
}
.page-head .crumbs .sep { color: var(--gold-500); }
.page-head h1 { font-size: clamp(60px, 11vw, 180px); margin-top: 16px; line-height: .85; }
.page-head h1 .gold { color: var(--gold-500); }
.page-head .lede { color: var(--ink-500); font-size: 18px; max-width: 560px; margin-top: 28px; }

/* ---------- UTILS ---------- */
.row { display: flex; align-items: center; gap: 12px; }
.spacer { flex: 1; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 420px; }
  .section-head, .contact-grid, .quote-block, .cta-card { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row .desc, .svc-row .price { grid-column: 2; text-align: left; }

  /* Mobile services rows — clean single-column card with full-width chip wrap */
  .svc-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
    align-items: stretch;
  }
  .svc-row > * { grid-column: 1; }
  .svc-row .n {
    font-size: 13px;
    letter-spacing: .22em;
    font-weight: 700;
    color: var(--gold-600);
    margin-bottom: -4px;
  }
  .svc-row .nm { font-size: clamp(32px, 7vw, 44px); line-height: 1; }
  .svc-row .desc { font-size: 15px; max-width: none; }
  .svc-row .price {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px dashed rgba(10,10,10,.14);
    text-align: left;
  }
  .svc-row .price .from {
    display: block; font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 2px;
  }
  .svc-row .price .amt { font-size: 36px; }
  .svc-row .price .btn { margin-top: 0 !important; flex: 0 0 auto; }
  .svc-row:hover { padding-left: 0; }
  .nav-links {
    position: fixed; inset: 76px 16px auto 16px; flex-direction: column;
    background: var(--paper); border-radius: 20px; padding: 16px;
    box-shadow: var(--shadow-2); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: left; }
  .nav-burger { display: inline-flex; border: 1.5px solid rgba(10,10,10,.15); }
  .nav-cta { display: none; }
  .process { padding: 56px 32px; }
  .quote-block, .contact-card { padding: 40px; }
  .cta-card { padding: 40px; }
}

/* ============================================================
   MOBILE RESPONSIVENESS — refinements for phones (<= 600px)
   Layout-only changes; SVG animations & keyframes untouched.
   ============================================================ */
@media (max-width: 740px) {
  /* tighter outer rails so cards & sections breathe */
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .cta-strip { padding: 0 20px; }
  section.block { padding: 80px 0; }

  /* hero: stack & give the truck stage a tidy height */
  .hero { padding: 32px 0 0; }
  .hero-grid { gap: 36px; }
  .hero-stage { min-height: 340px; border-radius: 24px; }
  .hero-copy p.lede { font-size: 16px; margin: 22px 0 28px; }
  .hero-actions .btn { padding: 14px 20px; font-size: 14px; }

  /* photo hero — adjust dark gradient + dispatch card on small screens */
  .hero.hero-photo > .container { padding-top: 56px; padding-bottom: 32px; }
  .hero.hero-photo .hero-bg-tint {
    background:
      linear-gradient(180deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.48) 38%, rgba(10,10,10,.55) 70%, rgba(10,10,10,.85) 100%),
      radial-gradient(circle at 50% 80%, rgba(212,175,55,.18), transparent 60%);
  }
  .hero.hero-photo .hero-stage.hero-stage-glass {
    min-height: 0; padding: 20px; border-radius: 22px;
  }
  .dispatch-foot { gap: 4px; }
  .df-stat { padding: 6px 2px; }
  .df-stat strong { font-size: 22px; }
  .df-stat span { font-size: 9px; letter-spacing: .12em; }
  .dispatch-row { padding: 10px 0; column-gap: 12px; }
  .dispatch-row .dr-t { font-size: 13px; }
  .dispatch-row .dr-s { font-size: 11px; }
  .dispatch-head { font-size: 10px; letter-spacing: .14em; padding-bottom: 10px; }
  .parcel-stream { width: 28%; }
  .ping { transform: translate(-50%, -50%) scale(.85); }
  .route-svg { opacity: .45; }

  /* stats: keep 3-up but shrink so digits don't crowd */
  .hero-meta { margin-top: 40px; gap: 16px; padding-top: 22px; }
  .hero-meta .stat .num { font-size: 40px; }
  .hero-meta .stat .lbl { font-size: 10px; letter-spacing: .12em; }

  /* hero foot: stack label above marquee instead of squeezing */
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 56px; }
  .hero-foot .marquee { width: 100%; }
  .hero-foot .marquee-track { font-size: 18px; gap: 36px; }

  /* floating chips on hero stage — closer to corners on small screens */
  .stage-chip { font-size: 11px; padding: 8px 12px; }
  .stage-chip-1 { top: 16px; left: 16px; }
  .stage-chip-2 { bottom: 16px; right: 16px; }

  /* services on home — generous padding doesn't fit; pull icon corner in */
  .svc-card { padding: 28px; min-height: 280px; }
  .svc-card h3 { font-size: 34px; }
  .svc-card .svc-icon { top: 24px; right: 24px; width: 44px; height: 44px; }
  .svc-card .svc-arrow { right: 24px; bottom: 24px; width: 38px; height: 38px; }

  /* section heads: tighter rhythm */
  .section-head { gap: 28px; margin-bottom: 40px; }

  /* gallery: rework 12-col desktop layout into a simple 2-col mosaic */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .gphoto.a { grid-column: 1 / -1; grid-row: span 2; }
  .gphoto.b { grid-column: span 1; grid-row: span 1; }
  .gphoto.c { grid-column: span 1; grid-row: span 2; }
  .gphoto.d { grid-column: span 1; grid-row: span 1; }
  .gphoto.e { grid-column: 1 / -1; grid-row: span 2; }
  .gphoto .cap { font-size: 12px; left: 14px; right: 14px; bottom: 12px; }

  /* testimonial */
  .quote-block { padding: 36px 28px; gap: 32px; border-radius: 24px; }
  .quote-aside { gap: 10px; }
  .qstat { padding: 18px; }
  .qstat .big { font-size: 38px; }
  .qstat .sm { font-size: 11px; }

  /* CTA card: stop right-justifying actions when stacked */
  .cta-card { padding: 36px 28px; border-radius: 24px; gap: 28px; }
  .cta-card .actions { justify-content: flex-start; }
  .cta-card .actions .btn { padding: 14px 20px; font-size: 14px; }

  /* services page hero — pull oversized vertical padding back */
  .page-head.has-bg { padding: 96px 0 96px; }
  .page-head h1 { font-size: clamp(48px, 13vw, 92px); }
  .page-head .lede { font-size: 16px; margin-top: 22px; }
  .page-head.has-bg .corner-mark {
    position: static; display: inline-flex; margin: 24px 0 0 20px;
  }
  .page-head.has-bg .hero-badges { gap: 8px; }
  .page-head.has-bg .hero-badges .bdg { font-size: 12px; padding: 6px 12px; }

  /* services page rows — mobile ACCORDION
     Collapsed: "01 · Title  ·  29 €  ⌄"  (one tappable strip)
     Expanded:  + chips + description + Réserver button */
  .svc-row {
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
    column-gap: 12px;
    row-gap: 0;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(10,10,10,.10);
    cursor: pointer;
    position: relative;
  }
  .svc-row > * { grid-column: auto; }

  /* header row: number, title, price-summary, chevron */
  .svc-row .n {
    grid-column: 1; grid-row: 1;
    font-family: "Bebas Neue"; font-size: 22px;
    color: var(--gold-500);
    margin: 0;
  }
  .svc-row > div:nth-of-type(2) {     /* title + chips wrapper */
    grid-column: 2; grid-row: 1;
    min-width: 0;
  }
  .svc-row .nm {
    font-size: 19px;
    line-height: 1.15;
    font-family: "Bebas Neue";
    letter-spacing: .02em;
    white-space: normal;
  }
  .svc-row > div:nth-of-type(3) {     /* description wrapper */
    grid-column: 1 / -1; grid-row: 3;
  }
  .svc-row .price {
    grid-column: 3; grid-row: 1;
    display: flex; flex-direction: column; align-items: flex-end; gap: 0;
    padding: 0; margin: 0; border-top: 0;
    text-align: right;
  }
  .svc-row .price .from { display: none; }   /* hide "À partir de" label in collapsed strip */
  .svc-row .price .amt { font-size: 24px; line-height: 1; }
  .svc-row .price .btn {
    display: none;        /* button only appears when expanded */
    margin-top: 12px !important;
    padding: 12px 18px !important; font-size: 13px !important;
  }

  /* chevron toggle */
  .svc-row-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    grid-column: 4; grid-row: 1;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--ink-900);
    border: 0;
    transition: transform .3s var(--ease), background .3s var(--ease);
  }
  .svc-row-toggle svg { transition: transform .3s var(--ease); }
  .svc-row.is-open .svc-row-toggle { background: var(--gold-500); }
  .svc-row.is-open .svc-row-toggle svg { transform: rotate(180deg); }

  /* collapsed: hide chips & description & full price box (only their PARENT wrappers) */
  .svc-row .svc-feature {
    display: none;
    flex-wrap: wrap; gap: 6px;
    grid-template-columns: none;
    margin-top: 14px;
  }
  .svc-row .svc-feature .chip { font-size: 11px; padding: 5px 10px; }
  .svc-row > div:nth-of-type(3) { display: none; }  /* hide desc wrapper */
  .svc-row .desc { font-size: 14px; color: var(--ink-500); line-height: 1.5; }

  /* expanded state — reveal chips, desc, full price */
  .svc-row.is-open .svc-feature { display: flex; }
  .svc-row.is-open > div:nth-of-type(3) { display: block; margin-top: 12px; }
  .svc-row.is-open .price {
    grid-column: 1 / -1; grid-row: 4;
    flex-direction: row; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px dashed rgba(10,10,10,.14);
    text-align: left;
  }
  .svc-row.is-open .price .from { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 2px; }
  .svc-row.is-open .price .amt { font-size: 32px; }
  .svc-row.is-open .price .btn { display: inline-flex; margin-top: 0 !important; }

  .svc-row:hover { padding-left: 0; }

  /* contact form — single-column inputs on small screens */
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 28px 22px; border-radius: 24px; }
  .info-block { padding: 28px; border-radius: 20px; }
  .info-block .val { font-size: 28px; }
  .hours-grid { padding: 24px; border-radius: 20px; }

  /* process: even more compact on small phones */
  .process { padding: 44px 22px; border-radius: 24px; }
  .process h2 { font-size: clamp(34px, 8vw, 56px); }

  /* footer stage overlay — fixed-size text was overflowing tiny screens */
  .footer-stage { height: 240px; }
  .footer-stage .footer-stage-overlay-text,
  .footer-stage [style*="font-size:44px"] { font-size: 28px !important; }
  .footer-stage [style*="font-size:13px"] { font-size: 11px !important; }
  .footer-stage [style*="padding:18px 32px"] { padding: 14px 20px !important; }

  /* footer grid — 1 column for legibility */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0; }
  .footer-brand .word { font-size: 28px; }
}

/* ultra-narrow phones (e.g. iPhone SE @ 375px and below) */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; }
  .cta-strip { padding: 0 16px; }
  .nav-logo img { width: 44px; height: 44px; }
  .nav-logo .word { font-size: 18px; }
  .nav-logo .word small { font-size: 8px; letter-spacing: .26em; }
  .hero-meta { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-meta .stat .num { font-size: 34px; }
  .svc-card { padding: 24px; }
  .svc-card h3 { font-size: 30px; }
  .step h3 { font-size: 24px; }
  .footer-stage { height: 200px; }
}

/* keep the 4-step process fix from earlier — still applies */
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; margin-top: 36px; }
  .step { padding: 24px; }
  .step h3 { font-size: 26px; margin-top: 20px; }
}
