/* Design tokens */
:root {
  --font-sans:
    'Urbanist', 'Satoshi', 'Plus Jakarta Sans', 'Manrope', ui-sans-serif,
    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:
    'JetBrains Mono', 'SFMono-Regular', ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  --color-white: #ffffff;
  --color-black: rgb(22, 23, 25);

  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-slate-950: #020617;

  --color-zinc-50: #fafafa;
  --color-zinc-100: #f4f4f5;
  --color-zinc-200: #e4e4e7;
  --color-zinc-300: #d4d4d8;
  --color-zinc-400: #a1a1aa;
  --color-zinc-500: #71717a;
  --color-zinc-600: #52525b;
  --color-zinc-700: #3f3f46;
  --color-zinc-800: #27272a;
  --color-zinc-900: #18181b;
  --color-zinc-950: #09090b;

  --color-blue-500: #3b82f6;
  --color-blue-600: #2563eb;
  --color-emerald-500: #10b981;
  --color-red-500: #ef4444;
  --color-amber-400: #fbbf24;
  --color-primary: #d63f08;

  --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.05);
  --shadow-md:
    0 4px 6px -1px rgb(15 23 42 / 0.1), 0 2px 4px -2px rgb(15 23 42 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(15 23 42 / 0.1), 0 4px 6px -4px rgb(15 23 42 / 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --space-0: 0;
  --space-px: 1px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --container-sm: 40rem;
  --container-md: 48rem;
  --container-lg: 64rem;
  --container-xl: 80rem;
  --container-2xl: 90rem;
  --container-3xl: 107.5rem;

  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;

  --leading-tight: 1.1;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  color-scheme: light;
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  line-height: var(--leading-normal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-black);
  color: var(--color-slate-900);
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[role='button'] {
  cursor: pointer;
}

button {
  background: transparent;
  border: 0;
}

textarea {
  resize: vertical;
}

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

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-slate-200);
}

:where(:focus-visible) {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 2px;
}

:where([hidden]) {
  display: none !important;
}

::selection {
  background-color: var(--color-blue-500);
  color: var(--color-white);
}

/* Base elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
}

main {
  display: block;
}

ul,
ol {
  list-style: none;
}

/* Layout */
.container {
  width: min(100% - 2rem, var(--container-3xl));
  margin-inline: auto;
}

.header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  isolation: isolate;

  transition:
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 2;
  }

  .header-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .logo {
    width: 120px;
    transition: width 220ms ease;
    img {
      width: 100%;
    }
  }

  .main-menu {
    margin-left: auto;
    padding-right: 3rem;

    ul {
      display: flex;
      justify-content: flex-end;
      gap: 3rem;
      li {
        a {
          position: relative;
          display: inline-flex;
          color: #fff;
          font-weight: 500;
          transition: color 0.3s ease;
          font-size: 1.1rem;

          &::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -0.35rem;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
            transform: scaleX(0.28);
            transform-origin: left center;
            opacity: 0;
            transition:
              transform 220ms ease,
              opacity 220ms ease;
          }

          &:hover::after {
            transform: scaleX(1);
            opacity: 1;
          }
        }
      }
    }
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    min-width: 240px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;

    transition:
      transform 180ms ease,
      filter 180ms ease;

    &:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
    }
  }

  .header-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;

    img {
      width: 2rem;
      height: 2rem;
    }
  }

  .header-toggle__icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
  }
}

.header.is-scrolled .header-toggle__icon {
  filter: brightness(0);
}

.header.is-scrolled {
  padding: 0.55rem 0;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);

  .logo {
    width: 70px;
    img {
      width: 100%;
    }
  }

  .main-menu {
    ul {
      li {
        a {
          color: var(--color-black);
        }
      }
    }
  }

  .header-cta {
    color: var(--color-white);
  }

  .header-toggle {
    color: var(--color-black);
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  padding: 1.25rem 1rem 2rem;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  .logo {
    width: 84px;
  }
}

