/* =============================================
   BÉTON MALIN — Composants
   ============================================= */

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.25s var(--ease);
}

.nav.scrolled {
  background: rgba(252, 252, 251, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__linkedin-btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #0A66C2 !important;
  transition: color 0.2s;
}
.nav__linkedin-btn i { font-size: 1.15rem; }
.nav__linkedin-btn:hover { color: #004182 !important; }

.nav__links .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-float);
  transition: background 0.2s;
}
.nav__links .nav-cta:hover { background: #132133; color: #fff; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 0;
  transition: all 0.25s;
}
.nav__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }


/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow badge */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(10,12,16,0.1);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.hero__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__eyebrow span:last-child {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title .muted-line {
  color: var(--muted);
}

.hero__sub-note {
  font-size: 0.82rem;
  color: var(--subtle);
  font-style: italic;
}

.hero__sub-headline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 1.1rem;
  max-width: 480px;
  letter-spacing: -0.015em;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__trust-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__trust-logos img {
  height: 18px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.hero__trust-logos img:hover { opacity: 0.7; }

/* Right panel */
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.hero__card-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__stats > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.hero__stats > div:first-child { padding-top: 0; }
.hero__stats > div:last-child  { border-bottom: none; padding-bottom: 0; }

.hero__stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.25rem;
}

.hero__stat-value {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Remove old promise element */
.hero__promise { display: none; }


/* ── SERVICES ── */
.services {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.section-head p {
  font-size: 1rem;
  max-width: 520px;
  color: var(--muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.svc {
  background: var(--surface);
  padding: 2.5rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  margin: -1px;
  position: relative;
  cursor: default;
}

.svc:hover {
  background: #fafaf9;
}

.svc__num {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.svc__icon { display: none; }

.svc h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.svc:hover h3 { color: inherit; }

.svc p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1rem;
}

.svc__footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.svc__arrow { display: none; }

.svc-sep {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0 0;
}

/* Featured card — AMO Amont */
.services__grid--featured {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.svc--featured {
  background: rgba(26,95,224,0.03);
  border: 1px solid rgba(26,95,224,0.18);
  border-left: 3px solid var(--accent);
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.svc--featured:hover {
  border-color: rgba(26,95,224,0.35);
  border-left-color: var(--accent);
}

.svc__featured-left,
.svc__featured-right {
  padding: 2.5rem;
}

.svc__featured-left {
  flex: 1 1 300px;
  border-right: 1px solid rgba(26,95,224,0.1);
  display: flex;
  flex-direction: column;
}

.svc__featured-right {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc--featured .svc__num {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.svc--featured h3 {
  font-size: 1.35rem;
}

.svc--featured small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

.svc__featured-cta {
  margin-top: 1.5rem;
}

.btn--sm {
  font-size: 0.78rem;
  padding: 0.6rem 1.1rem;
}

@media (max-width: 700px) {
  .svc--featured {
    flex-direction: column;
  }
  .svc__featured-left {
    border-right: none;
    border-bottom: 1px solid rgba(26,95,224,0.1);
  }
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.svc__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.svc__list li i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.visa__divider {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-bottom: 3rem;
}

.visa__divider h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.visa__divider p {
  font-size: 1rem;
  max-width: 520px;
  color: var(--muted);
}


/* ── V.I.S.A.A. ── */
.visa__sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.visa__track {
  position: absolute;
  top: 1.5rem;
  left: calc(10% + 0.75rem);
  right: calc(10% + 0.75rem);
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(26,95,224,0.2));
  z-index: 0;
}

.visa__step {
  position: relative;
  z-index: 1;
  padding: 0 1rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visa__step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.visa__letter {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(26,95,224,0.2);
}

.visa__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.visa__step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.visa__question {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-style: italic;
  flex-grow: 1;
}

.visa__transform {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.4;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(26,95,224,0.2);
  background: rgba(26,95,224,0.04);
}

@media (max-width: 900px) {
  .visa__sequence {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .visa__track { display: none; }
}

@media (max-width: 540px) {
  .visa__sequence {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .visa__step { text-align: left; align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0 1rem; }
  .visa__step-top { flex-direction: row; align-items: center; margin-bottom: 0; }
  .visa__step h3 { width: 100%; margin-top: 0.5rem; }
  .visa__question, .visa__transform { width: 100%; }
}


/* ── À PROPOS ── */
.about {
  background: radial-gradient(120% 100% at 70% 0%, #2A465F 0%, #1C3144 45%, #121F2B 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Blueprint drafting grid overlay */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Luminous glow orb top-left */
.about::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #2A465F;
  opacity: 0.35;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__photo-wrap {
  position: relative;
}

/* Offset decorative border */
.about__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(255,255,255,0.3);
  transform: translate(1rem, 1rem);
  pointer-events: none;
}

.about__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

/* Name card overlay */
.about__name-card {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(1rem, 1rem);
  background: var(--accent);
  color: #fff;
  padding: 1.25rem 1.5rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.about__name-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

.about__name-card span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.about__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}

.about__content h2 em {
  font-style: normal;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 4px;
}

.about__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 1.25rem;
}

.about__content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.72;
}

.about__quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.about__quote blockquote {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.about__quote cite {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

.about__wall-callout {
  margin: 1.5rem 0;
  padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 2px solid var(--accent);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 15px,
    rgba(0,0,0,0.06) 15px, rgba(0,0,0,0.06) 16px
  );
}
.about__callout-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.about__wall-callout p { color: rgba(255,255,255,0.5); margin-bottom: 0; }
.about__wall-callout strong { color: rgba(255,255,255,0.85); }

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.about__tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}


/* ── CLIENTS ── */
.clients {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients .section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.clients-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--subtle);
  text-align: center;
  margin-bottom: 2rem;
}

.ticker-wrap {
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }

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

.client-logo {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s;
  flex-shrink: 0;
}
.client-logo:hover { opacity: 1; filter: grayscale(0%); }


/* ── CONTACT ── */
#contact { background: var(--bg); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.contact__content p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.contact__links { display: flex; flex-direction: column; gap: 0.75rem; }

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.contact__link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-float);
}

.contact__link-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s;
  color: var(--text);
}

.contact__link:hover .contact__link-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138,146,163,0.6);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text);
}

.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 0.6rem 1.5rem 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A92A3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  transition: border-color 0.2s;
}

.form-select:focus { border-color: var(--text); }
.form-select option { color: var(--text); background: #fff; }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--subtle);
  margin-top: 0.75rem;
}



/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__logo {
  height: 36px;
  width: auto;
}

.footer__brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.footer__brand::after {
  content: '.';
  color: var(--accent);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--subtle);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--subtle);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--muted); }

.footer__contact-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__contact-link:hover { color: var(--accent); }
.footer__contact-link i { font-size: 1rem; }
