/* =========================================================
   ENJOY MEDIA SOLUTIONS · v2 · Direction C (Corporate Trust)
   ========================================================= */

:root {
  /* Brand colours */
  --cyan:       #1290CB;
  --cyan-hover: #0F7BB0;
  --cyan-soft:  #E8F4FB;

  /* Neutral palette */
  --navy:       #0E1A2B;     /* primary text + structural */
  --navy-soft:  #1F2D42;     /* secondary text */
  --slate:      #5A6577;     /* tertiary text */
  --line:       #E3E7EC;     /* borders & dividers */
  --bg:         #FFFFFF;     /* primary background */
  --bg-soft:    #F7F9FB;     /* secondary surface */
  --bg-warm:    #FBFBFA;     /* hero / About background */

  /* Type */
  --f-display: 'Inter', system-ui, -apple-system, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --container: 1240px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

ul, ol { list-style: none; }

::selection { background: var(--cyan); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan);
  color: #fff;
}
.btn--primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(18, 144, 203, 0.6);
}
.btn--primary svg { transition: transform 0.25s ease; }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

/* Eyebrow / Section tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img {
  height: 36px;
  width: 36px;
}
.nav__wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}
.nav__wordmark small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--cyan); }

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px 0;
}
.nav__burger span {
  display: block; height: 2px; width: 100%;
  background: var(--navy); border-radius: 2px;
}
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 120px;
  background:
    radial-gradient(ellipse 800px 600px at 80% 10%, rgba(18, 144, 203, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(18, 144, 203, 0.04), transparent 60%),
    var(--bg-warm);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 26, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 26, 43, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__shape {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: 60px;
  opacity: 0.06;
  transform: rotate(-10deg);
}
.hero__shape svg { width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 130px 0 80px; }
  .hero__visual { display: none; }
}

.hero__copy .eyebrow { margin-bottom: 28px; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero__title em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 600;
}

.hero__lede {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy-soft);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__trust__item .num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__trust__item .num em {
  font-style: normal;
  color: var(--cyan);
}
.hero__trust__item .lbl {
  font-size: 12.5px;
  color: var(--slate);
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .hero__trust {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero__trust__item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .hero__trust__item:last-child { border-bottom: none; padding-bottom: 0; }
  .hero__trust__item .num { margin-bottom: 0; font-size: 28px; flex-shrink: 0; min-width: 80px; }
  .hero__trust__item .lbl { font-size: 13px; }
}

/* Hero visual / right column */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -30px rgba(14, 26, 43, 0.12), 0 10px 25px -15px rgba(14, 26, 43, 0.08);
}
.hero__card--1 {
  top: 0; right: 0;
  width: 75%;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero__card--2 {
  bottom: 8%; left: 0;
  width: 75%;
}
.hero__card .label {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__card .metric {
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero__card .metric em { font-style: normal; color: var(--cyan); }
.hero__card .desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}
.hero__card .bar {
  margin-top: 20px;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 100px;
  overflow: hidden;
}
.hero__card .bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, #4FB3DC 100%);
  border-radius: 100px;
}

/* sparkline */
.hero__card svg.sparkline { width: 100%; height: 50px; margin-top: 12px; }

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 18px 0 24px;
  max-width: 900px;
}
.section-title em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 600;
}
.section-lede {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-soft);
  font-weight: 400;
}

/* =========================================================
   SERVICES (Layout C — horizontal compact cards)
   ========================================================= */
.services {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.services__head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 900px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}
.service:last-child { border-right: none; }
.service:hover { background: var(--bg-soft); }

.service__step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
}

.service__icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 28px;
}
.service__icon svg { width: 100%; height: 100%; }

.service__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-soft);
  margin-bottom: 28px;
  flex-grow: 1;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.01em;
  transition: gap 0.25s ease;
  margin-top: auto;
}
.service__more:hover { gap: 12px; }

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service:nth-child(2n) { border-right: none; }
  .service:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .service:last-child { border-bottom: none; }
}

/* =========================================================
   APPROACH
   ========================================================= */
.approach {
  padding: 120px 0;
  background: var(--bg-soft);
}
.approach__head {
  max-width: 900px;
  margin-bottom: 64px;
}
.steps {
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.35s ease;
}
.step:hover { padding-left: 16px; }
.step__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 64px;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step__body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 14px;
}
.step__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-soft);
  max-width: 760px;
}

