:root {
  --emerald: #064E3B;
  --emerald-dark: #033C2D;
  --sage: #A3B18A;
  --gold: #C6A15B;
  --ivory: #FDFBF7;
  --sand: #F6F2EA;
  --dark: #17201C;
  --white: #FFFFFF;

  --serif: "Cormorant Garamond", serif;
  --sans: "Plus Jakarta Sans", sans-serif;

  --container: 1180px;
}


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

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}


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

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

  background: rgba(253, 251, 247, 0.95);

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

  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.nav-wrapper {
  min-height: 110px;

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

  gap: 30px;
}


/* HEADER LOGO */

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

.brand-logo img {
  width: auto;
  height: 92px;
  object-fit: contain;
}


/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;

  font-size: 0.9rem;
  font-weight: 500;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  width: 100%;
}


/* HEADER CTA */

.nav-cta {
  flex-shrink: 0;

  padding: 13px 22px;

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

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

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

.nav-cta:hover {
  background: var(--emerald);
  color: var(--white);

  transform: translateY(-2px);
}


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

.hero {
  min-height: calc(100vh - 110px);

  padding: 100px 0 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;

  align-items: center;

  gap: 80px;
}


/* EYEBROW */

.eyebrow {
  margin-bottom: 20px;

  color: var(--gold);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.22em;
}


/* HERO TITLE */

.hero h1 {
  max-width: 760px;

  font-family: var(--serif);

  font-size: clamp(4rem, 7.5vw, 7.3rem);

  line-height: 0.9;

  font-weight: 600;

  color: var(--emerald);
}

.hero h1 span {
  display: block;

  color: var(--gold);

  font-style: italic;
}


/* HERO TEXT */

.hero-text {
  max-width: 630px;

  margin-top: 35px;

  font-size: 1.08rem;

  line-height: 1.8;

  color: rgba(23, 32, 28, 0.78);
}


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

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

  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

.btn {
  min-height: 52px;

  padding: 0 28px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  font-size: 0.88rem;
  font-weight: 600;

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

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-dark);

  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(6, 78, 59, 0.35);
}

.btn-secondary:hover {
  border-color: var(--gold);

  color: var(--gold);

  transform: translateY(-2px);
}


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

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  width: min(100%, 380px);

  aspect-ratio: 0.9;

  padding: 42px;

  background:
    linear-gradient(
      145deg,
      var(--emerald),
      #0A654D
    );

  color: var(--white);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    0 30px 80px rgba(6, 78, 59, 0.15);
}

.visual-number {
  color: var(--gold);

  font-family: var(--serif);

  font-size: 3rem;
}

.visual-card p {
  font-family: var(--serif);

  font-size: 1.7rem;

  line-height: 1.35;
}


/* =========================================================
   SERVICE STRIP
   ========================================================= */

.service-strip {
  min-height: 82px;

  margin-top: 90px;

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

  gap: 20px;

  border-top: 1px solid rgba(6, 78, 59, 0.12);
}

.service-strip span {
  font-size: 0.75rem;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: rgba(23, 32, 28, 0.62);
}


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

.section {
  padding: 130px 0;
}

.section-heading {
  max-width: 750px;

  margin-bottom: 70px;
}

.section-heading h2,
.philosophy h2,
.cta-section h2 {
  font-family: var(--serif);

  font-size: clamp(3rem, 6vw, 5rem);

  line-height: 1;

  color: var(--emerald);

  font-weight: 600;
}

.section-heading > p:last-child {
  max-width: 610px;

  margin-top: 24px;

  color: rgba(23, 32, 28, 0.7);
}


/* =========================================================
   SERVICES — PREMIUM 5 CARD LAYOUT
   ========================================================= */

.services-grid {
  display: grid;

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

  gap: 18px;
}


/* SERVICE CARD */

.service-card {
  position: relative;

  min-width: 0;
  min-height: 350px;

  padding: 30px 24px 32px;

  background: var(--white);

  border:
    1px solid rgba(6, 78, 59, 0.12);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  overflow: hidden;

  box-shadow:
    0 14px 40px rgba(6, 78, 59, 0.04);

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


/* GOLD ACCENT */

.service-card::before {
  content: "";

  width: 34px;
  height: 2px;

  margin-bottom: 24px;

  background: var(--gold);

  transition: width 0.3s ease;
}


/* SERVICE NUMBER */

.service-card span {
  color: var(--gold);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}


/* SERVICE TITLE */

.service-card h3 {
  margin-top: 22px;

  font-family: var(--serif);

  font-size: clamp(1.55rem, 1.8vw, 2rem);

  line-height: 1.08;

  font-weight: 600;

  color: var(--emerald);
}


/* SERVICE DESCRIPTION */

.service-card p {
  margin-top: 18px;

  font-size: 0.84rem;

  line-height: 1.75;

  color: rgba(23, 32, 28, 0.66);
}


/* SERVICE HOVER */

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

  border-color:
    rgba(198, 161, 91, 0.65);

  box-shadow:
    0 25px 60px rgba(6, 78, 59, 0.09);
}

