/* ============ Tokens (sampled from the 3D van render) ============ */
:root {
  --cream: #F7F2E7;
  --cream-deep: #EFE7D6;
  --ink: #22303A;
  --ink-soft: #55636D;
  --orange: #F0862E;
  --orange-deep: #D96F14;
  --orange-soft: #FFB95A;
  --teal: #76B7A6;
  --teal-deep: #5C8E9B;
  --white: #FFFFFF;
  --radius: 24px;
  --shadow: 0 20px 50px -20px rgba(34, 48, 58, .22);
  --shadow-sm: 0 8px 24px -12px rgba(34, 48, 58, .25);
  --maxw: 1200px;
}

/* ============ Fonts (self-hosted) ============ */
@font-face { font-family: 'Poppins'; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 800; font-display: swap; src: url('../fonts/poppins-800.woff2') format('woff2'); }

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.04; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: .55em; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4em; letter-spacing: -0.01em; }
.accent { color: var(--orange); }

.kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.kicker--light { color: var(--cream); opacity: .85; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: .85em 1.6em;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}
.btn--lg { font-size: 1.05rem; padding: 1em 1.9em; }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(240, 134, 46, .55);
}
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(34, 48, 58, .25);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 48, 58, .07);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__burger span { display: block; width: 24px; height: 3px; border-radius: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob--teal { width: 520px; height: 520px; background: var(--teal); top: -160px; right: -120px; }
.blob--orange { width: 420px; height: 420px; background: var(--orange-soft); bottom: -140px; left: -140px; opacity: .4; }

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: clamp(520px, 78vh, 840px);
}
.hero__sub { font-size: 1.12rem; color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 34em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.hero__trust strong { color: var(--ink); font-weight: 800; display: block; font-size: 1.25rem; }

.hero__scene { position: relative; min-height: 380px; }
.scene__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.scene__van { position: relative; z-index: 2; filter: drop-shadow(0 30px 30px rgba(34,48,58,.18)); }
.scene__bag { position: absolute; z-index: 3; filter: drop-shadow(0 14px 18px rgba(34,48,58,.22)); }
.scene__bag--orange { bottom: 4%; left: -4%; }
.scene__bag--teal { top: 6%; right: 2%; rotate: 8deg; }
.scene__bag--cream { top: 38%; left: 2%; rotate: -10deg; }
.scene__shadow {
  position: absolute;
  bottom: -2%;
  left: 12%;
  width: 76%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(34,48,58,.18), transparent 70%);
  z-index: 1;
}

/* Ticker — the signature device. Big, tilted, unmissable. */
.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--ink);
  transform: rotate(-1.4deg) scale(1.02);
  margin: 1.2rem 0;
}
.ticker--teal { background: var(--teal-deep); transform: rotate(1.2deg) scale(1.02); }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--cream);
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker__track--reverse { animation-direction: reverse; }
.ticker__track i { font-style: normal; color: var(--orange-soft); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: 5.5rem 0; }
.section--tint { background: var(--cream-deep); }
.section__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section__inner--narrow { max-width: 820px; }
.section__cta { margin-top: 3rem; text-align: center; }

