/* =====================================================
   IREC WEBSITE — GLOBAL STYLES
   Infra Research & Engineering Consulting
   ===================================================== */


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

:root {

  --purple: #4b2e83;
  --purple-dark: #241342;

  --navy: #081b3d;
  --navy-2: #102d5c;

  --lavender: #e8e1ff;
  --accent: #a994f8;

  --white: #ffffff;

  --ink: #182238;
  --muted: #657187;

  --line: #dfe5ef;
  --soft: #f6f7fb;

}


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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.25rem, 4.35vw, 4.35rem);
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 0 0 20px;
}

h3 {
  font-size: 1.3rem;
  margin: 14px 0;
}

p {
  margin-top: 0;
}

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

button {
  font-family: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  min-height: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header .nav {
  width: 100%;
}


/* ================= BRAND ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #172554;
}

.irec-logo {
  width: 105px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  display: block;
}

.brand-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;

  max-width: 280px;
  line-height: 1.25;
}

.brand-tag strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #172554;
}

.brand-tag small {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: #64748b;
}


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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;

  color: #172554;
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4b2e83;
}

.nav-cta {
  background: #4b2e83;
  color: #ffffff;

  padding: 11px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #35205f;
}


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

.menu-toggle {
  display: none;

  background: transparent;
  color: #172554;

  border: 0;

  font-size: 1.5rem;
  cursor: pointer;
}


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

.hero {
  position: relative;

  min-height: 640px;
  height: calc(100vh - 82px);

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--navy);
  color: #ffffff;
}


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

.hero-background {
  position: absolute;
  inset: 0;

  background-image: url("../images/irec-engineering-hero.png");

  background-size: cover;
  background-position: center;

  transform: scale(1.02);
}


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

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 16, 48, 0.97) 0%,
      rgba(8, 24, 60, 0.88) 35%,
      rgba(12, 24, 62, 0.52) 70%,
      rgba(20, 15, 52, 0.38) 100%
    );
}


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

.hero-grid {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 40px));
  margin: auto;

  display: grid;
  grid-template-columns: 1fr;

  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding-top: 20px;
}


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

.eyebrow {
  font-size: 1rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  color: var(--purple);

  margin: 0 0 20px;
}

.hero .eyebrow,
.dark .eyebrow,
.contact .eyebrow {
  color: var(--lavender);
}

.hero .eyebrow {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}


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

.hero h1 {
  font-family: "Manrope", sans-serif;

  font-size: clamp(2.6rem, 5vw, 5.2rem);

  font-weight: 800;
  line-height: 1.03;

  letter-spacing: -0.055em;

  margin: 0;
}

.hero h1 em {
  display: block;

  font-style: normal;
  color: #c6b8ff;
}


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

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 40px;
}

.btn {
  display: inline-flex;

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

  padding: 13px 21px;

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 800;

  cursor: pointer;

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

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--purple);
  color: #ffffff;

  border: 1px solid var(--purple);
}

.btn-primary:hover {
  background: #7042bd;
}

.btn-outline {
  background: transparent;
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


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

.hero-indicator {
  position: absolute;

  bottom: 24px;

  left: max(20px, calc((100% - 1180px) / 2));

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 12px;

  color: #ffffff;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.indicator-line {
  width: 95px;
  height: 1px;

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


/* =====================================================
   SECTOR STRIP
   ===================================================== */

.discipline-strip {
  border-bottom: 1px solid var(--line);
}

.strip {
  display: flex;

  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;

  padding: 21px 0;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.1em;

  color: var(--navy);
}


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

.section {
  padding: 105px 0;
}

.two-column,
.section-heading,
.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;
}

.muted,
.section-heading > p {
  color: var(--muted);
}


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

.about-section {
  background: #ffffff;
  color: #111d45;

  padding: 45px 0 60px;
}

.about-container {
  width: min(1250px, 92%);
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1.15fr;

  gap: 75px;

  align-items: start;
}


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

.about-left {
  display: flex;

  flex-direction: column;

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

  text-align: left;

  padding-top: 110px;
}

.about-label {
  font-size: 14px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #4d2b91;

  margin-bottom: 28px;
}

.about-left h2 {
  font-size: clamp(42px, 4vw, 58px);

  line-height: 1.05;

  letter-spacing: -2px;

  font-weight: 600;

  color: #18213c;

  margin: 0;

  max-width: 540px;
}


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

.about-content {
  max-width: 760px;

  padding: 0 15px;
}

