/* =========================================================
   Construction Khelfaoui — style.css
   Tokens + composants, mobile-first, easing unique partout
   ========================================================= */

:root {
  --charcoal: #1a1a1a;
  --charcoal-alt: #242424;
  --charcoal-deep: #141414;
  --red: #d32f2f;
  --red-dark: #e53935;
  --white: #ffffff;
  --gray: #cccccc;

  --font-heading: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-archivo: "Archivo", Helvetica, Arial, sans-serif;

  --container-w: 1240px;
  --header-h: 84px;

  /* courbe d'easing unique pour toutes les transitions "vivantes" */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

button {
  font-family: inherit;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* =========================================================
   Reveal on scroll (avec stagger sur les groupes .stagger)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > .reveal {
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 44px;
  width: auto;
  display: block;
}

/* ---- Nav centrale ---- */
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a:hover {
  color: var(--white);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after {
  transform: scaleX(1);
}

.nav__mobile-actions {
  display: none;
}

/* ---- Droite : téléphone / langue / burger ---- */
.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.btn-phone {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-phone:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(211, 47, 47, 0.7);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
}
.lang-switch button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.2s var(--ease);
}
.lang-switch .lang-active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--red);
}
.lang-switch__divider {
  color: rgba(255, 255, 255, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal-alt);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav.is-open {
    max-height: 420px;
  }
  .nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav a::after {
    display: none;
  }

  .nav__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px 22px;
  }

  .header__right .btn-phone,
  .header__right .lang-switch {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 599px) {
  .logo {
    height: 40px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
  padding-top: var(--header-h);
  padding-bottom: 100px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media picture {
  display: contents;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: contrast(1.1) saturate(1.05) brightness(0.85);
  transform: scale(1);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__img {
    animation: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 0% 100%, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.4) 32%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.12) 62%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__title {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  max-width: 16ch;
}

.hero__subtitle {
  margin: 0 0 34px;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray);
  max-width: 46ch;
}

/* ---- Entrée en cascade du contenu du hero (moment fort unique) ----
   Phase 1 (0 → ~0.9s) : la photo seule, sans texte.
   Phase 2 (dès ~0.9s) : cascade rapide titre → sous-titre → boutons → carte. */
@media (prefers-reduced-motion: no-preference) {
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__card {
    opacity: 0;
    animation: heroRise 0.65s var(--ease) both;
  }
  .hero__title    { animation-delay: 0.9s; }
  .hero__subtitle { animation-delay: 1.05s; }
  .hero__actions  { animation-delay: 1.2s; }
  .hero__card     { animation-delay: 1.35s; }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(211, 47, 47, 0.65);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(211, 47, 47, 0.85);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--charcoal);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35);
}

.btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--ghost-dark:hover {
  background: rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* ---- Carte glassmorphism ---- */
.hero__card {
  position: absolute;
  right: 24px;
  bottom: 32px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid;
  gap: 6px;
  min-width: 210px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.hero__card-rbq {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero__card-line {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray);
}

@media (max-width: 860px) {
  .hero__card {
    position: static;
    margin-top: 32px;
    width: 100%;
  }
  .hero {
    justify-content: flex-start;
    padding-bottom: 48px;
  }
}

/* ---- Hero mobile (<600px) : contenu centré verticalement, air haut/bas ---- */
@media (max-width: 599px) {
  .hero {
    justify-content: center;
    padding-top: calc(var(--header-h) + 44px);
    padding-bottom: 48px;
  }

  .hero__content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero__subtitle {
    margin-bottom: 38px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.92rem;
  }

  .hero__card {
    margin-top: 40px;
    background: rgba(20, 20, 20, 0.92);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.38) 22%, rgba(10, 10, 10, 0.58) 45%, rgba(10, 10, 10, 0.88) 68%, rgba(10, 10, 10, 0.97) 100%),
      linear-gradient(90deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.15) 70%);
  }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust__grid {
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust__value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}

.trust__label {
  font-size: 0.88rem;
  color: var(--gray);
}

