/* =========================================================
   Hiteck Packers & Movers — design system
   Palette:  ink #1B1F24 · red #D42A26 · red-deep #8C1613
             paper #F6F4EF · steel #63697A · line #E2DED3
             amber #E2A63B (used sparingly, route-marker accent)
   Type:     Archivo Black (display) + Inter (body/UI)
   ========================================================= */

:root {
  --ink: #1b1f24;
  --ink-soft: #2c323b;
  --red: #d42a26;
  --red-deep: #8c1613;
  --paper: #f6f4ef;
  --paper-dim: #efece3;
  --steel: #63697a;
  --line: #e2ded3;
  --line-dark: rgba(246, 244, 239, 0.16);
  --amber: #e2a63b;
  --white: #ffffff;
  --radius-sm: 3px;
  --container: 1160px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: "Archivo Black", "Archivo", sans-serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--steel); }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), background 0.15s ease, color 0.15s ease, border-color .15s ease, box-shadow .2s ease;
}
.btn svg.arrow { transition: transform .2s ease; flex: none; }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212,42,38,0.35); }
.btn-primary:active { transform: translateY(0); }

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

.btn-outline.on-dark {
  border-color: rgba(246,244,239,0.4);
  color: var(--paper);
}
.btn-outline.on-dark:hover { background: var(--paper); color: var(--ink); }

/* ---------- top strip ---------- */
.top-strip {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}
.top-strip a { display: inline-flex; align-items: center; gap: 7px; color: var(--paper); opacity: .9; }
.top-strip a:hover { opacity: 1; color: var(--amber); }
.top-strip .top-left { display: flex; gap: 22px; }
@media (max-width: 640px) {
  .top-strip .top-left span:last-child { display: none; }
}

/* ---------- header / nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 56px; width: auto; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
  color: var(--ink-soft);
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .18s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-phone svg { flex: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  nav.main-nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--paper);
    transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 28px 40px; }
  nav.main-nav li { width: 100%; border-bottom: 1px solid var(--line); }
  nav.main-nav a { display: block; padding: 16px 0; }
  .nav-phone span.label { display: none; }
  .menu-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background: var(--ink);
  color: var(--paper);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}
.hero-copy p.lead { color: rgba(246,244,239,0.72); font-size: 1.08rem; max-width: 440px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: var(--paper);
}
.hero h1 .accent { color: var(--red); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  color: var(--amber);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.hero-stats .stat b {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.7rem;
  color: var(--white);
}
.hero-stats .stat span { font-size: 0.8rem; color: rgba(246,244,239,0.6); }

.hero-art { position: relative; padding: 30px 0 0; }
.route-line {
  position: relative;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(246,244,239,0.35) 0 14px, transparent 14px 24px);
  margin-top: -6px;
}
.truck-photo + .route-line { margin-top: 22px; }
.hero-photo-frame + .route-line { margin-top: 34px; }
.truck-wrap { position: relative; }
.truck-wrap svg { width: 100%; height: auto; display: block; }
.truck-photo {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.truck-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* generic photo panel used outside the dark hero (about/intro/contact) */
.photo-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  position: relative;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .art-tag { position: absolute; left: 18px; bottom: 18px; }

/* ---------- intro / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split img { border-radius: var(--radius-sm); }
.split.reverse .media { order: 2; }

.art-panel { position: relative; }
.art-panel svg { width: 100%; height: auto; border-radius: var(--radius-sm); }
.art-tag {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.check-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.check-list li svg { flex: none; margin-top: 3px; }

/* ---------- process (route) ---------- */
.route-process { position: relative; }
.route-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.route-steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  z-index: 0;
}
@media (max-width: 860px) {
  .route-steps { grid-template-columns: 1fr 1fr; }
  .route-steps::before { display: none; }
}
@media (max-width: 520px) { .route-steps { grid-template-columns: 1fr; } }

.step { position: relative; z-index: 1; }
.step .marker {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 18px;
}
.step.active .marker { background: var(--red); border-color: var(--red); color: var(--white); }
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- ticket / service stubs ---------- */
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .ticket-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ticket-grid { grid-template-columns: 1fr; } }