.mobile-menu__close {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);

  svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;

  a {
    color: var(--color-black);
    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
    transition: color 180ms ease;
  }

  a:hover {
    color: var(--color-primary);
  }
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 240px;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.mobile-menu__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #222;
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(140px, 18vw, 260px);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(9, 9, 11, 0) 0%,
      rgba(9, 9, 11, 0.38) 35%,
      rgba(9, 9, 11, 0.72) 68%,
      rgba(9, 9, 11, 0.96) 88%,
      #09090b 100%
    );
  }

  @media (max-width: 768px) {
    height: auto;
    padding: calc(4rem + 88px) 0 4rem;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;

    &::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          90deg,
          rgba(9, 9, 11, 0.88) 0%,
          rgba(9, 9, 11, 0.72) 28%,
          rgba(9, 9, 11, 0.35) 58%,
          rgba(9, 9, 11, 0.68) 100%
        ),
        linear-gradient(
          180deg,
          rgba(9, 9, 11, 0.45) 0%,
          rgba(9, 9, 11, 0.08) 38%,
          rgba(9, 9, 11, 0.72) 100%
        );
    }
  }

  .hero-media__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
  }

  .hero-inner {
    display: flex;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 10rem);

    @media (max-width: 768px) {
      flex-direction: column;
      min-height: auto;
    }
  }

  .hero-content-left,
  .hero-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    @media (max-width: 768px) {
      text-align: center;
      align-items: center;
      justify-content: center;
    }
  }

  .hero-content-left {
    align-items: flex-start;
    justify-content: center;
  }

  .hero-content-right {
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 12rem;
    height: 100%;

    @media (max-width: 960px) {
      align-items: center;
      padding-bottom: 2rem;
    }
  }

  .hero-content__title {
    font-weight: 700;
    max-width: 70rem;
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1;
    color: var(--color-white);
  }
  .hero-content__description {
    font-weight: 500;
    max-width: 40rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-white);
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    min-width: 260px;
    transition:
      transform 180ms ease,
      filter 180ms ease;

    &:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
    }

    @media (max-width: 768px) {
      align-self: center;
      min-width: auto;
    }
  }

  .hero-floating-media {
    position: relative;
    width: min(100%, 16rem);
    aspect-ratio: 0.6;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);

    @media (max-width: 960px) {
      width: min(100%, 18rem);
      margin-top: 3rem;
    }

    @media (min-width: 1800px) {
      width: min(100%, 20rem);
    }
  }

  .hero-floating-media__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-floating-media__control {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(9, 9, 11, 0.72);
    backdrop-filter: blur(8px);
    transition:
      transform 180ms ease,
      background-color 180ms ease;

    &:hover {
      transform: scale(1.04);
      background-color: rgba(9, 9, 11, 0.84);
    }

    img {
      width: 1.2rem;
      height: 1.2rem;
      display: block;
    }
  }

  .hero-footer {
    position: relative;
    z-index: 2;
    margin-top: -7rem;
    padding-bottom: 4rem;

    @media (max-width: 960px) {
      margin-top: 0;
      padding-top: 1rem;
      padding-bottom: 2rem;
    }
  }

  .hero-footer__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;

    @media (max-width: 960px) {
      justify-content: center;
      gap: 0;
      flex-wrap: nowrap;
    }
  }

  .hero-footer__seal {
    width: auto;
    max-width: min(24vw, 190px);
    height: clamp(52px, 5.2vw, 82px);
    object-fit: contain;
    flex: 0 1 auto;

    @media (max-width: 960px) {
      width: calc(100% / 3);
      max-width: calc(100% / 3);
      height: clamp(68px, 18vw, 96px);
      flex: 1 1 0;
    }
  }
}

@media (max-width: 960px) {
  .header {
    padding: 1rem 0;

    .main-menu,
    .header-cta {
      display: none;
    }

    .header-inner {
      flex-wrap: nowrap;
    }

    .header-toggle {
      display: inline-flex;
    }
  }

  .mobile-menu {
    display: flex;
  }
}