.grid { display: grid; gap: 1.4rem; margin-top: 2.6rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.card p { color: var(--ink-soft); font-size: .95rem; }
.card--mini { padding: 1.6rem; }
.card--mini p { font-size: .9rem; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.card__icon--orange { background: linear-gradient(135deg, var(--orange-soft), var(--orange)); }
.card__icon--teal { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }

/* The story timeline — dashed route line, time-stamped stops */
.story__lead { color: var(--ink-soft); max-width: 40em; margin-top: 1rem; }
.story__video {
  margin: 2.8rem auto 0;
  max-width: 720px;
  background: var(--white);
  border-radius: 18px;
  padding: .6rem .6rem .9rem;
  box-shadow: var(--shadow-sm);
}
.story__video video { width: 100%; border-radius: 14px; background: var(--ink); }
.story__video figcaption { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .5rem; }
.story__flip { margin-top: 1.1rem; font-size: .92rem; color: var(--ink-soft); }

.tl { list-style: none; position: relative; margin-top: 2.6rem; padding-left: 2.4rem; }
.tl::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  border-left: 3px dashed rgba(92, 142, 155, .55);
}
.tl__stop { position: relative; padding: 1.6rem 0 2.2rem; }
.tl__stop::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 2.15rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px var(--cream);
}
.section--tint .tl__stop::before { box-shadow: 0 0 0 5px var(--cream-deep); }
.tl__when { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: .5rem; }
.tl__time {
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tl__place {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.tl__what h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.tl__what > p { color: var(--ink-soft); max-width: 44em; }

/* Review / proof chips */
.chip {
  background: var(--white);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin-top: 1.2rem;
}
.chip p { font-size: .92rem; color: var(--ink); margin-bottom: .6rem; }
.chip footer { display: flex; align-items: center; gap: .7rem; font-size: .85rem; }
.chip--video { padding: .6rem .6rem .9rem; }
.chip--video video { width: 100%; border-radius: 14px; background: var(--ink); }
.chip--video figcaption { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .5rem; }
.chip--center { margin-left: auto; margin-right: auto; text-align: left; }
.chip--inline { max-width: 460px; }

/* Booking chip-line */
.bookline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 0 0 2.2rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
}
.bookline span { background: var(--white); padding: .45em 1.1em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.bookline i { font-style: normal; font-weight: 800; color: var(--orange); }

/* Pricing */
.pricing { align-items: end; }
.price { text-align: center; padding: 2.4rem 1.8rem; position: relative; transform-style: preserve-3d; }
.price__bag {
  display: block;
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 10px 14px rgba(34,48,58,.2));
}
.price__badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-deep);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.price--featured { outline: 3px solid var(--orange); }
.price__tag { font-size: 3.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--orange); line-height: 1; margin: .3rem 0 .5rem; }
.price__tag span { font-size: .95rem; font-weight: 600; letter-spacing: 0; color: var(--ink-soft); }
.price__desc { color: var(--ink-soft); font-size: .92rem; }
.pricing__note { margin-top: 2.2rem; text-align: center; color: var(--ink-soft); }
.pricing__note a { color: var(--orange); font-weight: 700; }

/* Services — editorial index rows, not cards */
.svc { list-style: none; margin-top: 2.4rem; }
.svc__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.2rem;
  border-top: 2px solid rgba(34, 48, 58, .12);
  border-radius: 20px;
  transition: background .25s ease, padding .25s ease;
}
.svc__row:last-child { border-bottom: 2px solid rgba(34, 48, 58, .12); }
.svc__row:hover { padding-left: 2rem; }
.svc__num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: .1em;
  min-width: 2.4em;
}
.svc__body { flex: 1; }
.svc__body h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: .15em;
}
.svc__body p { color: var(--ink-soft); font-size: 1rem; }
.svc__body { min-width: 0; } /* let text shrink instead of overflowing the row */
.svc__glyph { flex-shrink: 0; filter: drop-shadow(0 8px 12px rgba(34,48,58,.15)); transition: transform .3s ease; }
.svc__row:hover .svc__glyph { transform: translateY(-6px) rotate(-4deg); }

/* Bag it home — flagship shipping section */
.ship__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ship__sub { color: var(--ink-soft); max-width: 36em; margin-bottom: .8rem; }
.ship__sub--alt { font-weight: 600; color: var(--ink); }
.bookline--left { justify-content: flex-start; margin: 1.4rem 0 1.8rem; }
.ship__copy .btn { margin-bottom: .6rem; }
.ship__scene { max-width: 460px; justify-self: center; filter: drop-shadow(0 14px 20px rgba(34,48,58,.14)); }
@media (max-width: 1000px) {
  .ship__inner { grid-template-columns: 1fr; }
  .ship__scene { max-width: 360px; }
}

