/* ─────────────────────────────────────────────────────────
   CEKAP INTERMERGER · v3
   Editorial-corporate hybrid · serif italic emphasis on
   sans display · bento layouts · magazine spreads
   ───────────────────────────────────────────────────────── */

:root {
  /* on-brand palette — only white + navy + red */
  --navy-900: #050d1f;
  --navy-800: #081632;
  --navy-700: #0e2148;          /* primary navy from logo */
  --navy-600: #16315e;
  --navy-500: #2a4a7c;

  --red:      #c2191f;          /* logo red */
  --red-600:  #a31419;
  --red-dim:  #82110f;

  --white:    #ffffff;
  --soft:     #f4f7fc;          /* subtle navy-tinted off-white for alt sections */
  --line:     #e1e6ee;
  --line-2:   #c8d1df;
  --ink:      #0a1326;
  --ink-2:    #2b3954;
  --muted:    #5b6a83;
  --muted-2:  #8a96ab;

  --display:  "Manrope", system-ui, sans-serif;
  --italic:   "Plus Jakarta Sans", system-ui, sans-serif;
  --body:     "Plus Jakarta Sans", system-ui, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1320px;
  --pad:  clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a, button { color: inherit; text-decoration: none; background: none; border: 0; font: inherit; cursor: pointer; }
em { font-style: normal; font-weight: 600; letter-spacing: 0.002em; }
sub { font-size: 0.5em; vertical-align: super; color: var(--red); font-weight: 600; margin-left: 0.05em; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ── scroll progress bar ─────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--red);
  z-index: 1000; pointer-events: none;
  transition: width 0.15s linear;
}

/* ── shared bits ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.eyebrow.light { color: #ff8d91; }
.ey-mk {
  display: inline-block;
  width: 1.6rem; height: 1.5px;
  background: var(--red);
}
.eyebrow.light .ey-mk { background: #ff8d91; }

.dsp {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--navy-700);
}
.dsp.small { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.dsp.light { color: var(--white); }
.dsp em {
  font-family: var(--display);
  
  font-weight: 500;
  color: var(--red);
}

.section { padding: clamp(5rem, 9vw, 8rem) 0; position: relative; }
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 880px) { .section-row { grid-template-columns: 1fr; } }
.section-lede {
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
  padding-bottom: 0.4rem;
}

/* ── buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.005em;
  transition: all 0.35s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 6px 20px rgba(14,33,72,0.25);
}
.btn-primary:hover { background: var(--red); border-color: var(--red); box-shadow: 0 10px 30px rgba(194,25,31,0.35); transform: translateY(-2px); }
.btn-link {
  color: var(--ink);
  padding: 1rem 0.2rem;
  position: relative;
}
.btn-link::after {
  content: ""; position: absolute; left: 0.2rem; right: 0.2rem; bottom: 0.65rem;
  height: 1.5px; background: var(--ink);
  transform-origin: left; transition: transform 0.35s var(--ease);
}
.btn-link:hover { color: var(--red); }
.btn-link:hover::after { background: var(--red); transform: scaleX(1.05); }

.btn-text {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.65rem 1.1rem 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--navy-700);
  background: transparent;
  color: var(--navy-700);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.005em;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  align-self: end;
  justify-self: end;             /* don't stretch inside a grid cell */
  width: fit-content;             /* shrink to content */
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn-text svg {
  width: 14px; height: 14px;
  padding: 0;
  transition: transform 0.35s var(--ease);
}
.btn-text:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 8px 22px rgba(14, 33, 72, 0.22);
}
.btn-text:hover svg { transform: translateX(3px); }
.btn-text.large { font-size: 0.9rem; padding: 0.75rem 1.4rem 0.75rem 1.6rem; }

