/* =========================================================================
   PT. SETIA GUNA SEJATI — Design System
   Palette diturunkan langsung dari identitas brand SGS (biru logo + aksen
   emas dari company profile), dipasangkan dengan tipografi condensed untuk
   kesan presisi industrial/manufaktur otomotif.
   ========================================================================= */

:root {
  /* Brand colors */
  --navy: #0a1854;
  --navy-800: #0e2266;
  --blue: #0057e0;
  --blue-dark: #003fb0;
  --blue-light: #4d8bff;
  --gold: #c99a2e;
  --gold-light: #e8bf5a;

  /* Neutrals */
  --ink: #11151f;
  --steel-900: #1b2130;
  --steel-700: #444d5e;
  --steel-500: #6c7688;
  --steel-300: #aab2c0;
  --steel-200: #e4e8ef;
  --steel-100: #eef1f6;
  --bg: #f5f7fb;
  --white: #ffffff;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Layout */
  --container: 1220px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(10, 24, 84, 0.08), 0 1px 2px rgba(10, 24, 84, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 24, 84, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 24, 84, 0.18);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.08; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--steel-100); }
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .eyebrow::before { background: var(--gold-light); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: 10px;
  color: var(--navy);
}
.section--navy .section-head h2 { color: #fff; }
.section-head p { color: var(--steel-700); font-size: 17px; margin-top: 14px; }
.section--navy .section-head p { color: var(--steel-300); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--outline-dark { border-color: var(--navy); color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: #fff; }

/* Diagonal section divider — echo dari garis potong diagonal di brosur asli */
.diagonal-top {
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  margin-top: -32px;
}
.diagonal-bottom-cut { position: relative; }
.diagonal-bottom-cut::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

/* Rivet card — sudut dengan aksen "keling" mengacu ke proses stamping/metal SGS */
.rivet-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rivet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.rivet-card::before,
.rivet-card::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-300);
}
.rivet-card::before { left: 10px; }
.rivet-card::after { right: 10px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(10, 24, 84, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
  padding: 10px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.brand-text span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.86;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-color: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn span.show-mobile-only { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 100px 36px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .nav-cta .btn span.hide-mobile { display: none; }
  .nav-cta .btn span.show-mobile-only { display: inline; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,24,84,0.55) 0%, rgba(10,24,84,0.35) 35%, rgba(8,16,50,0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 96px;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold-light); }
.hero h1 {
  font-size: clamp(38px, 6.2vw, 76px);
  text-transform: uppercase;
  max-width: 900px;
  letter-spacing: 0.005em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 19px;
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255,255,255,0.86);
}
.hero__actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.stat-strip {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip__item {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-light);
  font-weight: 600;
}
.stat-strip__label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item:nth-child(2) { border-right: none; }
}

/* ---------- Marquee: member of group / partners ---------- */
.member-strip {
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
  padding: 26px 0;
}
.member-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  text-align: center;
  margin-bottom: 16px;
}
.member-strip__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 46px;
}
.member-strip__grid span {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--steel-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }

.value-card h3 {
  font-size: 21px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.value-card p { color: var(--steel-700); font-size: 15px; margin: 0; }

/* Process step chips (home) */
.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 940px) { .process-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .process-strip { grid-template-columns: repeat(2, 1fr); } }
.process-chip {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.process-chip img { width: 100%; height: 100%; object-fit: cover; }
.process-chip__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(10,24,84,0.92), rgba(10,24,84,0));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Timeline (Sejarah & Roadmap) ---------- */
.timeline {
  position: relative;
  padding-left: 26px;
  border-left: 3px solid var(--steel-200);
}
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -35.5px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--blue);
}
.timeline__item.is-future::before { background: var(--gold); box-shadow: 0 0 0 3px var(--gold); }
.timeline__year {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--blue);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.timeline__item.is-future .timeline__year { color: var(--gold); }
.timeline__title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 4px 0 6px;
}
.timeline__desc { color: var(--steel-700); font-size: 15px; max-width: 620px; }