/* Versus — locker comparison card */
.vs { padding: .6rem 1.8rem; margin-top: 2.4rem; }
.vs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(34, 48, 58, .1);
  font-size: .95rem;
}
.vs__row:first-child { border-top: 0; }
.vs__row--head {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.vs__row--head span:first-child { color: var(--ink-soft); }
.vs__row--head span:last-child { color: var(--orange); }
.vs__row span:first-child { color: var(--ink-soft); }
.vs__row span:last-child { font-weight: 600; }
.vs__row i {
  font-style: normal;
  font-weight: 800;
  margin-right: .5em;
}
.vs__row span:first-child i { color: rgba(34, 48, 58, .35); }
.vs__row span:last-child i { color: var(--orange); }
.vs__note { margin-top: 1.6rem; text-align: center; color: var(--ink-soft); font-weight: 600; }

/* Lake map — full-bleed dark section, towns as glowing dots */
.lake { background: linear-gradient(160deg, var(--ink) 0%, #2b3d49 70%, #33505c 130%); color: var(--cream); }
.lake__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.lake h2 { color: var(--white); }
.lake__list { list-style: none; margin: 1.4rem 0 2rem; max-width: 34em; display: grid; gap: .9rem; }
.lake__list li { position: relative; padding-left: 1.4rem; color: var(--cream); opacity: .8; font-size: .95rem; }
.lake__list li::before { content: ""; position: absolute; left: 0; top: .48em; width: .55em; height: .55em; border-radius: 50%; background: var(--orange); }
.lake__list strong { color: var(--white); font-weight: 700; }
.lake__list a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.lake__list .lake__ship { font-size: 1.15em; font-weight: 700; }
.lake__map { width: 100%; max-width: 540px; justify-self: center; }
.lake__towns text, .lake__milan text {
  fill: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
}
.lake__milan text { opacity: .6; font-size: 19px; font-weight: 400; }
.lake__towns circle { filter: drop-shadow(0 0 6px rgba(247,242,231,.45)); }

/* Video */
.video { margin-top: 2.4rem; }
.video video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}
.video figcaption { margin-top: .8rem; text-align: center; color: var(--ink-soft); font-size: .9rem; }

/* Review source badge (used inside chips) */
a.review__src { text-decoration: none; }
a.review__src:hover { text-decoration: underline; text-underline-offset: 2px; }
.hero__trust a { color: inherit; text-decoration: none; }
.hero__trust a:hover { text-decoration: underline; text-underline-offset: 3px; }
.review__src {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-deep);
  background: color-mix(in srgb, var(--teal) 18%, transparent);
  padding: .25em .9em;
  border-radius: 999px;
}

/* Partner band */
.partner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--ink) 0%, #31434f 55%, var(--teal-deep) 130%);
  color: var(--cream);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 3rem);
}
.partner h2 { color: var(--white); }
.partner p { max-width: 44em; margin: 1.2rem 0 2rem; opacity: .92; }
.partner strong { color: var(--orange-soft); }
/* Secondary route into the B2B guide, which no consumer article links to now */
.partner .partner__more { margin: 1.2rem 0 0; font-size: .9rem; opacity: 1; }
.partner__more a { color: var(--orange-soft); font-weight: 700; text-decoration: none; }
.partner__more a:hover { text-decoration: underline; }

/* FAQ */
.faq { margin-top: 2.4rem; display: grid; gap: .9rem; }
.faq details {
  background: var(--white);
  border-radius: 18px;
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange);
  transition: rotate .2s;
  line-height: 1;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding-top: .8rem; color: var(--ink-soft); font-size: .95rem; }

/* Final CTA — giant ghost word behind */
.final { padding: 7rem 0 8rem; position: relative; overflow: hidden; }
.final__ghost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 11rem);
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--ink);
  opacity: .05;
  user-select: none;
  pointer-events: none;
}
.final__inner { text-align: center; position: relative; }
.final h2 { margin-bottom: 1.2em; }