/* ─────────────────────────────────────────────────────────
   UTILITY BAR
   ───────────────────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  font-size: 0.74rem;
}
.utility-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.6rem var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.util-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  letter-spacing: 0.04em;
}
.util-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(194,25,31,0.22);
  animation: livepulse 2s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(194,25,31,0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(194,25,31,0.06); }
}
.utility-right { display: flex; align-items: center; gap: 0.9rem; }
.util-link { transition: color 0.2s var(--ease); }
.util-link:hover { color: var(--white); }
.utility-right .divider { opacity: 0.35; }
.utility-right .divider.thin { opacity: 0.5; }
.lang { letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.lang.active { color: var(--white); }
@media (max-width: 700px) {
  .util-tag { font-size: 0.7rem; }
  .utility-right { gap: 0.5rem; }
  .util-link:not(.lang) { display: none; }
}

/* ─────────────────────────────────────────────────────────
   MAIN NAVIGATION
   ───────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 6px 24px rgba(14,33,72,0.06);
  background: rgba(255,255,255,0.96);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { flex-shrink: 0; }
.brand img {
  height: 54px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}
.brand:hover img { transform: scale(1.04); }
@media (max-width: 600px) {
  .brand img { height: 42px; }
}

.menu {
  display: flex; align-items: center; gap: clamp(0.4rem, 1.4vw, 1.2rem);
  margin-left: 2rem; flex: 1;
}
.menu > a, .has-sub > a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: color 0.25s var(--ease);
}
.menu > a::before, .has-sub > a::before {
  content: ""; position: absolute; left: 0; bottom: -0.1rem;
  height: 1.5px; width: 0; background: var(--red);
  transition: width 0.35s var(--ease);
}
.menu > a:hover, .has-sub > a:hover { color: var(--navy-700); }
.menu > a:hover::before, .has-sub > a:hover::before { width: 100%; }
.menu > a.active { color: var(--navy-700); font-weight: 600; }
.menu > a.active::before { width: 100%; background: var(--red); }

.has-sub { position: relative; }
.has-sub .sub {
  position: absolute; top: calc(100% + 0.6rem); left: -1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem;
  min-width: 290px;
  box-shadow: 0 20px 50px rgba(14,33,72,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-sub .sub a {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-2);
  border-radius: 4px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.has-sub .sub a:hover { background: rgba(14,33,72,0.04); color: var(--navy-700); }
.sub-no {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.08em;
  min-width: 1.5rem;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.75rem 1.3rem;
  background: var(--navy-700);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red); }
.cta-arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.nav-cta:hover .cta-arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-700);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white);
    margin: 0;
    padding: 1rem var(--pad) 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu > a, .has-sub > a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .has-sub .sub {
    position: static; box-shadow: none; border: none;
    padding: 0 0 0 1rem; min-width: 0;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .has-sub.open .sub { display: block; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ─────────────────────────────────────────────────────────
   HERO  · clean, white background, two-column
   ───────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 92% 8%, rgba(194,25,31,0.06), transparent 70%),
    radial-gradient(ellipse 60% 60% at 8% 95%, rgba(14,33,72,0.05), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

/* hero copy */
.hero-copy { padding-top: 0.5rem; }
.kicker {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.6rem;
}
.kicker-line {
  display: inline-block;
  width: 1.8rem; height: 1.5px;
  background: var(--red);
}
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy-700);
  margin-bottom: 1.6rem;
  max-width: 17ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}
.hero-title em {
  
  font-weight: 500;
  color: var(--red);
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

/* trusted-by client strip */
.hero-trusted {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  max-width: 56ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}
.ht-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.9rem;
}
.ht-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
}
.ht-list li {
  display: flex;
  align-items: center;
  cursor: default;
}
.ht-list li img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.ht-list li:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* hero media — photo + floating stat card */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,33,72,0.16);
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-frame:hover img { transform: scale(1.04); }

.hero-stat-card {
  position: absolute;
  bottom: -1.6rem;
  left: -1.6rem;
  background: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(14, 33, 72, 0.18);
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
  border-left: 3px solid var(--red);
  opacity: 0;
  animation: rise 1s var(--ease) 0.9s forwards;
}
@media (max-width: 980px) {
  .hero-stat-card {
    position: relative; bottom: auto; left: auto;
    margin: -2rem auto 0;
    width: fit-content;
  }
}
@media (max-width: 480px) {
  .hero-stat-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.2rem 1.4rem;
  }
  .hsc-divider { display: none; }
}
.hsc-item { display: flex; flex-direction: column; gap: 0.35rem; }
.hsc-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  line-height: 1;
  color: var(--navy-700);
  letter-spacing: -0.025em;
}
.hsc-num sub {
  font-size: 0.45em;
  vertical-align: top;
  color: var(--red);
  font-weight: 700;
  position: relative;
  top: 0.2em;
  margin-left: 0.05em;
}
.hsc-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.hsc-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}

