/* ============================================================
   ABOUT PAGE — extends style.css tokens.
   Container widened to match homepage nav/hero max-width (1360px).
   ============================================================ */
.wrap{ max-width:1360px; }

/* ---------------- PAGE HEADER ---------------- */
.page-header{
  padding:158px 0 70px;
  position:relative;
  overflow:hidden;
  background:var(--color-mist);
  border-bottom:1px solid var(--color-line);
}
.page-header::before{
  content:"";
  position:absolute; top:-140px; right:-120px;
  width:420px; height:420px; border-radius:50%;
  background:var(--grad-blue);
  opacity:.10; filter:blur(10px);
}
.page-header .wrap{ position:relative; }
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.04em;
  color:var(--color-ink-soft); margin-bottom:22px;
}
.breadcrumb a{ color:var(--color-ink-soft); transition:color .2s ease; }
.breadcrumb a:hover{ color:var(--color-primary); }
.breadcrumb span{ color:var(--color-line); }
.breadcrumb em{ font-style:normal; color:var(--color-primary); }
.page-header h1{ font-size:clamp(32px,4.4vw,54px); max-width:760px; }
.page-header h1 em{
  font-style:normal;
  background:var(--grad-blue-text); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-header .lede{
  margin-top:18px; font-family:var(--font-display); font-size:19px;
  line-height:1.5; color:var(--color-ink-soft); max-width:620px;
}

/* ---------------- OVERVIEW ---------------- */
.overview{ padding:100px 0; }
.overview .wrap{ display:grid; grid-template-columns:1.2fr .8fr; gap:64px; align-items:start; }
.overview-body p + p{ margin-top:16px; }
.overview-facts{
  border:1px solid var(--color-line); border-radius:var(--radius-lg);
  background:var(--color-mist); padding:6px;
}
.overview-fact{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px; background:var(--color-paper); border-radius:var(--radius-md);
}
.overview-fact + .overview-fact{ margin-top:6px; }
.overview-fact-label{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--color-ink-soft); }
.overview-fact-value{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--color-primary-dark); }

