/* About / Learn more — Life Expeditions */

:root{
  --color-primary:#5A8DB8;
  --color-primary-dark:#497da9;
  --color-accent:#bfe7ff;
  --color-primary-light:#bfe7ff;
  --color-text:#343846;
  --color-white:#ffffff;
  --section-x:48px;
  --section-x-mobile:24px;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  width:100%;
  overflow-x:hidden;
  font-family:-apple-system,BlinkMacSystemFont,"Inter","Segoe UI",Arial,sans-serif;
  background:white;
  color:var(--color-text);
}

html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  display:block;
}

button{ font-family:inherit; }
a{ color:inherit; }

/* HEADER */

.top-bar{
  height:92px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  background:white;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
}

.brand-logo{
  width:auto;
  height:52px;
  max-width:160px;
  object-fit:contain;
  border-radius:0;
}

.brand-text{
  font-size:25px;
  font-weight:600;
  letter-spacing:-1px;
  color:var(--color-primary);
}

.menu-button{
  width:46px;
  height:46px;
  border:0;
  background:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  cursor:pointer;
}

.menu-button span{
  width:30px;
  height:2.5px;
  background:#111;
}

/* HERO */

.gear-hero{
  width:100%;
  height:calc(100vh - 92px);
  min-height:560px;
  position:relative;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-image img{
  position:absolute;
  top:-18%;
  left:0;
  width:100%;
  height:136%;
  object-fit:cover;
  object-position:center 38%;
  transform:scaleX(-1);
  will-change:transform;
}

.gear-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(20,40,50,0.62) 0%,
    rgba(20,40,50,0.38) 28%,
    rgba(20,40,50,0.10) 52%,
    rgba(20,40,50,0) 70%,
    rgba(255,255,255,0) 100%
  );
  z-index:1;
}

.hero-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 90px;
  max-width:980px;
}

.gear-kicker{
  margin-bottom:26px;
  color:var(--color-accent);
  font-size:13px;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
}

.hero-overlay h1{
  margin:0 0 28px;
  font-size:clamp(48px, 8vw, 90px);
  line-height:0.95;
  letter-spacing:-4px;
  color:white;
}

.hero-overlay p{
  margin:0;
  max-width:640px;
  font-size:21px;
  line-height:1.8;
  color:rgba(255,255,255,0.9);
}

/* INTRO */

.about-intro{
  padding:100px 48px 72px;
  background:white;
}

.about-intro-inner{
  max-width:820px;
  margin:0 auto;
}

.about-intro h2{
  margin:0 0 28px;
  font-size:clamp(36px, 5vw, 58px);
  line-height:0.98;
  letter-spacing:-2.4px;
  color:var(--color-primary);
}

.about-intro p{
  margin:0 0 22px;
  font-size:18px;
  line-height:1.8;
  color:#5e6470;
}

.about-intro p:last-child{
  margin-bottom:0;
}

/* VALUES */

/*
--- OLD values (plain white) ---
.about-values{
  padding:56px 48px 40px;
  background:white;
}

.about-values-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.about-value{
  padding:28px 24px 26px;
  border-radius:22px;
  background:#f4fbff;
  border:1px solid rgba(90,141,184,0.16);
}
--- end OLD ---
*/

.about-values{
  position:relative;
  padding:96px 48px 64px;
  background:transparent;
  /* clips the fixed Iceland bg to this band only (card height, not full viewport) */
  clip-path:inset(0);
  overflow:visible;
}

.about-values-bg{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}

.about-values-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  /* Iceland expedition bg (skiing.webp) — keep the pulka hauler in frame */
  object-position:58% 58%;
  display:block;
  transform:none;
}

.about-values::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(12, 28, 40, 0.28) 0%,
    rgba(12, 28, 40, 0.38) 100%
  );
}

.about-values-inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.about-value{
  padding:8px 4px;
  border-radius:0;
  background:transparent;
  border:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}

.about-value h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-0.8px;
  font-weight:700;
  color:#ffffff;
}

.about-value p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,0.92);
}

/* TIMELINE (same pattern as homepage services) */