/* ============ Footer ============ */
.footer { background: var(--ink); color: var(--cream); padding: 3.5rem 0 2rem; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.footer__brand { font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; align-content: flex-start; }
.footer__brand p { flex-basis: 100%; font-weight: 400; font-size: .9rem; opacity: .75; }
.footer__rating { font-size: .85rem; font-weight: 600; color: var(--orange-soft) !important; letter-spacing: .02em; }
.footer__ig { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; }
.footer__ig svg { flex: none; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; }
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: .2rem;
}
.footer__addr { opacity: .7; line-height: 1.5; }
.footer a { color: var(--cream); text-decoration: none; opacity: .85; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer__legal {
  text-align: center;
  font-size: .8rem;
  opacity: .6;
  border-top: 1px solid rgba(247, 242, 231, .12);
  padding-top: 1.6rem;
  margin: 0 1.5rem;
}

/* WhatsApp bubble */
.wa-bubble {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .35);
  transition: transform .18s ease;
  opacity: 0;
  translate: 0 12px;
}
.wa-bubble.is-visible { opacity: 1; translate: 0 0; }
.wa-bubble:hover { transform: scale(1.08); }

/* WhatsApp chat nudge above the button */
.wa-pop {
  position: fixed;
  right: 1.4rem;
  bottom: 6.6rem;
  z-index: 60;
  width: 262px;
  background: var(--cream-deep);
  border-radius: 18px 18px 6px 18px;
  box-shadow: 0 18px 50px -14px rgba(34, 48, 58, .4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.92);
  transform-origin: bottom right;
}
.wa-pop.is-visible {
  opacity: 1;
  transform: none;
  animation: wa-pop-in .5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes wa-pop-in {
  0% { opacity: 0; transform: translateY(14px) scale(.92) rotate(-2deg); }
  70% { transform: translateY(-3px) scale(1.02) rotate(1deg); }
  100% { opacity: 1; transform: none; }
}
.wa-pop__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #128C7E;
  color: #fff;
  padding: .55rem 2rem .55rem .8rem;
}
.wa-pop__head img { border-radius: 50%; background: #fff; }
.wa-pop__who { display: flex; flex-direction: column; line-height: 1.2; }
.wa-pop__who strong { font-size: .88rem; }
.wa-pop__who span { font-size: .7rem; opacity: .85; }
.wa-pop__who span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6BE58B;
  margin-right: .3em;
}
.wa-pop__msg {
  display: block;
  margin: .7rem .8rem .8rem;
  background: var(--white);
  border-radius: 4px 14px 14px 14px;
  padding: .65rem .8rem;
  color: var(--ink);
  text-decoration: none;
  font-size: .87rem;
  line-height: 1.45;
  box-shadow: 0 2px 6px rgba(34, 48, 58, .08);
}
.wa-pop__msg:hover { background: #fffdf8; }
.wa-pop__typing { display: inline-flex; gap: 5px; padding: .35rem .1rem; }
.wa-pop__typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: .5;
  animation: wa-typing 1.1s infinite;
}
.wa-pop__typing i:nth-child(2) { animation-delay: .18s; }
.wa-pop__typing i:nth-child(3) { animation-delay: .36s; }
@keyframes wa-typing {
  0%, 60%, 100% { transform: none; opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.wa-pop__close {
  position: absolute;
  top: .3rem;
  right: .45rem;
  z-index: 1;
  border: 0;
  background: none;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  padding: .2rem;
}
.wa-pop__close:hover { color: #fff; }
/* BRAND.md and AGENTS.md both require this; it used to cover only .wa-pop
   while the ticker marquee kept running. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wa-pop { transition: opacity .35s ease; transform: none; }
  .wa-pop.is-visible { animation: none; }
  .wa-pop__typing i { animation: none; }
  .ticker__track { animation: none; }
  .ticker { transform: none; }
  .progress { transition: none; }
  .readnext__card:hover,
  .bloglist__card:hover,
  .card--link:hover { transform: none; }
}


/* ============ Blog ============ */
/* Size and rhythm live on the container, so <p>/<li>/<td> inherit them. That
   lets .article__fix, .toc li and friends restyle themselves at plain 0-1-0
   specificity — this section used to need five !important declarations. */
.article {
  --measure: 720px;
  --flow: 1.4rem;      /* block → block inside prose */
  --flow-h2: 3.2rem;   /* prose → new h2 */
  --flow-h3: 2.2rem;
  --nav-offset: 88px;  /* sticky nav height, for anchor jumps */
  font-size: 1.125rem; /* 18px long-form; .btn/.chip size in rem, unaffected */
  line-height: 1.72;
}
/* Fallback matters: the blog hub uses .article__inner without an .article
   ancestor, and an undefined var() would resolve max-width to `none`. */
.article__inner { max-width: var(--measure, 720px); }

/* One rule for every vertical gap. Covers both templates: the Framer-imported
   posts put content straight in .article__inner, the hand-written ones wrap it
   in <section id>. :where() has zero specificity, so anything overrides it. */
:where(.article .article__inner, .article .article__inner section) > * + * {
  margin-block-start: var(--flow);
}

/* ---- Masthead ---- */
.article h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-block-end: .35em; }
.article__crumb { margin-block: 0 1.6rem; font-size: .9rem; font-weight: 600; }
/* ink-soft is 5.55:1 on cream; teal-deep was 3.24:1 and this is real text,
   not one of the tiny uppercase kickers. No new brand colour needed. */
.article__crumb a { color: var(--ink-soft); text-decoration: none; }
.article__crumb a:hover { text-decoration: underline; }
.article__meta {
  color: var(--ink-soft);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-block-start: .6rem;
}
/* Framer's heroes are mixed portrait/landscape — crop to a banner so a tall
   photo can't swallow the whole first screen. --hero-pos lets a single page
   nudge the crop inline where the default lands badly. */
.article__hero {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: var(--hero-pos, center 35%);
  margin-block-start: 2rem;
}
/* Calm opener. The orange left rule belongs to <blockquote> now — one visual
   device, one meaning. */
.article__lede {
  font-size: 1.28rem;
  line-height: 1.6;
  font-weight: 400;   /* no Poppins 500 file exists, and BRAND.md bans the weight */
  color: var(--ink);
  margin-block: 1.8rem 2.2rem;
}

/* ---- Headings. The tick is a block, not an absolute + padding-top hack, so
   display:none opts a heading out cleanly (see .toc h2, .article__cta h2). ---- */
.article h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  margin-block: var(--flow-h2) .75rem;
}
.article h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  margin-block-end: .95rem;
}
.article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);   /* was teal-deep: 3.24:1 on cream, fails AA for body text */
  margin-block: var(--flow-h3) .45rem;
}
.article h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-block: 1.7rem .35rem;
}
/* Anchor jumps land clear of the sticky nav. section[id] matters: the
   hand-written pages point their TOC at the <section>, not the heading. */