.about-content p {
  font-size: 17px;

  line-height: 1.85;

  color: #52617d;

  margin: 0 0 30px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: #183b82;

  font-weight: 700;
}


/* =====================================================
   EXPERTISE
   EDITORIAL / TECHNICAL VERTICAL LAYOUT
   ===================================================== */

.expertise-section {
  position: relative;

  background: #0b1f4d;

  color: #ffffff;

  padding: 115px 0 105px;

  overflow: hidden;
}


/* ================= BACKGROUND DETAIL ================= */

.expertise-section::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -300px;
  top: -280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(113, 78, 188, 0.18) 0%,
      rgba(113, 78, 188, 0.05) 45%,
      transparent 70%
    );

  pointer-events: none;
}

.expertise-section::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: 0;

  height: 1px;

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

  pointer-events: none;
}


/* ================= CONTAINER ================= */

.expertise-container {
  position: relative;

  z-index: 1;

  width: min(1250px, 92%);

  margin: 0 auto;
}


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

.expertise-header {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 350px;

  gap: 80px;

  align-items: end;

  margin-bottom: 65px;
}

.expertise-heading {
  min-width: 0;
}

.section-eyebrow {
  display: block;

  margin-bottom: 25px;

  color: #b9a2ff;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.expertise-heading h2 {
  margin: 0;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1.03;

  font-weight: 500;

  letter-spacing: -2.5px;

  color: #ffffff;
}

.expertise-heading h2 span {
  color: #b69aff;
}

.expertise-intro {
  max-width: 350px;

  padding-bottom: 4px;
}

.expertise-intro p {
  margin: 0;

  color: #c1cde0;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   EXPERTISE SERVICE ROWS
   ===================================================== */

.expertise-row {
  position: relative;

  display: grid;

  grid-template-columns: 70px 110px minmax(0, 1fr) 45px;

  align-items: center;

  column-gap: 28px;

  min-height: 165px;

  padding: 30px 0;

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

  transition:
    background 0.35s ease,
    padding-left 0.35s ease,
    padding-right 0.35s ease;
}


/* Last row bottom border */

.expertise-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}


/* ================= ROW HOVER ================= */

.expertise-row:hover {
  background: rgba(255, 255, 255, 0.025);

  padding-left: 14px;
  padding-right: 14px;
}


/* ================= SERVICE NUMBER ================= */

.expertise-number {
  align-self: start;

  padding-top: 8px;

  color: #8294bb;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.16em;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.expertise-row:hover .expertise-number {
  color: #b69aff;

  transform: translateX(3px);
}


/* =====================================================
   TECHNICAL SVG ICON
   ===================================================== */

.expertise-icon {
  width: 92px;
  height: 92px;

  display: flex;

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

  color: #b69aff;

  border: 1px solid rgba(182, 154, 255, 0.25);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    );

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

.expertise-icon::before {
  content: "";

  position: absolute;

  width: 92px;
  height: 92px;

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

  transform: translate(5px, 5px);

  pointer-events: none;
}

.expertise-icon svg {
  width: 58px;
  height: 58px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.45;

  stroke-linecap: round;

  stroke-linejoin: round;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.expertise-row:hover .expertise-icon {
  border-color: rgba(182, 154, 255, 0.65);

  background:
    linear-gradient(
      145deg,
      rgba(86, 48, 143, 0.32),
      rgba(255, 255, 255, 0.035)
    );

  transform: translateX(4px);
}

.expertise-row:hover .expertise-icon svg {
  transform: scale(1.08);
}


/* =====================================================
   SERVICE CONTENT
   ===================================================== */

.expertise-content {
  max-width: 720px;

  padding-right: 35px;
}

.expertise-content h3 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: clamp(22px, 2vw, 29px);

  line-height: 1.2;

  font-weight: 600;

  letter-spacing: -0.7px;

  transition: color 0.3s ease;
}

.expertise-row:hover .expertise-content h3 {
  color: #d8ccff;
}

.expertise-content p {
  margin: 0;

  max-width: 680px;

  color: #b9c8e1;

  font-size: 15px;

  line-height: 1.75;
}


/* ================= ROW ARROW ================= */