.timeline-section{
  position:relative;
  padding:56px 0 0;
  background:#ffffff;
  overflow:hidden;
}

.timeline{
  position:relative;
  max-width:1220px;
  margin:0 auto;
}

.timeline-header{
  position:relative;
  height:auto;
  margin:0 0 18px;
  padding:0 24px 36px;
  z-index:5;
  text-align:center;
}

.timeline-header h2{
  margin:0 auto;
  font-size:clamp(40px, 5vw, 58px);
  line-height:1;
  letter-spacing:-1.8px;
  font-weight:700;
  color:var(--color-primary);
  white-space:nowrap;
  text-align:center;
}

.timeline::before{
  content:"";
  position:absolute;
  top:var(--timeline-rail-top, 136px);
  bottom:var(--timeline-rail-bottom, 0px);
  left:50%;
  width:2px;
  transform:translateX(-50%);
  background:rgba(90,141,184,0.38);
  border-radius:999px;
  z-index:1;
  pointer-events:none;
}

.timeline-progress{
  position:absolute;
  top:0;
  left:50%;
  width:2px;
  height:0;
  transform:translateX(-50%);
  background:var(--color-primary);
  border-radius:999px;
  z-index:2;
  will-change:height, top;
}

.timeline-dot{
  position:absolute;
  left:50%;
  top:0;
  width:8px;
  height:8px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background:var(--color-primary);
  border:0;
  box-shadow:0 0 8px 2px rgba(90,141,184,0.45);
  z-index:10;
  will-change:top, opacity;
  transition:opacity 0.15s ease;
}

.timeline-events{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  z-index:12;
}

.timeline-item > .timeline-event{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:12;
}

.timeline-marker{
  position:absolute;
  left:50%;
  top:12px;
  transform:translateX(-50%);
  min-width:58px;
  height:36px;
  padding:0 12px;
  border-radius:999px;
  background:#ffffff;
  color:var(--color-primary);
  border:2px solid var(--color-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  line-height:1;
  letter-spacing:0.2px;
  box-shadow:0 4px 14px rgba(15, 35, 55, 0.12);
  pointer-events:none;
  z-index:13;
}

.timeline-event{
  position:relative;
  width:18px;
  height:18px;
  flex-shrink:0;
  border-radius:50%;
  background:#fff;
  color:var(--color-primary);
  border:2px solid var(--color-primary);
  box-shadow:0 4px 14px rgba(15, 35, 55, 0.12);
  text-decoration:none;
  display:block;
  box-sizing:border-box;
  overflow:visible;
}

.timeline-event--expedition{
  width:18px;
  height:18px;
  background:var(--color-primary);
}

.timeline-event--milestone{
  width:14px;
  height:14px;
  background:#fff;
}

.timeline-event--person{
  width:26px;
  height:26px;
  padding:0;
  border-width:2px;
  background:#e8eef3;
  cursor:default;
}

.timeline-event img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:50%;
  clip-path:circle(50% at 50% 50%);
}

.timeline-event--merlin img{ object-position:center 62%; }
.timeline-event--olav img{ object-position:center 15%; }

.timeline-event-label{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  padding:4px 9px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(90,141,184,0.22);
  box-shadow:0 6px 18px rgba(15, 35, 55, 0.1);
  color:var(--color-primary);
  font-size:11px;
  font-weight:750;
  letter-spacing:0.1px;
  line-height:1;
  white-space:nowrap;
  pointer-events:none;
}

.timeline-item:not(.reverse) .timeline-event-label{
  right:calc(100% + 10px);
}

.timeline-item.reverse .timeline-event-label{
  left:calc(100% + 10px);
}

a.timeline-event:hover,
a.timeline-event:focus-visible{
  box-shadow:0 0 0 3px rgba(90,141,184,0.28);
}

a.timeline-event:focus-visible{
  outline:2px solid var(--color-primary);
  outline-offset:3px;
}

.timeline-item{
  position:relative;
  box-sizing:border-box;
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:56px max(72px, calc((100vw - 1220px) / 2)) 40px;
  background:transparent;
}

