/* ==========================================================================
   International Shipping Company — Design system
   ========================================================================== */
:root {
  --bg-0: #05070d;
  --bg-1: #0a0e1a;
  --bg-2: #0f1424;
  --bg-3: #141b30;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text-0: #f5f7fb;
  --text-1: #c3cadb;
  --text-2: #8791a8;
  --gold: #c9a961;
  --gold-light: #e8cf8e;
  --cyan: #34d3e0;
  --cyan-light: #7fe9f1;
  --success: #3ecf8e;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--text-0);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p { color: var(--text-2); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1305;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35); }
.btn-outline {
  border-color: var(--line-strong);
  color: var(--text-0);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-light); background: rgba(52, 211, 224, 0.08); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-2);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 20px;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s, color 0.25s;
}
.topbar-right a:hover { border-color: var(--gold); color: var(--gold); }
.topbar-right svg { width: 13px; height: 13px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.logo-mark {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.logo-mark svg { width: 24px; height: 24px; color: var(--gold); }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 2px;
}

nav.main-nav ul { display: flex; gap: 36px; }
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-1);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--text-0); }
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { display: none; }
@media (min-width: 1000px) { .nav-cta { display: inline-flex; } }

.burger {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
  background: transparent;
  color: var(--text-0);
}
.burger svg { width: 20px; height: 20px; }
@media (min-width: 1000px) { .burger { display: none; } }
@media (max-width: 999px) { nav.main-nav { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  z-index: 200;
  padding: 28px 26px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-0);
}
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--text-0);
}
.mobile-menu .btn { margin-top: 24px; }
.scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(52, 211, 224, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 110%, rgba(201, 169, 97, 0.1), transparent 60%),
    var(--bg-1);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light), var(--cyan-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p.lead {
  font-size: 1.12rem;
  color: var(--text-1);
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust .stat b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--text-0);
}
.hero-trust .stat span {
  font-size: 0.78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual — abstract shipping graphic (pure CSS/SVG) */
.hero-visual { position: relative; height: 460px; }
.hero-card {
  position: absolute;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.hero-card.main {
  inset: 20px 10% 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card.main svg { width: 100%; height: 100%; }
.hero-float {
  width: 220px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-float.card-1 { top: -6px; right: 0; }
.hero-float.card-2 { bottom: 10px; left: -10px; animation-delay: -3s; }
.float-row { display: flex; align-items: center; gap: 12px; }
.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 20px; height: 20px; }
.card-1 .float-icon { background: rgba(52, 211, 224, 0.15); color: var(--cyan-light); }
.card-2 .float-icon { background: rgba(201, 169, 97, 0.18); color: var(--gold-light); }
.float-title { font-size: 0.85rem; font-weight: 600; color: var(--text-0); }
.float-sub { font-size: 0.75rem; color: var(--text-2); }
.float-progress {
  margin-top: 12px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.float-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  border-radius: 4px;
  width: 72%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Marquee (partners / ports) */
.marquee-section { background: var(--bg-0); border-block: 1px solid var(--line); padding: 34px 0; overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); margin-bottom: 22px; }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--text-2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-track span::before { content: "\26F5"; font-size: 0.9rem; color: var(--gold); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Generic sections
   ========================================================================== */
.section { padding: 110px 0; }
.section.alt { background: var(--bg-0); }
.section.tight { padding: 90px 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(52, 211, 224, 0.1);
  border: 1px solid rgba(52, 211, 224, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--cyan-light);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 16px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Why us / features */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) { .why-grid { grid-template-columns: 0.9fr 1.1fr; } }
.feature-list { display: flex; flex-direction: column; gap: 26px; }
.feature-item { display: flex; gap: 18px; }
.feature-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.05rem;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { color: var(--text-2); font-size: 0.94rem; margin: 0; }

.why-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
  padding: 40px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual svg { width: 100%; max-width: 380px; }

/* Process timeline */
.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
}
.process-step { position: relative; padding-top: 8px; }
.process-step .step-index {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -18px; right: 0;
  line-height: 1;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-light);
}
.step-icon svg { width: 24px; height: 24px; }
.process-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--text-2); font-size: 0.9rem; }

/* Network / ports */
.network-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) { .network-wrap { grid-template-columns: 1fr 1fr; } }
.port-list { display: flex; flex-direction: column; gap: 0; }
.port-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.port-row .port-name { color: var(--text-0); font-weight: 600; font-size: 0.98rem; display: flex; align-items: center; gap: 10px; }
.port-row .port-name svg { width: 16px; height: 16px; color: var(--gold); }
.port-row .port-country { color: var(--text-2); font-size: 0.85rem; }
.port-row .badge {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(62, 207, 142, 0.12);
  color: var(--success);
  border: 1px solid rgba(62, 207, 142, 0.3);
}
.map-card {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.map-card svg { width: 100%; height: auto; }

/* Stats band */
.stats-band {
  background: linear-gradient(120deg, #0d1730, #0a1120 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-block b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  background: linear-gradient(120deg, var(--gold-light), var(--cyan-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-block span { color: var(--text-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--gold); }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p.quote { color: var(--text-1); font-size: 0.98rem; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-weight: 700;
}
.testi-person b { display: block; color: var(--text-0); font-size: 0.92rem; }
.testi-person span { font-size: 0.8rem; color: var(--text-2); }

/* Quote / Devis CTA band */
.quote-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 64px 40px;
  background: linear-gradient(135deg, #101b34, #0a1120 70%);
  border: 1px solid var(--line-strong);
  text-align: center;
}
.quote-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(52,211,224,0.12), transparent 55%),
              radial-gradient(circle at 85% 85%, rgba(201,169,97,0.14), transparent 55%);
}
.quote-band > * { position: relative; z-index: 1; }
.quote-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 640px; margin: 0 auto 16px; }
.quote-band p { color: var(--text-1); max-width: 560px; margin: 0 auto 32px; }
.quote-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-info-icon svg { width: 19px; height: 19px; }
.contact-info-row h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--text-0); }
.contact-info-row p { font-size: 0.88rem; color: var(--text-2); margin: 0; }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; color: var(--text-1); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-0);
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(52, 211, 224, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--text-2); margin-top: 6px; }
.form-status {
  margin-top: 16px;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 10px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(62, 207, 142, 0.12); color: var(--success); border: 1px solid rgba(62, 207, 142, 0.3); }
.form-status.err { background: rgba(230, 90, 90, 0.12); color: #ff8b8b; border: 1px solid rgba(230, 90, 90, 0.3); }

/* Footer */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: var(--text-2); font-size: 0.92rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-0);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.footer-bottom a:hover { color: var(--text-0); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 90;
  box-shadow: var(--shadow-lg);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Tracking widget on hero variant */
.tracking-box {
  display: flex;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
  max-width: 460px;
}
.tracking-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: var(--text-0);
  font-size: 0.92rem;
}
.tracking-box input:focus { outline: none; }
.tracking-box button {
  border-radius: 999px;
  border: none;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1305;
  font-weight: 600;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 100px 0 70px; }
  .hero-visual { height: 340px; margin-top: 20px;}
  .hero-float { width: 170px; }
  .nav-wrap { height: 84px; }
  .logo-mark { width: 48px; height: 48px; }
  .logo { font-size: 1.2rem; gap: 12px; }
  .logo small { font-size: 0.6rem; }
}
