/* ============================================================================
   EnergyPro — corporate site
   Visual language ported from the EnergyPRO Aviation / GreenPact in the Air
   marketing site: dark editorial hero, sky-blue accent over navy/ink,
   Sora + Space Grotesk, sharp corners everywhere, scroll-reveal motion.
   Pure CSS — no build step.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
  --cream: #f5f0e8;
  --navy: #3D5A80;
  --navy-dark: #2c4a6e;
  --ink: #0f172a;
  --sky: #89CFF0;          /* primary accent */
  --teal: #0d9488;
  --coral: #FB5058;        /* secondary warm accent, sampled from the logo flame */
  --paper: #ffffff;
  --paper-blue: #f5f8fc;   /* light editorial band */
  --line: rgba(15, 23, 42, 0.10);
  --muted: #52606d;
  --muted-2: #475569;
  --dark-1: #0b1424;
  --dark-2: #0e1c33;
  --dark-3: #081019;
  --container: 1200px;
  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

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

::selection { background: rgba(137, 207, 240, 0.35); }

/* circular exceptions to the sharp-corner rule */
.dot, .is-round, .browser__dot { border-radius: 50% !important; }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--blue { background: var(--paper-blue); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.display { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.accent { color: var(--sky); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; }
.rule { height: 1px; width: 60px; background: linear-gradient(90deg, var(--sky), transparent); }
.lead { color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-head { max-width: 720px; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.03em;
  padding: 14px 26px; cursor: pointer; border: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.btn .arr { font-size: 15px; line-height: 1; }
.btn--primary { background: var(--sky); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(137, 207, 240, 0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(137, 207, 240, 0.85); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.32); }
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--navy-dark); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
  background: transparent; border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(8, 14, 28, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(137, 207, 240, 0.35);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 26px; width: auto; }
.brand__tag {
  padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px; font-weight: 700; letter-spacing: 0.30em; color: var(--sky); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.5rem); }
.nav__link {
  position: relative; font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72); padding-bottom: 4px;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: #fff; border-bottom-color: var(--sky); }

/* language toggle */
.lang { display: inline-flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.22); }
.lang__btn {
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 7px 11px; background: transparent; color: rgba(255, 255, 255, 0.6); border: none; cursor: pointer;
  transition: background .15s, color .15s;
}
.lang__btn.is-active { background: var(--sky); color: var(--ink); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 11px 18px;
  transition: transform .15s, box-shadow .15s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(137, 207, 240, 0.75); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; display: block; transition: transform .2s, opacity .2s; }
.site-header.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile panel */
.mobile-nav { display: none; flex-direction: column; padding: 0.5rem clamp(1.25rem, 4vw, 3rem) 1.5rem; gap: 4px; }
.site-header.is-open .mobile-nav { display: flex; }
.mobile-nav__link { padding: 12px 0; font-size: 15px; color: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-nav__link.is-active { color: var(--sky); }
.mobile-nav__cta { margin-top: 12px; text-align: center; background: var(--sky); color: var(--ink); font-weight: 700; padding: 13px 20px; }
.mobile-lang { display: flex; gap: 0; margin-top: 14px; align-self: flex-start; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(137, 207, 240, 0.18) 0%, rgba(137, 207, 240, 0) 44%),
    radial-gradient(90% 70% at 10% 92%, rgba(137, 207, 240, 0.10) 0%, rgba(137, 207, 240, 0) 46%),
    linear-gradient(160deg, var(--dark-1) 0%, var(--dark-2) 48%, var(--dark-3) 100%);
}
.hero__backdrop { position: absolute; inset: 0; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  /* keep the network off the headline (left) and bias it to the open right */
  -webkit-mask-image: linear-gradient(102deg, transparent 4%, rgba(0,0,0,0.10) 24%, #000 58%, #000 93%, transparent 100%);
  mask-image: linear-gradient(102deg, transparent 4%, rgba(0,0,0,0.10) 24%, #000 58%, #000 93%, transparent 100%);
}
.hero__glow { position: absolute; width: 620px; height: 620px; border-radius: 50% !important; filter: blur(90px); opacity: 0.5; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 64px; }
.hero__content { max-width: 880px; }
.hero__eyebrow { color: var(--sky); margin-bottom: 26px; }
.hero__title { color: #fff; font-size: clamp(2.9rem, 7.5vw, 6.2rem); margin: 0; }
.hero__sub { color: rgba(255, 255, 255, 0.78); font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.6; max-width: 640px; margin-top: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__foot { margin-top: 46px; font-size: 12px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.45); }
.hero__foot b { color: rgba(255, 255, 255, 0.7); font-weight: 700; }

/* flowing current along the energy trunk-lines */
.eg-flow { animation: ep-flow linear infinite; }
@keyframes ep-flow { to { stroke-dashoffset: -240; } }

/* ── Strip (sectors / standards) ─────────────────────────────────────────── */
.strip { background: var(--dark-1); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; }
.strip__label { color: rgba(255, 255, 255, 0.4); }
.strip__chips { display: flex; flex-wrap: wrap; gap: clamp(0.75rem, 2.4vw, 2rem); }
.chip { color: rgba(255, 255, 255, 0.72); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.4vw, 2.25rem); height: 100%;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -28px rgba(15, 23, 42, 0.4); border-color: rgba(61, 90, 128, 0.55); }
.card__num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy); letter-spacing: 0.1em; }
.card__title { font-size: 21px; margin: 0 0 10px; }
.card__body { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Pillars ─────────────────────────────────────────────────────────────── */
.pillar { display: flex; flex-direction: column; min-height: 100%; }
.pillar__kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pillar__idx { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--sky); }
.pillar__title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 0 0 14px; }
.pillar__body { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin: 0 0 22px; }
.pillar__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: 0.02em; border-bottom: 2px solid var(--sky); padding-bottom: 3px; width: fit-content; transition: gap .15s, color .15s; }
.pillar__link:hover { gap: 12px; color: var(--navy); }

