/* ============================================================
   Gunjan Beauty World — ABOUT PAGE
   FINAL RESPONSIVE CSS
   Uses the Home Page responsive system as the reference.
   ============================================================ */

:root {
  --ivory: #F4EEE7;
  --paper: #F8F7F5;
  --gold: #CFA57A;
  --gold2: #D5AD84;
  --ink: #111111;
  --muted: rgba(102, 102, 102, .8);
  --espresso: #2A2019;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-display: "Urbanist", sans-serif;
  --font-body: "outfit", sans-serif;
  --container-max: 1440px;
  --page-gutter: clamp(16px, 4vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  min-width: 320px;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--container-max), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
}

.eyebrow {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 12%;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 56px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-copy {
  font-family: "outfit", sans-serif;
  ;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 26px;
  color: var(--muted);
  max-width: 680px;
}

/* ============================================================
   SHARED NAVBAR
   ============================================================ */

.hero-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(15, 10, 6, .55), rgba(15, 10, 6, 0));
  transition: background-color .25s ease, padding .25s ease;
}

.hero-logo {
  grid-column: 1;
  justify-self: start;
}

.hero-logo img {
  width: auto;
  height: clamp(42px, 4vw, 54px);
  max-width: 150px;
  object-fit: contain;
}

.hero-nav.scrolled {
  position: fixed;
  background: rgba(30, 22, 16, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
}

.hero-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  grid-column: 2;
  justify-self: center;
}

.hero-links a {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  position: relative;
  white-space: nowrap;
}

.hero-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #E4C793;
  transition: width .3s var(--ease);
}

.hero-links a:hover::after,
.hero-links .active::after {
  width: 100%;
}

.hero-right {
  display: flex;
  align-items: center;
  gap: 24px;
  grid-column: 3;
  justify-self: end;
}

.hero-login {
  font-family: "outfit", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.hero-login::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #E4C793;
  transition: width .3s var(--ease);
}

.hero-login:hover::after {
  width: 100%;
}

.hero-login:hover {
  color: #E4C793;
}

.hero-login .login-icon {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  transition: transform .3s var(--ease), color .3s var(--ease);
}

