/* ═══════════════════════════════════════════════════════
   CAPITAL PARTNERS — Styles  (mobile-first)
   Breakpoints: tablet ≥ 768px · desktop ≥ 1024px
   Palette: cp-black #1D1D1B · cp-navy #213659
            cp-steel #929FB0 · cp-white #F0F2F5
═══════════════════════════════════════════════════════ */

/* ── Variables & Reset ────────────────────────────────── */
:root {
  --cp-black: #1D1D1B;
  --cp-navy:  #213659;
  --cp-steel: #929FB0;
  --cp-white: #F0F2F5;

  --font:  'Montserrat', 'Inter', sans-serif;
  --nav-h: 64px;
  --max-w: 1200px;
  --radius: 8px;
  --t: 200ms ease;
}

@media (min-width: 1024px) {
  :root { --nav-h: 72px; }
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cp-black);
  color: var(--cp-white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img     { display: block; max-width: 100%; }
video   { display: block; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
address { font-style: normal; }
textarea { resize: vertical; }
button  { font-family: var(--font); }

/* ── Typography helpers ───────────────────────────────── */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-steel);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-label { font-size: 13px; margin-bottom: 16px; }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--cp-white);
  line-height: 1.15;
  margin-bottom: 14px;
}

@media (min-width: 768px)  { .section-title { font-size: 36px; } }
@media (min-width: 1024px) { .section-title { font-size: 48px; margin-bottom: 16px; } }

.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--cp-steel);
  line-height: 1.6;
}

@media (min-width: 768px) { .section-sub { font-size: 18px; } }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px)  { .section-header { margin-bottom: 52px; } }
@media (min-width: 1024px) { .section-header { margin-bottom: 60px; } }

/* ── Container ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 24px; } }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--t), background-color var(--t);
  border: none;
  line-height: 1;
}

@media (min-width: 768px) {
  .btn { padding: 14px 28px; font-size: 15px; }
}

.btn-primary { background-color: var(--cp-white); color: var(--cp-black); }
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  background-color: transparent;
  color: var(--cp-white);
  border: 1px solid var(--cp-white);
}
.btn-outline:hover { background-color: rgba(240,242,245,0.08); }

.btn-full { width: 100%; text-align: center; }

/* ── NAV ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background-color: transparent;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (min-width: 768px)  { .nav-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 24px; gap: 48px; } }

.nav-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--t);
}

@media (min-width: 1024px) { .nav-logo img { height: 34px; } }
.nav-logo:hover img { opacity: 0.75; }

/* Links & CTA — ocultos en móvil, visibles en desktop */
.nav-links {
  display: none;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 32px;
    margin: 0 auto;
  }
  .nav-cta {
    display: inline-block;
    font-size: 13px;
    padding: 10px 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-steel);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--cp-white); }

/* Hamburger — visible en móvil/tablet */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--cp-white);
  transition: transform var(--t), opacity var(--t);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--cp-black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-overlay.is-open { display: flex; }

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.nav-overlay ul a {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-white);
  transition: color var(--t);
}
.nav-overlay ul a:hover { color: var(--cp-steel); }

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cp-steel);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color var(--t);
}
.nav-overlay-close:hover { color: var(--cp-white); }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--cp-black);
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Cubre el hero manteniendo ratio 16:9 sin distorsión */
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  filter: grayscale(1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(29,29,27,0.52);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: var(--nav-h) 24px 0;
  text-align: left;
  margin-left: 0;
}

@media (min-width: 768px)  { .hero-content { padding-left: 6vw; padding-right: 32px; } }
@media (min-width: 1024px) { .hero-content { padding-left: 8vw; max-width: 520px; } }

.hero-isotipo {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 20px;
}

@media (min-width: 768px) { .hero-isotipo { width: 42px; margin-bottom: 24px; } }

.hero-divider {
  width: 32px;
  height: 1px;
  background-color: var(--cp-steel);
  opacity: 0.6;
  margin-bottom: 24px;
}

@media (min-width: 768px) { .hero-divider { margin-bottom: 28px; } }

