/* ==========================================================================
   Devistify — Milica Lubinić
   Palette & background carried over from the original devistify.com
   ========================================================================== */

:root {
  --plum: #3a0c25;
  --plum-deep: #24061a;
  --plum-veil: rgba(58, 12, 37, 0.86);
  --plum-deep-veil: rgba(36, 6, 26, 0.9);
  --sky: #8fd0f5;
  --violet: #b98cf2;
  --brand-violet: #7b2fc4;  /* violet + blue of the background gradient, deepened */
  --brand-blue: #2f5bd0;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.78);

  --font: "Kanit", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* modular scale 1.25 on 18px body */
  --fs-body: 1.125rem;
  --fs-small: 0.9375rem;
  --fs-h3: 1.375rem;
  --fs-h2: clamp(2rem, 1.35rem + 2.6vw, 3.25rem);
  --fs-h1: clamp(2.6rem, 1.4rem + 5.2vw, 5.75rem);

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);
  --max: 76rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.dv-intro body { overflow: hidden; }
@media (scripting: none) { .intro { display: none !important; } }

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px var(--plum);
  border-radius: 2px;
}

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--plum); color: #fff; padding: .6rem 1rem; text-decoration: none;
}
.skip:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Background: gradient + smoke (identical assets to the original)
   -------------------------------------------------------------------------- */
.bg-wrapper {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  pointer-events: none;
}
.bg-wrapper .bg {
  position: absolute; inset: -2%;
  background: url("../img/gradient-bg.webp") no-repeat center bottom / cover;
  opacity: 0;
  transition: opacity 3s ease;
}
.bg-wrapper .smoke {
  position: absolute; inset: -3%;
  background: url("../img/cloud-bg.webp") no-repeat center bottom / contain;
  will-change: transform;
}
html:not(.dv-intro) .bg-wrapper .bg,
body.bg-on .bg-wrapper .bg { opacity: 1; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1rem var(--gutter);
  transform: translateY(-110%);
  transition: transform .6s var(--ease);
}
html:not(.dv-intro) .site-header,
body.header-on .site-header { transform: none; }
/* blur lives on a pseudo-element so the fixed mobile nav isn't trapped by backdrop-filter */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  opacity: 0; transition: opacity .4s ease;
}
body.scrolled .site-header::before { opacity: 1; }

.brand { display: block; width: 8.5rem; line-height: 0; }
.brand svg { width: 100%; height: auto; fill: var(--plum); }  /* logo keeps the brand colour */

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a {
  font-size: var(--fs-small); font-weight: 400; letter-spacing: .02em;
  text-decoration: none; color: #000;
  padding: .35rem 0;
  background: linear-gradient(currentColor, currentColor) no-repeat left bottom / 0 1px;
  transition: background-size .35s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="true"] { background-size: 100% 1px; }