.article :where(h2, h3, section)[id] { scroll-margin-top: var(--nav-offset); }

/* ---- Lists: padding, not margin, so markers stay inside the measure ---- */
.article ul, .article ol { padding-inline-start: 1.4rem; }
.article li + li { margin-block-start: .5rem; }
.article li > :where(ul, ol) { margin-block-start: .5rem; }
.article li::marker { color: var(--orange); }
.article ol > li::marker { font-weight: 700; }

/* ---- Prose links: ink text (12.1:1) with an orange underline. Orange text
   was 3.03:1 on cream, under the 4.5:1 AA floor. Scoping to text elements
   instead of a blanket `.article a` means cards, the TOC and .btn are never
   matched, so none of them need an override. ---- */
.article :where(p, li, td, th, dd, dt, figcaption, blockquote) a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.article :where(p, li, td, th, dd, dt, figcaption, blockquote) a:hover {
  color: var(--orange-deep);
  text-decoration-color: var(--orange-deep);
}

/* ---- Elements the * { margin: 0; padding: 0 } reset collapsed to nothing ---- */
.article blockquote:not([class]) {
  border-inline-start: 3px solid var(--orange);
  padding-inline-start: 1.2rem;
  margin-block: 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
}
.article blockquote cite {
  display: block;
  font-style: normal;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-block-start: .6rem;
}
.article figure { margin-block: 2.2rem; }
.article figure :where(img, video) {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.article figcaption {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  margin-block-start: .7rem;
}
.article hr {
  border: 0;
  height: 1px;
  background: rgba(34, 48, 58, .12);
  margin-block: 2.8rem;
}
.article dt { font-weight: 700; margin-block-start: 1rem; }
.article dd { margin-inline-start: 1.2rem; color: var(--ink-soft); }

/* ---- Tables. The visuals live on `.article table` so a plain <table> works;
   .cmp is only the horizontal-scroll wrapper, reached for when it's wide. ---- */
.article table {
  border-collapse: collapse;
  width: 100%;
  font-size: .95rem;
  line-height: 1.5;
  margin-block: 1.8rem;
}
.article :where(th, td) {
  text-align: left;
  padding: .8rem .9rem;
  border-bottom: 1px solid rgba(34, 48, 58, .12);
  vertical-align: top;
}
.article thead th {
  background: var(--cream-deep);
  font-weight: 700;
  border-bottom: 2px solid rgba(34, 48, 58, .18);
}
.article tbody tr:last-child td { border-bottom: 0; }
/* Secondary line inside a cell — brand names under an option, towns under a
   route. Replaces the inline font-size that the first comparison table used. */
.article .cell-sub {
  display: block;
  font-size: .88em;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink-soft);
  margin-block-start: .15rem;
}
/* Short labels, prices and durations read as one token — never break "€20–€30" across
   two lines. Lining figures so the column scans vertically. */