.hero-headline {
  font-size: 32px;
  font-weight: 700;
  color: var(--cp-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 480px)  { .hero-headline { font-size: 36px; } }
@media (min-width: 768px)  { .hero-headline { font-size: 42px; margin-bottom: 18px; } }
@media (min-width: 1024px) { .hero-headline { font-size: 48px; margin-bottom: 20px; } }

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--cp-steel);
  line-height: 1.75;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

@media (min-width: 768px)  { .hero-sub { font-size: 15px; margin-bottom: 36px; } }
@media (min-width: 1024px) { .hero-sub { font-size: 16px; margin-bottom: 40px; } }

.hero-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-white);
  border-bottom: 1px solid rgba(240,242,245,0.35);
  padding-bottom: 4px;
  transition: border-color var(--t), color var(--t);
}

.hero-cta:hover {
  color: var(--cp-steel);
  border-color: var(--cp-steel);
}

@media (min-width: 768px) { .hero-cta { font-size: 13px; } }

/* ── NÚMEROS ──────────────────────────────────────────── */
#numeros {
  background-color: var(--cp-black);
  padding: 60px 0;
}

@media (min-width: 768px)  { #numeros { padding: 72px 0; } }
@media (min-width: 1024px) { #numeros { padding: 80px 0; } }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .numeros-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  padding: 28px 16px;
  text-align: center;
  border-right: none;
  border-bottom: 1px solid var(--cp-navy);
}

/* 2-col: col derecha sin borde right visible por defecto */
.stat:nth-child(odd)  { border-right: 1px solid var(--cp-navy); }
.stat:nth-child(3),
.stat:nth-child(4)    { border-bottom: none; }

@media (min-width: 768px) {
  .stat {
    padding: 40px 24px;
    border-right: 1px solid var(--cp-navy);
    border-bottom: none;
  }
  .stat:last-child     { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--cp-navy); }
  .stat:nth-child(3)   { border-bottom: none; }
}

@media (min-width: 1024px) {
  .stat { padding: 40px 32px; }
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--cp-white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (min-width: 480px)  { .stat-number { font-size: 44px; } }
@media (min-width: 768px)  { .stat-number { font-size: 50px; margin-bottom: 12px; } }
@media (min-width: 1024px) { .stat-number { font-size: 56px; margin-bottom: 14px; } }

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-steel);
}

@media (min-width: 768px) { .stat-label { font-size: 12px; } }
@media (min-width: 1024px) { .stat-label { font-size: 13px; letter-spacing: 0.1em; } }

/* ── NOSOTROS ─────────────────────────────────────────── */
#nosotros {
  background-color: var(--cp-navy);
  overflow: hidden;
  display: grid;
}

/* Stack label, scene, and headline in the same grid cell */
.nosotros-label-top,
#nosotros .scene,
.nosotros-headline-overlay {
  grid-area: 1 / 1;
  width: 100%;
}

.nosotros-label-top {
  align-self: start;
  text-align: center;
  padding-top: 56px;
  z-index: 2;
  pointer-events: none;
}

.nosotros-label-top .section-label {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cp-white);
}

#nosotros .scene,
#nosotros .a3d { display: grid }

#nosotros .scene {
  overflow: hidden;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  perspective: 35em;
  width: 130vw;
  margin-inline: -15vw;
  padding-block: 3em;
  mask: linear-gradient(90deg, #0000, red 15% 85%, #0000);
  -webkit-mask: linear-gradient(90deg, #0000, red 15% 85%, #0000);
}

#nosotros .a3d {
  place-self: center;
  transform-style: preserve-3d;
  animation: carousel3d 32s linear infinite;
}

@keyframes carousel3d { to { rotate: y 1turn } }

.carousel-card {
  --w: 17.5em;
  --ba: 1turn / var(--n);
  grid-area: 1 / 1;
  width: var(--w);
  aspect-ratio: 7 / 10;
  object-fit: cover;
  border-radius: 1.5em;
  backface-visibility: hidden;
  filter: grayscale(1);
  transform:
    rotatey(calc(var(--i) * var(--ba)))
    translatez(calc(-1 * (.5 * var(--w) + .5em) / tan(.5 * var(--ba))));
}