.service-card:hover::before {
  width: 58px;
}


/* =========================================================
   CLIENTS
   ========================================================= */

.clients-section {
  padding: 100px 0 110px;

  background: var(--ivory);

  overflow: hidden;
}


/* CLIENTS HEADING */

.clients-heading {
  max-width: 760px;

  margin-bottom: 45px;
}

.clients-heading h2 {
  font-family: var(--serif);

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

  line-height: 1;

  font-weight: 600;

  color: var(--emerald);
}


/* =========================================================
   CLIENT LOGO MARQUEE
   ========================================================= */

.logo-marquee {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 25px 0;
}


/* LEFT + RIGHT FADE */

.logo-marquee::before,
.logo-marquee::after {
  content: "";

  position: absolute;

  top: 0;

  z-index: 2;

  width: 120px;
  height: 100%;

  pointer-events: none;
}

.logo-marquee::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      var(--ivory),
      rgba(253, 251, 247, 0)
    );
}

.logo-marquee::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      var(--ivory),
      rgba(253, 251, 247, 0)
    );
}


/* MOVING TRACK */

.logo-track {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 80px;

  animation:
    logo-scroll 28s linear infinite;

  will-change: transform;
}


/* PAUSE ON HOVER */

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}


/* CLIENT LOGO */

.client-logo {
  width: 180px;
  min-width: 180px;
  height: 90px;

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

  flex-shrink: 0;
}

.client-logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 160px;
  max-height: 70px;

  object-fit: contain;

  filter: none;
  opacity: 1;

  transition:
    transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.04);
}


/* MARQUEE ANIMATION */

@keyframes logo-scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.philosophy {
  padding: 130px 0;

  background: var(--emerald);

  color: var(--white);
}

.philosophy-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 90px;
}

.eyebrow.light {
  color: var(--sage);
}

.philosophy h2 {
  color: var(--white);
}

.lead {
  max-width: 650px;

  font-family: var(--serif);

  font-size: 2rem;

  line-height: 1.45;

  color: rgba(255, 255, 255, 0.88);
}

.principles {
  margin-top: 60px;

  display: grid;

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

  gap: 35px;
}

.principles span {
  color: var(--gold);

  font-size: 0.75rem;
}

.principles h3 {
  margin-top: 16px;

  font-family: var(--serif);

  color: var(--white);

  font-size: 1.55rem;
}