.expertise-arrow {
  display: flex;

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

  width: 38px;
  height: 38px;

  color: #8393b7;

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

  border-radius: 50%;

  font-size: 18px;

  line-height: 1;

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

.expertise-row:hover .expertise-arrow {
  color: #ffffff;

  background: #56308f;

  border-color: #7654b2;

  transform: translate(4px, -2px);
}


/* =====================================================
   ALL SERVICES BUTTON
   ===================================================== */

.expertise-services-button {
  display: flex;

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

  margin-top: 55px;
}

.expertise-services-button .primary-button {
  display: inline-flex;

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

  padding: 15px 29px;

  background: #59318f;

  color: #ffffff;

  border: 1px solid #6843a2;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

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

.expertise-services-button .primary-button:hover {
  background: #7650b5;

  border-color: #8e6bc5;

  transform: translateY(-3px);

  box-shadow:
    0 10px 30px rgba(60, 35, 105, 0.35);
}


/* =====================================================
   EXPERTISE SCROLL REVEAL
   ===================================================== */

.expertise-row {
  opacity: 1;
  transform: translateY(0);
}

.expertise-row:nth-child(2) {
  transition-delay: 0.05s;
}

.expertise-row:nth-child(3) {
  transition-delay: 0.12s;
}

.expertise-row:nth-child(4) {
  transition-delay: 0.19s;
}

.expertise-row:nth-child(5) {
  transition-delay: 0.26s;
}

.expertise-row:nth-child(6) {
  transition-delay: 0.33s;
}

.expertise-row:nth-child(7) {
  transition-delay: 0.40s;
}

/* =====================================================
   PROJECTS
   ===================================================== */

.project-grid {
  display: grid;

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

  gap: 18px;

  margin-top: 35px;
}

.project {
  border: 1px solid var(--line);

  border-radius: 18px;

  overflow: hidden;

  transition: transform 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
}

.project-image {
  height: 200px;

  background-size: cover;

  background-position: center;
}

.project-image.rail {
  background-image:
    url("https://images.unsplash.com/photo-1474487548417-781cb71495f3?auto=format&fit=crop&w=900&q=85");
}

.project-image.geo {
  background-image:
    url("https://images.unsplash.com/photo-1535090467336-9501f96eef89?auto=format&fit=crop&w=900&q=85");
}

.project-image.environment {
  background-image:
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=85");
}

.project > div:last-child {
  padding: 22px;
}

.project span {
  color: var(--purple);

  font-size: 0.7rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}


/* =====================================================
   APPROACH / SUSTAINABILITY
   ===================================================== */

.approach {
  background: var(--soft);
}


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

.contact {
  background: var(--navy);

  color: #ffffff;

  padding: 90px 0;
}

.contact p {
  color: #c4d0e3;
}

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

.contact-grid > div:last-child {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 5px;
}

.contact-grid span {
  font-size: 0.7rem;

  color: var(--lavender);

  font-weight: 800;

  letter-spacing: 0.12em;

  margin-top: 10px;
}

.contact-grid a:not(.btn) {
  font-weight: 800;

  font-size: 1.1rem;
}

.contact .btn {
  margin-top: 22px;
}


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

footer {
  background: #04132d;

  color: #ffffff;

  padding: 28px 0;
}

.footer-row {
  display: flex;

  justify-content: space-between;

  gap: 18px;

  flex-wrap: wrap;

  font-size: 0.8rem;

  color: #c2cee0;
}

.footer-row b {
  color: #ffffff;
}


/* =====================================================
   GLOBAL SCROLL ANIMATIONS
   ===================================================== */

.reveal {
  opacity: 0;

  transform: translateY(25px);

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

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1000px) {

  .hero {
    height: auto;

    min-height: 620px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.2rem);
  }

  .two-column,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  /* ABOUT */

  .about-container {
    width: min(92%, 850px);

    grid-template-columns: 1fr 1.15fr;

    gap: 45px;
  }


  /* EXPERTISE */

  .expertise-container {
    width: min(92%, 1000px);
  }

  .expertise-header {
    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 45px;
  }

  .expertise-row {
    grid-template-columns: 55px 90px minmax(0, 1fr) 42px;

    column-gap: 22px;
  }

  .expertise-icon {
    width: 82px;
    height: 82px;
  }

  .expertise-icon::before {
    width: 82px;
    height: 82px;
  }

  .expertise-icon svg {
    width: 52px;
    height: 52px;
  }


  /* PROJECTS */

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

}


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

@media (max-width: 768px) {

  .container {
    width: calc(100% - 28px);
  }


  /* HEADER */

  .site-header .nav {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;

    position: absolute;

    top: 76px;

    left: 0;
    right: 0;

    padding: 20px;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    flex-direction: column;

    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

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

  .irec-logo {
    width: 82px;
    max-height: 50px;
  }

  .brand-tag {
    max-width: 210px;
  }

  .brand-tag strong {
    font-size: 0.65rem;
  }

  .brand-tag small {
    font-size: 0.48rem;
  }


  /* HERO */

  .hero {
    min-height: 600px;

    height: auto;

    padding: 65px 0 75px;
  }

  .hero-background {
    background-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 16, 48, 0.96),
        rgba(8, 24, 60, 0.70)
      );
  }

  .hero-content {
    padding-top: 0;
  }

  .hero .eyebrow {
    font-size: 0.78rem;

    letter-spacing: 0.09em;

    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-actions {
    margin-top: 30px;

    gap: 10px;
  }

  .hero-actions .btn {
    padding: 13px 18px;
  }

  .hero-indicator {
    left: 20px;

    bottom: 20px;
  }


  /* GENERAL */

  .section {
    padding: 70px 0;
  }

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

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

  .project-image {
    height: 220px;
  }


  /* ABOUT */

  .about-section {
    padding: 70px 0 80px;
  }

  .about-container {
    width: 90%;

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-left {
    align-items: center;

    text-align: center;

    padding-top: 0;
  }

  .about-left h2 {
    font-size: 42px;

    letter-spacing: -1px;
  }

  .about-content {
    max-width: 100%;

    padding: 0;
  }

  .about-content p {
    font-size: 16px;

    line-height: 1.8;
  }


  /* =================================================
     EXPERTISE MOBILE
     ================================================= */

  .expertise-section {
    padding: 80px 0 75px;
  }

  .expertise-container {
    width: calc(100% - 40px);
  }

  .expertise-header {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 45px;
  }

  .section-eyebrow {
    margin-bottom: 20px;
  }

  .expertise-heading h2 {
    font-size: 42px;

    letter-spacing: -1.5px;
  }

  .expertise-intro {
    max-width: 100%;

    padding-bottom: 0;
  }

  .expertise-intro p {
    font-size: 15px;

    line-height: 1.75;
  }


  /* SERVICE ROW */

  .expertise-row {
    grid-template-columns: 42px 76px minmax(0, 1fr);

    column-gap: 16px;

    min-height: 145px;

    padding: 25px 0;
  }

  .expertise-row:hover {
    padding-left: 0;
    padding-right: 0;
  }


  /* NUMBER */

  .expertise-number {
    padding-top: 5px;

    font-size: 10px;
  }


  /* ICON */

  .expertise-icon {
    width: 70px;
    height: 70px;
  }

  .expertise-icon::before {
    width: 70px;
    height: 70px;
  }

  .expertise-icon svg {
    width: 45px;
    height: 45px;
  }


  /* CONTENT */

  .expertise-content {
    padding-right: 0;
  }

  .expertise-content h3 {
    font-size: 20px;

    line-height: 1.25;

    margin-bottom: 8px;
  }

  .expertise-content p {
    font-size: 13px;

    line-height: 1.65;
  }


  /* ARROW */

  .expertise-arrow {
    display: none;
  }


  /* BUTTON */

  .expertise-services-button {
    margin-top: 45px;
  }

  .expertise-services-button .primary-button {
    padding: 14px 25px;

    font-size: 13px;
  }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

  .site-header .nav {
    min-height: 72px;
  }

  .irec-logo {
    width: 72px;

    max-height: 45px;
  }

  .brand {
    gap: 8px;
  }

  .brand-tag {
    max-width: 175px;
  }

  .brand-tag strong {
    font-size: 0.58rem;
  }

  .brand-tag small {
    font-size: 0.43rem;
  }


  /* HERO */

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

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }


  /* EXPERTISE */

  .expertise-section {
    padding: 70px 0 65px;
  }

  .expertise-container {
    width: calc(100% - 28px);
  }

  .expertise-heading h2 {
    font-size: 38px;
  }

  .expertise-row {
    grid-template-columns: 34px 64px minmax(0, 1fr);

    column-gap: 12px;

    min-height: 140px;

    padding: 22px 0;
  }

  .expertise-icon {
    width: 62px;
    height: 62px;
  }

  .expertise-icon::before {
    width: 62px;
    height: 62px;
  }

  .expertise-icon svg {
    width: 40px;
    height: 40px;
  }

  .expertise-content h3 {
    font-size: 18px;
  }

  .expertise-content p {
    font-size: 12.5px;
  }

  .expertise-services-button .primary-button {
    width: 100%;
  }


  /* PROJECTS */

  .project-image {
    height: 220px;
  }

}


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

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}