.about-section {
  position: relative;
  /* padding-top: var(--space-20); */
  padding-bottom: var(--space-20);
  /* padding-block-start: 0 !important; */

  .container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.text-orange {
  color: var(--color-primary);
}

.section-headline {
  display: inline-flex;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.78fr);
  gap: 0.5rem;

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

.about-side {
  display: grid;
  gap: 0.5rem;
}

.about-card {
  background-color: #1d1e21;
  border: 1px solid rgba(55, 55, 55, 0.9);
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-card--feature {
  min-height: 760px;
  padding: clamp(2rem, 3vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  @media (max-width: 1080px) {
    min-height: auto;
    gap: 3rem;
  }
}

.about-title {
  max-width: 17ch;
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.about-metrics {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
  align-items: flex-end;
}

.about-seal {
  margin-left: auto;
  position: relative;
  width: clamp(170px, 16vw, 250px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1080px) {
    margin-left: 0;
  }
}

.about-seal__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
}

.about-seal__svg {
  width: 100%;
  height: 100%;
  animation: about-seal-spin 18s linear infinite;

  text {
    fill: rgba(255, 255, 255, 0.92);
    font-size: 1.03rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

.about-seal__core {
  position: relative;
  z-index: 1;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);

  &::before {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    background-color: var(--color-primary);
  }
}

.about-seal__spark {
  position: relative;
  z-index: 1;
  width: 44%;
  height: 44%;
  color: var(--color-white);
}

@keyframes about-seal-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.about-metric__value {
  color: var(--color-white);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 600;

  span {
    color: var(--color-primary);
  }
}

.about-metric__label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
  font-weight: 500;
}

.about-card--copy {
  padding: clamp(2rem, 2.4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-side__title {
  color: var(--color-white);
  font-size: clamp(2rem, 2.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.about-side__text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
}

.about-card--image {
  min-height: 460px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(214, 63, 8, 0.18), rgba(9, 9, 11, 0.08)),
    #d8d7d5;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.04);
  }

  @media (max-width: 1080px) {
    min-height: 360px;
  }
}

.projects-section {
  padding-top: var(--space-24);
  padding-bottom: calc(var(--space-24) + var(--space-8));

  .container {
    display: flex;
    flex-direction: column;
  }
}

.projects-title {
  color: var(--color-white);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.projects-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr) minmax(
      240px,
      0.56fr
    );
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);

  @media (max-width: 1100px) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.projects-intro__headline {
  grid-column: 1 / -1;
}

.projects-intro__lead {
  grid-column: 2;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);

  @media (max-width: 1100px) {
    grid-column: auto;
    padding-top: 0;
  }
}

.projects-intro__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 1.5rem;
  padding-top: clamp(0.5rem, 1vw, 1rem);

  .btn {
    min-width: 260px;
  }

  @media (max-width: 1100px) {
    padding-top: 0;
  }
}

.projects-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  /* height: 500px; */

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

.project-feature,
.project-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(55, 55, 55, 0.9);
  background-color: #1d1e21;
}

.project-feature {
  height: 750px;
}

.project-feature--image {
  position: relative;
  min-height: clamp(340px, 42vw, 520px);
  background-color: #d7d7d5;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.84) contrast(1.04);
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (max-width: 900px) {
    height: auto;
    max-height: 300px;
  }
}

.project-feature--image:hover img {
  transform: scale(1.012);
}