.ticket {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 26px 26px;
  position: relative;
}
.ticket::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--red);
}
.ticket .num { font-family: "Archivo Black", sans-serif; color: var(--line); font-size: 1.7rem; margin-bottom: 6px; }
.ticket h3 { margin-bottom: 10px; }
.ticket p { font-size: 0.92rem; margin-bottom: 14px; }
.ticket ul { margin: 0; padding-left: 18px; color: var(--steel); font-size: 0.88rem; }
.ticket ul li { margin-bottom: 6px; }

/* ---------- dos/donts manifest ---------- */
.manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
@media (max-width: 760px) { .manifest { grid-template-columns: 1fr; } }
.manifest .col { padding: 34px; }
.manifest .col + .col { border-left: 1px dashed var(--line); }
@media (max-width: 760px) { .manifest .col + .col { border-left: none; border-top: 1px dashed var(--line); } }
.manifest h3 { font-size: 1rem; text-transform: none; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.manifest ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.manifest li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.manifest li svg { flex: none; margin-top: 3px; }
.manifest .do h3 { color: var(--ink); }
.manifest .dont { background: var(--paper-dim); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 56px 0;
}
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 6px 0 0; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--red); }

/* ---------- footer ---------- */
footer.site-footer { background: var(--ink); color: rgba(246,244,239,0.75); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 50px; margin-bottom: 16px; }
.footer-grid p { color: rgba(246,244,239,0.6); font-size: 0.9rem; }
.footer-grid h4 { color: var(--paper); font-size: 0.85rem; letter-spacing: 0.03em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid a { font-size: 0.9rem; color: rgba(246,244,239,0.68); }
.footer-grid a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid var(--line-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--red); background: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.82rem; color: rgba(246,244,239,0.5); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--amber); }

/* ---------- inner page hero ---------- */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 46px;
}
.breadcrumb { font-size: 0.85rem; color: rgba(246,244,239,0.55); margin-top: 12px; }
.breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { color: var(--paper); font-size: clamp(2rem, 3.6vw, 2.8rem); }

/* ---------- misc content blocks ---------- */
.stat-row { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 36px; }
.stat-row .stat b { display: block; font-family: "Archivo Black", sans-serif; font-size: 1.9rem; }
.stat-row .stat span { font-size: 0.82rem; color: var(--steel); }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.sector-card svg { flex: none; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-card .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper-dim); display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 0.92rem; }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-top: 8px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.form-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-panel label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  margin-bottom: 18px;
}
.form-panel textarea { resize: vertical; min-height: 110px; }
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus {
  outline: 2px solid var(--red); outline-offset: 1px;
}
.form-note { font-size: 0.8rem; color: var(--steel); margin-top: -6px; }

/* reveal-on-load (single orchestrated entrance, hero only) */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }

/* ---------- compare cards (full move vs truck-only) ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  position: relative;
}
.compare-card.featured { border-color: var(--red); box-shadow: 0 14px 40px rgba(212,42,38,0.14); }
.compare-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.compare-card.featured .compare-icon { background: var(--red); }
.compare-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 1.2rem; }
.tag-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.compare-card p.lede { font-size: 0.95rem; margin-bottom: 18px; }
.compare-card .check-list { margin-bottom: 22px; }
.compare-card .check-list li { font-weight: 500; font-size: 0.92rem; }

/* ---------- photo banner ---------- */
.photo-banner {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.photo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,31,36,0.92) 0%, rgba(27,31,36,0.55) 45%, rgba(27,31,36,0.15) 100%);
}
.photo-banner .banner-content {
  position: relative;
  z-index: 1;
  padding: 36px;
  color: var(--paper);
  max-width: 560px;
}
.photo-banner .banner-content h3 { color: var(--paper); font-size: 1.5rem; margin-bottom: 10px; }
.photo-banner .banner-content p { color: rgba(246,244,239,0.82); margin-bottom: 18px; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* =========================================================
   State-of-the-art polish pass: scroll reveals, hover depth,
   texture, marquee, floating badges, progress + back-to-top
   ========================================================= */

/* custom scrollbar (webkit) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-soft); border-radius: 999px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* subtle grain texture for dark sections */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }

