/* =========================================================
   DVRKFLOW MUSIC
   STYLE.CSS — VERSION CORRIGÉE
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --bg: #f8f6f1;
  --bg-soft: #f2eee6;
  --bg-dark: #11100e;

  --gold: #d9a52a;
  --gold-light: #f2c45c;
  --gold-dark: #b98512;

  --black: #11100e;
  --white: #ffffff;

  --text: #1c1a17;
  --muted: #68635b;
  --muted-light: #8b857b;

  --line: rgba(17, 16, 14, 0.10);
  --line-gold: rgba(217, 165, 42, 0.30);

  --max: 1180px;
  --radius: 24px;

  --shadow:
    0 20px 60px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;

  background:
    radial-gradient(
      1000px circle at 85% 0%,
      rgba(217,165,42,.12),
      transparent 45%
    ),
    radial-gradient(
      700px circle at 0% 20%,
      rgba(217,165,42,.08),
      transparent 40%
    ),
    #f8f6f1;

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.55;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/*
   IMPORTANT :
   Aucun body::before / body:before ici.
   Cela évite le problème du CSS mal interprété
   présent dans l'ancienne version.
*/


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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

.skip-link {
  position: fixed;

  left: 15px;
  top: -100px;

  z-index: 9999;

  padding: 10px 15px;

  border-radius: 10px;

  background: var(--gold-light);
  color: var(--black);
}

.skip-link:focus {
  top: 15px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  background:
    rgba(248, 246, 241, 0.88);

  border-bottom:
    1px solid transparent;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background:
    rgba(248, 246, 241, 0.96);

  border-color: var(--line);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.05);
}

.nav {
  min-height: 76px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
  display: flex;

  align-items: center;

  gap: 11px;

  flex-shrink: 0;

  font-size: 0.94rem;

  font-weight: 900;

  letter-spacing: 0.04em;
}

.brand img {
  display: block;

  width: 52px;
  height: 52px;

  object-fit: contain;

  flex-shrink: 0;
}

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

.brand b {
  color: var(--gold-dark);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-left: auto;
}

.nav-links a {
  color: #514d46;

  font-size: 0.86rem;

  font-weight: 650;

  transition:
    color 0.2s ease;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  padding: 10px 17px;

  border:
    1px solid var(--line-gold);

  border-radius: 999px;

  background:
    rgba(217,165,42,0.08);

  color: var(--black) !important;
}

.nav-cta:hover {
  background:
    rgba(217,165,42,0.15);
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  margin-left: auto;

  border: 0;

  background: transparent;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  border-radius: 4px;

  background: var(--black);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;

  align-items: center;

  padding:
    145px
    0
    90px;

  overflow: hidden;
}

.hero-grid {
  position: relative;

  z-index: 2;

  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(0, 0.96fr);

  gap: 60px;

  align-items: center;
}

.hero-copy {
  position: relative;

  z-index: 3;

  min-width: 0;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.kicker,
.eyebrow {
  color: var(--gold-dark);

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 0.16em;
}

.kicker {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 23px;
}

.kicker span {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--gold);
}

.hero h1 {
  position: relative;

  z-index: 4;

  max-width: 780px;

  color: var(--black);

  font-size:
    clamp(3.3rem, 7vw, 6.7rem);

  line-height: 0.89;

  letter-spacing: -0.055em;

  font-weight: 900;

  overflow-wrap: normal;

  word-break: normal;
}

.hero h1 em,
h2 em {
  color: var(--gold-dark);

  font-style: normal;
}

.hero-lead {
  max-width: 650px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 1.04rem;

  line-height: 1.75;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 51px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding:
    0 21px;

  border:
    1px solid transparent;

  border-radius: 999px;

  font-size: 0.86rem;

  font-weight: 850;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #17110a;

  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

  box-shadow:
    0 10px 30px
    rgba(217,165,42,0.12);
}

.button-gold:hover {
  box-shadow:
    0 14px 35px
    rgba(217,165,42,0.18);
}

.button-ghost {
  color: var(--black);

  background: transparent;

  border-color:
    rgba(17,16,14,0.16);
}

.button-ghost:hover {
  border-color:
    var(--line-gold);

  background:
    rgba(217,165,42,0.06);
}


/* =========================================================
   MICRO PROOF
   ========================================================= */

.micro-proof {
  margin-top: 30px;

  color: var(--muted-light);

  font-size: 0.7rem;

  line-height: 2;
}