.timeline-item:nth-child(4){
  padding-top:56px;
}

.timeline-item:nth-child(5),
.timeline-item:nth-child(7){
  background:#f4fbff;
}

.timeline-item .timeline-card,
.timeline-item .timeline-media{
  opacity:1;
}

.timeline-card{
  padding:38px 8px;
  border-radius:0;
  background:transparent;
  border:0;
}

.timeline-card h3{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.1;
  letter-spacing:-1.6px;
  color:var(--color-primary);
}

.timeline-card h4{
  margin:22px 0 10px;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-0.4px;
  font-weight:700;
  color:var(--color-primary);
}

.timeline-card p{
  margin:0;
  font-size:18px;
  line-height:1.75;
  color:#5e6470;
}

.timeline-card p + p{
  margin-top:14px;
}

.timeline-card .card-button{
  margin-top:24px;
}

.story-expeditions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 16px;
}

.story-expedition{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(90,141,184,0.28);
  background:#fff;
  color:var(--color-primary);
  text-decoration:none;
  font-size:13px;
  font-weight:750;
  letter-spacing:0.2px;
  transition:opacity .2s ease, transform .2s ease;
}

.story-expedition:hover{
  opacity:0.85;
  transform:translateY(-1px);
}

.timeline-media{
  height:360px;
  border-radius:30px;
  overflow:hidden;
  background:var(--color-primary);
  box-shadow:0 28px 70px rgba(30,50,65,0.16);
}

.timeline-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.timeline-media-pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3px;
  height:100%;
  background:#fff;
}

.timeline-media-pair img{
  height:100%;
}

.timeline-media-iceland{
  object-position:18% 42%;
}

@media (min-width: 901px){
  .timeline-item{
    display:grid;
    grid-template-columns:1fr 90px 1fr;
    gap:35px;
    align-items:center;
    margin-bottom:0;
  }

  .timeline-item:not(.reverse) .timeline-card{
    grid-column:1;
    padding-right:92px;
  }

  .timeline-item:not(.reverse) .timeline-media{
    grid-column:3;
  }

  .timeline-item.reverse .timeline-media{
    grid-column:1;
  }

  .timeline-item.reverse .timeline-card{
    grid-column:3;
    padding-left:92px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-image img{
    top:0;
    height:100%;
    will-change:auto;
  }

  .timeline-item .timeline-card,
  .timeline-item .timeline-media{
    opacity:1;
    transform:none;
    transition:none;
  }
}

@media(max-width:900px){
  .timeline-section{
    padding:44px 0 0;
    overflow-x:hidden;
  }

  .timeline-header{
    height:auto;
    margin:0 var(--section-x-mobile) 12px;
    padding:0 0 24px;
  }

  .timeline-header h2{
    font-size:clamp(32px, 8.5vw, 44px);
    letter-spacing:-1.2px;
  }

  .timeline::before,
  .timeline-progress,
  .timeline-dot{
    display:block;
    left:calc(var(--section-x-mobile) + 16px);
  }

  .timeline::before{
    top:var(--timeline-rail-top, 0px);
    bottom:var(--timeline-rail-bottom, 48px);
    transform:translateX(-50%);
  }

  .timeline-progress{
    transform:translateX(-50%);
  }

  .timeline-dot{
    transform:translate(-50%, -50%);
  }

  .timeline .timeline-events,
  .timeline .timeline-item > .timeline-event{
    left:calc(var(--section-x-mobile) + 16px);
  }

  .timeline .timeline-events{
    gap:10px;
  }

  .timeline .timeline-marker{
    left:calc(var(--section-x-mobile) + 16px);
    top:14px;
    min-width:48px;
    height:28px;
    padding:0 8px;
    font-size:12px;
    transform:translateX(-50%);
  }

  .timeline-event-label{
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0, 0, 0, 0);
    white-space:nowrap;
    border:0;
    box-shadow:none;
  }

  .timeline-event--person{
    width:20px;
    height:20px;
  }

  .timeline-event,
  .timeline-event--expedition{
    width:16px;
    height:16px;
  }

  .timeline-event--milestone{
    width:12px;
    height:12px;
  }

  .timeline .timeline-item,
  .timeline .timeline-item.reverse{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:0;
    align-items:stretch;
    width:100%;
    margin-left:0;
    padding:48px var(--section-x-mobile) 28px calc(var(--section-x-mobile) + 64px);
    box-sizing:border-box;
  }

  .timeline-item:nth-child(4){
    padding-top:48px;
  }

  .timeline-item .timeline-card,
  .timeline-item.reverse .timeline-card{
    order:1;
    grid-column:auto;
    width:100%;
    padding:8px 0 4px;
  }

  .timeline-item .timeline-card h3{
    font-size:28px;
    letter-spacing:-1.2px;
  }

  .timeline-item .timeline-card p{
    font-size:17px;
    line-height:1.7;
  }

  .timeline-item .timeline-card .card-button{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    white-space:normal;
    text-align:center;
  }

  .timeline-item .timeline-media,
  .timeline-item.reverse .timeline-media{
    order:2;
    grid-column:auto;
    width:100%;
    max-width:100%;
    height:auto;
    aspect-ratio:4 / 3;
    border-radius:22px;
  }
}