@media (prefers-reduced-motion: reduce) {
  #nosotros .a3d { animation-duration: 128s }
}

.nosotros-headline-overlay {
  align-self: end;
  text-align: center;
  padding: 0 24px 16px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) { .nosotros-headline-overlay { padding: 0 40px 20px; } }

.nosotros-body-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 24px 56px;
  text-align: center;
}

@media (min-width: 768px) { .nosotros-body-wrap { padding: 12px 40px 64px; } }

.nosotros-headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--cp-white);
  line-height: 1.1;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px)  { .nosotros-headline { font-size: 44px; } }
@media (min-width: 1024px) { .nosotros-headline { font-size: 52px; } }

.nosotros-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,242,245,0.75);
  line-height: 1.85;
  padding-top: 8px;
}

@media (min-width: 768px)  { .nosotros-body { font-size: 17px; } }
@media (min-width: 1024px) { .nosotros-body { padding-top: 20px; } }

/* ── SERVICIOS ────────────────────────────────────────── */
#servicios {
  background-color: var(--cp-black);
  padding: 72px 0;
}

@media (min-width: 768px)  { #servicios { padding: 88px 0; } }
@media (min-width: 1024px) { #servicios { padding: 100px 0; } }

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
  .servicios-grid { gap: 24px; }
}

.card {
  background-color: var(--cp-navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: border-color var(--t);
}

@media (min-width: 768px)  { .card { padding: 32px 28px; } }
@media (min-width: 1024px) { .card { padding: 36px 32px; } }

.card:hover { border-color: var(--cp-steel); }

.card-center {
  grid-column: 1;
}

@media (min-width: 768px) {
  .card-center {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

.card-accent {
  width: 24px;
  height: 2px;
  background-color: var(--cp-steel);
  margin-bottom: 18px;
}

.card-icon {
  width: 24px;
  height: 24px;
  color: var(--cp-steel);
  margin-bottom: 14px;
}

@media (min-width: 768px) { .card-icon { width: 26px; height: 26px; } }

.card-icon svg { width: 100%; height: 100%; }

.card-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--cp-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

@media (min-width: 768px) { .card-name { font-size: 20px; } }

.card-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--cp-steel);
  line-height: 1.65;
}

@media (min-width: 768px) { .card-desc { font-size: 15px; } }

/* ── NUESTRAS EMPRESAS ────────────────────────────────── */
#empresas {
  padding: 88px 0;
  background-color: #F0F2F5;
  overflow: hidden;
}

.empresas-header {
  text-align: center;
  margin-bottom: 56px;
}

.empresas-header .section-label {
  color: #1D1D1B;
  opacity: 0.45;
  font-size: 22px;
  letter-spacing: 0.22em;
  font-weight: 300;
}

@media (min-width: 768px) {
  .empresas-header .section-label { font-size: 28px; }
}

.empresas-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.empresas-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.empresas-track.is-paused { animation-play-state: paused; }

.empresa-logo {
  height: 52px;
  width: auto;
  filter: brightness(0);
  opacity: 0.55;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.empresa-link { display: flex; align-items: center; flex-shrink: 0; }
.empresa-link:hover .empresa-logo { opacity: 1; }

@media (min-width: 768px) {
  #empresas { padding: 100px 0; }
  .empresa-logo { height: 60px; }
  .empresas-track { gap: 120px; }
}

/* ── HISTORIAS DE ÉXITO ───────────────────────────────── */
#exito {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

@media (min-width: 768px)  { #exito { padding: 88px 0; } }
@media (min-width: 1024px) { #exito { padding: 100px 0; } }

.exito-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.exito-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(29,29,27,0.82);
  z-index: 1;
}

.exito-content { position: relative; z-index: 2; }

.testimoniales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimoniales-grid { gap: 20px; }
}

@media (min-width: 1024px) {
  .testimoniales-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 24px;
  }
}

.testimonial {
  background-color: rgba(33,54,89,0.90);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) { .testimonial { padding: 28px 26px; gap: 18px; } }
@media (min-width: 1024px) { .testimonial { padding: 32px 28px; gap: 20px; } }

.testimonial blockquote {
  font-size: 14px;
  font-weight: 400;
  color: var(--cp-white);
  line-height: 1.75;
  font-style: normal;
  flex: 1;
}

@media (min-width: 768px) { .testimonial blockquote { font-size: 15px; } }

.testimonial cite {
  font-size: 12px;
  font-weight: 300;
  color: var(--cp-steel);
  letter-spacing: 0.04em;
  font-style: normal;
}

@media (min-width: 768px) { .testimonial cite { font-size: 13px; } }

/* ── CONTACTO ─────────────────────────────────────────── */
#contacto {
  background-color: var(--cp-navy);
  padding: 72px 0;
}