/* ---------------- TEAM BANNER ---------------- */
.team-banner{ padding:0 0 100px; }
.team-banner-frame{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--color-line); box-shadow:0 30px 60px -30px rgba(11,58,87,.28);
}
.team-banner-frame img{ width:100%; max-height:560px; object-fit:cover; display:block; }
.team-banner-frame::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(6,22,34,.82) 0%, rgba(6,22,34,.05) 45%, transparent 70%);
}
.team-banner-caption{ position:absolute; left:0; right:0; bottom:0; padding:28px 32px; z-index:1; }
.team-banner-caption span{ font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:#fff; opacity:.85; }
.team-banner-caption h3{ color:#fff; font-family:var(--font-display); font-weight:600; font-size:22px; margin-top:6px; }
@media (max-width:640px){
  .team-banner{ padding:0 0 60px; }
  .team-banner-frame img{ max-height:340px; }
  .team-banner-caption{ padding:20px; }
  .team-banner-caption h3{ font-size:17px; }
}

/* ---------------- JOURNEY OF EXCELLENCE ---------------- */
.journey{ padding:56px 0 20px; }
.journey-track{
  position:relative;
  max-width:880px; margin:0 auto;
}
.journey-track::before{
  content:"";
  position:absolute; left:50%; top:4px; bottom:4px; width:2px;
  background:var(--color-line); transform:translateX(-50%); z-index:0;
}
.journey-item{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 60px 1fr; align-items:start; column-gap:28px;
  padding-bottom:54px;
}
.journey-item:last-child{ padding-bottom:0; }
.journey-year{
  grid-column:2; grid-row:1; justify-self:center;
  display:flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%; flex-shrink:0;
  font-family:var(--font-display); font-weight:800; font-size:13px;
  background:var(--color-paper); color:var(--color-primary-dark);
  border:3px solid var(--color-primary);
  box-shadow:0 0 0 6px var(--color-paper);
}
.journey-year.c-green{ border-color:var(--color-green); }
.journey-card{
  grid-row:1; grid-column:1; position:relative;
  padding:24px 24px 20px; border-radius:var(--radius-lg);
  border:1px solid var(--color-line); background:var(--color-paper);
  transition:box-shadow .3s ease, transform .3s ease;
}
.journey-item:nth-child(even) .journey-card{ grid-column:3; }
.journey-card::after{
  content:"";
  position:absolute; top:26px; width:26px; height:2px; background:var(--color-line);
}
.journey-item:nth-child(odd) .journey-card::after{ right:-26px; }
.journey-item:nth-child(even) .journey-card::after{ left:-26px; }
.journey-card:hover{ box-shadow:0 20px 40px -20px rgba(11,58,87,.22); transform:translateY(-4px); }
.journey-icon{
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  width:44px; height:44px; border-radius:12px;
  background-size:220% 220%; animation:gradientFlow 6.5s ease-in-out infinite;
}
.journey-item:nth-child(even) .journey-icon{ margin-left:auto; }
.journey-icon svg{ width:20px; height:20px; }
.journey-card h3{ font-size:15px; margin-bottom:8px; line-height:1.35; }
.journey-item:nth-child(even) .journey-card{ text-align:right; }
.journey-card p{ font-size:13px; }

/* ---------------- MISSION / VISION / VALUES ---------------- */
.pillars{ padding:20px 0 110px; }
.pillars-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pillar-card{
  position:relative;
  padding:32px 26px 28px; border-radius:var(--radius-lg);
  border:1px solid var(--color-line); background:var(--color-paper);
  transition:box-shadow .3s ease, transform .3s ease;
}
.pillar-card:hover{ box-shadow:0 20px 40px -20px rgba(11,58,87,.22); transform:translateY(-4px); }
.pillar-icon{
  display:flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:14px; margin-bottom:20px;
  background-size:220% 220%; animation:gradientFlow 6s ease-in-out infinite;
}
.pillar-card h3{ margin-bottom:10px; font-size:19px; }
.pillar-card p{ font-size:14.5px; }

/* ---------------- AWARDS & RECOGNITION ---------------- */
.awards{ padding:20px 0 110px; }
.awards-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.award-card{
  position:relative;
  padding:28px 22px 24px; border-radius:var(--radius-lg);
  border:1px solid var(--color-line); background:var(--color-paper);
  text-align:center; transition:box-shadow .3s ease, transform .3s ease;
}
.award-card:hover{ box-shadow:0 20px 40px -20px rgba(11,58,87,.22); transform:translateY(-4px); }
.award-year{
  position:absolute; top:14px; right:14px;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.04em;
  color:var(--color-ink-soft); background:var(--color-mist);
  border:1px solid var(--color-line); padding:3px 8px; border-radius:100px;
}
.award-icon{
  display:flex; align-items:center; justify-content:center; margin:6px auto 18px;
  width:56px; height:56px; border-radius:50%;
  background-size:220% 220%; animation:gradientFlow 6s ease-in-out infinite;
}
.award-card h3{ font-size:16px; margin-bottom:6px; line-height:1.35; }
.award-card .award-issuer{
  display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.04em;
  text-transform:uppercase; color:var(--color-green); margin-bottom:10px;
}
.award-card p{ font-size:13px; }
.awards-note{
  margin-top:8px; padding:18px 22px; background:var(--color-mist); border:1px solid var(--color-line);
  border-radius:var(--radius-sm); font-size:13.5px; color:var(--color-ink-soft);
}

/* ---------------- CEO MESSAGE ---------------- */
.ceo{ padding:20px 0 110px; }
.ceo-box{
  display:grid; grid-template-columns:.62fr 1.38fr; gap:0;
  border:1px solid var(--color-line); border-radius:var(--radius-lg);
  overflow:hidden; background:var(--color-paper);
}
.ceo-photo{ position:relative; background:var(--grad-blue); min-height:380px; }
.ceo-photo img{ width:100%; height:100%; object-fit:cover; object-position:top center; }
.ceo-photo::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,32,50,0) 38%, rgba(6,26,40,.55) 68%, rgba(4,18,28,.92) 100%);
}
.ceo-photo-cap{
  position:absolute; left:24px; right:24px; bottom:22px; color:#fff; z-index:2;
}
.ceo-photo-cap h3{
  color:#fff; font-size:20px; font-weight:700; margin-bottom:5px; line-height:1.25;
  text-shadow:0 2px 10px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.5);
}
.ceo-photo-cap span{
  display:inline-block; font-family:var(--font-mono); font-size:11.5px; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase; color:#fff; opacity:1;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
}
.ceo-msg{ padding:44px 44px 40px; display:flex; flex-direction:column; }
.ceo-quote-mark{
  font-family:var(--font-display); font-size:56px; line-height:1; font-weight:700;
  background:var(--grad-blue-text); -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom:8px;
}
.ceo-msg blockquote{
  margin:0; font-family:var(--font-display); font-size:21px; line-height:1.5;
  color:var(--color-ink); font-weight:500;
}
.ceo-msg .ceo-note{
  margin-top:22px; padding-top:18px; border-top:1px solid var(--color-line);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.ceo-signature{ font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--color-primary-dark); }