.micro-proof span {
  margin: 0 5px;

  color: var(--gold-dark);

  font-weight: 850;
}


/* =========================================================
   HERO ART
   ========================================================= */

.hero-art {
  position: relative;

  width: 100%;

  min-width: 0;

  min-height: 520px;

  display: grid;

  place-items: center;
}

.art-frame {
  position: relative;

  width: min(510px, 100%);

  aspect-ratio: 1;

  overflow: hidden;

  border:
    1px solid var(--line-gold);

  border-radius: 30px;

  background: #11100e;

  box-shadow:
    0 25px 70px
    rgba(0,0,0,0.13);
}

.art-frame::after {
  content: "";

  position: absolute;

  inset: 0;

  border:
    1px solid
    rgba(255,255,255,0.08);

  border-radius: inherit;

  pointer-events: none;
}

.art-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {
  position: absolute;

  z-index: 5;

  padding:
    13px
    15px;

  border:
    1px solid
    rgba(17,16,14,0.10);

  border-radius: 14px;

  background:
    rgba(248,246,241,0.94);

  box-shadow:
    0 15px 40px
    rgba(0,0,0,0.10);
}

.floating-card strong {
  display: block;

  color: var(--gold-dark);

  font-size: 0.7rem;

  letter-spacing: 0.1em;
}

.floating-card small {
  color: var(--muted);

  font-size: 0.68rem;
}

.fc-one {
  right: -5px;

  top: 16%;
}

.fc-two {
  left: -8px;

  bottom: 15%;
}


/* =========================================================
   HERO GLOW
   ========================================================= */

/*
   Le background du BODY possède déjà les halos dorés.
   On désactive les anciens gros halos du Hero afin
   d'éviter une page trop lumineuse.
*/

.hero-glow,
.glow-a,
.glow-b {
  display: none;
}


/* =========================================================
   PLATFORM STRIP
   ========================================================= */

.platform-strip {
  padding: 23px 0;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background:
    rgba(242,238,230,0.72);
}

.platform-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.platform-label {
  color: var(--muted-light);

  font-size: 0.67rem;

  font-weight: 850;

  letter-spacing: 0.15em;

  white-space: nowrap;
}

.platforms {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 8px;
}

.platforms span {
  padding:
    7px 11px;

  border:
    1px solid var(--line);

  border-radius: 999px;

  color: var(--muted);

  font-size: 0.67rem;

  background:
    rgba(255,255,255,0.35);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding:
    110px 0;

  background:
    #f8f6f1;
}

.dark-section {
  background:
    #f2eee6;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.section-heading {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 50px;
}

.section-heading h2 {
  margin-top: 12px;

  color: var(--black);

  font-size:
    clamp(
      2.5rem,
      5.4vw,
      5rem
    );

  line-height: 0.92;

  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 450px;

  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 12px;
}

.service-card {
  position: relative;

  min-height: 285px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  padding: 27px;

  border:
    1px solid var(--line);

  border-radius:
    var(--radius);

  background:
    rgba(255,255,255,0.46);

  box-shadow:
    0 10px 35px
    rgba(0,0,0,0.035);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);

  border-color:
    var(--line-gold);

  background:
    rgba(255,255,255,0.72);
}

.service-no {
  position: absolute;

  top: 20px;
  right: 20px;

  color: #a19b91;

  font-size: 0.68rem;

  font-weight: 850;
}

.icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border:
    1px solid var(--line-gold);

  border-radius: 13px;

  color: var(--gold-dark);

  background:
    rgba(217,165,42,0.06);
}

.service-card h3 {
  margin-top: auto;

  margin-bottom: 8px;

  color: var(--black);

  font-size: 1.25rem;
}

.service-card p {
  max-width: 300px;

  color: var(--muted);

  font-size: 0.82rem;
}

.service-feature {
  background:
    linear-gradient(
      145deg,
      rgba(217,165,42,0.11),
      rgba(255,255,255,0.50)
    );
}

.service-feature h3 {
  font-size: 1.7rem;

  line-height: 1.05;
}