.article .cell-tight { white-space: nowrap; font-variant-numeric: tabular-nums; }
/* The label column is what you scan down — give it room and let the long prose
   columns absorb the slack instead of squeezing it to three words a line. */
.article :where(th, td):first-child { min-width: 8.5rem; }

.cmp { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-block: 1.8rem; }
.cmp table { min-width: 34rem; margin-block: 0; }

.article__sources {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  border-top: 1px solid rgba(34, 48, 58, .12);
  padding-block-start: 1.1rem;
  margin-block-start: 2.6rem;
}

/* ---- End-of-article CTA. `.article__cta h2` is 0-2-1 and beats
   `.article h2` at 0-1-1, so the tick opt-out needs no !important. ---- */
.article__cta {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  margin-block-start: 3.2rem;
}
.article__cta h2 { font-size: 1.6rem; margin-block: 0 .35em; }
.article__cta h2::before { display: none; }
.article__cta p { color: var(--ink-soft); max-width: 34em; margin: 0 auto 1.4rem; }
.article__cta-alt { font-size: .9rem; margin-block: 1.2rem 0; }

/* ---- Article reading experience ---- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  z-index: 60;
  transition: width .1s linear;
}

/* "Fix:" paragraphs are the payoff of each section — make them land.
   Inherits its size from .article, so 0-1-0 is enough to shrink it. */
.article__fix {
  background: var(--cream-deep);
  border-radius: 16px;
  border-inline-start: 4px solid var(--teal);
  padding: 1rem 1.2rem;
  margin-block: 1.6rem;
  font-size: 1rem;
  line-height: 1.6;
}
.article__fix strong:first-child { color: var(--teal-deep); }

/* In-this-guide jump list */
.toc {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.7rem;
  margin-block: 2.4rem;
}
/* 0-1-1, and later in the file than `.article h2` — no !important needed. */
.toc h2 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--teal-deep);
  margin-block: 0 .85rem;
}
.toc h2::before { display: none; }
.toc ol { margin: 0; padding-inline-start: 1.2rem; }
.toc li { font-size: .95rem; line-height: 1.45; }
.toc li + li { margin-block-start: .45rem; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--orange-deep); text-decoration: underline; }
.toc li::marker { color: var(--orange); font-weight: 700; }

/* Read next. The card titles used to render orange because the old blanket
   `.article a:not(.btn)` outranked `color: var(--ink)` here; the scoped prose
   link rule no longer matches them, so they are ink again with no override. */