@media (min-width: 768px)  { #contacto { padding: 88px 0; } }
@media (min-width: 1024px) { #contacto { padding: 100px 0; } }

.contacto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

@media (min-width: 768px)  { .contacto-inner { padding: 0 32px; gap: 56px; } }
@media (min-width: 1024px) {
  .contacto-inner {
    padding: 0 24px;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.contacto-headline {
  font-size: 28px;
  font-weight: 700;
  color: var(--cp-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 768px)  { .contacto-headline { font-size: 36px; margin-bottom: 18px; } }
@media (min-width: 1024px) { .contacto-headline { font-size: clamp(30px, 3.2vw, 46px); margin-bottom: 20px; } }

.contacto-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--cp-steel);
  line-height: 1.7;
}

@media (min-width: 768px) { .contacto-sub { font-size: 16px; } }

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) { .contacto-form { gap: 20px; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-steel);
}

@media (min-width: 768px) { .form-group label { font-size: 13px; } }

.form-group input,
.form-group textarea {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--cp-black);
  border: 1px solid var(--cp-steel);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--cp-white);
  outline: none;
  transition: border-color var(--t);
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea { padding: 14px 16px; }
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(146,159,176,0.45); }

.form-group input:focus,
.form-group textarea:focus   { border-color: var(--cp-white); }

.form-group input.is-error,
.form-group textarea.is-error { border-color: #d95f5f; }

.form-message {
  font-size: 13px;
  min-height: 18px;
  line-height: 1.4;
}
.form-message.is-error   { color: #d95f5f; }
.form-message.is-success { color: #6ec97a; }

/* ── FOOTER ───────────────────────────────────────────── */
#footer {
  background-color: var(--cp-black);
  border-top: 1px solid var(--cp-navy);
  padding-top: 48px;
}

@media (min-width: 768px)  { #footer { padding-top: 56px; } }
@media (min-width: 1024px) { #footer { padding-top: 60px; } }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 0 32px 48px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-inner .footer-col:first-child { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 0 24px 52px;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 48px;
  }
  .footer-inner .footer-col:first-child { grid-column: auto; }
}

.footer-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  transition: opacity var(--t);
}

@media (min-width: 768px)  { .footer-logo img { height: 26px; margin-bottom: 14px; } }
.footer-logo:hover img { opacity: 0.7; }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--cp-steel);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 300;
  color: var(--cp-steel);
  letter-spacing: 0.05em;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--cp-white); }

.footer-social { display: flex; gap: 18px; }
.footer-social a {
  width: 18px;
  height: 18px;
  color: var(--cp-steel);
  transition: color var(--t);
}
.footer-social a:hover { color: var(--cp-white); }
.footer-social svg { width: 100%; height: 100%; }

#footer address {
  font-size: 13px;
  font-weight: 300;
  color: var(--cp-steel);
  line-height: 1.9;
}
#footer address a {
  color: var(--cp-steel);
  transition: color var(--t);
}
#footer address a:hover { color: var(--cp-white); }

.footer-copy {
  border-top: 1px solid var(--cp-navy);
  padding: 18px 20px;
  text-align: center;
}

@media (min-width: 768px) { .footer-copy { padding: 20px 24px; } }

.footer-copy p {
  font-size: 12px;
  font-weight: 300;
  color: var(--cp-steel);
  letter-spacing: 0.05em;
}