.site-nav .site-nav__cta {
  padding: .5rem 1.15rem; border: 1px solid var(--plum); border-radius: 999px;
  background: none; transition: background-color .25s, color .25s;
}
.site-nav .site-nav__cta:hover { background: var(--plum); color: #fff; }

.menu-toggle {
  display: none; align-items: center; gap: .6rem;
  font: 400 var(--fs-small) var(--font); color: #000;
  background: none; border: 0; padding: .5rem 0; cursor: pointer;
}
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle__bars { position: relative; }
.menu-toggle__bars::before, .menu-toggle__bars::after { content: ""; position: absolute; left: 0; }
.menu-toggle__bars::before { top: -7px; }
.menu-toggle__bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 1.25rem;
    background: var(--plum-deep);
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { color: #fff; font-size: 1.6rem; font-weight: 300; }
  .site-nav .site-nav__cta { border-color: #fff; }
  .site-header:has(.site-nav.is-open) .menu-toggle,
  .site-header:has(.site-nav.is-open) .brand svg { color: #fff; fill: #fff; }
  .site-header:has(.site-nav.is-open)::before { opacity: 0; }
}

/* --------------------------------------------------------------------------
   Intro — the original logo draws itself, splits, and opens the page
   -------------------------------------------------------------------------- */
.intro { display: none; }
html.dv-intro .intro,
html.dv-intro-leaving .intro {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  padding-inline: var(--gutter);
  pointer-events: none;
  transition: opacity .9s ease .5s, visibility 0s linear 1.4s;
}
.intro__stage { width: 100%; display: grid; place-items: center; }

.logo-big { width: min(52vw, 46rem); color: var(--plum); }
@media (max-width: 680px) { .logo-big { width: 86vw; } }

.logo-svg { display: block; width: 100%; height: auto; overflow: visible; }
.logo-svg path {
  fill: var(--plum);
  fill-opacity: 0;
  stroke: var(--plum);
  stroke-width: 1.4;
  stroke-linejoin: round;
}
.logo-svg .subtitle path { stroke-width: .6; }
.logo-svg .logo-left,
.logo-svg .logo-right,
.logo-svg .subtitle {
  transition: transform 1.2s var(--ease), opacity .9s ease;
}

/* stage: drawn → filled */
.logo-svg.is-filled path {
  fill-opacity: 1;
  stroke-opacity: 0;
  transition: fill-opacity .9s ease, stroke-opacity 1s ease;
}

/* stage: split open and reveal the page */
.intro.is-open .logo-svg .subtitle { transform: translateY(60px); opacity: 0; }
.intro.is-open .logo-left,
.intro.is-open .logo-right { opacity: 0; transition: transform 1.2s var(--ease), opacity .8s ease .45s; }
.intro.is-done { opacity: 0; visibility: hidden; }

/* page waits behind the intro */
main, .site-footer { transition: opacity 1s ease .35s, transform 1.2s var(--ease) .35s; }
html.dv-intro main, html.dv-intro .site-footer { opacity: 0; transform: translateY(24px); }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
main, .site-footer { position: relative; z-index: 2; }

.wrap {
  width: 100%; max-width: var(--max);
  margin-inline: auto; padding-inline: var(--gutter);
}

.section, .band, .statement, .contact { padding-block: var(--section-y); }

/* the band is inset by 2.5% on each side, so trim its inner padding by the same
   amount and the text stays in line with the sections above and below */
.band > .wrap { padding-inline: max(1rem, calc(var(--gutter) - 2.5vw)); }

.band {
  color: #fff;
  padding-block: 80px;
  width: 95%;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  /* same diagonal sweep as the background gradient, in a darker purple */
  background:
    linear-gradient(135deg,
      rgba(46, 14, 72, .9) 0%,
      rgba(58, 12, 37, .9) 45%,
      rgba(74, 18, 78, .9) 100%);
}
.band--deep {
  background:
    linear-gradient(135deg,
      rgba(28, 8, 46, .93) 0%,
      rgba(36, 6, 26, .93) 45%,
      rgba(48, 12, 52, .93) 100%);
}

.h2 {
  font-size: var(--fs-h2); font-weight: 500;
  line-height: 1.1; letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}
.h2__soft { font-weight: 300; }
/* smaller lead-in line above the main heading */
.h2__lead-in {
  display: block;
  font-size: .58em; font-weight: 300; line-height: 1.2;
  margin-bottom: .35em;
}
.h2--dark { color: #000; }

.lead {
  font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem);
  line-height: 1.55; max-width: 60ch;
  margin-top: 1.5rem;
}
.band .lead { color: var(--mist); }
.lead--dark { color: #000; }

h3 { font-size: var(--fs-h3); font-weight: 500; line-height: 1.25; }

/* --------------------------------------------------------------------------
   1 · Statement
   -------------------------------------------------------------------------- */
.statement { min-height: 90vh; display: flex; align-items: center; }
.statement__title {
  font-size: var(--fs-h1); font-weight: 600;
  line-height: 1; letter-spacing: -0.03em;
  color: #000;
  text-shadow: 0 0 40px rgba(255, 255, 255, .45);
}
.statement__title .line { display: block; }
.statement__title .line + .line {
  font-size: .62em; font-weight: 300; line-height: 1.05;
  margin-top: .3em;
}

.statement__body { margin-top: clamp(2rem, 4vw, 3.5rem); }
.statement__body .lead { margin-top: 0; font-weight: 400; color: #000; }
.statement__punch {
  margin-top: 1.25rem;
  font-size: clamp(1.2rem, 1rem + .7vw, 1.6rem); font-weight: 600; color: #000;
}

.signature {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.1rem; border-top: 2px solid #000; width: fit-content;
}
.signature__name { font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
.signature__role { font-size: var(--fs-small); font-weight: 400; margin-top: .3rem; }

/* --------------------------------------------------------------------------
   2 · Excuses
   -------------------------------------------------------------------------- */
.excuses {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3.5vw, 3.5rem);
}
.excuse { display: flex; flex-direction: column; }
.excuse__img { aspect-ratio: 1000 / 618; overflow: hidden; max-width: 100%; border-radius: var(--radius); }
.excuse__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.excuse:hover .excuse__img img { transform: scale(1.03); }
.excuse__quote {
  margin: 1.5rem 0 1rem;
  font-size: clamp(1.3rem, 1.05rem + .7vw, 1.65rem); font-weight: 500; line-height: 1.25;
  color: #fff;
}
.excuse p { color: var(--mist); max-width: 40ch; }
.excuse .excuse__sting { margin-top: 1rem; color: var(--sky); font-weight: 400; }

.cost {
  margin-top: clamp(3.5rem, 6vw, 5.5rem); padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font-size: clamp(1.2rem, 1rem + .8vw, 1.75rem); font-weight: 400; line-height: 1.4;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   3 · Problems
   -------------------------------------------------------------------------- */
.problems {
  /* heading and intro keep the page width; only the grid runs to 75% */
  width: 75vw;
  margin-inline: calc(50% - 37.5vw);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.problem {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; column-gap: 1rem;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  background: var(--box, #fff);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -22px rgba(58, 12, 37, .45);
}
/* light blue from the background gradient, on every box */
.problem { --box: #e3f0fd; }
.problem__icon {
  align-self: center;
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--plum); color: #fff;
}
.problem__icon svg {
  width: 1.6rem; height: 1.6rem;
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.problem h3 { color: #000; font-weight: 600; align-self: center; }
.problem p { grid-column: 1 / -1; margin-top: .75rem; font-weight: 400; color: #333; }

/* --------------------------------------------------------------------------
   4 · Services
   -------------------------------------------------------------------------- */
.services {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 0;
}
.service {
  padding: 2.5rem clamp(1.25rem, 2.5vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, .22);
}
.service:first-child { border-left: 0; padding-left: 0; }
.service__mark {
  display: block; font-size: 3.5rem; font-weight: 300; line-height: 1;
  color: var(--sky); margin-bottom: 1.5rem;
}
.service h3 { font-size: 1.6rem; }
.service p { margin-top: .9rem; color: var(--mist); }
/* the highlighted box carries no dividing lines of its own */
.service--key,
.service--key + .service { border-left: 0; }
.service--key { background: rgba(255, 255, 255, .06); border-radius: var(--radius); }
.service--key .service__mark { color: var(--violet); }

/* --------------------------------------------------------------------------
   5 · Process
   -------------------------------------------------------------------------- */
/* this section is centred: heading, intro line, rings and closing note */
#transformation .h2,
#transformation .lead { margin-inline: auto; text-align: center; }

/* Cycle — rings & icons traced from the PDF; each circle fills with the accent in turn */
.cycle {
  position: relative;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  max-width: 60rem;
  --accent: var(--plum);
}
.cycle__svg { display: block; width: 100%; height: auto; overflow: visible; }

.cycle__disc { fill: rgba(255, 255, 255, .22); }

.cycle__ring--light .cycle__ring-fill { fill: #ffffff; }
.cycle__ring--mid .cycle__ring-fill { fill: rgba(255, 255, 255, .6); }
.cycle__ring-line { fill: none; stroke: rgba(58, 12, 37, .35); stroke-width: .85; }

.cycle__icon { color: var(--plum); }
.cycle__icon path { fill: currentColor; }
.cycle__icon path[stroke-width] { fill: none; stroke: currentColor; stroke-linejoin: round; }

.cycle__ring-sweep { display: none; }

.cycle__labels { position: relative; height: 2.5rem; margin-top: clamp(1rem, 2.5vw, 1.75rem); }
.cycle__label {
  position: absolute; top: 0; left: var(--x);
  translate: -50% 0;
  white-space: nowrap;
  font-size: clamp(.95rem, .75rem + .7vw, 1.35rem); font-weight: 500;
  color: #000;
}

/* phones: the rings step down like a staircase, names sit beside each ring */
.cycle--stairs { display: none; }
@media (max-width: 640px) {
  .cycle--row { display: none; }
  .cycle--stairs { display: block; margin-top: 2.5rem; }
  .cycle__stage { position: relative; width: min(66vw, 15.5rem); }
  .cycle--stairs .cycle__labels { position: absolute; inset: 0; height: auto; margin: 0; }
  .cycle--stairs .cycle__label {
    top: var(--y);
    translate: 0 -50%;
    font-size: 1.1rem;
  }
}

/* same treatment as the line under the heading */
.process__note {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 60ch; text-align: center;
  font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem);
  font-weight: 300; line-height: 1.55; color: #000;
}

@media (max-width: 720px) {
}

/* --------------------------------------------------------------------------
   6 · Stats
   -------------------------------------------------------------------------- */
.stats {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem);
}
.stat__num {
  font-size: clamp(4rem, 2.5rem + 5vw, 7.5rem); font-weight: 600;
  line-height: .9; letter-spacing: -.04em;
  background: linear-gradient(100deg, var(--sky), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .1em;
}
.stat figcaption { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .25); }
.stat__text { font-size: 1.2rem; font-weight: 400; line-height: 1.45; }
.stat__sub { margin-top: .75rem; color: var(--mist); font-size: var(--fs-small); font-weight: 400; }
.stat cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: var(--fs-small); color: var(--sky); }

/* --------------------------------------------------------------------------
   7 · Who
   -------------------------------------------------------------------------- */
/* this section runs wider than the rest of the page */
.who > .wrap { width: 75%; max-width: none; padding-inline: 0; }
@media (max-width: 1100px) {
  .who > .wrap { width: 100%; max-width: var(--max); padding-inline: var(--gutter); }
}

.who__panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .3));
  -webkit-backdrop-filter: blur(8px) saturate(1.15); backdrop-filter: blur(8px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 40px 80px -40px rgba(58, 12, 37, .5);
}
.who__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.who__body { font-weight: 300; }
.who__scope { font-size: clamp(1.1rem, 1rem + .35vw, 1.3rem); line-height: 1.55; }
.who__scope strong { font-weight: inherit; }
.who__caller {
  margin-top: 1.75rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 3px solid #000;
  border-radius: 3px;
}
.who__caller mark { background: none; color: inherit; font-weight: inherit; }

.industries {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, 1.5vw, 1.25rem);
}
.industry {
  position: relative;
  display: flex; align-items: center; gap: .85rem;
  padding: 10px 16px;
  border-radius: 60px;
  background: none;
  border: 2px solid #000;
  color: #000;
}
.industry__icon {
  flex: none;
  display: grid; place-items: center;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  border: 2px solid #000;
  color: #000;
}
.industry__icon svg {
  width: 1.5rem; height: 1.5rem;
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.industry__name {
  font-size: clamp(1.05rem, .9rem + .45vw, 1.35rem); font-weight: 500; line-height: 1.15;
}

@media (max-width: 960px) {
  .who__grid { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .who__panel { padding: 1.75rem 1.25rem; }
  .industries { gap: .6rem; }
  .industry { gap: .6rem; padding: 10px 14px; }
  .industry__icon { width: 2.5rem; height: 2.5rem; }
  .industry__icon svg { width: 1.3rem; height: 1.3rem; }
}

/* --------------------------------------------------------------------------
   8 · Why me
   -------------------------------------------------------------------------- */
.why {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
}
.why__item { padding-block: 2rem; border-top: 1px solid rgba(255, 255, 255, .25); }
.why__item h3 { position: relative; padding-left: 2rem; }
.why__item h3::before {
  content: ">"; position: absolute; left: 0; top: 0;
  color: var(--sky); font-weight: 400;
}
.why__item p { margin-top: .8rem; padding-left: 2rem; color: var(--mist); max-width: 52ch; }

/* --------------------------------------------------------------------------
   9 · Story
   -------------------------------------------------------------------------- */
.story__intro { max-width: 64ch; font-weight: 300; }
.story {
  /* heading and intro keep the page width; only the panel runs to 75% */
  width: 75vw;
  margin-inline: calc(50% - 37.5vw);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1fr 1fr 1.35fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.story__col { padding: clamp(1.75rem, 3vw, 2.75rem); }
.story__col + .story__col { border-left: 1px solid rgba(58, 12, 37, .2); }
.story__col h3 { margin-bottom: 1rem; color: #000; }
.story__col p, .story__col li { color: #000; }
.story__col p { font-weight: 400; }
.story__col p + p { margin-top: .75rem; }
.story__col--before h3 { color: #000; }
.story__col--after { background: var(--plum); color: #fff; }
.story__col--after p, .story__col--after li { color: #fff; }
.story__col--after h3 { color: var(--sky); }
.story__col--after li { position: relative; padding-left: 1.5rem; }
.story__col--after li + li { margin-top: .9rem; }
.story__col--after li::before { content: ">"; position: absolute; left: 0; color: var(--sky); }

/* --------------------------------------------------------------------------
   10 · Contact
   -------------------------------------------------------------------------- */
.contact { padding-block: clamp(7rem, 14vw, 12rem); text-align: center; }
.contact .wrap { display: flex; flex-direction: column; align-items: center; }
.contact__title {
  font-size: var(--fs-h1); font-weight: 600; line-height: 1; letter-spacing: -.03em;
  color: #000; max-width: 16ch; text-wrap: balance;
  text-shadow: 0 0 40px rgba(255, 255, 255, .45);
}
.contact .lead { color: #000; font-weight: 400; margin-inline: auto; }

.btn {
  margin-top: 2.5rem;
  display: inline-block; padding: 1rem 2.25rem; border-radius: 999px;
  background: var(--plum); color: #fff; text-decoration: none;
  font-size: 1.15rem; font-weight: 500;
  transition: background-color .25s, transform .25s var(--ease);
}
.btn:hover { background: var(--plum-deep); transform: translateY(-2px); }

.contact__list {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.5rem;
}
.contact__list a {
  color: #000; font-weight: 400; text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .35);
  transition: border-color .25s;
}
.contact__list a:hover { border-color: #000; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 2rem var(--gutter);
  background: var(--plum-deep); color: var(--mist);
  font-size: var(--fs-small);
}
.site-footer__logo { width: 7.5rem; fill: #fff; }
.site-footer strong { color: #fff; font-weight: 500; }
.site-footer p { text-align: right; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .story, .problems { width: auto; margin-inline: 0; }
}

@media (max-width: 960px) {
  .excuses, .stats { grid-template-columns: 1fr; }
  .excuse { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); column-gap: 2rem; }
  .excuse__img { grid-row: span 4; }
  .excuse__quote { margin-top: 0; }
  .problems { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .service, .service:first-child { border-left: 0; padding-inline: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
  .service--key { padding-inline: 1.5rem; margin-inline: -1.5rem; }
  .story { grid-template-columns: 1fr; }
  .story__col + .story__col { border-left: 0; border-top: 1px solid rgba(58, 12, 37, .2); }
}

@media (max-width: 640px) {
  .excuse { grid-template-columns: 1fr; }
  .excuse__img { grid-row: auto; }
  .excuse__quote { margin-top: 1.25rem; }
  .problems { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .site-footer p { text-align: left; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; transition-delay: 0s !important; animation: none !important; }
}

body.nav-open { overflow: hidden; }