/* keep scroll keyframes for client marquee */
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────────────────
   ABOUT — overlapping year numerals
   ───────────────────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--white);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 880px) { .about-inner { grid-template-columns: 1fr; } }

.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(14,33,72,0.14);
}
.about-caption {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  background: var(--white);
  padding: 1.1rem 1.3rem;
  border-radius: 4px;
  border-left: 3px solid var(--red);
  box-shadow: 0 14px 36px rgba(14,33,72,0.14);
}
.ac-label {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.ac-text {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: -0.005em;
}

.about-copy .lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 1.5rem 0 1.2rem;
  max-width: 48ch;
}
.about-copy p { color: var(--muted); line-height: 1.7; max-width: 50ch; }
.about-copy strong { color: var(--navy-700); font-weight: 600; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) { .about-pillars { grid-template-columns: 1fr; } }
.ap-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--navy-700);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.ap-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────
   HERITAGE TIMELINE — enhanced corporate
   ───────────────────────────────────────────────────────── */
.heritage { background: var(--soft); }

/* summary stats row */
.heritage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 0 0 4rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14,33,72,0.04);
}
@media (max-width: 760px) { .heritage-stats { grid-template-columns: repeat(2, 1fr); } }
.hs {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s var(--ease);
}
.hs:last-child { border-right: none; }
@media (max-width: 760px) {
  .hs { border-bottom: 1px solid var(--line); }
  .hs:nth-child(2n) { border-right: none; }
  .hs:nth-last-child(-n+2) { border-bottom: none; }
}
.hs:hover { background: var(--soft); }
.hs::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.hs:hover::before { transform: scaleX(1); }
.hs-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--navy-700);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.hs-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* timeline */
.timeline {
  --line-pos: clamp(100px, 12vw, 140px);   /* spine position from timeline left */
  list-style: none;
  position: relative;
  /* padding-left always exactly 15px > line-pos so the 14px dot at left:-21px
     (center = -14px) ends up exactly centered on the 2px line (center +1) */
  padding-left: calc(var(--line-pos) + 15px);
}
.timeline::before {
  content: ""; position: absolute;
  left: var(--line-pos); top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg,
    var(--line-2) 0%,
    var(--line-2) 85%,
    var(--red) 92%,
    var(--red) 100%);
}
@media (max-width: 600px) {
  .timeline { --line-pos: 56px; }
}

/* event row */
.timeline li {
  position: relative;
  padding: 0 0 1.8rem 3.2rem;
  transition: padding 0.35s var(--ease);
}
.timeline li:last-child { padding-bottom: 0; }

/* dot on spine */
.timeline li::before {
  content: ""; position: absolute;
  left: clamp(-21px, -3vw, -21px); top: 2.1rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy-700);
  z-index: 2;
  transition: all 0.35s var(--ease);
  box-shadow: 0 0 0 4px var(--soft);
}
@media (max-width: 600px) { .timeline li::before { left: -17px; } }

/* connector line from spine to card */
.timeline li::after {
  content: ""; position: absolute;
  left: clamp(-8px, -1.1vw, -8px); top: calc(2.1rem + 7px);
  width: 2.2rem; height: 2px;
  background: var(--line-2);
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  z-index: 1;
}
@media (max-width: 600px) { .timeline li::after { left: -3px; width: 1.6rem; } }

.timeline li:hover::before {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--soft), 0 0 0 8px rgba(194,25,31,0.15);
}
.timeline li:hover::after { background: var(--red); }