/* TODAY / CLUSTER */

.timeline-today{
  position:relative;
  box-sizing:border-box;
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:72px max(72px, calc((100vw - 1220px) / 2)) 48px;
  background:transparent;
  text-align:center;
}

.about-close-copy{
  max-width:780px;
  margin:48px auto 0;
}

.about-close-copy h2{
  margin:0 0 24px;
  font-size:clamp(34px, 4.6vw, 52px);
  line-height:1.05;
  letter-spacing:-2px;
  color:var(--color-primary);
}

.about-close-copy p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.8;
  color:#5e6470;
}

.about-close-copy p:last-of-type{
  margin-bottom:0;
}

.about-faces{
  position:relative;
  width:240px;
  height:220px;
  margin:0 auto;
}

.about-faces-pulse{
  position:absolute;
  left:50%;
  top:50%;
  width:108px;
  height:108px;
  border:2px solid var(--color-primary);
  border-radius:50%;
  transform:translate(-50%, -50%) scale(1);
  opacity:0;
  pointer-events:none;
  z-index:1;
}

.about-faces.is-arrived .about-faces-pulse{
  animation:aboutFacesPulse 1.15s cubic-bezier(.16,.84,.24,1) 0.08s both;
}

@keyframes aboutFacesPulse{
  0%{
    opacity:0.5;
    transform:translate(-50%, -50%) scale(1);
  }
  100%{
    opacity:0;
    transform:translate(-50%, -50%) scale(2.15);
  }
}

.about-faces img.about-logo{
  position:absolute;
  left:50%;
  top:50%;
  width:108px;
  height:108px;
  margin:0;
  transform:translate(-50%, -50%) scale(0.92);
  object-fit:cover;
  border-radius:50%;
  z-index:3;
  box-shadow:0 4px 14px rgba(15, 35, 55, 0.12);
  transition:transform 0.7s cubic-bezier(.16,.84,.24,1), box-shadow 0.7s ease;
}

.about-faces.is-arrived .about-logo{
  transform:translate(-50%, -50%) scale(1);
  box-shadow:0 10px 28px rgba(15, 35, 55, 0.16);
}

.about-face{
  position:absolute;
  width:62px;
  height:62px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 10px 24px rgba(5,20,31,0.16);
  background:#fff;
  z-index:2;
  top:50%;
  left:50%;
  right:auto;
  bottom:auto;
  opacity:0;
  transform:translate(-50%, -50%) scale(0.2);
  transition:
    top 0.9s cubic-bezier(.16,.84,.24,1),
    left 0.9s cubic-bezier(.16,.84,.24,1),
    right 0.9s cubic-bezier(.16,.84,.24,1),
    bottom 0.9s cubic-bezier(.16,.84,.24,1),
    transform 0.9s cubic-bezier(.16,.84,.24,1),
    opacity 0.45s ease;
}

.about-faces.is-arrived .about-face{
  opacity:1;
}