/* ── Browser frame (screen-tool showcase) ────────────────────────────────── */
.browser { background: var(--dark-1); border: 1px solid rgba(15, 23, 42, 0.14); box-shadow: 0 40px 90px -45px rgba(11, 20, 36, 0.7); }
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--dark-2); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.browser__dot { width: 11px; height: 11px; background: rgba(255, 255, 255, 0.22); }
.browser__url { margin-left: 10px; display: inline-flex; align-items: center; gap: 7px; flex: 1; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.62); font-size: 12px; letter-spacing: 0.02em; padding: 6px 12px; }
.browser__url svg { flex: none; opacity: 0.7; }
.browser__shot { width: 100%; display: block; }

/* spotlight split */
.spotlight { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.spotlight__title { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 0; }
.spotlight__sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 18px 0 26px; max-width: 520px; }
.spotlight__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Stats band ──────────────────────────────────────────────────────────── */
.stats { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark-1) 100%); color: #fff; }
.stat__num { font-family: var(--font-display); font-weight: 800; line-height: 1; letter-spacing: -0.02em; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--sky); }
.stat__label { margin-top: 12px; font-size: 13.5px; color: rgba(255, 255, 255, 0.65); line-height: 1.5; }

/* ── People / leadership ─────────────────────────────────────────────────── */
/* The card itself, so the photo can bleed edge-to-edge. Photos are unified in
   grayscale + a consistent square crop because the source headshots are a mix
   of colour and black-and-white. */
.person {
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04); height: 100%;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.person:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -28px rgba(15, 23, 42, 0.4); border-color: rgba(61, 90, 128, 0.55); }
.person__photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 28%;
  display: block; background: #e8edf3; filter: grayscale(1) contrast(1.02);
  transition: transform .4s ease;
}
.person:hover .person__photo { transform: scale(1.04); }
.person__info { padding: 18px clamp(1rem, 1.6vw, 1.4rem) 22px; }
.person__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.person__role { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin-top: 4px; }

/* values line */
.values { color: var(--muted-2); font-size: 14px; letter-spacing: 0.02em; margin-top: 14px; }

/* clickable person card → opens the profile modal */
.person { cursor: pointer; text-align: left; }
.person:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.person__more { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; color: var(--navy); transition: gap .15s ease, color .15s ease; }
.person:hover .person__more, .person:focus-visible .person__more { gap: 10px; color: var(--navy-dark); }

/* ── Person profile modal ─────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8, 14, 28, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .25s ease; }
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1; width: min(880px, 100%); max-height: 88vh; overflow: auto;
  background: var(--paper); border: 1px solid var(--line); box-shadow: 0 40px 100px -30px rgba(8, 14, 28, 0.7);
  opacity: 0; transform: translateY(14px) scale(0.985);
  transition: opacity .28s cubic-bezier(0.16,1,0.3,1), transform .28s cubic-bezier(0.16,1,0.3,1);
}
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__close {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1;
  background: rgba(255, 255, 255, 0.7); color: var(--ink); border: 1px solid var(--line); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.modal__close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.modal__body { display: grid; grid-template-columns: 300px 1fr; }
.modal__photo { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: center 22%; background: #e8edf3; }
.modal__text { padding: clamp(1.6rem, 3vw, 2.6rem); }
.modal__role { color: var(--navy); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.modal__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 8px; letter-spacing: -0.02em; }
.modal__bio { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.75; }
@media (max-width: 680px) {
  .modal__body { grid-template-columns: 1fr; }
  .modal__photo { min-height: 0; aspect-ratio: 3 / 2; max-height: 320px; }
}

/* ── Feature list (tools page) ───────────────────────────────────────────── */
.features { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.feature { display: flex; gap: 12px; align-items: flex-start; }
.feature__tick { color: var(--sky); font-weight: 800; flex: none; line-height: 1.5; }
.feature__text { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* gallery (tools page) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }

/* page hero (compact, for tools.html) */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-2) 55%, var(--dark-3) 100%); }
.page-hero__inner { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 72px; }
.page-hero__eyebrow { color: var(--sky); margin-bottom: 22px; }
.page-hero__title { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin: 0; max-width: 760px; }
.page-hero__sub { color: rgba(255, 255, 255, 0.74); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; max-width: 600px; margin-top: 24px; }