.principles p {
  margin-top: 8px;

  font-size: 0.88rem;

  color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   WORK
   ========================================================= */

.work-grid {
  display: grid;

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

  gap: 35px;
}

.work-card {
  transition:
    transform 0.25s ease;
}

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

.work-placeholder {
  aspect-ratio: 1.25;

  background:
    linear-gradient(
      135deg,
      var(--sage),
      var(--emerald)
    );

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

  font-family: var(--serif);

  font-size: 2.5rem;

  color: var(--white);
}

.work-info {
  padding-top: 22px;
}

.work-info p {
  font-family: var(--serif);

  font-size: 1.8rem;

  color: var(--emerald);
}

.work-info span {
  display: block;

  margin-top: 6px;

  font-size: 0.8rem;

  color: rgba(23, 32, 28, 0.55);
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: var(--sand);
}

.process-grid {
  display: grid;

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

.process-item {
  padding: 35px;

  border-left:
    1px solid rgba(6, 78, 59, 0.15);
}

.process-item:first-child {
  border-left: none;
}

.process-item span {
  color: var(--gold);

  font-size: 0.78rem;

  font-weight: 700;
}

.process-item h3 {
  margin-top: 16px;

  font-family: var(--serif);

  font-size: 2rem;

  color: var(--emerald);
}

.process-item p {
  margin-top: 12px;

  font-size: 0.9rem;

  color: rgba(23, 32, 28, 0.65);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 130px 0;

  background: var(--dark);

  color: var(--white);

  text-align: center;
}

.cta-inner {
  max-width: 850px;
}

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

.cta-section p:not(.eyebrow) {
  max-width: 600px;

  margin:
    24px auto 35px;

  color: rgba(255, 255, 255, 0.68);
}

.btn-light {
  background: var(--ivory);

  color: var(--emerald);
}

.btn-light:hover {
  background: var(--gold);

  color: var(--dark);

  transform: translateY(-2px);
}


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

.contact-section {
  padding: 130px 0;

  background: var(--ivory);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 90px;

  align-items: start;
}


/* CONTACT INTRO */

.contact-intro h2 {
  max-width: 540px;

  font-family: var(--serif);

  font-size:
    clamp(3rem, 5.5vw, 5rem);

  line-height: 1;

  font-weight: 600;

  color: var(--emerald);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;

  margin-top: 26px;

  font-size: 1rem;

  line-height: 1.8;

  color: rgba(23, 32, 28, 0.68);
}

.contact-note {
  margin-top: 48px;

  padding-top: 25px;

  border-top:
    1px solid rgba(6, 78, 59, 0.15);

  display: flex;

  gap: 20px;
}

.contact-note span {
  color: var(--gold);

  font-size: 0.75rem;

  font-weight: 700;
}

.contact-note p {
  font-family: var(--serif);

  font-size: 1.35rem;

  color: var(--emerald);
}


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

.contact-form-wrapper {
  padding: 45px;

  background: var(--white);

  border:
    1px solid rgba(6, 78, 59, 0.1);

  box-shadow:
    0 25px 70px rgba(6, 78, 59, 0.06);
}

.project-form {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

.form-row {
  display: grid;

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

  gap: 22px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.form-group label {
  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.02em;

  color: var(--emerald);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 15px 16px;

  border:
    1px solid rgba(6, 78, 59, 0.16);

  background: var(--ivory);

  color: var(--dark);

  font-family: var(--sans);

  font-size: 0.9rem;

  outline: none;

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

.form-group textarea {
  min-height: 150px;

  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color:
    rgba(23, 32, 28, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);

  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(198, 161, 91, 0.1);
}


/* FORM BUTTON */

.form-submit {
  width: 100%;

  margin-top: 5px;

  border: none;

  background: var(--emerald);

  color: var(--white);

  cursor: pointer;
}

.form-submit:hover {
  background: var(--emerald-dark);

  transform: translateY(-2px);
}


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

.site-footer {
  padding:
    70px 0 30px;

  background: var(--ivory);
}

.footer-grid {
  display: grid;

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

  align-items: center;

  gap: 50px;
}


/* FOOTER LOGO */

.footer-logo {
  display: inline-flex;

  align-items: center;
}

.footer-logo img {
  width: auto;

  height: 95px;

  object-fit: contain;
}


/* FOOTER TEXT */

.footer-tagline {
  font-family: var(--serif);

  font-size: 1.5rem;

  font-style: italic;

  color: var(--emerald);
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 10px;

  font-size: 0.85rem;
}

.footer-links a {
  transition:
    color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}


/* COPYRIGHT */

.copyright {
  margin-top: 60px;

  padding-top: 25px;

  border-top:
    1px solid rgba(6, 78, 59, 0.12);

  font-size: 0.75rem;

  color:
    rgba(23, 32, 28, 0.45);
}


/* =========================================================
   SMALL DESKTOP
   ========================================================= */

@media (max-width: 1100px) {

  /* SERVICES */

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

  .service-card {
    min-height: 280px;

    padding: 30px 26px;
  }

  .service-card h3 {
    font-size: 1.9rem;
  }

}


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

@media (max-width: 900px) {

  /* HEADER */

  .nav-wrapper {
    min-height: 96px;
  }

  .brand-logo img {
    height: 76px;
  }

  .main-nav {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding-top: 75px;
  }

  .hero-grid,
  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 55px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .visual-card {
    width: 100%;

    aspect-ratio: auto;

    min-height: 360px;
  }

  .service-strip {
    flex-wrap: wrap;

    justify-content: flex-start;

    padding: 25px 0;
  }


  /* WORK */

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


  /* PHILOSOPHY */

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


  /* PROCESS */

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


  /* FOOTER */

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

  .footer-links {
    grid-column: 1 / -1;

    flex-direction: row;

    flex-wrap: wrap;

    gap: 20px;
  }


  /* =========================================================
   CLIENTS — COMPACT VERSION
   ========================================================= */

.clients-section {
  padding: 65px 0 70px;
  background: var(--ivory);
  overflow: hidden;
}

.clients-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.clients-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 600;
  color: var(--emerald);
}


/* LOGO MARQUEE */

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 5px;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--ivory),
    rgba(253, 251, 247, 0)
  );
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--ivory),
    rgba(253, 251, 247, 0)
  );
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 70px;
  animation: logo-scroll 28s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.client-logo {
  width: 170px;
  min-width: 170px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.04);
}


