/* ========================================
   WRIGHT SCAFFOLDING
   ======================================== */

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

:root {
  --dark: #151515;
  --light: #f3f1ec;
  --white: #ffffff;

  /* WRIGHT SCAFFOLDING BURGUNDY */
  --orange: #8A2448;

  --green: #22c55e;
  --grey: #666;
  --border: rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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


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

.site-header {
  min-height: 84px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1000;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.logo {
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.logo span {
  color: var(--orange);
}

.logo-location {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.25px;
  color: #777;
  text-transform: uppercase;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.nav-quote {
  border-bottom: 1px solid var(--dark);
  padding-bottom: 3px;
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}


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

.mobile-menu {
  display: none;
  background: var(--dark);
  color: white;
  padding: 6px 22px 12px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}


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

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section {
  padding: 95px 7%;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading .eyebrow {
  margin-top: 8px;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.section-heading > p:last-child {
  color: var(--grey);
  max-width: 390px;
  margin-top: 8px;
}


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

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--light);
}

.hero-copy {
  padding: 34px 7% 28px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(50px, 5.4vw, 82px);
  line-height: 0.92;
  letter-spacing: -4px;
  max-width: 720px;
}

.hero-description {
  max-width: 650px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 22px;
}

.button {
  display: inline-block;
  padding: 15px 21px;
  font-weight: 700;
}

.button-dark {
  background: var(--dark);
  color: white;
}

.button-dark:hover {
  background: var(--orange);
  color: white;
}

.text-link {
  font-weight: 700;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 3px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span {
  border: 1px solid var(--border);
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


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

.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.image-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  min-width: 250px;
  padding: 22px 36px;
  background: var(--orange);
  color: white;
  display: grid;
  gap: 5px;
  z-index: 2;
}

.image-card span {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.image-card strong {
  font-size: 19px;
}


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

.service-strip {
  background: var(--dark);
  color: white;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
  padding: 18px 5%;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}


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

.services {
  padding-top: 65px;
  padding-bottom: 78px;
}

.services .section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.75fr);

  grid-template-areas:
    "main description"
    "tagline tagline";

  column-gap: 80px;
  row-gap: 18px;
  align-items: start;
  margin-bottom: 42px;
}

.services .section-heading .eyebrow {
  grid-area: main;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: var(--dark);
}

.services .section-heading h2 {
  grid-area: tagline;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 600px;
  margin: 0;
}

.services .section-heading > p:last-child {
  grid-area: description;
  max-width: 420px;
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #606060;
}


/* ========================================
   SERVICE CARDS
   ======================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 245px;
  padding: 27px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: white;
}

.service-card.featured {
  background: var(--orange);
  color: white;
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin-bottom: 13px;
  max-width: 270px;
}

.service-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 22px;
}

.service-card li {
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.65px;
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.service-card.featured li {
  border-top-color: rgba(255, 255, 255, 0.25);
}


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

.contact-card {
  background: var(--dark);
  color: white;
}

.contact-card:hover {
  background: #090909;
}

.contact-card p {
  color: #aaa;
}

.contact-card .eyebrow {
  color: var(--orange);
  font-size: 9px;
  margin-bottom: 13px;
}

.contact-card h3 {
  max-width: 300px;
}

.contact-card a {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid white;
}


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

.approach {
  background: var(--dark);
  color: white;
}

.approach .section-heading > p:last-child {
  color: #aaa;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.value {
  padding: 38px 45px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.value:not(:first-child) {
  padding-left: 45px;
}

.value h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.value p {
  color: #aaa;
  max-width: 330px;
}


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

.work {
  overflow: hidden;
}

.work-heading {
  margin-bottom: 38px;
}

.work-heading .eyebrow {
  margin-bottom: 16px;
}

.work-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.work-title-row h2 {
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.work-title-row p {
  max-width: 370px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
}


/* ========================================
   GALLERY
   ======================================== */

.gallery-wrapper {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc((100% - 36px) / 2.6);
}

.gallery-image {
  height: 440px;
  overflow: hidden;
  background: #ddd;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.025);
}

.gallery-caption {
  padding: 15px 2px 0;
}

.gallery-caption span {
  display: block;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #777;
}

.gallery-caption h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}


/* ========================================
   DESKTOP GALLERY ARROWS
   ======================================== */

.gallery-arrow {
  position: absolute;
  top: 220px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.88);
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.gallery-arrow-left {
  left: 16px;
}

.gallery-arrow-right {
  right: 16px;
}

.gallery-arrow:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.gallery-mobile-hint {
  display: none;
}


/* ========================================
   AREAS
   ======================================== */

.areas {
  background: #dedbd4;
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.areas h2 {
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.areas-layout > div:first-child > p:not(.eyebrow) {
  color: #555;
  max-width: 450px;
}

.areas a {
  display: inline-block;
  margin-top: 28px;
  font-weight: 700;
  border-bottom: 1px solid;
}

.area-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-list span {
  font-size: 27px;
  font-weight: 700;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}


/* ========================================
   QUOTE
   ======================================== */

.quote-section {
  background: var(--dark);
  color: white;
  padding: 95px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.quote-intro h2 {
  font-size: clamp(48px, 5vw, 75px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.quote-intro > p:not(.eyebrow) {
  color: #aaa;
  margin-top: 28px;
  font-size: 18px;
}

.contact-details {
  display: flex;
  gap: 70px;
  margin-top: 65px;
}

.contact-details div {
  display: grid;
  gap: 7px;
}

.contact-details span {
  font-size: 9px;
  color: #888;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.contact-details strong {
  font-size: 14px;
}

.quote-form {
  display: grid;
  gap: 24px;
}

.quote-form label {
  display: grid;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #555;
  background: transparent;
  color: white;
  padding: 13px 0;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-bottom-color: var(--orange);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  margin-top: 15px;
  border: 0;
  background: var(--orange);
  color: white;
  padding: 17px 22px;
  font-weight: 800;
  cursor: pointer;
}

.quote-form button:hover {
  background: white;
  color: var(--dark);
}


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

footer {
  background: #090909;
  color: white;
  padding: 65px 7% 28px;
  position: relative;
}

.footer-logo {
  font-size: clamp(35px, 5vw, 65px);
  font-weight: 900;
  letter-spacing: -2px;
}

.footer-logo span {
  color: var(--orange);
}

footer > p {
  color: #888;
  margin-top: 12px;
}

footer > a {
  position: absolute;
  right: 7%;
  top: 75px;
  font-weight: 700;
  border-bottom: 1px solid #555;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 12px;
}


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

.social-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 9999;
}

.social-button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.20),
    0 2px 5px rgba(0, 0, 0, 0.12);
}

.social-button:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: white;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-dot {
  fill: currentColor;
  stroke: none;
}

.facebook-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.mobile-call-button {
  display: none;
}


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

@media (max-width: 1050px) and (min-width: 769px) {

  .hero-copy {
    padding: 28px 7%;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .hero-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-buttons {
    margin-top: 18px;
    gap: 24px;
  }

  .hero-tags {
    margin-top: 18px;
  }

  .hero-tags span {
    font-size: 8px;
    padding: 6px 8px;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

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

    grid-template-areas:
      "main"
      "tagline"
      "description";

    row-gap: 16px;
  }

  .services .section-heading > p:last-child {
    max-width: 600px;
  }

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

  .gallery-item {
    flex-basis: 48%;
  }

}


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

@media (max-width: 768px) {

  /* HEADER */

  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .logo {
    font-size: 20px;
    line-height: 0.95;
    letter-spacing: -0.7px;
  }

  .logo-location {
    font-size: 6.5px;
    letter-spacing: 0.9px;
    margin-top: 3px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    padding-left: 18px;
    padding-right: 18px;
  }


  /* SOCIAL */

  .social-buttons {
    left: auto;
    right: 16px;
    bottom: 74px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .social-button {
    width: 40px;
    height: 40px;
  }

  .instagram-icon {
    width: 18px;
    height: 18px;
  }

  .facebook-icon {
    width: 19px;
    height: 19px;
  }


  /* CALL */

  .mobile-call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 112px;
    height: 46px;
    background: var(--dark);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 9999;
    box-shadow:
      0 8px 25px rgba(0, 0, 0, 0.22),
      0 2px 5px rgba(0, 0, 0, 0.15);
  }

  .mobile-call-button::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 8px;
  }


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

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

  .hero-copy {
    width: 100%;
    height: auto;
    padding: 52px 20px 45px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -2px;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 27px;
  }

  .button-dark {
    width: 100%;
    text-align: center;
  }

  .text-link {
    align-self: flex-start;
  }


  /* HERO TAGS */

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 30px;
    gap: 8px;
  }

  .hero-tags span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 2px;
    font-size: 9px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }


  /* MOBILE PHOTO */

  .hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    background: transparent;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
  }

  .image-card {
    width: 200px;
    min-width: 0;
    padding: 17px;
  }


  /* SERVICE STRIP */

  .service-strip {
    min-height: 54px;
    justify-content: flex-start;
    gap: 28px;
    padding: 15px 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .service-strip::-webkit-scrollbar {
    display: none;
  }


  /* GENERAL */

  .section {
    padding: 58px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading .eyebrow {
    margin: 0 0 14px;
  }

  .section-heading h2 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.7px;
  }

  .section-heading > p:last-child {
    margin-top: 19px;
    line-height: 1.6;
  }


  /* ========================================
     MOBILE SERVICES - COMPACT
     ======================================== */

  .services {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .services .section-heading {
    display: block;
    margin-bottom: 25px;
  }

  .services .section-heading .eyebrow {
    margin: 0 0 9px;
    font-size: 36px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    color: var(--dark);
  }

  .services .section-heading h2 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
    max-width: 330px;
  }

  .services .section-heading > p:last-child {
    margin-top: 11px;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }


  /* COMPACT SERVICE GRID */

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


  /* COMPACT CARDS */

  .service-card {
    min-height: 0;
    padding: 17px 19px;
    display: block;
  }

  .service-card h3 {
    font-size: 20px;
    line-height: 1.05;
    margin-bottom: 7px;
    max-width: 100%;
  }

  .service-card p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.4;
  }


  /* FEATURES HORIZONTALLY */

  .service-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    margin-top: 11px;
    padding-top: 0;
  }

  .service-card li {
    border: 0;
    padding: 0;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  .service-card li::before {
    content: "•";
    margin-right: 5px;
  }


  /* COMPACT CONTACT CARD */

  .contact-card {
    min-height: 0;
    padding: 19px;
  }

  .contact-card .eyebrow {
    font-size: 8px;
    margin-bottom: 7px;
  }

  .contact-card h3 {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 7px;
  }

  .contact-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-card a {
    position: static;
    display: inline-block;
    margin-top: 14px;
    padding: 0;
    font-size: 12px;
  }


  /* ABOUT */

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

  .value,
  .value:not(:first-child) {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }


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

  .work {
    padding-right: 0;
  }

  .work-heading {
    padding-right: 20px;
    margin-bottom: 28px;
  }

  .work-title-row {
    display: block;
  }

  .work-title-row h2 {
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .work-title-row p {
    margin-top: 16px;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-track {
    gap: 12px;
    padding-right: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .gallery-track::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .gallery-image {
    height: 360px;
  }

  .gallery-caption {
    padding-top: 12px;
  }

  .gallery-caption span {
    font-size: 8px;
  }

  .gallery-caption h3 {
    font-size: 18px;
  }

  .gallery-mobile-hint {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    margin-top: 22px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #777;
  }


  /* AREAS */

  .areas-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .areas h2 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.7px;
  }

  .area-list span {
    padding: 13px 0;
    font-size: 19px;
  }


  /* QUOTE */

  .quote-section {
    display: block;
    padding: 58px 20px;
  }

  .quote-intro h2 {
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .quote-intro > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .contact-details {
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
  }

  .quote-form {
    margin-top: 50px;
    gap: 20px;
  }

  .quote-form button {
    width: 100%;
  }


  /* FOOTER */

  footer {
    padding: 48px 20px 80px;
  }

  .footer-logo {
    font-size: 31px;
    letter-spacing: -1px;
  }

  footer > a {
    position: static;
    display: inline-block;
    margin-top: 25px;
  }

  .footer-bottom {
    margin-top: 38px;
  }

}


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

@media (max-width: 430px) {

  .hero-copy {
    padding: 48px 18px 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-image {
    height: auto;
    min-height: 0;
  }

  .section {
    padding: 54px 18px;
  }


  /* SERVICES */

  .services {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .services .section-heading {
    margin-bottom: 22px;
  }

  .services .section-heading .eyebrow {
    font-size: 34px;
  }

  .services .section-heading h2 {
    font-size: 19px;
  }

  .services .section-heading > p:last-child {
    font-size: 12.5px;
  }

  .service-card {
    padding: 16px 17px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 12.5px;
  }

  .service-card ul {
    gap: 5px 11px;
    margin-top: 10px;
  }

  .service-card li {
    font-size: 8.5px;
  }

  .contact-card {
    padding: 17px;
  }

  .contact-card a {
    margin-top: 12px;
  }


  /* GALLERY */

  .work {
    padding-right: 0;
  }

  .work-heading {
    padding-right: 18px;
  }

  .work-heading h2 {
    font-size: 37px;
  }

  .gallery-track {
    padding-right: 18px;
  }

  .gallery-item {
    flex-basis: 86%;
  }

  .gallery-image {
    height: 340px;
  }

  .gallery-mobile-hint {
    padding-right: 18px;
  }


  /* QUOTE */

  .quote-section {
    padding: 54px 18px;
  }

  .quote-intro h2 {
    font-size: 37px;
  }


  /* FOOTER */

  footer {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 80px;
  }

}