.about-faces.is-arrived .about-face--merlin{
  left:50%;
  top:-8px;
  transform:translateX(-50%) scale(1);
  object-position:center 62%;
  transition-delay:0.06s;
}

.about-faces.is-arrived .about-face--nico{
  left:auto;
  right:-6px;
  top:50%;
  transform:translateY(-50%) scale(1);
  transition-delay:0.16s;
}

.about-faces.is-arrived .about-face--olav{
  left:50%;
  top:auto;
  bottom:-8px;
  transform:translateX(-50%) scale(1);
  object-position:center 15%;
  transition-delay:0.26s;
}

.about-faces.is-arrived .about-face--harold{
  left:-6px;
  top:50%;
  transform:translateY(-50%) scale(1);
  transition-delay:0.36s;
}

.about-face--merlin{ object-position:center 62%; }
.about-face--olav{ object-position:center 15%; }

@media (prefers-reduced-motion: reduce){
  .about-face,
  .about-faces img.about-logo{
    transition:none;
  }
  .about-faces-pulse{
    animation:none;
  }
}

@media(max-width:900px){
  .timeline-today{
    padding:36px var(--section-x-mobile) 8px;
  }

  .timeline-today .about-faces,
  .timeline-today::before,
  .timeline-today::after{
    display:none;
  }

  .about-close-copy{
    margin-top:12px;
  }
}

.about-cta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  padding:36px 48px 110px;
  background:white;
}

.about-cta .section-button{
  margin-top:0;
}

/* FULL-SCREEN MENU */

body.menu-open{
  overflow:hidden;
}

.menu-button{
  position:relative;
  z-index:1002;
}

.menu-button span{
  transition:transform .3s ease, opacity .2s ease;
}

.menu-button.is-open span{
  background:#111;
}

.menu-button.is-open span:nth-child(1){
  transform:translateY(8.5px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2){
  opacity:0;
}

.menu-button.is-open span:nth-child(3){
  transform:translateY(-8.5px) rotate(-45deg);
}

.site-menu{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:112px 22px 22px;
  background:rgba(10,24,36,.50);
  backdrop-filter:blur(10px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .32s ease, visibility .32s ease;
}

.site-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.site-menu-panel{
  width:100%;
  height:100%;
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0, 1.85fr) minmax(280px, 0.58fr);
  overflow:hidden;
  border-radius:18px;
  background:var(--color-white, #ffffff);
  box-shadow:0 34px 100px rgba(5,20,31,.32);
  transform:translateY(24px) scale(.985);
  transition:transform .38s cubic-bezier(.2,.75,.25,1);
}

.site-menu.is-open .site-menu-panel{
  transform:translateY(0) scale(1);
}

.site-menu-visual{
  position:relative;
  min-width:0;
  overflow:hidden;
  background:#dbeaf5;
}

.site-menu-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:40% 55%;
}

.site-menu-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(8,24,35,.04), rgba(8,24,35,.20));
}