.ceo-signature span{ display:block; font-family:var(--font-mono); font-weight:400; font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--color-ink-soft); margin-top:3px; }
.pill-inline{
  font-family:var(--font-mono); font-size:9.5px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--color-ink-soft); background:var(--color-mist); border:1px solid var(--color-line);
  padding:4px 9px; border-radius:100px; white-space:nowrap;
}

/* ---------------- GROUP AT A GLANCE ---------------- */
.group-strip{ padding:20px 0 110px; }
.group-strip-inner{
  border:1px solid var(--color-line); border-radius:var(--radius-lg);
  background:var(--color-mist); padding:36px 40px;
  display:flex; align-items:center; gap:40px; flex-wrap:wrap;
}
.group-strip-copy{ flex:1 1 260px; }
.group-strip-copy h3{ font-size:22px; margin-bottom:10px; }
.group-strip-copy p{ font-size:14.5px; }
.group-badges{ display:flex; gap:14px; flex-wrap:wrap; flex:1 1 320px; justify-content:flex-end; }
.group-badge-item{ display:flex; flex-direction:column; align-items:center; gap:8px; width:78px; text-align:center; }
.group-badge-item .service-badge{ margin-bottom:0; width:46px; height:46px; font-size:13px; }
.group-badge-item span{ font-family:var(--font-mono); font-size:9.5px; color:var(--color-ink-soft); line-height:1.3; }

