/* ==========================================================================
   INT ENERGY PTE. LTD. — Design System
   Petroleum Storage & Logistics — corporate marketing site
   ========================================================================== */

:root {
  /* Brand colour tokens — primary anchored to client-specified #413686 */
  --navy-950: #2e265f;
  --navy-900: #413686;
  --navy-800: #4e40a0;
  --navy-700: #5f51b9;
  --navy-600: #7a6ec4;
  --steel-500: #64748b;
  --steel-300: #b7c2cc;
  --steel-100: #e7ecf1;
  --paper: #f6f8fa;
  --white: #ffffff;
  --ink-900: #14212b;
  --ink-600: #45535d;
  --amber-700: #a85c10;
  --amber-600: #c96f13;
  --amber-500: #e8871e;
  --amber-400: #f3a445;
  --amber-100: #fdf1e2;
  --success: #1e8e5a;
  --danger: #c0392b;

  /* Semantic tokens */
  --color-bg: var(--paper);
  --color-surface: var(--white);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-600);
  --color-primary: var(--navy-900);
  --color-accent: var(--amber-500);
  --color-border: var(--steel-100);

  --font-heading: "Lexend", "Segoe UI", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(65, 54, 134, 0.08), 0 1px 2px rgba(65, 54, 134, 0.06);
  --shadow-md: 0 8px 24px rgba(65, 54, 134, 0.12);
  --shadow-lg: 0 20px 48px rgba(65, 54, 134, 0.16);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-tight { padding: 56px 0; }

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------- */
/* Eyebrow / kicker / badges                                               */
/* ---------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 14px;
}


.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber-500); color: var(--navy-950); border-color: var(--amber-500); }
.btn-primary:hover { background: var(--amber-400); border-color: var(--amber-400); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-ghost-navy { background: transparent; color: var(--navy-900); border-color: var(--steel-300); }
.btn-ghost-navy:hover { border-color: var(--navy-900); background: var(--steel-100); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; min-height: 38px; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                    */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: transparent;
}
.site-header.is-solid,
.site-header.is-open {
  background: var(--navy-950);
  box-shadow: 0 2px 18px rgba(46, 38, 95, 0.35);
  height: 76px;
}
body.no-hero .site-header { background: var(--navy-950); height: 76px; box-shadow: 0 2px 18px rgba(46, 38, 95, 0.35); }

.nav-wrap {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img.brand-mark { height: 42px; width: auto; flex: none; object-fit: contain; }
.brand-word { font-family: var(--font-heading); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.03em; line-height: 1.15; color: #fff; }
.brand-tag { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-400); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link:focus-visible { background: rgba(255,255,255,0.1); color: #fff; }
.main-nav li.has-dropdown { position: relative; }
.main-nav a.nav-link[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--amber-500);
}
.nav-caret { width: 12px; height: 12px; transition: transform var(--transition); flex: none; }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  font-size: 0.94rem;
  font-weight: 500;
}
.dropdown a small { display: block; font-weight: 400; color: var(--color-text-muted); font-size: 0.78rem; margin-top: 2px; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--steel-100); }

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.site-header.is-open .nav-toggle .icon-open { display: none; }
.site-header.is-open .nav-toggle .icon-close { display: block; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 76px;
    bottom: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 32px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .site-header.is-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
  .main-nav a.nav-link { padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,0.1); border-radius: 0; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,0.04); display: none; margin-bottom: 6px;
  }
  .has-dropdown.is-expanded .dropdown { display: block; }
  .has-dropdown.is-expanded .nav-caret { transform: rotate(180deg); }
  .dropdown a { color: #fff; }
  .dropdown a small { color: var(--steel-300); }
  .dropdown a:hover { background: rgba(255,255,255,0.08); }
  .nav-cta { margin: 18px 8px 0; }
  .nav-cta .btn { width: 100%; }
  .nav-toggle { display: flex; }
}

