/* =========================================================
   GOLDEN ISLAND — Trade & Commodities
   Shared design system
   ========================================================= */

:root {
  /* Gold */
  --gold:        #B88A38;
  --gold-bright: #D4A84B;
  --gold-light:  #E7CC85;
  --gold-pale:   #F4ECD6;
  --gold-deep:   #8A6526;

  /* Navy */
  --navy:        #0E2A4E;
  --navy-deep:   #081A31;
  --navy-soft:   #173B66;
  --navy-line:   rgba(231,204,133,0.16);

  /* Neutrals */
  --ink:    #182230;
  --muted:  #5A6A7C;
  --line:   #E7E2D6;
  --cream:  #FAF7F0;
  --cream-2:#F4EFE4;
  --white:  #FFFFFF;

  /* Effects */
  --gold-grad: linear-gradient(135deg, #8A6526 0%, #E7CC85 38%, #B88A38 60%, #F1DEA8 82%, #9A7129 100%);
  --shadow-sm: 0 1px 2px rgba(14,42,78,.05), 0 6px 16px -10px rgba(14,42,78,.18);
  --shadow-md: 0 2px 6px rgba(14,42,78,.06), 0 22px 48px -24px rgba(14,42,78,.28);
  --shadow-gold: 0 18px 50px -22px rgba(184,138,56,.55);

  --radius: 16px;
  --radius-sm: 11px;
  --container: 1200px;
  --font-brand:   'Cinzel', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-deep); color: #EAF0F7; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 6.1vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.012em;
}
.h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 4.8vw, 64px); line-height: 1.07; letter-spacing: -0.01em; }
.h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(31px, 3.7vw, 50px); line-height: 1.1; letter-spacing: -0.008em; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(23px, 2vw, 28px); line-height: 1.18; }
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.62; color: var(--muted); }
.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow--center::after { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--plain::before, .eyebrow--plain::after { display: none; }

/* gold metallic text */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* gold divider with center dot (echoes logo underline) */
.gold-rule { display: flex; align-items: center; justify-content: center; gap: 10px; }
.gold-rule span { height: 1px; width: 90px; background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-rule i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: rotate(45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; border-radius: var(--radius-sm); cursor: pointer; border: 1px solid transparent; transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s; white-space: nowrap; }
.btn svg { width: 16px; height: 16px; }
.btn-gold { background: var(--gold-grad); color: #20170A; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -20px rgba(184,138,56,.7); }
.btn-gold:active { transform: translateY(0); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-soft); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(14,42,78,.22); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,138,56,.05); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(231,204,133,.32); }
.btn-ghost:hover { color: #fff; border-color: var(--gold-light); background: rgba(231,204,133,.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 15px; }

.link-gold { color: var(--gold-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s, color .2s; }
.link-gold svg { width: 15px; height: 15px; transition: transform .2s; }
.link-gold:hover { gap: 11px; color: var(--gold); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: rgba(14,42,78,.08); box-shadow: 0 6px 26px -18px rgba(14,42,78,.28); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-emblem { width: 44px; height: 44px; object-fit: contain; flex: none; }
.brand-logo { height: 60px; width: auto; display: block; }
.footer-logo { background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: 0 12px 32px -18px rgba(0,0,0,.55); width: fit-content; }
.footer-logo .brand-logo { height: 88px; }
.brand-name { display: inline-block; line-height: 1; }
.brand-name b { font-family: var(--font-brand); font-weight: 600; font-size: 18.5px; letter-spacing: .05em; white-space: nowrap; }
.brand-name .ini { font-size: 1.26em; }
.brand-name .go { color: var(--gold); }
.brand-name .is { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link { font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; transition: color .2s; }
.nav-link:hover { color: var(--gold-deep); }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .25s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 78px 0 auto 0; z-index: 99; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.mobile-menu.open { max-height: 460px; }
.mobile-menu .container { padding-top: 18px; padding-bottom: 26px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a.m-link { padding: 13px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(120% 130% at 72% 42%, #FFFFFF 0%, #F4EEE1 100%); color: var(--ink); overflow: hidden; padding: 160px 0 110px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: var(--navy); }
.hero .lead { color: var(--muted); max-width: 540px; margin-top: 24px; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-eyebrow { margin-bottom: 24px; }

/* dotted world texture */
.dots-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(231,204,133,.16) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(110% 90% at 70% 20%, #000 0%, transparent 72%);
  mask-image: radial-gradient(110% 90% at 70% 20%, #000 0%, transparent 72%);
  opacity: .9; z-index: 1; pointer-events: none;
}
.hero-glow { display: none; }
.gold-corner { position: absolute; pointer-events: none; z-index: 1; }

/* hero emblem visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-emblem { width: min(480px, 96%); filter: none; position: relative; z-index: 2; animation: floaty 7s ease-in-out infinite; }
.hero .gold-text { background: none; -webkit-text-fill-color: var(--gold-deep); color: var(--gold-deep); }
.hero-ring { position: absolute; inset: 0; margin: auto; width: 108%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(231,204,133,.18); }
.hero-ring.r2 { width: 128%; border-color: rgba(231,204,133,.1); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* hero trust strip */
.hero-trust { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-trust .ht { }
.hero-trust .ht b { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--gold-deep); display: block; line-height: 1; }
.hero-trust .ht span { font-size: 12.5px; color: var(--muted); letter-spacing: .03em; }

/* ---------- Section header ---------- */
.sec-head { max-width: 680px; }
.sec-head.center { margin: 0 auto; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p.lead { margin-top: 20px; }

/* ---------- Trade flow band ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 34px; align-items: stretch; margin-top: 56px; }
.flow-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.flow-card .tag { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.flow-card h3 { margin: 12px 0 8px; }
.flow-card ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.flow-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.flow-card li::before { content: ''; flex: none; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--gold); transform: rotate(45deg); }
.flow-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 0 6px; }
.flow-mid .globe { width: 64px; height: 64px; }
.flow-arrows { display: flex; flex-direction: column; gap: 8px; color: var(--gold); }
.flow-arrows .ar { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s; position: relative; overflow: hidden; }
.card::after { content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold-grad); transition: width .4s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(184,138,56,.3); }
.card:hover::after { width: 100%; }
.card .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, var(--cream), #fff); border: 1px solid var(--line); color: var(--gold-deep); margin-bottom: 20px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--muted); }
.card .num { font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 600; letter-spacing: .08em; }

/* card on navy */
.section--navy .card { background: rgba(255,255,255,.035); border-color: rgba(231,204,133,.16); box-shadow: none; }
.section--navy .card:hover { border-color: rgba(231,204,133,.4); background: rgba(255,255,255,.06); }
.section--navy .card p { color: rgba(226,234,244,.66); }
.section--navy .card .ico { background: rgba(231,204,133,.08); border-color: rgba(231,204,133,.22); color: var(--gold-light); }
.section--navy .h2, .section--navy h3 { color: #fff; }
.section--navy .lead { color: rgba(226,234,244,.74); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 14px; }
.stat b { font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 60px); font-weight: 600; line-height: 1; display: block; }
.stat span { display: block; margin-top: 12px; font-size: 13.5px; letter-spacing: .04em; color: var(--muted); }
.section--navy .stat span { color: rgba(226,234,244,.62); }
.stat .sep { width: 30px; height: 1px; background: var(--gold); margin: 16px auto 0; opacity: .6; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; position: relative; }
.step { padding: 0 18px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 26px; right: -6px; width: 12px; height: 12px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); transform: rotate(45deg); opacity: .5; }
.step .sn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 22px; background: var(--white); }
.section--navy .step .sn { background: transparent; color: var(--gold-light); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.section--navy .step p { color: rgba(226,234,244,.64); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--navy); aspect-ratio: 4/3.4; box-shadow: var(--shadow-md); }
.split-media.emblem-panel { display: grid; place-items: center; background: linear-gradient(160deg, #FFFFFF, #FAF7F0); border: 1px solid var(--line); }
.split-media.emblem-panel img { width: 84%; filter: none; }
.feature-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--gold-pale); color: var(--gold-deep); }
.feature-list .fi svg { width: 16px; height: 16px; }
.feature-list h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.feature-list p { font-size: 14.5px; color: var(--muted); }

/* ---------- Value cards ---------- */
.value { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); }
.value .vk { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold-deep); margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: radial-gradient(135% 130% at 50% -20%, #173A66, var(--navy-deep)); border-radius: 26px; padding: 70px; overflow: hidden; color: #fff; box-shadow: var(--shadow-md); }
.cta-band .gold-corner { opacity: .9; }
.cta-band h2 { color: #fff; max-width: 640px; }
.cta-band .lead { color: rgba(226,234,244,.78); margin: 18px 0 32px; max-width: 560px; }

/* ---------- Industries list ---------- */
.ind-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 26px; align-items: center; padding: 30px 8px; border-top: 1px solid var(--line); transition: background .25s, padding .25s; }
.ind-row:last-child { border-bottom: 1px solid var(--line); }
.ind-row:hover { background: var(--cream); padding-left: 22px; padding-right: 22px; }
.ind-row .ir-num { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 600; }
.ind-row h3 { margin-bottom: 6px; }
.ind-row p { font-size: 15px; color: var(--muted); max-width: 620px; }
.ind-row .ir-go { color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity .25s, transform .25s; }
.ind-row:hover .ir-go { opacity: 1; transform: translateX(0); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.info-card { display: flex; gap: 18px; align-items: center; padding: 18px 6px; border-bottom: 1px solid var(--line); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.info-card:hover { transform: translateX(4px); }
.info-card .ic { flex: none; width: 52px; height: 52px; border-radius: 15px; background: var(--gold-grad); color: #241a0b; display: grid; place-items: center; position: relative; box-shadow: 0 12px 24px -12px rgba(138,101,38,.55), inset 0 1px 1px rgba(255,255,255,.55); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.info-card .ic::after { content: ''; position: absolute; inset: 0; border-radius: 15px; border: 1px solid rgba(255,255,255,.42); pointer-events: none; }
.info-card:hover .ic { transform: scale(1.06) rotate(-2deg); box-shadow: 0 16px 30px -12px rgba(138,101,38,.72), inset 0 1px 1px rgba(255,255,255,.6); }
.info-card .ic svg { width: 21px; height: 21px; }
.info-card > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.info-card small { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.info-card a, .info-card p { display: block; font-size: 17.5px; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.25; letter-spacing: -.01em; word-break: break-word; }
.info-card a { transition: color .2s; }
.info-card a:hover { color: var(--gold-deep); }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .03em; margin-bottom: 8px; color: var(--ink); }
form input, form select, form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,138,56,.12); }
form textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: linear-gradient(180deg, #FFFFFF 0%, #F4EEE1 100%); color: var(--ink); padding: 168px 0 90px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { color: var(--navy); max-width: 820px; }
.page-hero .lead { color: var(--muted); max-width: 620px; margin-top: 22px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 26px; letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(226,234,244,.7); padding: 76px 0 34px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 2; }
.footer .brand-emblem { width: 52px; height: 52px; }
.footer .brand-word { height: 26px; }
.footer .brand-name b { color: #fff; font-size: 22px; }
.footer .brand-name b .go { color: var(--gold-light); }
.footer .brand-name small { color: rgba(226,234,244,.5); }
.footer-blurb { margin-top: 22px; font-size: 14.5px; line-height: 1.7; max-width: 320px; color: rgba(226,234,244,.6); }
.footer h5 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer-contact li { font-size: 14.5px; color: rgba(226,234,244,.66); transition: color .2s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-tagline { font-family: var(--font-brand); letter-spacing: .14em; font-size: 11px; color: var(--gold-light); margin-top: 16px; text-transform: uppercase; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(231,204,133,.14); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; position: relative; z-index: 2; font-size: 13px; color: rgba(226,234,244,.5); }
.footer-watermark { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); font-family: var(--font-brand); font-weight: 700; font-size: clamp(60px, 16vw, 200px); color: rgba(231,204,133,.035); white-space: nowrap; z-index: 1; letter-spacing: .06em; pointer-events: none; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); filter: blur(5px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), filter .7s; }
[data-reveal].in { opacity: 1; transform: none; filter: blur(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-emblem { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--navy); color: #fff; padding: 14px 24px; border-radius: 12px; box-shadow: var(--shadow-md); font-size: 14.5px; z-index: 200; transition: transform .45s cubic-bezier(.16,1,.3,1); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-links, .nav-cta .btn, .nav-cta .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .hero-emblem { width: 240px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 38px 18px; }
  .step::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .flow { grid-template-columns: 1fr; }
  .flow-mid { flex-direction: row; padding: 6px 0; }
  .flow-arrows { flex-direction: row; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-logo { height: 48px; }
  .footer-logo .brand-logo { height: 74px; }
  .section { padding: 76px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .cta-band { padding: 44px 28px; }
  .hero { padding: 138px 0 80px; }
  .hero-trust { gap: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 26px; }
}