/* =========================================================
   Section intro (partagé Services / Réalisations / Contact)
   ========================================================= */
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--red);
  text-transform: uppercase;
}

.section-title {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-lead {
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray);
}

.section-intro {
  max-width: 700px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 110px 0 96px;
  scroll-margin-top: var(--header-h);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  background: var(--charcoal-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 47, 47, 0.55);
  background: #262626;
  box-shadow: 0 20px 40px -24px rgba(211, 47, 47, 0.5);
}

.service-card__num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

.service-card__title {
  margin: 16px 0 10px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--gray);
}

.process-title {
  margin: 96px 0 40px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  text-transform: uppercase;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.process-step {
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  padding-top: 20px;
  transition: border-color 0.35s var(--ease);
}

.process-step--first {
  border-top-color: var(--red);
}

.process-step__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #3d3d3d;
}

.process-step__title {
  margin: 8px 0 8px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.process-step__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
}

/* =========================================================
   PROJECTS (avant/après + galerie)
   ========================================================= */
.projects {
  padding: 110px 0 96px;
  scroll-margin-top: var(--header-h);
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 56px;
}

.project-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.project-row--reversed .project-row__media {
  order: 2;
}

.project-row__tag {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: var(--red);
}

.project-row__title {
  margin: 12px 0 14px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  text-transform: uppercase;
}

.project-row__text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.project-row__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #8d8d8d;
}

/* ---- Slider avant / après ---- */
.ba-slider {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--charcoal-alt);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider__before-clip {
  position: absolute;
  inset: 0;
  /* clip-path posé en JS via --split */
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--red);
  pointer-events: none;
  transform: translateX(-1px);
  transition: box-shadow 0.2s var(--ease);
}

.ba-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ba-slider.is-dragging .ba-slider__knob {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}

.ba-slider__tag {
  position: absolute;
  top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 6px 11px;
  border-radius: 3px;
  pointer-events: none;
  text-transform: uppercase;
  color: var(--white);
}

.ba-slider__tag--before {
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
}

.ba-slider__tag--after {
  right: 14px;
  background: var(--red);
}

.projects__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 96px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.06);
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial {
  padding: 96px 0;
}

.testimonial__card {
  background: var(--charcoal-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 56px 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.testimonial__roof {
  display: block;
  width: 52px;
  height: 35px;
  flex: 0 0 auto;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 74% 100%, 50% 40%, 26% 100%, 0 100%);
}

.testimonial__quote {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--white);
}

.testimonial__author {
  margin: 20px 0 0;
  font-size: 0.94rem;
  color: #a8a8a8;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--red);
}

.cta-band__inner {
  padding: 76px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}

.cta-band__text {
  margin: 14px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 110px 0 96px;
  scroll-margin-top: var(--header-h);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.contact__form {
  background: var(--charcoal-alt);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #9e9e9e;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 15px 16px;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.18);
}

.field textarea {
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.btn-submit {
  background: var(--red);
  border: 0;
  color: var(--white);
  padding: 17px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(211, 47, 47, 0.7);
}

.form-confirm {
  margin: 0;
  font-size: 0.94rem;
  color: #81c784;
  animation: heroRise 0.5s var(--ease) both;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-item__label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #8d8d8d;
  text-transform: uppercase;
}

.info-item__phone {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.info-item__phone:hover {
  color: var(--red);
}

.info-item__link {
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.info-item__link:hover {
  color: var(--red);
}

.info-item__text {
  font-size: 1rem;
  color: #ededed;
}

.info-item__licence {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--red);
}

.contact__map {
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(0.4) contrast(1.05);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  padding: 52px 24px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__top {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #8d8d8d;
}

.footer__bottom {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 3px;
}

.footer__roof {
  display: block;
  width: 14px;
  height: 10px;
  margin-top: 2px;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 72% 100%, 50% 42%, 28% 100%, 0 100%);
}

.footer__text {
  margin: 0;
  font-size: 0.88rem;
  color: #8d8d8d;
  max-width: 420px;
  line-height: 1.6;
}

.footer__copy {
  font-size: 0.82rem;
  color: #616161;
}