@media (max-width: 820px) {
  .approach { padding: 80px 0; }
  .step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .step:hover { padding-left: 0; }
  .step__num { font-size: 44px; }
}

/* =========================================================
   CLIENTS / TESTIMONIALS
   ========================================================= */
.clients {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.clients__head {
  max-width: 900px;
  margin-bottom: 64px;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all 0.3s ease;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 30px;
  font-family: var(--f-display);
  font-size: 90px;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.15;
  font-weight: 700;
}
.testimonial:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(18, 144, 203, 0.25);
}
.testimonial__brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.testimonial__brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.testimonial__brand-tag {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.testimonial__quote p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-soft);
  font-weight: 400;
}
.testimonial--placeholder .testimonial__quote p {
  color: var(--slate);
  font-style: italic;
}

@media (max-width: 820px) {
  .clients { padding: 80px 0; }
  .clients__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CHANNELS WE OPERATE
   ========================================================= */
.channels {
  padding: 120px 0;
  background: var(--bg);
}
.channels__head {
  max-width: 900px;
  margin-bottom: 64px;
}
.channels__groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.channel-group {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  padding: 40px 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: box-shadow 0.3s ease;
}
.channel-group:hover {
  box-shadow: 0 18px 50px -28px rgba(14, 26, 43, 0.12);
}

.channel-group__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.channel-group__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-top: 6px;
  flex-shrink: 0;
}
.channel-group__head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.channel-group__head p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-soft);
}

.channel-group__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel {
  padding: 20px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.25s ease;
}
.channel:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.channel__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.channel__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
}

@media (max-width: 1100px) {
  .channel-group { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .channels { padding: 80px 0; }
  .channel-group__items { grid-template-columns: 1fr; gap: 12px; }
  .channel-group { padding: 28px 22px; }
}

/* =========================================================
   ABOUT US
   ========================================================= */
.about {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.about__head {
  max-width: 900px;
  margin-bottom: 64px;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.about__col {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--cyan);
}
.about__col-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.about__col p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-soft);
  margin-bottom: 16px;
}
.about__col p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact__head {
  max-width: 900px;
  margin-bottom: 64px;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}

/* Visual (left column) */
.contact__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
  min-height: 540px;
}
.contact__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__visual-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.35) 0%, rgba(18, 144, 203, 0.25) 100%),
    linear-gradient(0deg, rgba(14, 26, 43, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* Form (right column) */
.form {
  padding: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: block;
  margin-bottom: 20px;
}
.field__lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 400;
  transition: all 0.2s ease;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 144, 203, 0.12);
}
.field textarea {
  min-height: 110px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%235A6577' stroke-width='1.4' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form__consent {
  font-size: 12px;
  line-height: 1.55;
  color: var(--slate);
  margin: 4px 0 22px;
}

.form__submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 14.5px;
}

.form__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--cyan);
  text-align: center;
  min-height: 18px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__visual { min-height: 280px; }
}
@media (max-width: 600px) {
  .contact { padding: 80px 0; }
  .form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__menu.is-open {
  display: flex !important;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 32px 24px;
  box-shadow: 0 10px 30px -10px rgba(14, 26, 43, 0.1);
}
.nav__menu.is-open a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.nav__menu.is-open a:last-child { border-bottom: none; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  color: #B8C2D1;
  padding: 80px 0 0;
}

/* Top: 3 nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid #1A2740;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: #8995A8;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--cyan); }

/* Middle: brand left + legal info right (3-part horizontal) */
.footer__base {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding: 36px 0;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__brand:hover { opacity: 0.85; }
.footer__brand img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.footer__brand strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}

/* Horizontal 3-part legal row */
.footer__legal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #8995A8;
}
.footer__legal span {
  display: block;
}
.footer__legal span:last-child {
  text-align: right;
}

/* Bottom copyright bar */
.footer__bar {
  border-top: 1px solid #1A2740;
  padding: 20px 0;
}
.footer__bar .container {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #6E7A8E;
}

/* Tablet */
@media (max-width: 900px) {
  .footer__nav {
    gap: 28px;
    padding-bottom: 48px;
  }
  .footer__base {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
    padding: 36px 0;
  }
  .footer__legal {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer__legal span:last-child {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer { padding-top: 60px; }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
}
