/* ============ DESIGN TOKENS ============ */
:root {
  --navy-900: #061530;
  --navy-800: #0A2547;
  --navy-700: #123563;
  --navy-600: #1E4B8E;
  --navy-500: #3B6CB1;
  --gold-500: #B8955A;
  --gold-400: #C8A876;
  --gold-300: #DCC49A;
  --ink: #0E1A2B;
  --ink-2: #2A3A55;
  --muted: #5E6B82;
  --line: #E4E8EF;
  --line-2: #F0F3F8;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FB;
  --bg-cream: #FAF7F1;
  --success: #1F7A54;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --shadow-sm: 0 1px 2px rgba(6, 21, 48, 0.06), 0 1px 3px rgba(6, 21, 48, 0.05);
  --shadow-md: 0 8px 24px rgba(6, 21, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(6, 21, 48, 0.12);

  --font-serif: "Fraunces", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; color: var(--navy-900); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}
.brand-text em {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold-500);
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav a:hover { color: var(--navy-800); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .3s var(--ease);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--navy-900); }
.nav-cta {
  padding: 10px 20px;
  background: var(--navy-800);
  color: #fff !important;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--navy-700); transform: translateY(-1px); }
.nav-cta::after { display: none; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--navy-800);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, #F7F8FB 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30, 75, 142, 0.08), transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 90, 0.06), transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 71, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding: 8px 16px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 999px;
  background: rgba(184, 149, 90, 0.05);
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-top: 28px;
  color: var(--navy-900);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
}
.hero-lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  color: var(--navy-800);
  border: 1px solid var(--line);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--navy-800); }
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats > div dt {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.hero-stats > div dd {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0A2547 0%, #1E4B8E 100%);
  box-shadow: 0 40px 80px rgba(10, 37, 71, 0.25);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 149, 90, 0.15), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  position: relative;
  z-index: 0;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-800);
  box-shadow: var(--shadow-md);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 122, 84, 0.15);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 122, 84, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(31, 122, 84, 0.05); }
}