/* year */
.tl-year {
  position: absolute;
  left: -100%;
  width: clamp(90px, 11vw, 120px);
  text-align: right;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy-700);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 1.4rem;
  transition: color 0.3s var(--ease);
}
@media (max-width: 600px) { .tl-year { font-size: 1.2rem; width: 60px; left: -84px; } }
.timeline li:hover .tl-year { color: var(--red); }

/* card */
.tl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.4rem 1.6rem 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.timeline li:hover .tl-card {
  transform: translateX(4px);
  box-shadow: 0 14px 36px rgba(14, 33, 72, 0.10);
  border-color: transparent;
}

/* tag with icon */
.tl-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  background: rgba(194, 25, 31, 0.08);
  border-radius: 2px;
  margin-bottom: 0.85rem;
}
.tl-tag span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.tl-ic {
  width: 14px; height: 14px;
  color: var(--red);
  flex-shrink: 0;
}

.timeline h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.25;
  color: var(--navy-700);
  margin-bottom: 0.5rem;
  letter-spacing: -0.018em;
}
.timeline h4 em { font-weight: 700; color: var(--red); }
.timeline p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 62ch;
}

/* featured (current) item — elevated card */
.timeline li.featured {
  padding-bottom: 0;
}
.timeline li.featured::before {
  background: var(--red);
  border-color: var(--red);
  width: 18px; height: 18px;
  left: clamp(-23px, -3.3vw, -23px);
  top: 2rem;
  box-shadow: 0 0 0 4px var(--soft), 0 0 0 8px rgba(194,25,31,0.25);
}
@media (max-width: 600px) { .timeline li.featured::before { left: -19px; } }

.timeline li.featured::after {
  background: var(--red);
}

.timeline li.featured .tl-year {
  color: var(--red);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.timeline li.featured .tl-card {
  background: linear-gradient(135deg, rgba(194,25,31,0.06) 0%, var(--white) 60%);
  border: 1px solid rgba(194,25,31,0.25);
  padding: 1.8rem 2rem;
  position: relative;
}
.timeline li.featured h4 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}
.timeline li.featured p { max-width: 56ch; }

/* "Current" badge */
.tl-current {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  z-index: 2;
}
.tl-current .cdot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--white);
  animation: livepulse 2s ease-in-out infinite;
}

/* featured CTA */
.tl-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.2rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--red);
  padding-bottom: 0.3rem;
  border-bottom: 1.5px solid var(--red);
  transition: gap 0.3s var(--ease);
}
.tl-cta:hover { gap: 0.8rem; }
.tl-cta svg { transition: transform 0.3s var(--ease); }
.tl-cta:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────
   SERVICES — magazine spreads
   ───────────────────────────────────────────────────────── */
.services { background: var(--white); }

.spread {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.spread:first-of-type { border-top: none; padding-top: 0; }
.spread-no {
  position: absolute;
  top: clamp(2.5rem, 5vw, 4.5rem);
  right: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.spread-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .spread-body { grid-template-columns: 1fr; }
}
.spread.reverse .spread-media { order: 2; }
.spread.reverse .spread-text  { order: 1; }

.spread-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
.spread-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.spread:hover .spread-media img { transform: scale(1.04); }

.spread-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--navy-700);
  margin-bottom: 1.2rem;
}
.spread-h em {
  
  font-weight: 500;
  color: var(--red);
}
.spread-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 44ch;
}
.spread-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.spread-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 500;
}
.spread-list .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   MANIFESTO — large quote
   ───────────────────────────────────────────────────────── */