.readnext {
  margin-block-start: 3.4rem;
  padding-block-start: 2rem;
  border-top: 1px solid rgba(34, 48, 58, .12);
}
.readnext__title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--teal-deep);
  margin-block-end: 1.1rem;
}
.readnext__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.readnext__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.readnext__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.readnext__card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.readnext__card > span {
  display: block;
  padding: 1rem 1.2rem .4rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.32;
  letter-spacing: -.01em;
}
/* Read affordance without touching a single HTML file. Ink-soft, not orange:
   the orange button in .article__cta sits right below, and BRAND.md allows
   one orange CTA per view. */
.readnext__card::after {
  content: "Read \2192";
  padding: 0 1.2rem 1.1rem;
  margin-block-start: auto;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink-soft);
  transition: color .18s ease;
}
.readnext__card:hover::after { color: var(--orange-deep); }

/* The hub h1 was on the landing hero scale (up to 5.2rem) and ate the fold
   above eight small cards. It is a page title, not a hero. */
.bloghub h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.bloglist { display: grid; gap: 1.4rem; margin-top: 2.4rem; }
.bloglist__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.bloglist__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bloglist__card img { border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; }
.bloglist__card h2 { font-size: 1.15rem; margin-bottom: .3em; }
.bloglist__card p { color: var(--ink-soft); font-size: .9rem; margin-bottom: .5em; }
.bloglist__more { color: var(--ink-soft); font-weight: 700; font-size: .9rem; transition: color .18s ease; }
.bloglist__card:hover .bloglist__more { color: var(--orange-deep); }
@media (max-width: 640px) {
  .bloglist__card { grid-template-columns: 1fr; }
  .bloglist__card img { width: 100%; }
}

/* ============ Mobile ============ */
@media (max-width: 860px) {
  /* Nav collapses into a burger dropdown */
  .nav__inner { gap: 1rem; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(34, 48, 58, .09);
    box-shadow: var(--shadow-sm);
    padding: .4rem 1.5rem 1rem;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: .7rem 0; font-size: 1rem; }
  .nav__cta { margin-left: auto; font-size: .85rem; padding: .7em 1.2em; }
  .nav__burger { display: block; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Single-column layouts */
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; min-height: 0; padding-top: 3rem; }
  .hero__scene { min-height: 0; max-width: 340px; margin: 0 auto; width: 100%; }
  .lake__inner { grid-template-columns: 1fr; gap: 2rem; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }

  .section { padding: 3.5rem 0; }
  .svc__row { gap: 1.2rem; padding: 1.2rem .8rem; }
  .readnext__grid { grid-template-columns: 1fr; }

  /* Tighten the reading system rather than restating individual rules */
  .article { font-size: 1.0625rem; --flow-h2: 2.5rem; --flow-h3: 1.8rem; }
  .article__lede { font-size: 1.15rem; }
}

@media (max-width: 640px) {
  /* Portrait hero sources crop far better at 4:3 on a narrow screen */
  .article__hero { aspect-ratio: 4 / 3; border-radius: 18px; }
  .toc { padding: 1.2rem 1.3rem; }
  .article__cta { padding: 1.6rem 1.2rem; }
  .article table { font-size: .88rem; }
  .article :where(th, td) { padding: .65rem .7rem; }
  .cmp { position: relative; }
  .cmp table { min-width: 30rem; }
  /* Fade the cut edge so a clipped column reads as scrollable, not broken */
  .cmp::after {
    content: "";
    position: absolute;
    inset-block: 0;
    right: 0;
    width: 2.2rem;
    pointer-events: none;
    background: linear-gradient(to right, rgba(247, 242, 231, 0), var(--cream));
  }
}

@media (max-width: 480px) {
  .nav__logo { font-size: 1.35rem; }
  .vs { padding: .6rem 1.2rem; }
  .vs__row { gap: 1rem; font-size: .9rem; }
  .article h1 { font-size: 1.9rem; }
  .article__lede { font-size: 1.08rem; }
  .article h2::before { width: 28px; }
}