/* ---------------- DOCUMENTATION & CERTIFICATIONS ---------------- */
.docs{ padding:20px 0 110px; }
.docs-grid{
  columns:3 320px; column-gap:22px;
}
.doc-card{
  break-inside:avoid; margin-bottom:22px;
  border:1px solid var(--color-line); border-radius:var(--radius-lg);
  background:var(--color-paper); overflow:hidden; cursor:pointer;
  transition:box-shadow .3s ease, transform .3s ease;
}
.doc-card:hover{ box-shadow:0 22px 44px -22px rgba(11,58,87,.28); transform:translateY(-4px); }
.doc-frame{
  position:relative; width:100%; overflow:hidden;
  background:var(--color-mist);
}
.doc-frame.is-landscape{ aspect-ratio:4/3; }
.doc-frame.is-portrait{ aspect-ratio:3/4.1; }
.doc-paper{
  position:absolute; inset:14px;
  background:
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(18,24,29,.05) 26px 27px),
    var(--color-paper);
  border:1px solid var(--color-line); border-radius:6px;
  box-shadow:0 10px 24px -14px rgba(11,58,87,.25);
  display:flex; flex-direction:column;
}
.doc-paper-band{
  height:34%; flex:none; display:flex; align-items:center; justify-content:center; position:relative;
  background-size:220% 220%; animation:gradientFlow 7s ease-in-out infinite;
}
.doc-paper-band svg{ width:30px; height:30px; }
.doc-paper-crest{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  opacity:.05; pointer-events:none;
}
.doc-paper-crest svg{ width:64%; }
.doc-paper-body{ flex:1; padding:14% 12%; display:flex; flex-direction:column; gap:10%; }
.doc-line{ height:6px; border-radius:3px; background:var(--color-line); }
.doc-line.w-70{ width:70%; } .doc-line.w-55{ width:55%; } .doc-line.w-85{ width:85%; } .doc-line.w-40{ width:40%; }
.doc-seal{
  position:absolute; right:10%; bottom:8%;
  width:52px; height:52px; border-radius:50%;
  border:2px dashed var(--color-primary); opacity:.45;
  display:flex; align-items:center; justify-content:center;
}
.doc-seal svg{ width:22px; height:22px; opacity:.8; }
.doc-preview-pill{
  position:absolute; top:14px; right:14px; z-index:2;
  font-family:var(--font-mono); font-size:9.5px; letter-spacing:.05em; text-transform:uppercase;
  color:#fff; background:rgba(18,24,29,.55); backdrop-filter:blur(4px);
  padding:4px 9px; border-radius:100px;
}
.doc-orient-pill{
  position:absolute; top:14px; left:14px; z-index:2;
  font-family:var(--font-mono); font-size:9.5px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--color-ink-soft); background:rgba(255,255,255,.85);
  padding:4px 9px; border-radius:100px; border:1px solid var(--color-line);
}
.doc-body{ padding:20px 22px 24px; }
.doc-body h3{ font-size:15.5px; margin-bottom:6px; line-height:1.3; }
.doc-tag{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--color-green); display:block; margin-bottom:10px;
}
.doc-body p{ font-size:13px; }
.doc-view{
  display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-size:12.5px; font-weight:600; color:var(--color-primary);
}
.doc-view svg{ width:13px; height:13px; }

.docs-note{
  margin-top:8px; padding:18px 22px; background:var(--color-mist); border:1px solid var(--color-line);
  border-radius:var(--radius-sm); font-size:13.5px; color:var(--color-ink-soft);
}

/* ---------------- GALLERY (filterable photo gallery) ----------------
   Landscape/portrait rows use a "justified row" technique: each item's
   flex-grow equals its own image's aspect-ratio (width/height), with
   flex-basis:0. Grid algebra means every item in the row lands at the
   SAME computed height automatically, while each item's own aspect-ratio
   still drives its frame — so the row fills edge-to-edge with no crop.
   The lone single-image row just gets a fixed showcase height instead. */
.gallery{ padding:20px 0 110px; }
.gallery-grid{ display:flex; flex-direction:column; gap:20px; }

.gallery-row{ display:flex; gap:20px; align-items:flex-start; }
.gallery-row--single{ justify-content:center; --gal-h:380px; }

.gallery-item{
  cursor:pointer; display:flex; flex-direction:column;
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--color-line); background:var(--color-paper);
  transition:box-shadow .3s ease, transform .3s ease;
  flex-grow:1; flex-shrink:1; flex-basis:0; min-width:0;
}
.gallery-row--single .gallery-item{ flex:0 0 auto; }
.gallery-item:hover{ box-shadow:0 22px 44px -22px rgba(11,58,87,.28); transform:translateY(-4px); }
.gallery-item[hidden]{ display:none; }

.gallery-frame{ position:relative; width:100%; height:auto; aspect-ratio:var(--item-ratio,1.33); overflow:hidden; }
.gallery-row--single .gallery-frame{ width:auto; height:var(--gal-h); margin:0 auto; }
.gallery-frame img{ width:100%; height:100%; object-fit:cover; display:block; }