.hero-login:hover .login-icon {
  transform: translate(2px, -2px);
  color: #E4C793;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--gold);
  color: #F8F7F5;
  text-decoration: none;
  font-family: "outfit", sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1%;
  text-transform: none;
  transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.hero-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.hero-toggle {
  display: none;
  border: 0;
  background: rgba(0, 0, 0, .0);
  border-radius: 8px;
  padding: 9px;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.hero-toggle span {
  width: 25px;
  height: 1.5px;
  background: rgba(244, 238, 231, 1);
}

.hero-menu {
  display: none;
}

/* ============================================================
   PAGE BANNER
   ============================================================ */

.page-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17110c;
  color: var(--ivory);
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(15, 10, 6, .62) 0%,
      rgba(15, 10, 6, .42) 50%,
      rgba(12, 8, 5, .72) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-eyebrow {
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 12%;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-banner h1 {
  max-width: 1280px;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(34px, 6.2vw, 56px);
  line-height: 64px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-banner-copy {
  max-width: 26rem;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(244, 238, 231, .85);
}

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */

.journey {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--ivory);
  overflow: hidden;
}

.journey .section-title {
  margin-bottom: clamp(44px, 7vw, 64px);
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 72px);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(207, 165, 122, .35);
  transform: translateX(-50%);
}

.timeline-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
  transition: height .1s linear;
}

.timeline-start {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
}

.timeline-start span {
  position: relative;
  background: var(--ivory);
  padding: 8px 18px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(56px, 6vw, 90px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.timeline-text {
  grid-column: 1;
  order: 1;
  max-width: 440px;
  margin-inline: auto;
  text-align: center;
}

.timeline-year {
  grid-column: 2;
  order: 2;
  justify-self: center;
  z-index: 2;
  padding: 6px 4px;
  background: var(--ivory);
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--espresso);
}

.timeline-media {
  grid-column: 3;
  order: 3;
  justify-self: start;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(42, 32, 25, .35);
}

.timeline-item.reverse .timeline-text {
  grid-column: 3;
  order: 3;
}

.timeline-item.reverse .timeline-media {
  grid-column: 1;
  order: 1;
  justify-self: end;
}

.timeline-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(25px, 2.9vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-copy {
  max-width: 400px;
  margin-inline: auto;
  font-family: "outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 24px;
  color: var(--muted);
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.timeline-media:hover img {
  transform: scale(1.05);
}

/* Reveal animation */
.reveal-item {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.timeline-item .timeline-text,
.timeline-item .timeline-media {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.timeline-item .timeline-text {
  transform: translateX(-70px);
}

.timeline-item .timeline-media {
  transform: translateX(70px);
}

.timeline-item.reverse .timeline-text {
  transform: translateX(70px);
}

.timeline-item.reverse .timeline-media {
  transform: translateX(-70px);
}

.timeline-item .timeline-year {
  opacity: 0;
  transform: scale(.5);
  transition: opacity .6s var(--ease) .35s, transform .6s var(--ease) .35s;
}

.reveal-item.in-view {
  opacity: 1;
}

.timeline-item.in-view .timeline-text,
.timeline-item.in-view .timeline-media {
  opacity: 1;
  transform: none;
}

.timeline-item.in-view .timeline-text {
  transition-delay: .05s;
}

.timeline-item.in-view .timeline-media {
  transition-delay: .12s;
}

.timeline-item.in-view .timeline-year {
  opacity: 1;
  transform: none;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */

.who-we-are {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--paper);
}

.who-we-are .section-title {
  margin-bottom: 16px;
  text-align: center;
}

.who-we-are .section-copy {
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}

.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  /* NEW */
  inset: 0;
  /* NEW */
  transition: opacity .4s ease;
  /* NEW */
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  transition: transform .35s var(--ease);
}

.play-ring::before {
  content: '';
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  transition: box-shadow .35s ease;
}

.play-ring::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #111;
  margin-left: 4px;
}

.play-ring:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.play-ring:hover::before {
  box-shadow: 0 0 0 10px rgba(207, 165, 122, .16);
}

.media-frame img.is-hidden {
  opacity: 0;
}

.media-frame-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}

.media-frame-video.is-visible {
  opacity: 1;
}

/* ============================================================
   PURPOSE / TRAINING
   ============================================================ */

.purpose {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--ivory);
}

.training {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.split-media-first .split-media {
  order: 1;
}

.split-media-first .split-copy {
  order: 2;
}

.split-copy .section-title {
  margin: 12px 0 14px;
}

.split-media {
  min-width: 0;
}

.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 579/495;
  object-fit: cover;
  border-radius: 24px;
}

.training-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 40px);
}

.training-feature {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.training-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-bottom: 6px;
  background: var(--gold);
  color: var(--ivory);
  border-radius: 12px;
}

.training-feature-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
  text-transform: uppercase;
}

.training-feature-subtitle {
  font-family: "outfit", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

/* ============================================================
   GALLERY SHOWCASE — 9:16 auto-scrolling image carousel
   Drifts continuously to the left and loops seamlessly (the item
   list is rendered twice in the markup). Drag/swipe scrolls it
   manually; hovering pauses the drift. See about.js for the motor.
   ============================================================ */

.gallery-marquee {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--ivory);
  overflow: hidden;
}

.gallery-marquee .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.gallery-marquee-copy {
  margin: 0 auto clamp(36px, 5vw, 54px);
  text-align: center;
}

.gallery-marquee__viewport {
  width: 100%;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.gallery-marquee__viewport.is-dragging {
  cursor: grabbing;
}

.gallery-marquee__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding-inline: var(--page-gutter);
  will-change: transform;
}