/* ---------------------------------------------------------------------- */
/* Hero (video) — homepage only, single slide                             */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 38, 95, 0.75) 0%, rgba(46, 38, 95, 0.55) 45%, rgba(46, 38, 95, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  color: #fff;
}
.hero-content .eyebrow { color: var(--amber-400); }
.hero-content h1 { color: #fff; max-width: 820px; }
.hero-lede { color: rgba(255,255,255,0.86); font-size: 1.15rem; max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-controls {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(46,38,95,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-controls button:hover { background: rgba(46,38,95,0.65); }
.hero-controls svg { width: 18px; height: 18px; }
.hero-controls .icon-pause { display: none; }
.hero-controls button[aria-pressed="true"] .icon-play { display: none; }
.hero-controls button[aria-pressed="true"] .icon-pause { display: block; }

.hero-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container-w);
  margin-inline: auto;
}
.hero-stats .stat b { display: block; font-family: var(--font-heading); font-size: 1.7rem; color: #fff; }
.hero-stats .stat span { font-size: 0.86rem; color: rgba(255,255,255,0.72); }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--amber-500); animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

@media (max-width: 980px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .scroll-cue { display: none; }
}
@media (max-width: 640px) {
  .hero-content { padding-bottom: 64px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .hero-controls { bottom: auto; top: calc(var(--header-h) + 12px); }
}

/* ---------------------------------------------------------------------- */
/* Page banner (inner pages) — 40vh with image                            */
/* ---------------------------------------------------------------------- */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-950);
}
.page-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,38,95,0.72) 0%, rgba(46,38,95,0.35) 55%, rgba(46,38,95,0.9) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 0 24px 36px;
  color: #fff;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-banner-content h1 { color: #fff; margin-bottom: 0; }

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

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--navy-900); margin-top: 14px; }
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-900);
  color: var(--amber-400);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.amber { background: var(--amber-100); color: var(--amber-600); }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(65,54,134,0.1) 0%, rgba(46,38,95,0.92) 100%); }
.service-card-body { position: relative; z-index: 1; padding: 30px; color: #fff; }
.service-card-body h3 { color: #fff; }
.service-card-body p { color: rgba(255,255,255,0.82); }

/* ---------------------------------------------------------------------- */
/* Stats / trust strip                                                     */
/* ---------------------------------------------------------------------- */
.trust-strip { background: var(--navy-950); color: #fff; padding: 40px 0; }
.trust-strip .grid { align-items: center; }
.trust-strip .stat { text-align: center; }
.trust-strip .stat b { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: #fff; }
.trust-strip .stat span { font-size: 0.85rem; color: var(--steel-300); }

/* ---------------------------------------------------------------------- */
/* Split sections (image + text)                                          */
/* ---------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

.checklist li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--amber-600); margin-top: 2px; }
.checklist b { display: block; color: var(--navy-900); font-family: var(--font-heading); font-size: 0.98rem; }
.checklist span { color: var(--color-text-muted); font-size: 0.92rem; }

/* ---------------------------------------------------------------------- */
/* CTA banner                                                             */
/* ---------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,135,30,0.28), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 0; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 640px) { .cta-banner { padding: 36px 26px; } }

/* ---------------------------------------------------------------------- */
/* Timeline / process steps                                               */
/* ---------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  color: var(--amber-600); display: block; margin-bottom: 10px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Tables (used in HSE / compliance)                                      */
/* ---------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
table { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
th { font-family: var(--font-heading); background: var(--steel-100); color: var(--navy-900); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
tr:last-child td { border-bottom: none; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; border: 1px solid var(--color-border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--navy-900); margin-bottom: 8px; }
.field .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--steel-300);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(27, 74, 115, 0.14);
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: 0.8rem; color: var(--steel-500); margin-top: 6px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 16px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 24px; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { background: #e9f7ef; color: var(--success); border: 1px solid #bfe6cf; }
.form-status.error { background: #fbeceb; color: var(--danger); border: 1px solid #f2c6c1; }

/* ---------------------------------------------------------------------- */
/* Info tiles (contact page)                                              */
/* ---------------------------------------------------------------------- */
.info-tile { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--color-border); }
.info-tile:last-child { border-bottom: none; }
.info-tile .icon-badge { flex: none; }
.info-tile h3 { margin-bottom: 4px; font-size: 1.02rem; }
.info-tile p { margin-bottom: 0; font-size: 0.92rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------------------------------------------------------------------- */
/* Job listings (careers)                                                 */
/* ---------------------------------------------------------------------- */
.job-list { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-bottom: 1px solid var(--color-border); flex-wrap: wrap; }
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--paper); }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.job-tag { font-size: 0.78rem; font-weight: 600; color: var(--navy-700); background: var(--steel-100); padding: 5px 12px; border-radius: 999px; }
.job-row h3 { margin-bottom: 0; font-size: 1.05rem; }

/* ---------------------------------------------------------------------- */
/* Values pillars / numbered feature rows                                 */
/* ---------------------------------------------------------------------- */
.pillar { display: flex; gap: 20px; }
.pillar .icon-badge { flex: none; }

.bg-navy { background: var(--navy-950); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.78); }
.bg-navy .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.bg-navy .card h3 { color: #fff; }
.bg-navy .card p { color: rgba(255,255,255,0.75); }

.bg-surface-alt { background: #fff; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.78); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img.brand-mark { height: 40px; width: auto; object-fit: contain; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a:hover { color: #fff; }
.footer-address p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 26px 0; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------- */
/* Utilities                                                               */
/* ---------------------------------------------------------------------- */
/* Visible by default — JS only ever hides an element it has confirmed is
   off-screen (see main.js), so content never depends on JS/observers to
   become visible. */
[data-reveal] { transition: opacity 640ms ease, transform 640ms ease; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(18px); }
[data-reveal].reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