.feature-line {
  height: 1px;

  margin-top: 25px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.text-link {
  margin-top: 18px;

  color: var(--gold-dark);

  font-size: 0.78rem;

  font-weight: 850;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.workflow-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

.step {
  padding:
    20px 8px 0;

  border-top:
    1px solid var(--line);
}

.step > b {
  color: var(--gold-dark);

  font-size: 0.72rem;

  letter-spacing: 0.12em;
}

.step h3 {
  margin:
    22px 0 7px;

  color: var(--black);

  font-size: 1.25rem;
}

.step p {
  color: var(--muted);

  font-size: 0.82rem;
}


/* =========================================================
   ABOUT
   ========================================================= */

.split {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 75px;
}

.split h2 {
  margin-top: 12px;

  color: var(--black);

  font-size:
    clamp(
      2.5rem,
      5vw,
      4.7rem
    );

  line-height: 0.93;

  letter-spacing: -0.055em;
}

.manifesto-big {
  max-width: 700px;

  color: var(--black);

  font-size:
    clamp(
      1.6rem,
      3vw,
      2.8rem
    );

  line-height: 1.05;

  letter-spacing: -0.035em;
}

.manifesto-points {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;

  margin-top: 45px;
}

.manifesto-points > div {
  padding-top: 16px;

  border-top:
    1px solid var(--line);
}

.manifesto-points span {
  margin-right: 10px;

  color: var(--gold-dark);

  font-size: 0.7rem;
}

.manifesto-points strong {
  color: var(--black);

  font-size: 0.88rem;
}

.manifesto-points p {
  margin-top: 9px;

  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================================================
   METRICS
   ========================================================= */

.metrics {
  padding:
    55px 0;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background:
    #11100e;
}

.metric-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.metric {
  text-align: center;

  border-right:
    1px solid
    rgba(255,255,255,0.10);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;

  color: var(--white);

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.5rem
    );

  letter-spacing: -0.06em;
}

.metric span {
  color: #aaa49a;

  font-size: 0.7rem;

  letter-spacing: 0.14em;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-wrap {
  max-width: 980px;
}

.faq-list {
  margin-top: 10px;
}

details {
  border-bottom:
    1px solid var(--line);
}

summary {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding:
    24px 0;

  color: var(--black);

  font-size: 1rem;

  font-weight: 800;

  cursor: pointer;

  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--gold-dark);

  font-size: 1.3rem;

  font-weight: 400;

  transition:
    transform 0.2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 780px;

  padding:
    0 40px 25px 0;

  color: var(--muted);

  font-size: 0.88rem;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding-top: 70px;

  background:
    #f2eee6;
}

.contact-box {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 60px;

  padding: 55px;

  border:
    1px solid var(--line-gold);

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(217,165,42,0.10),
      transparent 43%
    ),
    rgba(255,255,255,0.46);
}

.contact-copy h2 {
  margin-top: 12px;

  color: var(--black);

  font-size:
    clamp(
      2.5rem,
      5vw,
      4.6rem
    );

  line-height: 0.92;

  letter-spacing: -0.055em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 430px;

  margin-top: 20px;

  color: var(--muted);
}

.mail {
  display: inline-block;

  margin-top: 24px;

  color: var(--gold-dark);

  font-weight: 850;
}

.contact-form {
  display: grid;

  gap: 13px;
}

.form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}

label {
  color: #716b63;

  font-size: 0.7rem;
}

input,
textarea {
  display: block;

  width: 100%;

  margin-top: 7px;

  padding:
    14px 15px;

  border:
    1px solid
    rgba(17,16,14,0.12);

  border-radius: 13px;

  outline: none;

  background:
    rgba(255,255,255,0.72);

  color: var(--black);
}

input::placeholder,
textarea::placeholder {
  color: #8b857b;
}

input:focus,
textarea:focus {
  border-color:
    var(--gold);

  background:
    #ffffff;
}

textarea {
  min-height: 130px;

  resize: vertical;
}

.form-note {
  color: #817a70;

  font-size: 0.68rem;
}

.form-status {
  display: none;

  color: var(--gold-dark);

  font-size: 0.78rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding:
    28px 0;

  border-top:
    1px solid
    rgba(255,255,255,0.08);

  background:
    #11100e;
}

.footer-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  color: #817a70;

  font-size: 0.72rem;
}

.footer-brand {
  color: var(--white);

  font-weight: 900;

  letter-spacing: 0.04em;
}

.footer-brand b {
  color: var(--gold-light);
}


/* =========================================================
   REVEAL
   ========================================================= */

/*
   IMPORTANT :
   On désactive l'ancien système d'animation qui pouvait
   modifier l'affichage après le chargement de la page.

   Le contenu reste donc visible immédiatement.
*/

.reveal {
  opacity: 1;

  transform: none;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}


/* =========================================================
   TABLET — 900px
   ========================================================= */

