﻿/* ============================================================
   Styles partagés — header, footer, tokens, pages secondaires
   (les styles spécifiques au carousel/about/services restent
    dans index.html)
   ============================================================ */

/* ---------- Reset & tokens ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --slide-duration: 5s;
  --transition: 1.1s;
  --bg: #0a0a0c;
  --fg: #f5f1ea;
  --accent: #d9a55c;
  --muted: rgba(245, 241, 234, 0.55);
  --line: rgba(245, 241, 234, 0.18);

  --bg-light: #ebe5d9;
  --fg-dark: #1a1a1c;
  --muted-dark: rgba(26, 26, 28, 0.62);
  --line-dark: rgba(26, 26, 28, 0.12);
  --blue: #0e4f5a;
  --blue-hover: #166876;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--bg-light);
  color: var(--fg-dark);
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Playfair Display utilise des chiffres oldstyle par défaut — on force le style linéaire */
h1, h2, h3, h4, h5, h6,
.product-cta-link,
.stat-value,
.brand,
.footer-brand {
  font-variant-numeric: lining-nums;
}

body {
  overflow-x: hidden;
}

/* ---------- Header sticky ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px clamp(24px, 6vw, 96px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header:hover {
  background: var(--bg-light);
  border-bottom-color: var(--line-dark);
}

.header:not(:hover) .nav-links a:not(.nav-cta) {
  background: var(--bg-light);
  padding: 5.4px 12.6px;
  border-radius: 999px;
}

.header .nav-links a:not(.nav-cta) {
  transition: color 0.2s ease, background 0.3s ease, padding 0.3s ease;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg-dark);
  text-decoration: none;
}

.brand span {
  color: var(--blue);
}

.brand img {
  display: block;
  height: 66px;
  width: auto;
}

.footer-brand img {
  display: block;
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  font-family: 'Geist', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg-dark);
  text-decoration: none;
  letter-spacing: -0.005em;
  position: relative;
  padding: 5.4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.is-active {
  color: var(--blue);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
  background: var(--blue);
}

.nav-links .nav-cta {
  background: rgb(11, 128, 153);
  color: var(--bg-light);
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: rgb(9, 108, 130);
}

/* ---------- Hero avec image de fond ---------- */
.product-hero.has-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 10, 12, 0.82) 0%,
    rgba(10, 10, 12, 0.45) 55%,
    rgba(10, 10, 12, 0.2) 100%
  );
  pointer-events: none;
}

.product-hero.has-bg .product-hero-inner {
  position: relative;
  z-index: 1;
}

.product-hero.has-bg .page-eyebrow {
  color: var(--accent);
}

.product-hero.has-bg .page-eyebrow::before {
  background: var(--accent);
}

.product-hero.has-bg .product-title {
  color: var(--fg);
}

.product-hero.has-bg .product-lead {
  color: rgba(245, 241, 234, 0.72);
}

.product-hero-logo {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 48px);
  height: clamp(24px, 3.5vw, 44px);
  width: auto;
  z-index: 2;
}

/* ---------- Eyebrow réutilisable (pages secondaires) ---------- */
.page-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue);
}

/* ---------- Hero pages produits ---------- */
.product-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 14vh, 160px) clamp(24px, 6vw, 96px) clamp(48px, 7vh, 80px);
}

.product-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.product-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg-dark);
  margin-bottom: 28px;
}

.product-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.product-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 50ch;
}

/* ---------- Contenu pages produits ---------- */
.product-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
}

.product-section {
  margin-bottom: clamp(64px, 12vh, 120px);
}

.product-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 24px;
}

.product-section p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 65ch;
  margin-bottom: 16px;
}

.product-method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.product-method-list li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg-dark);
}

.method-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--blue);
  flex-shrink: 0;
  min-width: 24px;
}

.product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.product-stats.three {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .product-stats.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .product-stats,
  .product-stats.three {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: var(--fg-dark);
  padding: 40px 36px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 14px;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.7);
  max-width: 28ch;
}

/* ---------- Mise en page pages produits ---------- */

/* Intro centrée sous le hero */
.product-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 48px) clamp(24px, 6vw, 96px) clamp(60px, 8vh, 100px);
}

.product-intro h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 28px;
  max-width: 20ch;
}

.product-intro p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 65ch;
  margin-bottom: 18px;
}

/* Sections image + texte alternées */
.product-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
}

.product-split + .product-split {
  margin-top: clamp(32px, 5vw, 64px);
}

.product-split.reverse {
  grid-template-columns: 45fr 55fr;
}

.product-split.reverse .product-img-placeholder {
  grid-column: 2;
  grid-row: 1;
}

.product-split.reverse .product-split-text {
  grid-column: 1;
  grid-row: 1;
}