.site-menu-content{
  padding:44px 28px 28px;
  height:100%;
  min-height:0;
  overflow-x:hidden;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:18px;
  background:var(--color-primary, #5A8DB8);
  color:var(--color-white, #ffffff);
}

.site-menu-nav{
  flex:0 0 auto;
  display:flex;
  min-height:0;
  width:100%;
}

.site-menu-nav-cols{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  align-items:stretch;
  width:100%;
  flex:0 0 auto;
  min-height:0;
}

.site-menu-nav-col{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:0;
  min-width:0;
  height:auto;
}

.site-menu-nav-col + .site-menu-nav-col{display:none;}

.site-menu-nav-group{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
  width:100%;
  margin:0;
  padding:20px 0 18px;
  border-top:1px solid rgba(255,255,255,.2);
}

.site-menu-nav-group:first-child{
  padding-top:0;
  border-top:0;
}

.site-menu-nav-col:last-child .site-menu-nav-group{flex:0 0 auto;justify-content:flex-start;}

.site-menu-nav-label{
  display:block;
  margin:0 0 10px;
  color:rgba(255,255,255,.58);
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:1.7px;
  text-transform:uppercase;
}

.site-menu-nav a{
  position:relative;
  width:fit-content;
  color:var(--color-white, #ffffff);
  text-decoration:none;
  font-size:clamp(18px, 1.55vw, 26px);
  line-height:1.2;
  letter-spacing:-0.5px;
  font-weight:650;
  opacity:.88;
  transition:opacity .2s ease, transform .2s ease;
}

.site-menu-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background:var(--color-primary-light, #bfe7ff);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}

.site-menu-nav a:hover,
.site-menu-nav a:focus-visible{
  opacity:1;
  transform:translateX(7px);
}

.site-menu-nav a:hover::after,
.site-menu-nav a:focus-visible::after{
  transform:scaleX(1);
}

.site-menu-nav a[aria-current="page"]{
  opacity:1;
}

.site-menu-nav a[aria-current="page"]::after{
  transform:scaleX(1);
}

.site-menu-contact{
  margin-top:auto;
  flex:0 0 auto;
  display:grid;
  gap:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.28);
  position:relative;
  z-index:1;
  background:var(--color-primary, #5A8DB8);
}

.site-menu-contact-group span{
  display:block;
  margin-bottom:8px;
  color:var(--color-primary-light, #bfe7ff);
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
}

.site-menu-contact-group a{
  color:var(--color-white, #ffffff);
  text-decoration:none;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
}

/* RESPONSIVE */

@media(max-width:950px){
  .top-bar{
    padding:0 24px;
  }

  .brand-logo{
    width:70px;
    height:70px;
  }

  .gear-hero{
    height:720px;
    min-height:0;
  }

  .hero-overlay{
    padding:0 30px;
  }

  .hero-overlay h1{
    letter-spacing:-2px;
  }

  .hero-overlay p{
    font-size:17px;
    line-height:1.65;
  }

  .about-intro,
  .about-values,
  .about-cta{
    padding-left:24px;
    padding-right:24px;
  }

  .about-values-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:900px){
  .site-menu{
    padding:96px 18px 18px;
  }

  .site-menu-panel{
    height:100%;
    min-height:0;
    grid-template-columns:1fr;
    grid-template-rows:minmax(140px, 28%) 1fr;
  }

  .site-menu-content{
    padding:28px 26px 24px;
    gap:14px;
  }

  .site-menu-nav{
    flex:0 0 auto;
  }

  .site-menu-nav-cols{
    display:grid;
    grid-template-columns:1fr;
    gap:14px 20px;
    flex:0 0 auto;
  }

  .site-menu-nav-col{
    justify-content:flex-start;
    height:auto;
  }

  .site-menu-nav-col + .site-menu-nav-col{display:none;}

  .site-menu-nav-group{
    padding:16px 0 14px;
    gap:12px;
  }

  .site-menu-nav-col:last-child .site-menu-nav-group{flex:0 0 auto;justify-content:flex-start;}

  .site-menu-nav a{
    font-size:clamp(16px, 3.8vw, 22px);
    letter-spacing:-1.4px;
  }

  .site-menu-contact{
    margin-top:12px;
    grid-template-columns:1fr;
    gap:16px;
  }
}

@media(max-height:820px){
  .site-menu-contact{
    margin-top:12px;
  }
}

@media(max-width:560px){
  .about-intro{
    padding-top:72px;
  }

  .about-values-inner{
    grid-template-columns:1fr;
  }

  .about-cta{
    flex-direction:column;
    align-items:stretch;
    padding-bottom:80px;
  }

  .about-cta .section-button,
  .about-cta .gallery-button{
    width:100%;
  }

  .site-menu{
    padding:86px 10px 10px;
  }

  .site-menu-panel{
    height:100%;
    border-radius:18px;
    grid-template-rows:28% 1fr;
  }

  .site-menu-content{
    padding:26px 22px 20px;
  }

  .site-menu-nav a{
    font-size:21px;
  }

  .site-menu-contact{
    grid-template-columns:1fr;
    gap:14px;
    padding-top:20px;
  }
}