.roadmap-years {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 8px;
  margin: 30px 0 44px;
  scrollbar-width: thin;
}
.roadmap-years__chip {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-light);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  border-radius: 0;
}

.roadmap-pillar {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  margin-bottom: 20px;
}
.roadmap-pillar__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.roadmap-pillar__head h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--navy);
}
.roadmap-pillar__head span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 8px 14px;
  background: var(--steel-100);
  color: var(--steel-700);
  border: 1px solid var(--steel-200);
}
.tag--wide { flex-basis: 100%; }

/* ---------- Facilities gallery ---------- */
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
}
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-card__cap {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.photo-card__cap strong {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.photo-card__cap span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-500);
}

.plant-card {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.plant-card__img { aspect-ratio: 16/9; overflow: hidden; }
.plant-card__img img { width: 100%; height: 100%; object-fit: cover; }
.plant-card__body { padding: 22px 24px 26px; }
.plant-card__body h3 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plant-card__body h3 small {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 9px;
  font-weight: 700;
}
.plant-card__meta {
  display: flex;
  gap: 18px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}
.plant-card__meta div { font-size: 13px; color: var(--steel-500); }
.plant-card__meta strong { display: block; font-family: var(--font-mono); font-size: 16px; color: var(--navy); }
.plant-card__body ul { display: flex; flex-direction: column; gap: 6px; }
.plant-card__body ul li {
  font-size: 14px;
  color: var(--steel-700);
  padding-left: 18px;
  position: relative;
}
.plant-card__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 2px;
  background: var(--gold);
}

/* ---------- Products (tabs) ---------- */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--steel-200);
}
.tab-btn {
  background: none;
  border: none;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--steel-500);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.is-active { color: var(--navy); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.product-figure {
  border: 1px solid var(--steel-200);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.product-figure img { width: 100%; }
.product-figure figcaption {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--steel-500);
  border-top: 1px solid var(--steel-200);
}
.process-note {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}

/* ---------- Customers ---------- */
.customer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 860px) { .customer-columns { grid-template-columns: 1fr; } }
.customer-block {
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.customer-block h3 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--steel-200);
}
.customer-block h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 18px 0 10px;
}
.customer-block ol { counter-reset: item; display: flex; flex-direction: column; gap: 8px; }
.customer-block ol li {
  counter-increment: item;
  font-size: 14.5px;
  color: var(--steel-700);
  padding-left: 30px;
  position: relative;
}
.customer-block ol li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  width: 20px; height: 20px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.chart-card {
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.chart-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.chart-card p.chart-sub { color: var(--steel-500); font-size: 13px; margin-bottom: 22px; }
.chart-wrap { position: relative; max-width: 360px; margin: 0 auto; }
.chart-legend { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.chart-legend__row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--steel-700); }
.chart-legend__swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.chart-legend__row strong { margin-left: auto; font-family: var(--font-mono); color: var(--navy); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-card h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 22px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.contact-row:first-of-type { border-top: none; }
.contact-row .ic {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 18px; height: 18px; }
.contact-row div p { margin: 0; color: rgba(255,255,255,0.85); font-size: 14.5px; }
.contact-row div span.label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel-200);
  height: 260px;
  margin-top: 26px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-500);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--steel-200);
  background: var(--steel-100);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.field { margin-bottom: 18px; }
.form-alert {
  background: #e9f7ec;
  border: 1px solid #a9dcb5;
  color: #1c6b32;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 22px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-900); color: rgba(255,255,255,0.78); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand strong { font-family: var(--font-display); font-size: 19px; color: #fff; text-transform: uppercase; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
  color: #fff;
}
.error-page .code {
  font-family: var(--font-mono);
  font-size: 100px;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.error-page h1 { font-size: 32px; text-transform: uppercase; margin: 18px 0 10px; }
.error-page p { color: rgba(255,255,255,0.75); margin-bottom: 26px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 12, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
}
[data-lightbox] { cursor: zoom-in; }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero {
  padding: 168px 0 60px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,154,46,0.28), transparent 70%);
}
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 14px; }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); text-transform: uppercase; max-width: 760px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; margin-top: 16px; font-size: 16.5px; }