.gallery-overlay{
  position:absolute; inset:0; background:rgba(10,20,26,0); transition:.3s;
  display:flex; align-items:center; justify-content:center;
}
.gallery-item:hover .gallery-overlay{ background:rgba(10,20,26,.28); }
.gallery-overlay svg{
  width:36px; height:36px; padding:9px; border-radius:50%;
  background:rgba(255,255,255,.92); color:var(--color-primary-dark);
  opacity:0; transform:scale(.8); transition:.3s;
}
.gallery-item:hover .gallery-overlay svg{ opacity:1; transform:scale(1); }

.gallery-caption{ padding:16px 18px 18px; margin-top:auto; }
.gallery-caption h4{ font-size:14.5px; margin-bottom:3px; }
.gallery-caption span{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.04em; text-transform:uppercase; color:var(--color-green); }
.gallery-note{
  margin-top:8px; padding:18px 22px; background:var(--color-mist); border:1px solid var(--color-line);
  border-radius:var(--radius-sm); font-size:13.5px; color:var(--color-ink-soft);
}

/* ---------------- GALLERY LIGHTBOX ---------------- */
.gallery-lightbox{
  position:fixed; inset:0; z-index:200;
  background:rgba(10,20,26,.85); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; gap:14px; padding:32px;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.gallery-lightbox.open{ opacity:1; pointer-events:auto; }
.gallery-lightbox-box{
  background:var(--color-paper); border-radius:var(--radius-lg); overflow:hidden;
  width:100%; max-width:900px; max-height:88vh; display:flex; flex-direction:column;
  transform:scale(.94) translateY(10px); transition:transform .3s cubic-bezier(.2,.9,.25,1);
  box-shadow:0 40px 80px -20px rgba(0,0,0,.5);
}
.gallery-lightbox.open .gallery-lightbox-box{ transform:scale(1) translateY(0); }
.gallery-lightbox-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 20px; border-bottom:1px solid var(--color-line);
}
.gallery-lightbox-head h4{ font-family:var(--font-display); font-size:15px; }
.gallery-lightbox-close{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--color-line);
  display:flex; align-items:center; justify-content:center; color:var(--color-ink-soft);
  background:var(--color-paper); transition:.2s; flex:none;
}
.gallery-lightbox-close:hover{ background:var(--color-mist); color:var(--color-ink); }
.gallery-lightbox-body{
  overflow:hidden; background:var(--color-mist);
  display:flex; align-items:center; justify-content:center;
  min-height:280px; max-height:72vh;
}
.gallery-lightbox-body img{
  display:block; width:auto; height:auto;
  max-width:100%; max-height:72vh; object-fit:contain;
}
.gallery-lightbox-foot{
  padding:14px 20px; border-top:1px solid var(--color-line);
  font-size:12.5px; color:var(--color-ink-soft); background:var(--color-mist);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.gallery-lightbox-count{ font-family:var(--font-mono); font-size:11px; letter-spacing:.03em; }
.gallery-lightbox-nav{
  flex:none; width:44px; height:44px; border-radius:50%; border:none;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14); color:#fff; backdrop-filter:blur(4px);
  transition:.2s;
}
.gallery-lightbox-nav:hover{ background:rgba(255,255,255,.28); }
.gallery-lightbox-nav svg{ width:22px; height:22px; }