.product-img-placeholder {
  background: var(--fg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.25);
}

.product-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-split-text {
  padding: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(26, 26, 28, 0.07);
}

.product-split-text h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 24px;
  max-width: 18ch;
}

.product-split-text p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 16px;
}

.product-split-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 52ch;
}

.product-split-text ul li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  margin-bottom: 8px;
}

.product-split-text ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--blue);
  font-size: 1.1em;
  line-height: 1.7;
}


/* Bloc stats */
.product-stats-section {
  padding: clamp(64px, 10vh, 100px) clamp(24px, 6vw, 96px);
  max-width: 1400px;
  margin: 0 auto;
}

.product-stats-section .product-stats {
  margin-top: 0;
}

/* CTA bas de page */
.product-cta-section {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 80px) clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
  border-top: 1px solid var(--line-dark);
}

.product-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--fg-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.product-cta-link:hover {
  color: var(--blue);
}

.product-cta-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-cta-link:hover svg {
  transform: translate(4px, -4px);
}

/* Mobile */
@media (max-width: 760px) {
  .product-split,
  .product-split.reverse {
    grid-template-columns: 1fr;
  }

  .product-split.reverse .product-img-placeholder,
  .product-split.reverse .product-split-text {
    grid-column: auto;
    grid-row: auto;
  }

  .product-img-placeholder {
    min-height: 260px;
  }
}

/* ---------- Carte Leaflet ---------- */
#map {
  height: 260px;
  margin-top: 32px;
  border: 1px solid var(--line-dark);
}

/* ---------- Page contact ---------- */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 10vh, 100px) clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
}

.contact-hero {
  margin-bottom: 64px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 24px;
  max-width: 16ch;
}

.contact-hero p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 50ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.contact-form input,
.contact-form textarea {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  padding: 10px 0;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Geist', sans-serif;
}

.contact-form button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--bg-light);
  border: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.contact-form button:hover {
  background: var(--blue-hover);
}

.contact-info h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}

.contact-info h4:not(:first-child) {
  margin-top: 32px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark);
  font-weight: 300;
}

.contact-info a {
  color: var(--fg-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-info a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ---------- Page mentions légales ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(60px, 10vh, 100px) clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
}

.legal-hero {
  margin-bottom: 64px;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 24px;
}

.legal-hero p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 60ch;
}

.legal section + section {
  margin-top: 56px;
}

.legal h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg-dark);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.legal p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark);
  font-weight: 300;
  margin-bottom: 16px;
}

.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--blue-hover);
}

.legal dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 32px;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .legal dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .legal dd {
    margin-bottom: 16px;
  }
}

.legal dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 500;
  padding-top: 4px;
}

.legal dd {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark);
  font-weight: 300;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 16px;
}

.legal ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark);
  font-weight: 300;
  margin-bottom: 6px;
}

/* ---------- Page article actualité ---------- */
.actu-article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 48px) clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
}

.actu-article h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin: 0 0 28px;
}

.actu-article p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 65ch;
  margin-bottom: 18px;
}

.actu-article-img {
  margin: clamp(40px, 7vh, 72px) 0;
  overflow: hidden;
}

.actu-article-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ---------- Page actualités ---------- */
.actu-hero {
  padding: clamp(64px, 12vh, 120px) clamp(24px, 6vw, 96px) clamp(24px, 4vh, 48px);
  max-width: 900px;
}

.actu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px) clamp(80px, 14vh, 160px);
}

.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

@media (max-width: 900px) {
  .actu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .actu-grid { grid-template-columns: 1fr; }
}

.actu-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.actu-card.is-static {
  cursor: default;
}

.actu-card.is-static:hover .actu-card-img img {
  transform: none;
}

.actu-card.is-static:hover .actu-card-title {
  color: var(--fg-dark);
}

.actu-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--fg-dark);
  margin-bottom: 20px;
}

.actu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.actu-card:hover .actu-card-img img {
  transform: scale(1.04);
}

.actu-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.actu-card-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.actu-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg-dark);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.actu-card:hover .actu-card-title {
  color: var(--blue);
}

.actu-card-desc {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--muted-dark);
  font-weight: 300;
  flex: 1;
}

.actu-card-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s ease;
}

.actu-card:hover .actu-card-read {
  gap: 14px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--line-dark);
  padding: clamp(48px, 8vh, 80px) clamp(24px, 6vw, 96px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto 48px;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg-dark);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--blue);
}

.footer-baseline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-dark);
  font-weight: 300;
  max-width: 36ch;
}

.footer h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 0.92rem;
  color: var(--fg-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--blue);
}

.footer-info {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted-dark);
  font-weight: 300;
}

.footer-info a {
  color: var(--muted-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-info a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-dark);
}

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-bottom a {
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--blue);
}

