/* ==========================================================================
   Indus Corporations — Global General Trading
   Design system + components
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #060d1a;
  --navy-800: #0a1628;
  --navy-700: #101f36;
  --navy-600: #16294a;
  --navy-500: #1f3862;

  --amber-500: #e0a33c;
  --amber-400: #eeb95c;
  --amber-300: #f6d190;

  --steel-100: #eef2f7;
  --steel-200: #dde4ee;
  --steel-300: #c2ccdb;
  --steel-500: #7c8ba3;
  --steel-700: #46536a;

  --white: #ffffff;
  --ink: #0d1626;
  --body: #4a586e;

  /* Type */
  --font-display: "Barlow Condensed", "Oswald", Impact, "Haettenschweiler", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: 24px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(13, 22, 38, .06), 0 2px 8px rgba(13, 22, 38, .05);
  --shadow-md: 0 4px 12px rgba(13, 22, 38, .08), 0 12px 32px rgba(13, 22, 38, .08);
  --shadow-lg: 0 18px 50px rgba(13, 22, 38, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; letter-spacing: .01em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--amber-500); color: var(--navy-900); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--dark { background: var(--navy-800); color: var(--steel-300); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--steel-100); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }
.center .measure, .center .measure-narrow { margin-left: auto; margin-right: auto; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber-500);
}
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.lede { font-size: 1.125rem; color: var(--body); }
.section--dark .lede { color: var(--steel-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--amber-500); color: var(--navy-900); border-color: var(--amber-500); }
.btn--primary:hover { background: var(--amber-400); border-color: var(--amber-400); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224, 163, 60, .3); }

.btn--outline { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }

.btn--dark { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn--dark:hover { background: var(--navy-600); border-color: var(--navy-600); transform: translateY(-2px); }

.btn--ghost { color: var(--navy-800); border-color: var(--steel-300); }
.btn--ghost:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--steel-200);
  box-shadow: var(--shadow-sm);
}
.site-header.is-solid .nav__link,
.site-header.is-solid .header-contact { color: var(--navy-800); }
.site-header.is-solid .logo__name { color: var(--navy-800); }
.site-header.is-solid .logo__tag { color: var(--steel-500); }
.site-header.is-solid .nav-toggle span { background: var(--navy-800); }
.site-header.is-solid .btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.site-header.is-solid .btn--outline:hover { background: var(--navy-800); color: var(--white); }

/* Inner pages always get the solid treatment */
.site-header--inverse { position: sticky; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--font-display);
  white-space: nowrap;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.logo__tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-500);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  position: relative;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--amber-500); }
.site-header.is-solid .nav__link.is-active { color: var(--amber-500); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-contact {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-contact svg { width: 15px; height: 15px; color: var(--amber-500); }
.header-contact:hover { color: var(--amber-500); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1200px) {
  .header-contact { display: none; }
  .nav { gap: 22px; }
}
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .site-header__inner { height: 72px; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 28px;
    background: var(--navy-800);
    border-top: 1px solid var(--navy-600);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link {
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .95rem;
  }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 18px; }
  .site-header.is-solid .nav__link { color: var(--white); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(224, 163, 60, .16), transparent 62%),
    radial-gradient(900px 700px at 8% 92%, rgba(31, 56, 98, .85), transparent 60%),
    linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 48%, var(--navy-700) 100%);
  color: var(--steel-300);
  overflow: hidden;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero__globe {
  position: absolute;
  right: -140px; top: 50%;
  transform: translateY(-50%);
  width: min(760px, 68vw);
  opacity: .5;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--amber-500); }
.hero__lede {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(238, 242, 247, .82);
  max-width: 60ch;
  margin-bottom: 34px;
}
.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: clamp(48px, 7vw, 84px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat__num span { color: var(--amber-500); }
.stat__label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-top: 8px;
}
@media (max-width: 760px) {
  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero__globe { opacity: .22; right: -220px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 8px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(96px, 12vw, 148px) 0 clamp(56px, 7vw, 84px);
  background:
    radial-gradient(900px 480px at 82% 0%, rgba(224, 163, 60, .14), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: var(--steel-300);
  overflow: hidden;
}
.page-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(238, 242, 247, .8); font-size: 1.1rem; max-width: 60ch; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--amber-500); }
.breadcrumb span { color: var(--steel-700); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--steel-300); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .96rem; }

.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--amber-500);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }

/* Sector cards (products) */
.sector {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sector:hover .sector__bar { width: 100%; }
.sector__bar {
  position: absolute; top: 0; left: 0;
  height: 3px; width: 44px;
  background: var(--amber-500);
  transition: width .4s var(--ease);
}
.sector__body { padding: 34px 30px; display: flex; flex-direction: column; flex: 1; }
.sector__num {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .18em;
  color: var(--steel-300);
  margin-bottom: 16px;
}
.sector h3 { margin-bottom: 12px; }
.sector p { font-size: .95rem; margin-bottom: 20px; }
.sector__list { margin-top: auto; border-top: 1px solid var(--steel-200); padding-top: 18px; }
.sector__list li {
  position: relative;
  padding-left: 20px;
  font-size: .88rem;
  color: var(--steel-700);
  margin-bottom: 7px;
}
.sector__list li:last-child { margin-bottom: 0; }
.sector__list li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 7px; height: 2px;
  background: var(--amber-500);
}

/* Feature row */
.feature-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.feature-row--flip .feature-row__media { order: -1; }
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr !important; }
  .feature-row--flip .feature-row__media { order: 0; }
}

.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: .98rem;
}
.checklist li:last-child { margin-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(224, 163, 60, .16);
}
.checklist li::after {
  content: "";
  position: absolute; left: 6.5px; top: 9px;
  width: 7px; height: 3.5px;
  border-left: 2px solid var(--amber-500);
  border-bottom: 2px solid var(--amber-500);
  transform: rotate(-45deg);
}
.checklist strong { color: var(--ink); display: block; font-weight: 600; }
.section--dark .checklist strong { color: var(--white); }

/* Stat panel */
.stat-panel {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  color: var(--steel-300);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 28px;
}
.stat-panel .stat__label { color: rgba(238, 242, 247, .6); }

/* Process steps */
.step { position: relative; padding-top: 30px; }
.step::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--steel-200);
}
.step::after {
  content: "";
  position: absolute; top: -4px; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber-500);
}
.step__num {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  color: var(--amber-500);
  margin-bottom: 10px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: .92rem; }
.section--dark .step::before { background: rgba(255, 255, 255, .14); }

/* Logo/marquee strip */
.strip {
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
  padding: 28px 0;
  background: var(--white);
}
.strip__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--steel-500);
  text-align: center;
  margin-bottom: 20px;
}
.strip__items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 40px;
}
.strip__items li {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--steel-500);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--navy-900), var(--navy-600) 70%, var(--navy-500));
  color: var(--steel-300);
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 163, 60, .22), transparent 70%);
}
.cta-band__inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { max-width: 52ch; margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.field label .req { color: var(--amber-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--steel-200);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c8ba3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(224, 163, 60, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel-300); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--steel-500); margin-top: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* Contact detail blocks */
.contact-item { display: flex; gap: 16px; margin-bottom: 30px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: rgba(224, 163, 60, .12);
  color: var(--amber-500);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item h4 { margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .96rem; color: var(--body); }
.contact-item a:hover { color: var(--amber-500); }
.section--dark .contact-item p, .section--dark .contact-item a { color: var(--steel-300); }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--steel-200); }
.accordion__item { border-bottom: 1px solid var(--steel-200); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  background: none; border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600; text-transform: uppercase;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.accordion__trigger:hover { color: var(--amber-500); }
.accordion__icon { flex: none; width: 20px; height: 20px; position: relative; }
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px; background: var(--amber-500);
  transform: translateY(-50%);
  transition: transform .3s var(--ease);
}
.accordion__icon::after { transform: translateY(-50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: translateY(-50%) rotate(0); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion__panel > div { padding: 0 0 24px; font-size: .97rem; max-width: 72ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--steel-500); padding: clamp(56px, 7vw, 84px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px 32px;
  padding-bottom: 52px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: .8rem; letter-spacing: .16em;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .93rem; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--amber-500); }
.footer-about p { font-size: .93rem; margin: 20px 0 0; max-width: 40ch; }
.footer-contact li { font-size: .93rem; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--amber-500); }
.footer-contact a:hover { color: var(--amber-500); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: .84rem;
}
.footer-bottom a:hover { color: var(--amber-500); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.skip-link {
  position: absolute; left: -9999px;
  z-index: 999; padding: 12px 20px;
  background: var(--amber-500); color: var(--navy-900);
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 3px; }

/* ---------- Anchor offset for fixed header ---------- */
[id] { scroll-margin-top: 104px; }
@media (max-width: 1080px) { [id] { scroll-margin-top: 88px; } }

/* Jump links inside the strip */
.strip__items a { transition: color .2s var(--ease); }
.strip__items a:hover { color: var(--amber-500); }