.manifesto {
  background: var(--soft);
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.manifesto::before, .manifesto::after {
  content: ""; position: absolute;
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.manifesto::before { top: 2rem; left: 50%; transform: translateX(-50%); }
.manifesto::after  { bottom: 2rem; left: 50%; transform: translateX(-50%); }

.quote-mark {
  display: block;
  font-family: var(--display);
  font-size: clamp(8rem, 14vw, 12rem);
  line-height: 0.6;
  color: var(--red);
  opacity: 0.18;
  margin-bottom: -0.15em;
  font-weight: 700;
}
.manifesto-q {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--navy-700);
}
.manifesto-q em { color: var(--red);  font-weight: 500; }
.redink { color: var(--red);  font-weight: 500; }
.manifesto-attrib {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   SUSTAINABILITY BAND — refined pillars with icons
   ───────────────────────────────────────────────────────── */
.sustain {
  position: relative;
  color: var(--white);
  isolation: isolate;
  padding: clamp(6rem, 11vw, 9rem) 0;
}
.sustain-bg { position: absolute; inset: 0; z-index: -1; }
.sustain-bg img { width: 100%; height: 100%; object-fit: cover; }
.sustain-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(5,13,31,0.94) 0%, rgba(8,22,50,0.86) 45%, rgba(14,33,72,0.78) 100%);
}
.sustain-head { max-width: 920px; margin-bottom: clamp(3rem, 5vw, 4rem); }
.sustain-lede {
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 60ch;
}
.sustain-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .sustain-pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  padding: 2.2rem 2rem 2rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 10px 30px rgba(5, 13, 31, 0.25);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 13, 31, 0.35);
}
.pillar::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 4px 4px 0 0;
}
.pillar:hover::before { transform: scaleX(1); }

.pl-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.4rem;
}
.pl-no {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  font-weight: 500;
}
.pl-icon {
  width: 44px; height: 44px;
  color: var(--red);
  padding: 8px;
  background: rgba(194, 25, 31, 0.08);
  border-radius: 4px;
}
.pillar h4 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 0.7rem;
  letter-spacing: -0.012em;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.pl-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.pl-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  font-family: var(--display);
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 500;
}
.pl-list li::before {
  content: ""; position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

/* ─────────────────────────────────────────────────────────
   PROJECTS — featured + uniform 3×2 grid
   ───────────────────────────────────────────────────────── */
.projects { background: var(--white); }

/* featured project card */
.project-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  background: var(--white);
  transition: box-shadow 0.4s var(--ease);
}
.project-featured:hover { box-shadow: 0 24px 60px rgba(14,33,72,0.10); }
@media (max-width: 880px) { .project-featured { grid-template-columns: 1fr; } }

.pf-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pf-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.project-featured:hover .pf-media img { transform: scale(1.04); }
.pf-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.45rem 0.8rem;
  border-radius: 2px;
}

.pf-body {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  justify-content: center;
}
.pf-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.pf-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  margin-bottom: 1.1rem;
}
.pf-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
  max-width: 50ch;
}
.pf-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 480px) { .pf-meta { grid-template-columns: 1fr; gap: 0.7rem; } }
.pf-meta dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.25rem;
}
.pf-meta dd {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
}

/* uniform project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 880px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .project-grid { grid-template-columns: 1fr; } }

.pc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 33, 72, 0.1);
  border-color: transparent;
}
.pc-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pc:hover .pc-media img { transform: scale(1.06); }
.pc-body {
  padding: 1.5rem 1.4rem 1.7rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.pc-year {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}
.pc-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.pc h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-700);
  margin-bottom: 0.6rem;
}
.pc p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   CLIENTS · marquee
   ───────────────────────────────────────────────────────── */
.clients { background: var(--soft); padding: clamp(5rem, 8vw, 7rem) 0; }
.clients-head { margin-bottom: 3rem; max-width: 740px; }
.client-marquee {
  list-style: none;
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-marquee li {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
}
.client-marquee li:hover {
  color: var(--red);
  
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   CAREERS BAND
   ───────────────────────────────────────────────────────── */
.careers {
  position: relative;
  isolation: isolate;
  padding: clamp(6rem, 11vw, 9rem) 0;
  color: var(--white);
  overflow: hidden;
}
.careers-bg { position: absolute; inset: 0; z-index: -1; }
.careers-bg img { width: 100%; height: 100%; object-fit: cover; }
.careers-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(5,13,31,0.92) 0%, rgba(8,22,50,0.65) 70%, transparent 100%);
}
.careers-content { max-width: 580px; }
.careers-content p {
  margin: 1.5rem 0 2.2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   CONTACT — two-column with info card
   ───────────────────────────────────────────────────────── */
.contact {
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 88% 12%, rgba(194,25,31,0.18), transparent 60%),
    radial-gradient(ellipse 70% 70% at 8% 92%, rgba(14,33,72,0.4), transparent 60%);
  pointer-events: none;
}
.contact > * { position: relative; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* left column */
.contact-main {
  display: flex; flex-direction: column;
  justify-content: center;
}
.contact-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--white);
  margin-bottom: 1.4rem;
  max-width: 18ch;
}
.contact-title em {
  font-weight: 500;
  color: var(--red);
}
.contact-lede {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: 2.4rem;
}