/* ---------------- DOC LIGHTBOX ---------------- */
.doc-lightbox{
  position:fixed; inset:0; z-index:200;
  background:rgba(10,20,26,.72); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:32px;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.doc-lightbox.open{ opacity:1; pointer-events:auto; }
.doc-lightbox-box{
  background:var(--color-paper); border-radius:var(--radius-lg); overflow:hidden;
  width:100%; max-width:420px; max-height:86vh; display:flex; flex-direction:column;
  transform:scale(.94) translateY(10px); transition:transform .3s cubic-bezier(.2,.9,.25,1);
  box-shadow:0 40px 80px -20px rgba(0,0,0,.5);
}
.doc-lightbox.open .doc-lightbox-box{ transform:scale(1) translateY(0); }
.doc-lightbox-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 20px; border-bottom:1px solid var(--color-line);
}
.doc-lightbox-head h4{ font-family:var(--font-display); font-size:15px; }
.doc-lightbox-close{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--color-line);
  display:flex; align-items:center; justify-content:center; color:var(--color-ink-soft);
  background:var(--color-paper); transition:.2s;
}
.doc-lightbox-close:hover{ background:var(--color-mist); color:var(--color-ink); }
.doc-lightbox-body{ padding:22px; overflow:auto; }
.doc-lightbox-body .doc-frame{ aspect-ratio:auto; }
.doc-lightbox-body .doc-frame.is-landscape .doc-paper{ position:relative; inset:auto; aspect-ratio:4/3; }
.doc-lightbox-body .doc-frame.is-portrait .doc-paper{ position:relative; inset:auto; aspect-ratio:3/4.1; }
.doc-lightbox-foot{
  padding:14px 20px; border-top:1px solid var(--color-line);
  font-size:12.5px; color:var(--color-ink-soft); background:var(--color-mist);
}

/* ---------------- MINI CTA ---------------- */
.mini-cta{ padding:20px 0 110px; }
.mini-cta-box{
  border-radius:var(--radius-lg); background:var(--grad-blue);
  padding:56px 48px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.mini-cta-box h2{ color:#fff; font-size:clamp(24px,2.8vw,34px); max-width:520px; }
.mini-cta-box p{ color:rgba(255,255,255,.8); margin-top:10px; max-width:480px; }
.mini-cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:980px){
  .overview .wrap{ grid-template-columns:1fr; gap:36px; }
  .ceo-box{ grid-template-columns:1fr; }
  .ceo-photo{ min-height:260px; }
  .pillars-grid{ grid-template-columns:1fr; }
  .awards-grid{ grid-template-columns:repeat(2,1fr); }
  .docs-grid{ columns:2 260px; }
  .gallery-row--single{ --gal-h:280px; }
  .group-strip-inner{ justify-content:center; text-align:center; }
  .group-badges{ justify-content:center; }
  .journey-item{ column-gap:18px; padding-bottom:44px; }
  .journey-year{ width:48px; height:48px; font-size:12px; }
  .journey-card{ padding:20px 18px 16px; }
  .journey-card::after{ width:18px; }
  .journey-item:nth-child(odd) .journey-card::after{ right:-18px; }
  .journey-item:nth-child(even) .journey-card::after{ left:-18px; }
}
@media (max-width:620px){
  .page-header{ padding:120px 0 50px; }
  .docs-grid{ columns:1; }
  .gallery-row--landscape{ flex-direction:column; align-items:stretch; }
  .gallery-row--landscape .gallery-item{ flex:1 1 auto; width:100%; }
  .gallery-row--single .gallery-frame{ width:100%; height:auto; }
  .gallery-row--portrait{ flex-direction:column; align-items:stretch; }
  .gallery-row--portrait .gallery-item{ flex:1 1 auto; width:100%; }
  .gallery-lightbox{ padding:14px; gap:6px; }
  .gallery-lightbox-nav{ width:36px; height:36px; }
  .gallery-lightbox-nav svg{ width:18px; height:18px; }
  .ceo-msg{ padding:30px 24px; }
  .mini-cta-box{ padding:38px 26px; }
  .journey-track::before{ left:22px; transform:none; }
  .journey-item{
    grid-template-columns:44px 1fr; column-gap:16px; padding-bottom:30px;
  }
  .journey-year{
    grid-column:1; width:44px; height:44px; font-size:11px;
    box-shadow:0 0 0 4px var(--color-paper);
  }
  .journey-item:nth-child(odd) .journey-card,
  .journey-item:nth-child(even) .journey-card{
    grid-column:2; text-align:left; padding:16px 16px 14px;
  }
  .journey-item:nth-child(even) .journey-icon{ margin-left:0; }
  .journey-card::after{ display:none; }
}