@media (max-width: 900px) {

  /* -------------------------------------------------------
     HEADER
     ------------------------------------------------------- */

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 70px;

    left: 4%;
    right: 4%;

    display: grid;

    gap: 5px;

    padding: 14px;

    background:
      rgba(248,246,241,0.98);

    border:
      1px solid var(--line);

    border-radius: 18px;

    box-shadow:
      0 20px 50px
      rgba(0,0,0,0.10);

    opacity: 0;

    pointer-events: none;

    transform:
      translateY(-10px);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;

    pointer-events: auto;

    transform:
      translateY(0);
  }

  .nav-links a {
    padding: 12px;

    color: var(--black);
  }

  .nav-cta {
    text-align: center;
  }


  /* -------------------------------------------------------
     HERO
     ------------------------------------------------------- */

  .hero {
    min-height: auto;

    padding:
      120px
      0
      70px;
  }

  /*
     UNE SEULE mise en page mobile.
     Plus aucun conflit grid/flex.
  */

  .hero-grid {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 45px;
  }

  .hero-copy {
    width: 100%;

    min-width: 0;
  }

  .hero-art {
    width: 100%;

    min-width: 0;

    min-height: auto;
  }


  /* -------------------------------------------------------
     SERVICES
     ------------------------------------------------------- */

  .service-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  /* -------------------------------------------------------
     WORKFLOW
     ------------------------------------------------------- */

  .workflow-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    row-gap: 35px;
  }


  /* -------------------------------------------------------
     ABOUT
     ------------------------------------------------------- */

  .split {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 45px;
  }


  /* -------------------------------------------------------
     CONTACT
     ------------------------------------------------------- */

  .contact-box {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 40px;
  }


  /* -------------------------------------------------------
     SECTION HEADINGS
     ------------------------------------------------------- */

  .section-heading {
    align-items: flex-start;

    flex-direction: column;
  }


  /* -------------------------------------------------------
     PLATFORMS
     ------------------------------------------------------- */

  .platform-inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .platforms {
    justify-content: flex-start;
  }
}


/* =========================================================
   MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {

  .container {
    width: min(91%, var(--max));
  }


  /* -------------------------------------------------------
     HEADER
     ------------------------------------------------------- */

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    display: none;
  }


  /* -------------------------------------------------------
     HERO
     ------------------------------------------------------- */

  .hero {
    padding-top: 108px;

    padding-bottom: 65px;
  }

  .hero h1 {
    width: 100%;

    max-width: 100%;

    font-size:
      clamp(
        3rem,
        15vw,
        4.5rem
      );

    line-height: 0.91;

    letter-spacing: -0.06em;

    overflow-wrap: normal;

    word-break: normal;
  }

  .hero-lead {
    max-width: 100%;

    font-size: 0.95rem;

    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .button {
    width: 100%;
  }


  /* -------------------------------------------------------
     HERO IMAGE
     ------------------------------------------------------- */

  .art-frame {
    width: 100%;

    max-width: 390px;

    border-radius: 24px;
  }

  .floating-card {
    display: none;
  }


  /* -------------------------------------------------------
     SECTIONS
     ------------------------------------------------------- */

  .section {
    padding:
      78px 0;
  }

  .section-heading h2 {
    font-size:
      clamp(
        2.55rem,
        13vw,
        4rem
      );
  }


  /* -------------------------------------------------------
     SERVICES
     ------------------------------------------------------- */

  .service-grid {
    grid-template-columns: 1fr;
  }


  /* -------------------------------------------------------
     WORKFLOW
     ------------------------------------------------------- */

  .workflow-grid {
    grid-template-columns: 1fr;

    row-gap: 30px;
  }


  /* -------------------------------------------------------
     MANIFESTO
     ------------------------------------------------------- */

  .manifesto-points {
    grid-template-columns: 1fr;

    margin-top: 35px;
  }


  /* -------------------------------------------------------
     METRICS
     ------------------------------------------------------- */

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    padding:
      22px 0;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255,255,255,0.10);
  }

  .metric:last-child {
    border-bottom: 0;
  }


  /* -------------------------------------------------------
     CONTACT
     ------------------------------------------------------- */

  .contact-box {
    padding:
      32px 22px;

    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }


  /* -------------------------------------------------------
     FOOTER
     ------------------------------------------------------- */

  .footer-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}


/* =========================================================
   VERY SMALL PHONES — 380px
   ========================================================= */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 0.91rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }
}