/* right column — info card */
.contact-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 1.4rem 1.8rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ci-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
  transition: padding 0.3s var(--ease);
}
.ci-item:last-child { border-bottom: none; }
.ci-item:hover { padding-left: 0.3rem; }

.ci-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(194,25,31,0.12);
  color: #ff8d91;
  border-radius: 4px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-item:hover .ci-icon { background: var(--red); color: var(--white); }

.ci-body { flex: 1; min-width: 0; }
.ci-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff8d91;
  margin-bottom: 0.35rem;
}
.ci-item p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}
.ci-item a {
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.ci-item a:hover { color: var(--red); }

/* big CTA */
.big-cta {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1.05rem 1.8rem;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  letter-spacing: 0.005em;
  color: var(--white);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  width: fit-content;
  isolation: isolate;
}
.big-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.big-cta:hover {
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(194, 25, 31, 0.35);
}
.big-cta:hover::before { transform: translateX(0); }
.bc-arrow {
  font-size: 1.2em;
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.big-cta:hover .bc-arrow { transform: translateX(6px); }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.65);
  padding: 0 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img {
  height: 64px;
  display: block;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 4px;
  margin: 0 0 1.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 40ch;
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  padding: 0.42rem 0;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-col .addr { font-size: 0.9rem; line-height: 1.7; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer .mono { font-family: var(--mono); letter-spacing: 0.02em; }

/* ── reveal on scroll utility ─────────────────────────── */
.reveal-up, .reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up.in, .reveal.in { opacity: 1; transform: none; }

/* ── Intro curtain (page-load transition) ────────────── */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.95s cubic-bezier(0.77, 0, 0.18, 1);
}
.page-curtain.lift { transform: translateY(-101%); }
.page-curtain.done { display: none; }
.page-curtain .pc-mark {
  opacity: 0;
  transform: translateY(8px);
  animation: pc-mark-in 0.55s var(--ease) 0.15s forwards;
}
.page-curtain.lift .pc-mark {
  animation: pc-mark-out 0.4s var(--ease) forwards;
}
.page-curtain .pc-mark img {
  height: 64px;
  width: auto;
  display: block;
}
@keyframes pc-mark-in {
  to { opacity: 1; transform: none; }
}
@keyframes pc-mark-out {
  to { opacity: 0; transform: translateY(-6px); }
}
html.curtain-up, body.curtain-up { overflow: hidden; }

/* ── Section-swap on nav click ───────────────────────── */
.section-swap-enter {
  animation: section-swap 0.75s var(--ease);
}
@keyframes section-swap {
  0%   { opacity: 0; transform: translateY(18px); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-curtain { display: none; }
  .section-swap-enter { animation: none; }
}

::selection { background: var(--navy-700); color: var(--white); }

/* ─────────────────────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
   ───────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0,0,0,0.12);
  z-index: 200;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.wa-fab:hover {
  transform: scale(1.07) translateY(-2px);
  background: #1ebd5b;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.15);
}
.wa-icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

/* pulsing ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: 0;
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}

/* tooltip label */
.wa-label {
  position: absolute;
  right: calc(100% + 0.8rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-700);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 6px 18px rgba(14,33,72,0.18);
}
.wa-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--navy-700);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.wa-fab:hover .wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .wa-fab {
    width: 54px;
    height: 54px;
    bottom: 1.1rem;
    right: 1.1rem;
  }
  .wa-icon { width: 26px; height: 26px; }
  .wa-label { display: none; }
}