/* .cmp, .article__sources and the article table styles moved up into the Blog
   section — down here they sat after the media queries and won at every width. */

/* Card that is itself a link (town index on the blog hub) */
.card--link { text-decoration: none; color: var(--ink); display: block; transition: transform .18s ease, box-shadow .18s ease; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card--link h3 { font-size: 1.1rem; margin-bottom: .3em; }
.card--link span { color: var(--ink-soft); font-weight: 700; font-size: .9rem; transition: color .18s ease; }
.card--link:hover span { color: var(--orange-deep); }

/* Landing footer carries an extra column for the town storage pages */
.footer__inner--5 { grid-template-columns: 1.5fr .9fr .9fr .9fr 1fr; }
@media (max-width: 860px) {
  .footer__inner--5 { grid-template-columns: 1fr 1fr; }
}

/* Drive It Home footer: no Como columns to link to, so three, not four.
   The base grid is 4fr-wide, which would leave a dead column on the right. */
.footer__inner--3 { grid-template-columns: 1.6fr 1.1fr 1fr; }
@media (max-width: 860px) {
  .footer__inner--3 { grid-template-columns: 1fr 1fr; }
}

/* ============ Service page: /ship-luggage-home ============ */
.svc-hero { padding-top: 7.5rem; }
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.svc-hero__lede { color: var(--ink-soft); max-width: 36em; margin: 1.4rem 0 1.8rem; font-size: 1.08rem; }
.svc-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.svc-hero__proof { margin-top: 1.4rem; font-size: .9rem; color: var(--ink-soft); }
.svc-hero__proof .footer__rating { color: var(--ink); font-weight: 700; text-decoration: none; }
.svc-hero__scene { justify-self: center; max-width: 520px; filter: drop-shadow(0 18px 28px rgba(34,48,58,.18)); }
.svc-prose { color: var(--ink-soft); max-width: 44em; }
.svc-prose + .svc-prose { margin-top: 1rem; }
.svc-prose a { color: var(--orange-deep); font-weight: 600; }
.svc-prose--note { margin-top: 1.6rem; font-size: .95rem; }
.svc-cases { margin-block: 2.2rem; }
.svc-cases h3 { margin-bottom: .5rem; }

.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.quote__sub { color: var(--ink-soft); max-width: 34em; margin-bottom: 1.4rem; }
.quote__list { list-style: none; display: grid; gap: .8rem; }
.quote__list li { padding-left: 1.4rem; position: relative; color: var(--ink-soft); }
.quote__list li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.quote__list strong { color: var(--ink); }
.quote__form { display: grid; gap: 1.1rem; padding: 2rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(34, 48, 58, .12);
  border-radius: 14px;
  padding: .85em 1em;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: rgba(85, 99, 109, .7); }
.field input:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.field input:user-invalid { border-color: #c0392b; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote__submit { justify-content: center; width: 100%; }
.quote__note { font-size: .85rem; color: var(--ink-soft); text-align: center; }
.quote__hint { color:var(--ink-soft); font-size:.82rem; line-height:1.45; margin:-.2rem 0 .2rem; }
.quote__note a { color: var(--orange-deep); font-weight: 600; }

@media (max-width: 1000px) {
  .svc-hero__inner, .quote__inner { grid-template-columns: 1fr; }
  .svc-hero__scene { max-width: 360px; }
}
@media (max-width: 560px) {
  .field--row { grid-template-columns: 1fr; }
  .quote__form { padding: 1.4rem; }
}
.final__ps { margin-top: 1.6rem; font-size: .95rem; color: var(--ink-soft); max-width: 34em; margin-inline: auto; }
.readnext__card--text { padding: 1rem 1.2rem; }
.readnext__card--text > span { padding: 0; }
.svc-cities { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.svc-cities a { background: var(--white); border-radius: 999px; padding: .45em 1em; font-size: .9rem; font-weight: 600; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm); }
.svc-cities a:hover { color: var(--orange-deep); }