/* scroll-triggered reveal (IntersectionObserver toggles .in) */
.reveal-io {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-io.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-io { opacity: 1; transform: none; transition: none; }
}
/* stagger within common grids */
.ticket-grid > .ticket:nth-child(1),
.compare-grid > .compare-card:nth-child(1),
.sector-grid > .sector-card:nth-child(1),
.route-steps > .step:nth-child(1),
.manifest > .col:nth-child(1) { transition-delay: 0s; }
.ticket-grid > .ticket:nth-child(2),
.compare-grid > .compare-card:nth-child(2),
.sector-grid > .sector-card:nth-child(2),
.route-steps > .step:nth-child(2),
.manifest > .col:nth-child(2) { transition-delay: .08s; }
.ticket-grid > .ticket:nth-child(3),
.sector-grid > .sector-card:nth-child(3),
.route-steps > .step:nth-child(3) { transition-delay: .16s; }
.ticket-grid > .ticket:nth-child(4),
.sector-grid > .sector-card:nth-child(4),
.route-steps > .step:nth-child(4) { transition-delay: .24s; }
.ticket-grid > .ticket:nth-child(5),
.sector-grid > .sector-card:nth-child(5) { transition-delay: .32s; }
.ticket-grid > .ticket:nth-child(6),
.sector-grid > .sector-card:nth-child(6) { transition-delay: .4s; }
.ticket-grid > .ticket:nth-child(7) { transition-delay: .48s; }

/* hover depth for cards */
.ticket, .compare-card, .sector-card, .contact-card {
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.ticket:hover, .compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(27,31,36,0.12);
  border-color: var(--red);
}
.sector-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 14px 30px rgba(27,31,36,0.1);
}
.contact-card:hover { border-color: var(--red); box-shadow: 0 14px 30px rgba(27,31,36,0.08); }
.step { transition: transform .25s ease; }
.step:hover { transform: translateY(-3px); }
.step:hover .marker { border-color: var(--red); color: var(--red); }

/* image zoom-on-hover for photo panels */
.photo-frame, .photo-banner { position: relative; }
.photo-frame img, .photo-banner img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.photo-frame:hover img, .photo-banner:hover img { transform: scale(1.045); }

/* ghost background numerals for section heads */
.section-head { position: relative; }
.section-head .ghost-num {
  position: absolute;
  top: -46px; left: -6px;
  font-family: "Archivo Black", sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--line);
  opacity: 0.55;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 720px) { .section-head .ghost-num { font-size: 4rem; top: -30px; } }

/* marquee ticker strip */
.marquee-strip {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item .dot-sep { color: var(--red); font-size: 1.3rem; line-height: 0; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* floating stat badges over hero photo */
.hero-photo-frame { position: relative; }
.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
}
.floating-badge .fb-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.3rem;
  color: var(--red);
  line-height: 1;
}
.floating-badge.fb-top { top: -18px; right: 22px; }
.floating-badge.fb-bottom { bottom: -18px; left: 22px; }
@media (max-width: 900px) {
  .floating-badge { padding: 9px 12px; font-size: 0.75rem; }
  .floating-badge .fb-num { font-size: 1.05rem; }
  .floating-badge.fb-top { top: -12px; right: 12px; }
  .floating-badge.fb-bottom { bottom: -12px; left: 12px; }
}

/* scroll progress bar (injected by js/main.js) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 100;
  transition: width .1s ease-out;
}

/* back-to-top button (injected by js/main.js) */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.24);
  z-index: 59;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--red); }
@media (max-width: 480px) { .back-to-top { right: 16px; bottom: 78px; width: 40px; height: 40px; } }

/* footer wordmark */
.footer-wordmark {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,244,239,0.18);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  user-select: none;
}

/* trust / certification badge strip (e.g. IBA approved) */
.trust-band { padding: 34px 0; }
.trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(27,31,36,0.06);
}
.trust-strip .trust-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: none;
}
.trust-strip .trust-copy strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}
.trust-strip .trust-copy span {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.5;
}
@media (max-width: 560px) {
  .trust-strip { flex-direction: column; text-align: center; padding: 22px 20px; }
}

/* floating whatsapp button (injected by js/main.js) */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  z-index: 60;
  transition: transform .15s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px); }
@media (max-width: 480px) {
  .whatsapp-fab { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