.project-feature--content {
  min-height: clamp(340px, 42vw, 520px);
  padding: clamp(2rem, 2.8vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;

  @media (max-width: 900px) {
    min-height: auto;
    height: auto;
  }
}

.project-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.project-feature__title {
  color: var(--color-primary);
  font-size: clamp(2.75rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.project-feature__subtitle {
  color: var(--color-white);
  font-size: clamp(1rem, 4vw, 1.5rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.project-feature__text {
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 1.5;
}

.project-feature__footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.project-feature__year {
  color: var(--color-primary);
  font-size: clamp(5rem, 7vw, 7rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.project-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.project-feature__tags span {
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card__media {
  position: relative;
  max-height: clamp(220px, 26vw, 520px);
  background-color: #cfd2d6;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.04);
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.project-card__media--link:hover img {
  transform: scale(1.012);
}

.project-card__content {
  min-height: clamp(120px, 12vw, 150px);
  padding: clamp(1.75rem, 2.2vw, 2.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;

  @media (max-width: 700px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.project-card__title {
  color: var(--color-primary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.project-card__subtitle {
  color: var(--color-white);
  font-size: clamp(1rem, 4vw, 1.5rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.project-card__text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
}

.project-card__year {
  color: var(--color-primary);
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.06em;
  flex-shrink: 0;
}

.projects-lead__text {
  /* max-width: 13ch; */
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.05em;

  @media (max-width: 1100px) {
    max-width: 16ch;
  }
}

.projects-side__text {
  /* max-width: 26ch; */
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.projects-intro__cta {
  margin-left: auto;
  height: 3rem;

  @media (max-width: 1100px) {
    margin-left: 0;
  }
}

/* Services */
.services-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);

  .container {
    display: flex;
    flex-direction: column;
  }
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr) minmax(
      240px,
      0.56fr
    );
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;

  @media (max-width: 1100px) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* display: none; */
}

.services-intro__headline {
  grid-column: 1 / -1;
}

.services-intro__lead {
  grid-column: 2;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);

  @media (max-width: 1100px) {
    grid-column: auto;
    padding-top: 0;
  }
}

.services-intro__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding-top: clamp(0.5rem, 1vw, 1rem);
  height: 100%;

  .btn {
    min-width: 260px;
    height: 3rem;
    height: auto;
  }

  @media (max-width: 1100px) {
    padding-top: 0;
  }
}

.services-title {
  color: var(--color-white);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.services-lead__text {
  /* max-width: 13ch; */
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.05em;

  @media (max-width: 1100px) {
    max-width: 16ch;
  }
}

.services-side__text {
  max-width: 30ch;
  color: var(--color-white);
  font-size: clamp(1.35rem, 2vw, 3rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.services-tabs {
  margin-top: clamp(3rem, 5vw, 4rem);
  --services-panel-width: min(34vw, 26rem);
  --services-panel-gap: 0.5rem;
  position: relative;
  padding-right: calc(var(--services-panel-width) + var(--services-panel-gap));

  @media (max-width: 1180px) {
    padding-right: 0;
  }
}

.services-tabs__nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;

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

  @media (min-width: 1181px) {
    min-height: 100%;
  }
}

.services-tabs__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-intro-card,
.service-tab,
.services-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(55, 55, 55, 0.9);
  background-color: #1d1e21;
}

.service-intro-card {
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.service-intro-card__title {
  color: var(--color-white);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.service-intro-card__text {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-tab {
  width: 100%;
  padding: 1.8rem 2rem;
  color: var(--color-white);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;

  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.service-tab:hover {
  border-color: rgba(214, 63, 8, 0.55);
}

.service-tab__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-tab__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  border-radius: 999px;
  /* background-color: #242423;
  padding: 0.2rem;
  img {
    width: 100%;
    max-width: 28px;
  } */
}

.service-tab__icon svg {
  width: 100%;
  height: 100%;
}

.service-tab__title {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.service-tab__description {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 220ms ease,
    opacity 180ms ease;
}

.service-tab.is-active {
  color: var(--color-primary);
}

.service-tab.is-active .service-tab__icon {
  color: var(--color-primary);
}

.service-tab.is-active .service-tab__description {
  max-height: 8rem;
  opacity: 1;
}

.services-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--services-panel-width);
  overflow: hidden;

  @media (max-width: 1180px) {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  @media (max-width: 860px) {
    max-width: 100%;
  }
}

.services-panel__image {
  width: 100%;
  aspect-ratio: 0.7;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-main {
  padding-top: 7rem;

  @media (max-width: 960px) {
    padding-top: 6rem;
  }
}

.blog-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);

  .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.blog-title {
  color: var(--color-white);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
  margin-bottom: 3rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-item {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(55, 55, 55, 0.9);
  background-color: #1d1e21;
}

.blog-item.blog-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-item.blog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-item__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.72fr);
  min-height: 280px;

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

.blog-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 3vw, 3rem);
}

.blog-item__date {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-item__title {
  max-width: 18ch;
  color: var(--color-white);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.blog-item__excerpt {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.6;
}

.blog-item__media {
  background-color: #cfd2d6;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.blog-item:hover .blog-item__media img {
  transform: scale(1.012);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.38);
}

.blog-article-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);

  .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.blog-article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-article__title {
  /* max-width: 16ch; */
  color: var(--color-white);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.blog-article__content {
  /* max-width: 70rem; */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;

  h2 {
    margin-top: 0.5rem;
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  strong {
    color: var(--color-white);
  }
}

.blog-article__inline-media {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(55, 55, 55, 0.9);
  background-color: #1d1e21;

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

.related-news {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.related-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.related-news__title {
  color: var(--color-white);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-black) !important;
  border: 1px solid var(--color-white);
  font-weight: 400;
  padding: 0.8rem 1rem !important;

  &:hover {
    color: var(--color-black);
    transform: translateY(-1px);
    filter: brightness(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-item.blog-reveal,
  .blog-item.blog-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-footer {
  padding: 0 0 var(--space-16);

  .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 0.5rem;

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

.footer-card,
.footer-bottom {
  border-radius: 1.5rem;
  /* border: 1px solid rgba(55, 55, 55, 0.9); */
  background-color: #1d1e21;
  a {
    transition: all 0.2s ease;
    &:hover {
      color: var(--color-primary);
    }
  }
}

.footer-card {
  padding: clamp(1.6rem, 2.4vw, 2.5rem);
}

.footer-card--brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 320px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-brand__eyebrow,
.footer-card__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  img {
    max-width: 100px;
    opacity: 0.8;
  }
}

.footer-brand__title {
  color: var(--color-white);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-nav,
.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;

  a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 180ms ease;
  }

  a:hover {
    color: var(--color-primary);
  }
}

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

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-card--contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;

  strong {
    color: var(--color-white);
  }

  a:hover {
    color: var(--color-primary);
  }
}

.footer-card--top {
  min-height: 120px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-social {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  transition:
    transform 180ms ease,
    filter 180ms ease;

  svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.footer-social:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  svg {
    stroke: white;
  }
}

.footer-card--top {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.footer-card--top:hover {
  color: var(--color-primary);
  border-color: rgba(214, 63, 8, 0.55);
}

.footer-bottom {
  padding: 1.4rem 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  min-height: 3rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.btn-outline {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: transparent;

  &:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
  }
}

.btn-outline__spark {
  color: var(--color-primary);
  font-size: 1.1em;
  line-height: 1;
}

.container-sm {
  width: min(100% - 2rem, var(--container-sm));
  margin-inline: auto;
}

.container-md {
  width: min(100% - 2rem, var(--container-md));
  margin-inline: auto;
}

.container-lg {
  width: min(100% - 2rem, var(--container-lg));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-16);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

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

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

/* Spacing */
.m-0 {
  margin: var(--space-0);
}
.mx-auto {
  margin-inline: auto;
}
.mt-2 {
  margin-top: var(--space-2);
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.mb-8 {
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: var(--space-0);
}
.p-2 {
  padding: var(--space-2);
}
.p-3 {
  padding: var(--space-3);
}
.p-4 {
  padding: var(--space-4);
}
.p-5 {
  padding: var(--space-5);
}
.p-6 {
  padding: var(--space-6);
}
.p-8 {
  padding: var(--space-8);
}
.px-3 {
  padding-inline: var(--space-3);
}
.px-4 {
  padding-inline: var(--space-4);
}
.px-6 {
  padding-inline: var(--space-6);
}
.px-8 {
  padding-inline: var(--space-8);
}
.py-2 {
  padding-block: var(--space-2);
}
.py-3 {
  padding-block: var(--space-3);
}
.py-4 {
  padding-block: var(--space-4);
}
.py-6 {
  padding-block: var(--space-6);
}
.py-8 {
  padding-block: var(--space-8);
}

/* Sizing */
.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.max-w-none {
  max-width: none;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}

/* Typography */
.font-sans {
  font-family: var(--font-sans);
}
.font-mono {
  font-family: var(--font-mono);
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.tracking-tight {
  letter-spacing: var(--tracking-tight);
}
.tracking-normal {
  letter-spacing: var(--tracking-normal);
}
.tracking-wide {
  letter-spacing: var(--tracking-wide);
}

.leading-tight {
  line-height: var(--leading-tight);
}
.leading-snug {
  line-height: var(--leading-snug);
}
.leading-normal {
  line-height: var(--leading-normal);
}
.leading-relaxed {
  line-height: var(--leading-relaxed);
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}

/* Colors */
.text-white {
  color: var(--color-white);
}
.text-black {
  color: var(--color-black);
}
.text-slate-400 {
  color: var(--color-slate-400);
}
.text-slate-500 {
  color: var(--color-slate-500);
}
.text-slate-600 {
  color: var(--color-slate-600);
}
.text-slate-700 {
  color: var(--color-slate-700);
}
.text-slate-900 {
  color: var(--color-slate-900);
}
.text-blue-600 {
  color: var(--color-blue-600);
}
.text-emerald-500 {
  color: var(--color-emerald-500);
}
.text-red-500 {
  color: var(--color-red-500);
}

.bg-white {
  background-color: var(--color-white);
}
.bg-slate-50 {
  background-color: var(--color-slate-50);
}
.bg-slate-100 {
  background-color: var(--color-slate-100);
}
.bg-slate-900 {
  background-color: var(--color-slate-900);
}
.bg-slate-950 {
  background-color: var(--color-slate-950);
}
.bg-blue-600 {
  background-color: var(--color-blue-600);
}
.bg-emerald-500 {
  background-color: var(--color-emerald-500);
}

/* Borders and radius */
.border {
  border: 1px solid var(--color-slate-200);
}
.border-0 {
  border: 0;
}
.border-slate-200 {
  border-color: var(--color-slate-200);
}
.border-slate-300 {
  border-color: var(--color-slate-300);
}
.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-2xl {
  border-radius: var(--radius-2xl);
}
.rounded-full {
  border-radius: var(--radius-full);
}

/* Effects */
.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}

/* Position */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.inset-0 {
  inset: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}

/* Interaction */
.transition {
  transition-property:
    color, background-color, border-color, opacity, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:shadow-lg:hover {
  box-shadow: var(--shadow-lg);
}

/* Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .section {
    padding-block: var(--space-12);
  }
}

.text-orange {
  color: var(--color-primary);
}

.h-full {
  height: 100%;
}

.btn {
  display: inline-flex;
  color: var(--color-white);
  border: solid 1px var(--color-white);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  span {
    transition: all 0.3s ease;
  }
  &.rounded {
    border-radius: 999px;
  }
  &.orange {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
  }
  &:not(.orange):hover {
    padding-left: 1.5rem;
  }
}