/* ============ TRUST ============ */
.trust {
  padding: 32px 0;
  background: var(--navy-900);
  color: #fff;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  flex-shrink: 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}
.trust-items > div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
}
.trust-items strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.trust-items span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
}
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(180deg, #061530 0%, #0A2547 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(30, 75, 142, 0.4), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(184, 149, 90, 0.15), transparent 50%);
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 2; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.light .section-tag { color: var(--gold-400); }
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.col-text .lead {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
  margin-top: 20px;
  font-weight: 400;
}
.col-text p {
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 560px;
}
.pillars {
  list-style: none;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pillars li {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-500);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 32px;
}
.pillars h4 { font-size: 18px; margin-bottom: 6px; }
.pillars p { font-size: 15px; color: var(--muted); margin: 0; }

.col-media { position: sticky; top: 100px; }
.stacked-media { display: flex; flex-direction: column; gap: 24px; }
.stacked-media .media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0A2547 0%, #1E4B8E 60%, #123563 100%);
  padding: 40px;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stacked-media .media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 149, 90, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(30, 75, 142, 0.4), transparent 55%);
  pointer-events: none;
}
.stacked-media .media-frame::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 149, 90, 0.25);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.stacked-media .media-frame img {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
}
.stacked-media .media-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.stacked-media .media-caption span:last-child { color: var(--gold-400); }
.quote-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.quote-card p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--navy-800);
}
.quote-card span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============ PRODUCTS ============ */
.product-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-category-label:first-child { margin-top: 0; }
.product-category-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: 0.3;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.products-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(184, 149, 90, 0.08), transparent 70%);
  pointer-events: none;
}
.product-card:hover {
  border-color: var(--navy-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card.featured { background: var(--navy-900); color: #fff; border-color: transparent; }
.product-card.featured::before {
  background: radial-gradient(circle at top right, rgba(184, 149, 90, 0.2), transparent 70%);
}
.product-card.featured h3 { color: #fff; }
.product-card.featured p { color: rgba(255,255,255,0.75); }
.product-card.featured:hover { transform: translateY(-4px); border-color: var(--gold-500); }
.product-card.wide {
  grid-column: 1 / -1;
  background: var(--bg-cream);
  border-color: rgba(184, 149, 90, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.product-card.wide::after {
  content: "";
  position: absolute;
  top: 20px; right: 20px;
  width: 180px; height: 180px;
  background:
    radial-gradient(circle at center, rgba(184, 149, 90, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.product-card.wide .wide-body { position: relative; z-index: 1; }
.product-card.wide .wide-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card.wide .wide-visual svg { width: 100%; height: 100%; opacity: 0.85; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--gold-500);
  color: #fff;
  margin-bottom: 20px;
}
.tag-second { background: transparent; color: var(--navy-700); border: 1px solid var(--navy-500); }
.product-card h3 { font-size: 22px; margin-bottom: 12px; }
.product-card p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.spec {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 8px;
}
.spec.spec-wide { grid-template-columns: repeat(2, 1fr); column-gap: 40px; row-gap: 14px; }
.spec > div { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.spec.spec-wide > div { padding: 6px 0; border-bottom: 1px dotted rgba(184, 149, 90, 0.3); }
.spec dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec dd {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy-800);
  font-weight: 500;
  text-align: right;
}
.product-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.15);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.product-card:not(.featured) .product-meta {
  border-top-color: var(--line);
  color: var(--gold-500);
}

/* ============ FACILITY ============ */
.facility-split {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 520px;
}
.facility-split .facility-image {
  position: relative;
  overflow: hidden;
}
.facility-split .facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.facility-split:hover .facility-image img { transform: scale(1.04); }
.facility-split .facility-image figcaption {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(6, 21, 48, 0.9);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}
.facility-split .facility-steps {
  background: var(--navy-900);
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.facility-split .facility-steps::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 149, 90, 0.15), transparent 60%);
  pointer-events: none;
}
.facility-split .facility-steps-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
  position: relative;
}
.facility-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.facility-step:first-of-type { border-top: none; padding-top: 0; }
.facility-step-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold-400);
  font-weight: 500;
  padding-top: 2px;
}
.facility-step h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.facility-step p {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  line-height: 1.5;
}

.facility-building {
  margin-top: 40px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: calc(1240px - clamp(40px, 8vw, 80px));
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-lg);
}
.facility-building img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.facility-building figcaption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(6, 21, 48, 0.9);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ============ MARKET ============ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.market-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.market-card:hover {
  border-color: rgba(184, 149, 90, 0.5);
  background: rgba(255,255,255,0.06);
}
.market-index {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-400);
  letter-spacing: 0.2em;
  font-weight: 600;
}
.market-card h4 {
  font-size: 16px;
  margin: 12px 0 20px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-weight: 500;
}
.market-figure {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.market-figure span {
  font-size: 14px;
  color: var(--gold-400);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.market-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.market-card p strong { color: #fff; font-weight: 500; }
.market-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  max-width: 700px;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2942 0%, #0A2547 100%);
  position: relative;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 37, 71, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.team-card:hover .team-photo::after { opacity: 0.6; }
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.team-card h3 { font-size: 22px; margin-bottom: 10px; }
.team-cred {
  font-size: 14px;
  color: var(--ink-2);
  font-style: italic;
}
.team-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.team-tags li {
  font-size: 11.5px;
  padding: 5px 10px;
  background: var(--bg-soft);
  border-radius: 4px;
  color: var(--ink-2);
  font-weight: 500;
}
.team-note {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============ CONTACT ============ */
.section-contact {
  background: linear-gradient(180deg, #FAF7F1 0%, #FFFFFF 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .lead {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 520px;
}
.mail-cta {
  margin-top: 36px;
  display: inline-flex;
  flex-direction: column;
  padding: 24px 32px;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  transition: background .3s var(--ease), transform .3s var(--ease);
  box-shadow: var(--shadow-md);
}
.mail-cta:hover { background: var(--navy-800); transform: translateY(-2px); }
.mail-cta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.mail-cta strong {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-top: 6px;
}
.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-card h4 {
  font-size: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.contact-card dl { display: flex; flex-direction: column; gap: 20px; }
.contact-card dl > div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; }
.contact-card dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.contact-card dd a { color: var(--navy-700); }
.contact-card dd a:hover { color: var(--gold-500); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-size: 16px; letter-spacing: 0.02em; }
.footer-brand span { font-size: 13px; margin-top: 4px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-cols a, .footer-cols p {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .col-media { position: static; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .facility-split { grid-template-columns: 1fr; min-height: auto; }
  .facility-split .facility-image img { aspect-ratio: 16 / 9; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-card.wide { grid-template-columns: 1fr; }
  .product-card.wide .wide-visual { display: none; }
}
@media (max-width: 780px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header.menu-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero-visual { max-width: 320px; }
  .hero-image { aspect-ratio: 4 / 3.5; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; padding-top: 24px; }
  .hero-stats > div dt { font-size: 24px; }
  .products-grid, .products-grid.grid-3 { grid-template-columns: 1fr; }
  .spec.spec-wide { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-inner { gap: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .facility-building img { aspect-ratio: 4 / 3; }
  .facility-split .facility-steps { padding: 32px 24px; }
  .contact-card dl > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

::selection { background: var(--navy-800); color: #fff; }