/* ── News & Publications ─────────────────────────────────────────────────── */
/* Card is the whole anchor; thumbnails are branded gradient tiles (the source
   only ever had one real news photo, so a tile per category reads as
   intentional rather than repeating one image across the grid). */
.news-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -28px rgba(15, 23, 42, 0.4); border-color: rgba(61, 90, 128, 0.55); }
.news-card__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--dark-2) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  --news-accent: rgba(137, 207, 240, 0.55);
}
.news-card__media::before {                 /* corner accent glow (varies per card) */
  content: ""; position: absolute; width: 240px; height: 240px; right: -70px; top: -80px;
  background: radial-gradient(circle, var(--news-accent) 0%, transparent 68%); pointer-events: none;
}
.news-card__media::after {                  /* faint diamond dot texture, echoing the hero grid */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(137, 207, 240, 0.16) 1px, transparent 1.4px);
  background-size: 18px 18px; opacity: .55; pointer-events: none;
}
.news-card:nth-child(2) .news-card__media { --news-accent: rgba(251, 80, 88, 0.40); }
.news-card:nth-child(3) .news-card__media { --news-accent: rgba(13, 148, 136, 0.45); }
.news-card:nth-child(4) .news-card__media { --news-accent: rgba(137, 207, 240, 0.50); }
.news-card:nth-child(5) .news-card__media { --news-accent: rgba(251, 80, 88, 0.36); }
.news-card__logo { position: relative; z-index: 1; height: 40px; width: auto; opacity: .92; }
.news-card__tag {
  position: absolute; z-index: 2; left: 0; top: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink); background: var(--sky); padding: 5px 10px 5px 12px;
}
.news-card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.25rem, 2vw, 1.6rem); }
.news-card__date { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.news-card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); margin: 10px 0 0; }
.news-card__more { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); transition: gap .15s ease, color .15s ease; }
.news-card:hover .news-card__more { gap: 10px; color: var(--navy-dark); }

/* ── Article (news detail page) ──────────────────────────────────────────── */
.page-hero__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.72); transition: gap .15s ease, color .15s ease; }
.page-hero__back:hover { gap: 12px; color: var(--sky); }
.article { padding: clamp(3rem, 6vw, 5rem) 0; }
.article__inner { max-width: 760px; margin: 0 auto; }
.article__figure { margin: 0 0 clamp(2rem, 4vw, 3rem); border: 1px solid var(--line); overflow: hidden; }
.article__figure img { width: 100%; display: block; }
.prose { color: var(--muted); font-size: 17px; line-height: 1.8; }
.prose > * + * { margin-top: 1.3em; }
.prose p { margin: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose h2 { font-family: var(--font-display); color: var(--ink); font-size: clamp(1.35rem, 2.4vw, 1.8rem); letter-spacing: -0.01em; margin-top: 1.8em; }
.prose__list { display: flex; flex-direction: column; gap: 10px; }
.prose__list li { position: relative; padding-left: 26px; }
.prose__list li::before { content: "\2192"; position: absolute; left: 0; color: var(--sky); font-weight: 800; }
.prose .tagline { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 18px; letter-spacing: 0.02em; }
.prose .source { margin-top: 2.4em; padding-top: 1.4em; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted-2); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.office { padding: 22px 0; border-top: 1px solid var(--line); }
.office__city { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.office__meta { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.contact__mail { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--ink); border-bottom: 2px solid var(--sky); padding-bottom: 4px; width: fit-content; transition: color .15s; }
.contact__mail:hover { color: var(--navy); }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band { position: relative; background: var(--dark-3); overflow: hidden; text-align: center; }
.cta-band__inner { position: relative; z-index: 1; padding: 6rem 0; }
.cta-band__title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0; }
.cta-band__sub { color: rgba(255, 255, 255, 0.7); font-size: 17px; line-height: 1.6; max-width: 540px; margin: 20px auto 0; }
.cta-band__cta { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--dark-1); color: rgba(255, 255, 255, 0.7); }
.footer__inner { padding: 4rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 1fr)); gap: 2.5rem; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand img { height: 24px; width: auto; }
.footer__tag { padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, 0.2); font-size: 10px; font-weight: 700; letter-spacing: 0.3em; color: var(--sky); }
.footer__blurb { font-size: 13.5px; line-height: 1.7; max-width: 320px; color: rgba(255, 255, 255, 0.6); }
.footer__col-title { color: rgba(255, 255, 255, 0.4); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: rgba(255, 255, 255, 0.68); font-size: 13.5px; transition: color .15s; }
.footer__links a:hover { color: var(--sky); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.footer__partners { display: flex; flex-wrap: wrap; gap: 18px; }

/* ── Motion: hero load rise + scroll reveal ──────────────────────────────── */
@keyframes ep-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.rise { opacity: 0; animation: ep-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Reveal is gated behind .js (added in <head>) so content is always visible
   if JavaScript is disabled or fails — it only hides when JS can reveal it. */
.reveal { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .spotlight { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .rise { opacity: 1 !important; }
}
