/* ==========================================================================
   MH Trading Japan — site stylesheet
   Ported from the Claude Design prototype "MH Trading Japan v2.dc.html".
   Palette, type scale and spacing are 1:1 with the prototype.
   ========================================================================== */

:root {
  --bg:          #0A0A0C;
  --bg-alt:      #0E0E11;
  --bg-deep:     #060607;
  --card:        #111114;
  --input:       #131317;

  --line:        #1B1B20;
  --line-2:      #2A2A31;
  --line-3:      #3A3A42;
  --line-4:      #4A4B52;
  --line-gold:   #2E2716;

  --gold:        #C8A44D;
  --gold-lt:     #E0C070;
  --gold-warm:   #141210;

  --ink:         #F4F1EA;
  --ink-2:       #C9CACF;
  --muted:       #A6A7AE;
  --muted-2:     #8A8B92;
  --muted-3:     #6E6F76;
  --muted-4:     #5E5F66;

  --serif: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1320px;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { display: flex; flex-direction: column; min-height: 100vh; }

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

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-lt); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------- typography -- */

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; text-wrap: pretty; }

.kicker {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.h-page  { font-size: 52px; line-height: 1.1; color: var(--ink); }
.h-sect  { font-size: 46px; line-height: 1.15; color: var(--ink); }
.h-sub   { font-size: 34px; color: var(--ink); }
.h-card  { font-size: 22px; color: var(--ink); }

.lede    { color: var(--muted); font-size: 16.5px; font-weight: 300; line-height: 1.7; margin: 0; }
.body    { color: var(--muted); font-size: 14px;   font-weight: 300; line-height: 1.65; margin: 0; }

.shell   { max-width: var(--shell); margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.shell-md { max-width: 1100px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.shell-sm { max-width: 900px;  margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.shell-xs { max-width: 860px;  margin: 0 auto; padding-left: 40px; padding-right: 40px; }

.sect        { padding-top: 96px; padding-bottom: 96px; }
.sect-tight  { padding-top: 80px; padding-bottom: 80px; }
.rule-top    { border-top: 1px solid var(--line); }
.rule-bottom { border-bottom: 1px solid var(--line); }
.bg-alt      { background: var(--bg-alt); }

.head-block { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 17px 36px;
  cursor: pointer;
  border: none;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: var(--bg); font-weight: 600; }
.btn-gold:hover { background: var(--gold-lt); color: var(--bg); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(10, 10, 12, .35);
  border: 1px solid var(--line-4);
  color: var(--ink);
  font-weight: 400;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: none;
  border: 1px solid var(--line-3);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .18em;
  padding: 14px 28px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { font-size: 13.5px; padding: 16px 32px; }

/* Inline gold text action ("Request a quote →", "← Change category") */
.btn-text {
  background: none; border: none; padding: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: color .3s;
}
.btn-text:hover { color: var(--gold-lt); }

/* -------------------------------------------------------------- header -- */

.topbar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12.5px;
  letter-spacing: .05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 40px;
  flex-wrap: wrap;
}
.topbar-group { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar span { white-space: nowrap; }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold); }

.site-header {
  background: rgba(10, 10, 12, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header > .shell {
  padding-top: 16px; padding-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand:hover { color: inherit; }
.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: .06em;
  color: var(--ink);
}
.brand-name em { font-style: normal; color: var(--gold); }
.brand-tag {
  font-size: 10.5px;
  letter-spacing: .34em;
  color: var(--muted-3);
  text-transform: uppercase;
}

.nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-link {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--ink-2);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .06em;
  padding: 8px 12px;
  cursor: pointer;
  transition: color .3s, border-color .3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.lang-toggle {
  background: none;
  border: 1px solid var(--line-2);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  padding: 9px 14px;
  margin-left: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .3s;
}
.lang-toggle:hover { border-color: var(--gold); }

.nav-cta {
  background: var(--gold);
  border: none;
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 22px;
  margin-left: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--bg); }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

main { flex: 1; }

/* ---------------------------------------------------------------- hero -- */

.hero { position: relative; height: 88vh; min-height: 640px; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-scrim-x, .hero-scrim-y { position: absolute; inset: 0; pointer-events: none; }
.hero-scrim-x {
  background: linear-gradient(90deg, rgba(6,6,7,.92) 0%, rgba(6,6,7,.55) 48%, rgba(6,6,7,.15) 100%);
}
.hero-scrim-y {
  background: linear-gradient(0deg, rgba(10,10,12,1) 0%, rgba(10,10,12,0) 26%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.hero-copy { max-width: 640px; display: flex; flex-direction: column; gap: 24px; }
.hero-kicker { font-size: 12.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hero-title { font-size: 68px; line-height: 1.06; color: var(--ink); }
.hero-sub { margin: 0; font-size: 17.5px; font-weight: 300; line-height: 1.7; color: var(--ink-2); max-width: 50ch; text-wrap: pretty; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; pointer-events: auto; }

.hero-dots {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 12px;
}
.hero-dot {
  width: 26px; height: 2px; background: var(--line-3);
  border: none; padding: 0; cursor: pointer; transition: all .5s;
}
.hero-dot.is-on { width: 44px; background: var(--gold); }

/* --------------------------------------------------------------- stats -- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 44px 0; }
.stat { display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--gold); padding-left: 22px; }
.stat-n { font-family: var(--serif); font-size: 40px; color: var(--ink); }
.stat-l { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

/* ------------------------------------------------------------- marquee -- */

.marquee-band { border-bottom: 1px solid var(--line); padding: 34px 0; overflow: hidden; }
.marquee-label {
  margin: 0 0 22px; text-align: center;
  font-size: 11.5px; letter-spacing: .4em; text-transform: uppercase; color: var(--muted-3);
}
.marquee { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-run { display: flex; gap: 56px; padding-right: 56px; align-items: center; }
.marquee img {
  height: 40px; width: auto; flex: 0 0 auto; opacity: .82;
  /* Brand marks ship as monochrome SVG; tint them to the page ink. */
  filter: brightness(0) invert(1);
}
.marquee-band:hover .marquee { animation-play-state: paused; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- cards -- */

/* The prototype uses a 2px gap so borders read as hairline dividers. */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.grid-4-wide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.grid-6-wide { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.card-media { height: 190px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 10px; }
.card-pad { padding: 28px; }

.card-link { cursor: pointer; transition: border-color .3s; text-align: left; }
.card-link:hover { border-color: var(--gold); }

/* Numbered feature column ("01 The shaken system") */
.feature { display: flex; flex-direction: column; gap: 12px; }
.feature-n { font-family: var(--serif); font-size: 18px; color: var(--gold); }
.feature h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; color: var(--ink); }
.feature p { margin: 0; font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* Process step with a rule above */
.step { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line-2); padding-top: 18px; }
.step-n { font-family: var(--serif); font-size: 17px; color: var(--gold); }
.step strong { font-size: 15px; font-weight: 500; }
.step span.step-d { font-size: 13.5px; font-weight: 300; color: var(--muted-2); line-height: 1.6; }

/* --------------------------------------------------------- payment band -- */

.band-warm {
  background: linear-gradient(180deg, var(--gold-warm), var(--bg-alt));
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
}
.pay-card { background: var(--card); border: 1px solid var(--line); padding: 32px 30px; display: flex; flex-direction: column; gap: 10px; }
.pay-n { font-family: var(--serif); font-size: 30px; color: var(--gold); }
.pay-card strong { font-size: 16px; font-weight: 500; }

/* ----------------------------------------------------------------- map -- */

.map-frame { border: 1px solid var(--line); background: var(--bg-alt); }
.map-frame iframe { width: 100%; height: 560px; border: none; display: block; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.chip {
  background: none;
  border: 1px solid var(--line-2);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: .08em;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip-dashed { border-style: dashed; border-color: var(--line-3); color: var(--muted-2); }

/* ------------------------------------------------------------ ceo quote -- */

.quote-band { border-top: 1px solid var(--line); background: var(--bg-alt); }
.quote-inner {
  max-width: 880px; margin: 0 auto; padding: 90px 40px; text-align: center;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
}
.quote-mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: .4; margin-top: 10px; }
.quote-text { margin: 0; font-family: var(--serif); font-size: 28px; line-height: 1.5; color: var(--ink); text-wrap: pretty; }

/* --------------------------------------------------------------- forms -- */

input, textarea, select {
  background: var(--input);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; }

.field {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-card h3 { font-size: 28px; }
.form-note { font-size: 12.5px; color: var(--muted-3); text-align: center; }

.form-submit {
  background: var(--gold); border: none; color: var(--bg);
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px; cursor: pointer; margin-top: 6px; transition: background .3s;
}
.form-submit:hover { background: var(--gold-lt); }

/* Quote flow */
.steps { display: flex; gap: 14px; align-items: center; margin-top: 10px; }
.steps span.step-label { font-size: 12px; letter-spacing: .2em; color: var(--muted-3); }
.steps span.step-label.is-on { color: var(--gold); }
.steps .steps-rule { width: 60px; height: 1px; background: var(--line-2); }

.quote-cat-media { height: 210px; overflow: hidden; }
.quote-cat-media img { width: 100%; height: 100%; object-fit: cover; }
.quote-cat .card-body { padding: 28px 26px 32px; }
.quote-cat h3 { font-size: 24px; }
.quote-cat .select-cue { color: var(--gold); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-top: 8px; }

/* ----------------------------------------------------------- data lists -- */

/* Country guide fact table */
.facts { background: var(--card); border: 1px solid var(--line); }
.fact {
  display: grid; grid-template-columns: 240px 1fr; gap: 20px;
  padding: 18px 28px; border-bottom: 1px solid var(--line); font-size: 15px;
}
.fact:last-child { border-bottom: none; }
.fact strong { color: var(--gold); font-weight: 500; letter-spacing: .04em; }
.fact span { color: var(--ink-2); font-weight: 300; line-height: 1.6; }

.notice {
  border: 1px solid var(--line-gold);
  background: var(--gold-warm);
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 300;
  color: #A89B72;
  line-height: 1.6;
}

/* Shipping schedule table */
.routes { background: var(--card); border: 1px solid var(--line); }
.routes-head, .route {
  display: grid; grid-template-columns: 1.3fr 1fr .9fr .9fr; gap: 12px; padding: 15px 28px;
}
.routes-head {
  padding: 16px 28px;
  border-bottom: 1px solid var(--line-gold);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.route { border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 300; color: var(--muted); }
.route:last-child { border-bottom: none; }
.route strong { color: var(--ink); font-weight: 500; }

/* Country hub */
.country-card { padding: 28px; gap: 10px; }
.country-card-top { display: flex; align-items: baseline; gap: 12px; }
.country-code { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.country-card h3 { font-size: 25px; }
.country-teaser { font-size: 14px; font-weight: 300; color: var(--muted-2); line-height: 1.6; }
.country-cue { color: var(--gold); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; margin-top: auto; }

.country-search-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 22px;
}
.country-search-row input { min-width: 260px; width: auto; }

.country-list { display: flex; flex-wrap: wrap; gap: 2px; }
.country-pill {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .03em;
  padding: 11px 18px;
  cursor: pointer;
  transition: border-color .25s, color .25s;
  text-align: left;
}
.country-pill.has-guide { border-color: var(--line-gold); color: var(--gold); }
.country-pill:hover { border-color: var(--gold); color: var(--gold); }
.country-empty { color: var(--muted-2); font-size: 15px; font-weight: 300; padding: 18px 0; }

/* Numbered guide row (How to buy) */
.guide-step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; }
.guide-step > span { font-family: var(--serif); font-size: 34px; color: var(--gold); }
.guide-step h3 { font-family: var(--sans); margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.guide-step p { margin: 0; color: var(--muted); font-weight: 300; line-height: 1.75; font-size: 15px; }

.info-card { background: var(--card); border: 1px solid var(--line); padding: 32px; }
.info-card h3 { font-size: 24px; margin: 0 0 16px; }
.info-card .rows { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.65; }
.info-card .rows strong { color: var(--gold); font-weight: 500; }
.info-card.warm { background: linear-gradient(180deg, var(--gold-warm), var(--card)); border-color: var(--line-gold); }
.info-card.warm h3 { color: var(--gold); }
.info-card.warm .rows strong { color: var(--ink); }

/* About: company profile table */
.profile { background: var(--card); border: 1px solid var(--line); }
.profile-head {
  padding: 16px 28px; border-bottom: 1px solid var(--line-gold);
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.profile-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 14px;
  padding: 14px 28px; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.profile-row:last-child { border-bottom: none; }
.profile-row strong { font-weight: 500; }
.profile-row span { color: var(--muted); font-weight: 300; }

.value-card { background: var(--card); border: 1px solid var(--line); padding: 36px; }
.value-card .eyebrow { font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.value-card p { margin: 14px 0 0; font-family: var(--serif); font-size: 21px; line-height: 1.55; color: var(--ink); text-wrap: pretty; }

/* ----------------------------------------------------------------- faq -- */

.faq-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap; margin-bottom: 34px;
}
.faq-head h2 { font-size: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item { background: var(--card); border: 1px solid var(--line); transition: border-color .3s; }
.faq-item.is-open { border-color: var(--line-gold); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--ink);
  font-family: var(--sans); font-size: 16px; font-weight: 400; text-align: left;
  padding: 20px 26px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { color: var(--gold); font-size: 20px; font-weight: 300; flex: 0 0 auto; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.16, 1, .3, 1); }
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a p { margin: 0; padding: 0 26px 22px; font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.75; }

/* ----------------------------------------------------------------- cta -- */

.cta {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-alt), var(--gold-warm));
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,12,.58), rgba(14,12,10,.72));
}
.cta-inner {
  position: relative; z-index: 2; max-width: 860px; margin: 0 auto;
  padding: 88px 40px; text-align: center;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  pointer-events: none;
}
.cta-inner h2 { font-size: 42px; color: var(--ink); }
.cta-inner p { margin: 0; color: var(--muted); font-size: 16px; font-weight: 300; max-width: 52ch; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; pointer-events: auto; }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); color: var(--muted-2); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px;
  align-items: start; padding-top: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand-name { font-size: 22px; line-height: 1.3; }
.footer-blurb { font-size: 14px; font-weight: 300; line-height: 1.75; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col strong {
  color: var(--gold); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; font-weight: 500;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.footer-col a, .footer-link {
  background: none; border: none; padding: 0;
  color: var(--muted-2); font-family: var(--sans); font-weight: 300; font-size: 14px;
  cursor: pointer; text-align: left; transition: color .3s;
}
.footer-col a:hover, .footer-link:hover { color: var(--gold); }
.footer-col span { font-weight: 300; }
.footer-wa {
  border: 1px solid var(--line-2); color: var(--gold);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 18px; align-self: flex-start; transition: border-color .3s;
}
.footer-wa:hover { border-color: var(--gold); }

.footer-base { padding: 36px 40px 40px; max-width: var(--shell); margin: 0 auto; }
.footer-base-inner {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted-4);
}
.footer-tag { letter-spacing: .28em; text-transform: uppercase; }

/* ------------------------------------------------------- floating chat -- */

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ------------------------------------------------------------- overlay -- */

.overlay {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease;
}
.overlay.is-hidden { opacity: 0; pointer-events: none; }
.overlay-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; animation: fadeUp .7s ease both; }
.overlay-name { font-family: var(--serif); font-size: 38px; letter-spacing: .08em; color: var(--ink); }
.overlay-name em { font-style: normal; color: var(--gold); }
.overlay-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: lineGrow 1.6s ease both; }
.overlay-tag { font-size: 12px; letter-spacing: .5em; color: var(--muted-2); text-transform: uppercase; padding-left: .5em; }

@keyframes lineGrow { 0% { width: 0; opacity: 0; } 30% { opacity: 1; } 100% { width: 220px; opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------- reveal -- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* Never leave content invisible if IO/JS is unavailable. */
.no-js [data-reveal] { opacity: 1; transform: none; }
.no-js .overlay { display: none; }
.no-js .hero-slide { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 1100px) {
  .grid-4, .grid-4-wide { grid-template-columns: 1fr 1fr; }
  .grid-6-wide { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .shell, .shell-md, .shell-sm, .shell-xs { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: 52px; }
  .h-page { font-size: 44px; }
  .h-sect { font-size: 38px; }
}

@media (max-width: 900px) {
  .nav-burger { display: block; order: 3; }
  .nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  .nav.is-open { display: flex; }
  .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-link.is-active { border-bottom-color: var(--gold); }
  .lang-toggle, .nav-cta { margin: 12px 0 0; text-align: center; }
}

@media (max-width: 820px) {
  .grid-2, .grid-3, .grid-4, .grid-4-wide, .grid-6-wide,
  .field-row, .footer-grid { grid-template-columns: 1fr; }
  .grid-4-wide, .grid-6-wide { gap: 28px; }
  .footer-grid { gap: 32px; }

  .stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .sect { padding-top: 52px; padding-bottom: 52px; }
  .sect-tight { padding-top: 44px; padding-bottom: 44px; }

  .hero { min-height: 520px; height: auto; padding: 96px 0 72px; }
  .hero-title { font-size: 36px; line-height: 1.1; }
  .hero-sub { font-size: 16px; }

  .h-page { font-size: 34px; }
  .h-sect { font-size: 27px; }
  .h-sub  { font-size: 24px; }
  .cta-inner h2 { font-size: 28px; }
  .quote-text { font-size: 21px; }
  .faq-head h2 { font-size: 26px; }

  .fact { grid-template-columns: 1fr; gap: 6px; }
  .profile-row { grid-template-columns: 1fr; gap: 4px; }
  .guide-step { grid-template-columns: 1fr; gap: 8px; }

  /* Shipping table collapses to labelled rows. */
  .routes-head { display: none; }
  .route {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 22px;
  }
  .route span::before {
    content: attr(data-label) " — ";
    color: var(--muted-3);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .form-card { padding: 24px; }
  .card-pad, .info-card, .value-card { padding: 22px; }
  .quote-inner { padding: 56px 24px; }
  .cta-inner { padding: 56px 24px; }
  .map-frame iframe { height: 340px; }
  .topbar { padding: 8px 20px; font-size: 11.5px; gap: 8px; }
  .topbar-group { gap: 14px; }
  .brand-name { font-size: 21px; }
  .overlay-name { font-size: 27px; }
  .btn { padding: 15px 26px; font-size: 13px; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 31px; }
  .h-page { font-size: 29px; }
  .country-search-row input { min-width: 0; width: 100%; }
}

/* ----------------------------------------------------------------- print */

@media print {
  .overlay, .wa-float, .site-header, .topbar, .cta, .marquee-band { display: none !important; }
  html, body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1; transform: none; }
}