.gallery-marquee__item {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 4/5;
  position: relative;
  transition: transform .5s var(--ease);
}

.gallery-marquee__viewport:not(.is-dragging) .gallery-marquee__item:hover {
  transform: translateY(0px);
}

.gallery-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  border-radius: 24px;
}

/* ============================================================
   FOLLOW OUR BEAUTY JOURNEY
   Shared .follow-box styles come from the Home Page stylesheet.
   These rules make About work safely even if that stylesheet loads
   after/before this file.
   ============================================================ */

.follow {
  padding: clamp(70px, 8vw, 100px) 0;
  background: var(--ivory);
  overflow: hidden;
}

.follow .section-title {
  margin-bottom: clamp(32px, 5vw, 50px);
  text-align: center;
}

.follow-carousel {
  position: relative;
}

.follow-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.follow-grid::-webkit-scrollbar {
  display: none;
}

.follow-box {
  flex: 0 0 calc((100% - 60px)/4);
  min-width: 0;
  scroll-snap-align: start;
  aspect-ratio: 295/400;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .6s var(--ease);
}

.follow-box:hover {
  transform: translateY(-2px) scale(1.02);
}

.follow-box .reel-video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  border-radius: inherit;
  cursor: pointer;
}

.follow-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.follow-nav:hover {
  background: var(--gold);
  color: #fff;
}

.follow-nav:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.follow-nav--prev {
  left: -8px;
}

.follow-nav--next {
  right: -8px;
}

/* ============================================================
   FOOTER — SAME RESPONSIVE SYSTEM AS HOME PAGE
   ============================================================ */

.footer {
  background: #D1A77D;
  color: var(--ivory);
  padding: clamp(56px, 6vw, 72px) 0 30px;
}

.footer-top {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  flex-wrap: wrap;

  gap: 40px;

  padding-bottom: 48px;
}

.footer-brand {
  flex: 0 1 300px;
  min-width: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  flex-wrap: nowrap;

  gap: clamp(25px, 4vw, 55px);

  min-width: 0;
}

.footer-col {
  min-width: 130px;
}

.footer-contact {
  max-width: 230px;
}

.footer-brand img {
  width: 120px;
  height: auto;
  filter: none;
}

.footer-brand p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;

  margin-top: 12px;

  font-size: 16px;
  line-height: 22px;

  max-width: 250px;

  color: rgba(244, 238, 231, .9);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}

.footer-socials a {
  text-decoration: none;

  background-color: rgba(244, 238, 231, .2);

  padding: 12px;

  border-radius: 12px;
}

.footer-socials img {
  width: 20px;
  height: auto;
}

.footer-col h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a {
  font-family: "outfit", sans-serif;
  font-weight: 400;

  display: block;

  text-decoration: none;

  font-size: 16px;
  line-height: 28px;

  color: rgba(244, 238, 231, .9);

  transition:
    transform .3s,
    color .3s;
}

.footer-col a:hover {
  transform: translateX(5px);
  color: #fff;
}

.footer-contact p {
  font-family: "outfit", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(244, 238, 231, .2);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding-top: 22px;

  font-family: "outfit", sans-serif;
  font-size: 16px;
}

.back-top {
  border: 0;
  background: none;

  color: var(--ivory);

  cursor: pointer;

  font: inherit;

  display: flex;

  gap: 8px;

  align-items: center;

  transition: transform .25s ease;
}

.back-top:hover {
  transform: translateY(-2px);
}

@media(max-width:1200px) {
  .hero-nav {
    padding-inline: 32px;
  }

  .hero-links {
    gap: 14px;
  }

  .hero-right {
    gap: 16px;
  }

  .hero-cta {
    padding-inline: 18px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
  }

  .page-banner {
    position: relative;
    min-height: 500px;
  }

  .page-banner h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-cta {
    padding-inline: 18px;
  }

  .timeline {
    gap: 56px;
  }

  .timeline-media {
    max-width: 460px;
  }

  .split {
    gap: 40px;
  }
}