/* TABLET */

@media (max-width: 900px) {

  .clients-section {
    padding: 55px 0 60px;
  }

  .clients-heading {
    margin-bottom: 20px;
  }

  .logo-track {
    gap: 50px;
  }

  .client-logo {
    width: 145px;
    min-width: 145px;
    height: 70px;
  }

  .client-logo img {
    max-width: 130px;
    max-height: 55px;
  }
}


/* MOBILE */

@media (max-width: 600px) {

  .clients-section {
    padding: 48px 0 55px;
  }

  .clients-heading {
    margin-bottom: 18px;
  }

  .clients-heading h2 {
    font-size: 2.8rem;
  }

  .logo-marquee {
    padding: 8px 0 0;
  }

  .logo-track {
    gap: 38px;
    animation-duration: 22s;
  }

  .client-logo {
    width: 120px;
    min-width: 120px;
    height: 62px;
  }

  .client-logo img {
    max-width: 105px;
    max-height: 50px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 50px;
  }
}

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

@media (max-width: 600px) {

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


  /* HEADER */

  .site-header {
    position: static;
  }

  .nav-wrapper {
    min-height: 86px;

    gap: 16px;
  }

  .brand-logo img {
    height: 66px;
  }

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

    font-size: 0.7rem;
  }


  /* HERO */

  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size:
      clamp(
        3.5rem,
        17vw,
        4.6rem
      );

    line-height: 0.92;
  }

  .hero-text {
    margin-top: 28px;

    font-size: 0.95rem;
  }

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

    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .visual-card {
    min-height: 320px;

    padding: 30px;
  }

  .visual-card p {
    font-size: 1.5rem;
  }

  .service-strip {
    margin-top: 60px;

    gap: 14px 22px;
  }

  .service-strip span {
    font-size: 0.68rem;
  }


  /* GENERAL */

  .section,
  .philosophy,
  .cta-section,
  .contact-section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .philosophy h2,
  .cta-section h2,
  .contact-intro h2 {
    font-size: 3.1rem;
  }

  .lead {
    font-size: 1.65rem;
  }


  /* SERVICES */

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

    gap: 15px;
  }

  .service-card {
    min-height: auto;

    padding: 28px 24px;
  }

  .service-card::before {
    margin-bottom: 20px;
  }

  .service-card h3 {
    margin-top: 16px;

    font-size: 2rem;
  }

  .service-card p {
    margin-top: 14px;

    font-size: 0.88rem;
  }


  /* PROCESS */

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

  .process-item {
    padding: 28px 0;

    border-left: none;

    border-top:
      1px solid rgba(6, 78, 59, 0.15);
  }

  .process-item:first-child {
    border-top: none;
  }


  /* WORK */

  .work-placeholder {
    font-size: 2rem;
  }


  /* CONTACT */

  .contact-form-wrapper {
    padding: 28px 22px;
  }

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


  /* CLIENTS */

  .clients-section {
    padding:
      75px 0 85px;
  }

  .clients-heading {
    margin-bottom: 30px;
  }

  .clients-heading h2 {
    font-size: 2.8rem;
  }

  .logo-marquee {
    padding: 20px 0;
  }

  .logo-track {
    gap: 42px;

    animation-duration: 22s;
  }

  .client-logo {
    width: 125px;

    min-width: 125px;

    height: 70px;
  }

  .client-logo img {
    max-width: 110px;

    max-height: 55px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 55px;
  }


  /* FOOTER */

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

    gap: 28px;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-links {
    grid-column: auto;

    flex-direction: column;

    gap: 10px;
  }

  .copyright {
    margin-top: 40px;
  }

}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 390px) {

  .brand-logo img {
    height: 58px;
  }

  .nav-cta {
    padding: 9px 11px;

    font-size: 0.65rem;
  }

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

}


/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

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

  html {
    scroll-behavior: auto;
  }

  .logo-track {
    animation: none;
  }

  .work-card,
  .service-card,
  .btn,
  .nav-cta,
  .client-logo img {
    transition: none;
  }

}