/* ============================================================
   1000px — TABLET
   ============================================================ */

@media(max-width:1000px) {

  .hero-links,
  .hero-right {
    display: none;
  }

  .hero-nav {
    display: flex;
    justify-content: space-between;
  }

  .hero-toggle {
    order: 2;
    display: flex;
  }

  body.menu-open {
    overflow: hidden
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 6, .55);
    z-index: 7;
    animation: gbwFadeIn .3s ease
  }

  @keyframes gbwFadeIn {
    from {
      opacity: 0
    }

    to {
      opacity: 1
    }
  }

  .hero-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: min(320px, 82vw);
    background: rgba(244, 238, 231, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 72px 32px 32px;
    overflow-y: auto;
    box-shadow: -16px 0 48px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }

  .hero-menu.open {
    transform: none;
  }

  .hero-menu a {
    color: #111111;
    text-decoration: none;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 08px 0;
  }

  .hero-menu a.hero-cta {
    color: #F4EEE7;
    font-family: "outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 12px;
    margin-top: 14px;
    text-align: center;
    width: 100%;
  }

  .hero-menu .close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: 0;
    color: #111111;
    font-size: 34px;
    cursor: pointer;
  }

  .hero-menu a:hover {
    color: rgba(207, 165, 122, 1);
    transform: translatex(4px);
  }

  .hero-menu a.hero-cta:hover {
    color: #F4EEE7;
    transform: translateY(-2px);
  }

  .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .section-copy {
    font-size: 17px;
  }

  .timeline-start {
    font-size: 16px;
  }

  .timeline-year {
    font-size: 18px;
  }

  .timeline-item {
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    gap: 20px;
  }

  .timeline-media {
    max-width: 100%;
  }

  .split {
    gap: 32px;
  }

  .follow-box {
    flex-basis: calc((100% - 20px)/2);
  }

  .follow-box {
    flex: 0 0 calc((100% - 20px)/2);
  }

  .footer-links {
    display: flex;
    justify-content: flex-start;
    flex: 1;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .footer-contact {
    flex-basis: 100%;
    max-width: none;
  }
}

  @media(max-width:900px) {
    .page-banner {
      min-height: 450px;
    }

    .footer-col {
      min-width: 90px;

    }
  }

  /* ============================================================
   680px — MOBILE
   ============================================================ */

  @media(max-width:680px) {
    .container {
      width: calc(100% - 48px);
    }

    .hero-nav {
      padding: 18px 16px;
    }

    .hero-logo img {
      height: 43px;
      max-width: 120px;
    }

    .hero-toggle {
      padding: 8px;
    }

    .hero-menu {
      padding: 80px 24px;
    }

    .page-banner {
      min-height: 400px;
    }

    .page-banner-media img {
      object-position: center center;
    }

    .page-banner-scrim {
      background: linear-gradient(180deg,
          rgba(15, 10, 6, .68),
          rgba(15, 10, 6, .48) 48%,
          rgba(12, 8, 5, .78));
    }

    .page-banner .container {
      padding-top: 48px;
    }

    .page-banner-eyebrow {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .page-banner h1 {
      font-size: 36px;
      line-height: 44px;
    }

    .page-banner-copy {
      font-size: 16px;
      line-height: 24px;
      max-width: 34rem;
    }

    .journey,
    .who-we-are,
    .purpose,
    .training,
    .gallery-marquee,
    .follow {
      padding-block: 64px;
    }

    .gallery-marquee__item {
      width: 200px;
    }

    .gallery-marquee__track {
      gap: 14px;
    }

    .journey,
    .who-we-are,
    .purpose,
    .training,
    .follow {
      padding-block: 64px;
    }

    .section-title {
      font-size: 32px;
      line-height: 38px;
    }

    .who-we-are .section-title {
      margin-bottom: 12px;
    }

    .section-copy {
      font-size: 16px;
      line-height: 24px;
    }

    .journey .section-title {
      margin-bottom: 44px;
    }

    .timeline {
      gap: 42px;
    }

    .timeline-line {
      left: 8px;
    }

    .timeline-item,
    .timeline-item.reverse {
      grid-template-columns: 1fr;
      padding-left: 28px;
      gap: 16px;
    }

    .timeline-item .timeline-year,
    .timeline-item.reverse .timeline-year {
      grid-column: 1;
      order: 1;
      justify-self: start;
      padding: 0;
      text-align: left;
      font-size: 14px;
    }

    .timeline-item .timeline-text,
    .timeline-item.reverse .timeline-text {
      grid-column: 1;
      order: 2;
      max-width: none;
      margin-left: 0;
      text-align: left;
      transform: translateX(-40px);
    }

    .timeline-item .timeline-copy,
    .timeline-item.reverse .timeline-copy {
      max-width: none;
      margin-left: 0;
    }

    .timeline-item .timeline-media,
    .timeline-item.reverse .timeline-media {
      grid-column: 1;
      order: 3;
      max-width: none;
      justify-self: stretch;
      aspect-ratio: 16/10;
      border-radius: 16px;
      transform: translateX(-40px);
    }

    .timeline-item.in-view .timeline-text,
    .timeline-item.in-view .timeline-media {
      transform: none;
    }

    .timeline-start {
      padding-left: 28px;
      text-align: left;
      font-size: 14px;
    }

    .timeline-start span {
      padding: 0 12px 0 0;
    }

    .timeline-title {
      font-size: clamp24px;
      margin-bottom: 6px;
    }

    .timeline-copy {
      font-size: 16px;
      line-height: 24px;
    }

    .who-we-are .section-copy {
      margin-bottom: 38px;
    }

    .media-frame {
      border-radius: 16px;
    }

    .play-ring {
      width: 76px;
      height: 76px;
    }

    .play-ring::before {
      width: 62px;
      height: 62px;
    }

    .play-ring::after {
      border-top-width: 8px;
      border-bottom-width: 8px;
      border-left-width: 12px;
    }

    .split,
    .split-media-first {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .split-media-first .split-media,
    .split-media-first .split-copy {
      order: initial;
    }

    .split-copy .section-title {
      margin-top: 10px;
    }

    .split-media img {
      border-radius: 16px;
      aspect-ratio: 16/11;
    }

    .training-features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px 16px;
    }

    .training-feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
    }

    .training-feature-title {
      font-size: 16px;
      line-height: 1.2;
    }

    .training-feature-subtitle {
      font-size: 13px;
      line-height: 19px;
    }

    .follow .section-title {
      margin-bottom: 30px;
    }

    .follow-grid {
      gap: 12px;
    }

    .follow-box {
      flex: 0 0 calc((100% - 12px)/2);
      border-radius: 18px;
    }

    .follow-nav {
      width: 38px;
      height: 38px;
    }

    .follow-nav--prev {
      left: -5px;
    }

    .follow-nav--next {
      right: -5px;
    }

    /* FOOTER */
    .footer {
      padding-top: 56px;
    }

    .footer-top {
      flex-direction: column;
      gap: 35px;
      padding-bottom: 32px;
    }

    .footer-brand {
      flex-basis: auto;
    }

    .footer-links {
      width: 100%;
      justify-content: flex-start;
      gap: 28px;
    }

    .footer-contact {
      flex-basis: 100%;
      max-width: none;
    }

    .footer-socials {
      margin-top: 30px;
    }

    .footer-col {
      min-width: 120px;

    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: row;
      gap: 12px;
      font-size: 14px;
      padding-top: 24px;
    }

    .back-top {
      min-height: 14px;
    }
  }

  /* ============================================================
   480px
   ============================================================ */

  @media(max-width:480px) {
    .page-banner {
      min-height: 350px;
    }

    .page-banner h1 {
      font-size: 32px;
      line-height: 38px;
    }

    .page-banner-copy {
      font-size: 15px;
      line-height: 23px;
    }

    .section-title {
      font-size: 28px;
      line-height: 36px;
    }

    .journey,
    .who-we-are,
    .purpose,
    .training,
    .follow {
      padding-block: 56px;
    }

    .journey .section-title {
      margin-bottom: 38px;
    }

    .timeline {
      gap: 36px;
    }

    .timeline-item,
    .timeline-item.reverse {
      padding-left: 24px;
    }

    .timeline-line {
      left: 6px;
    }

    .timeline-start {
      padding-left: 24px;
    }

    .timeline-title {
      font-size: 25px;
    }

    .timeline-copy {
      font-size: 15px;
      line-height: 23px;
    }

    .timeline-media {
      border-radius: 14px;
    }

    .training-features {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .training-feature {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      column-gap: 12px;
    }

    .training-feature-icon {
      grid-row: span 2;
      margin: 0;
    }

    .training-feature-title,
    .training-feature-subtitle {
      align-self: center;
    }

    .play-ring {
      width: 68px;
      height: 68px;
    }

    .play-ring::before {
      width: 54px;
      height: 54px;
    }

    .follow-box {
      flex: 0 0 50%;
    }

    .footer-links {
      flex-direction: column;
      gap: 24px;
    }

    .footer-col {
      min-width: 0;
    }

    .footer-brand p {
      font-size: 15px;
      line-height: 21px;
      max-width: 200px;
    }

    .footer-col a {
      font-size: 16px;
      line-height: 26px;
    }

    .footer-contact p {
      font-size: 16px;
      line-height: 22px;
    }

    .footer-bottom {
      text-align: center;
      align-items: center;
      flex-direction: column;
      gap: 8px;
      font-size: 15px;
    }

    .back-top {
      min-height: 14px;
    }
  }

  /* ============================================================
   380px — SMALL PHONES
   ============================================================ */

  @media(max-width:380px) {

    .container,
    .footer .container {
      width: calc(100% - 32px);
    }

    .hero-nav {
      padding-inline: 12px;
    }

    .hero-logo img {
      height: 39px;
      max-width: 108px;
    }

    .hero-menu a {
      font-size: 25px;
    }

    .page-banner {
      min-height: 350px;
    }

    .section-title {
      font-size: 28px;
    }

    .timeline-title {
      font-size: 24px;
    }

    .timeline-copy {
      font-size: 14px;
      line-height: 22px;
    }

    .split {
      gap: 26px;
    }

    .footer {
      padding-top: 48px;
    }

    .footer-brand img {
      width: 110px;
    }

    .footer-socials {
      margin-top: 24px;
    }

    .footer-socials img {
      width: 20px;
    }

    .footer-brand p {
      font-size: 15px;
      line-height: 21px;
      max-width: 200px;
    }

    .footer-col a {
      font-size: 16px;
      line-height: 26px;
    }

    .footer-contact p {
      font-size: 16px;
      line-height: 22px;
    }

    .footer-bottom {
      font-size: 14px;
    }
  }

  /* ============================================================
   TOUCH DEVICES
   ============================================================ */

  @media(hover:none) and (pointer:coarse) {
    .timeline-media:hover img {
      transform: none;
    }

    .hero-cta:hover {
      transform: none;
      box-shadow: none;
    }

    .play-ring:hover {
      transform: translate(-50%, -50%);
    }

    .play-ring:hover::before {
      box-shadow: none;
    }

    .follow-box:hover {
      transform: none;
    }

    .footer-socials a:hover,
    .footer-col a:hover,
    .back-top:hover {
      transform: none;
    }
  }

  /* ============================================================
   REDUCED MOTION
   ============================================================ */

  @media(prefers-reduced-motion:reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }

    .timeline-item .timeline-text,
    .timeline-item .timeline-media,
    .timeline-item .timeline-year,
    .reveal-item {
      opacity: 1 !important;
      transform: none !important;
    }
  }