* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;

  position: relative;
  z-index: 1001;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: 155px;
  height: auto;
}
.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  position: relative;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 100%;
  height: 1px;
  background: #111;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Hover animation */
.nav a:hover::after {
  transform: scaleX(1);
}

/* Current page */
.nav a.active::after {
  transform: scaleX(1);
  animation: navLineIn 0.6s ease forwards;
}

@keyframes navLineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: #111;
  margin: 5px 0;
}

.hero {
  height: calc(100vh - 72px);
  min-height: 0;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
}

.hero-content {
  padding: 45px 40px 40px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 1.07;
  font-weight: 300;
  letter-spacing: -1.5px;
}

.hero-line {
  width: 30px;
  height: 1px;
  background: #111;
  margin: 28px 0;
}

.hero p {
  max-width: 340px;
  color: #444;
  font-size: 13px;
  line-height: 1.8;
}

.text-link {
  margin-top: 28px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.hero-image {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.08) 5%,
    rgba(0,0,0,0.25) 10%,
    rgba(0,0,0,0.55) 16%,
    black 25%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.08) 5%,
    rgba(0,0,0,0.25) 10%,
    rgba(0,0,0,0.55) 16%,
    black 25%
  );
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background:
    linear-gradient(to top, rgba(255,255,255,.15), rgba(255,255,255,0)),
    #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
  letter-spacing: 2px;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 4%;
}

.strength-item {
  text-align: center;
  padding: 10px 24px;
  border-right: 1px solid #e5e5e5;
}

.strength-item:last-child {
  border-right: 0;
}

.icon {
  font-size: 26px;
  margin-bottom: 15px;
}

.strength-item h3 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.strength-item p {
  font-size: 11px;
  color: #555;
  max-width: 180px;
  margin: auto;
}

.services-preview {
  padding: 65px 4% 80px;
}

.section-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.section-heading::after {
  content: "";
  width: 25px;
  height: 1px;
  background: #111;
  display: block;
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.services-grid article {
  padding: 35px 28px 32px 0;
  border-right: 1px solid #ddd;
  min-height: 210px;
}

.services-grid article:not(:first-child) {
  padding-left: 28px;
}

.services-grid article:last-child {
  border-right: 0;
}

.service-number {
  font-size: 13px;
  display: block;
  margin-bottom: 22px;
}

.services-grid h3 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.services-grid p {
  font-size: 11px;
  color: #555;
  max-width: 190px;
}

.services-grid article > a {
  display: inline-block;
  margin-top: 25px;
}

.footer {
  background: #191919;
  color: #fff;
  padding: 55px 4%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 11px;
  color: #aaa;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
  font-size: 10px;
  color: #aaa;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 0 6%;
    gap: 0;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    border-bottom: 1px solid #eee;

    transition:
      max-height 0.45s ease,
      opacity 0.3s ease,
      padding 0.45s ease;

    z-index: 1000;
  }

  .nav.open {
    max-height: 500px;
    opacity: 1;
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 11px;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .menu-btn {
    display: block;
  }

  .menu-btn span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 60px 6%;
  }

  .hero-image {
    height: 50vh;
    min-height: 380px;
  }

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;

  -webkit-mask-image: none !important;
  mask-image: none !important;
}

  .strengths,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-item:nth-child(2) {
    border-right: 0;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
    .nav {
      top: 64px;
    }

    .site-header {
    height: 64px;
    padding: 0 6%;
  }

  .header-logo img {
    width: 135px;
  }


  .logo {
    font-size: 16px;
    letter-spacing: 7px;
  }

  .hero {
    height: auto;
  }

  .hero-content {
    padding: 50px 6% 45px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.05;
  }

  .hero-image {
    height: 55vw;
    min-height: 280px;
    max-height: 400px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .strengths {
    grid-template-columns: 1fr;
  }

  .strength-item {
    border-right: 0;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
  }

  .strength-item:last-child {
    border-bottom: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid article,
  .services-grid article:not(:first-child) {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .services-grid article:last-child {
    border-bottom: 0;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 600px;
  border-bottom: 1px solid #eee;
}

.about-copy {
  padding: 90px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.about-copy h1 {
  font-size: clamp(46px, 4.5vw, 70px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -1.5px;
}

.about-copy p {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

.about-image {
  height: 600px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;

  /* Same feather as Home hero */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.08) 5%,
    rgba(0,0,0,0.25) 10%,
    rgba(0,0,0,0.55) 16%,
    black 25%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.08) 5%,
    rgba(0,0,0,0.25) 10%,
    rgba(0,0,0,0.55) 16%,
    black 25%
  );
}

.about-intro {
  display: grid;
  grid-template-columns: 30% 70%;
  padding: 100px 4%;
  border-bottom: 1px solid #eee;
}

.about-intro-label span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.about-intro-content {
  max-width: 780px;
}

.about-intro-content h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 28px;
}

.about-intro-content p {
  max-width: 600px;
  color: #555;
  line-height: 1.9;
  font-size: 13px;
}

.about-values {
  padding: 80px 4% 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.values-grid article {
  padding: 35px 28px;
  border-right: 1px solid #ddd;
}

.values-grid article:first-child {
  padding-left: 0;
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid article span {
  font-size: 12px;
  display: block;
  margin-bottom: 22px;
}

.values-grid h3 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.values-grid p {
  max-width: 190px;
  color: #555;
  font-size: 11px;
  line-height: 1.8;
}


/* ABOUT TABLET */

@media (max-width: 900px) {

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 70px 6%;
  }

    .about-image {
    height: 450px;
  }

  .about-image img {
    height: 100%;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 75px 6%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ABOUT PHONE */

@media (max-width: 600px) {

  .about-copy {
    padding: 55px 6%;
  }

  .about-copy h1 {
    font-size: 44px;
  }

  .about-image {
  height: 320px;
  }

  .about-image img {
    height: 100%;
  }

  .about-intro {
    padding: 60px 6%;
  }

  .about-values {
    padding: 60px 6% 70px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article,
  .values-grid article:first-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }
}


/* =========================
   SERVICES PAGE
   ========================= */

.services-hero {
  min-height: 480px;
  padding: 90px 4%;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.services-hero-label {
  align-self: start;
}

.services-hero-label span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.services-hero-content {
  max-width: 850px;
}

.services-hero-content h1 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -2px;
}

.services-hero-content p {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.9;
  color: #555;
}


/* SERVICES */

.services-page-list {
  padding: 0 4%;
}

.service-row {
  display: grid;
  grid-template-columns: 10% 30% 45% 15%;
  align-items: center;

  min-height: 180px;

  border-bottom: 1px solid #ddd;
}

.service-row-number {
  font-size: 11px;
  color: #777;
}

.service-row-title h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1.2;
}

.service-row-description {
  max-width: 500px;
}

.service-row-description p {
  color: #555;
  font-size: 12px;
  line-height: 1.9;
}

.service-row-arrow {
  text-align: right;
  font-size: 22px;
  font-weight: 300;

  transition: transform 0.3s ease;
}

.service-row:hover .service-row-arrow {
  transform: translateX(8px);
}


/* CTA */

.services-cta {
  background: #181818;
  color: #fff;

  padding: 85px 4%;

  display: grid;
  grid-template-columns: 30% 70%;
}

.services-cta > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #aaa;
}

.services-cta h2 {
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.1;

  margin-bottom: 32px;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-bottom: 1px solid #777;
  padding-bottom: 7px;
}


/* SERVICES TABLET */

@media (max-width: 900px) {

  .services-hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 6%;
    min-height: auto;
  }

  .service-row {
    grid-template-columns: 10% 35% 45% 10%;
    min-height: 170px;
  }

  .services-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 6%;
  }
}


/* SERVICES PHONE */

@media (max-width: 600px) {

  .services-hero {
    padding: 60px 6%;
    gap: 35px;
  }

  .services-hero-content h1 {
    font-size: 44px;
  }

  .services-page-list {
    padding: 0 6%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;

    padding: 35px 0;
    min-height: auto;
  }

  .service-row-title h2 {
    font-size: 28px;
  }

  .service-row-description {
    max-width: 100%;
  }

  .service-row-arrow {
    text-align: left;
    margin-top: 8px;
  }

  .services-cta {
    padding: 60px 6%;
  }
}


/* =========================
   PRODUCTS PAGE
   ========================= */

.products-hero {
  padding: 90px 4% 80px;
  border-bottom: 1px solid #ddd;
}

.products-eyebrow {
  display: block;
  margin-bottom: 55px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.products-hero-main {
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: end;
}

.products-hero-main h1 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -2px;
}

.products-hero-main p {
  max-width: 400px;
  color: #555;
  font-size: 13px;
  line-height: 1.9;
}


/* PRODUCT GRID */

.products-grid {
  padding: 60px 4% 90px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;

  background: #ddd;
}

.product-card {
  background: #fff;
  padding: 28px;
}

.product-card-large {
  grid-column: 1 / -1;
}

.product-card-wide {
  grid-column: 1 / -1;
}

.product-image {
  height: 330px;
  background: #eeeeee;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #999;
  font-size: 9px;
  letter-spacing: 2px;

  overflow: hidden;
}

.product-card-large .product-image {
  height: 450px;
}

.product-card-wide .product-image {
  height: 380px;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* INFO */

.product-info {
  min-height: 110px;

  display: grid;
  grid-template-columns: 10% 1fr auto;
  align-items: center;

  padding-top: 25px;
}

.product-number {
  font-size: 10px;
  color: #777;
}

.product-info h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
}

.product-types {
  display: flex;
  gap: 18px;
  margin-top: 9px;
}

.product-types span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
}

.product-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-arrow {
  transform: translateX(7px);
}


/* CTA */

.products-cta {
  padding: 85px 4%;
  background: #181818;
  color: #fff;

  display: grid;
  grid-template-columns: 30% 70%;
}

.products-cta > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #999;
}

.products-cta h2 {
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
}

.products-cta a {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;

  padding-bottom: 7px;
  border-bottom: 1px solid #777;
}


/* PRODUCTS TABLET */

@media (max-width: 900px) {

  .products-hero {
    padding: 70px 6%;
  }

  .products-hero-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .products-grid {
    padding: 45px 6% 70px;
  }

  .product-card-large .product-image {
    height: 380px;
  }

  .products-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 6%;
  }
}


/* PRODUCTS MOBILE */

@media (max-width: 600px) {

  .products-hero {
    padding: 60px 6%;
  }

  .products-eyebrow {
    margin-bottom: 35px;
  }

  .products-hero-main h1 {
    font-size: 44px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    padding: 30px 6% 60px;
  }

  .product-card,
  .product-card-large,
  .product-card-wide {
    grid-column: auto;
    padding: 20px;
  }

  .product-image,
  .product-card-large .product-image,
  .product-card-wide .product-image {
    height: 300px;
  }

  .product-info {
    grid-template-columns: 45px 1fr auto;
  }

  .product-types {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .products-cta {
    padding: 60px 6%;
  }
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-hero {
  padding: 90px 4% 80px;
  border-bottom: 1px solid #ddd;
}

.contact-eyebrow {
  display: block;
  margin-bottom: 55px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.contact-hero-main {
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: end;
}

.contact-hero-main h1 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -2px;
}

.contact-hero-main p {
  max-width: 400px;
  color: #555;
  font-size: 13px;
  line-height: 1.9;
}


/* CONTACT CONTENT */

.contact-section {
  display: grid;
  grid-template-columns: 38% 62%;
  padding: 90px 4%;
  border-bottom: 1px solid #ddd;
}

.contact-details {
  padding-right: 70px;
}

.contact-detail {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ddd;
}

.contact-detail > span {
  display: block;
  margin-bottom: 9px;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
}

.contact-detail a,
.contact-detail p {
  font-size: 15px;
  color: #111;
}

.contact-note {
  max-width: 340px;
  margin-top: 45px;
}

.contact-note p {
  color: #555;
  font-size: 12px;
  line-height: 1.9;
}


/* FORM */

.contact-form-wrap {
  padding-left: 70px;
  border-left: 1px solid #ddd;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  border: 0;
  border-bottom: 1px solid #aaa;

  background: transparent;

  padding: 12px 0;

  font-family: inherit;
  font-size: 13px;
  color: #111;

  outline: none;

  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: none;
  height: 170px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.contact-submit {
  border: 0;
  background: #181818;
  color: #fff;

  padding: 15px 22px;

  display: inline-flex;
  align-items: center;
  gap: 35px;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;

  cursor: pointer;

  transition: background 0.3s ease;
}

.contact-submit:hover {
  background: #333;
}


/* BOTTOM */

.contact-bottom {
  background: #f4f4f4;

  padding: 80px 4%;

  display: grid;
  grid-template-columns: 30% 70%;
}

.contact-bottom > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.contact-bottom h2 {
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300;
  line-height: 1.05;
}


/* CONTACT TABLET */

@media (max-width: 900px) {

  .contact-hero {
    padding: 70px 6%;
  }

  .contact-hero-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 70px 6%;
    gap: 60px;
  }

  .contact-details {
    padding-right: 0;
  }

  .contact-form-wrap {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #ddd;
    padding-top: 55px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 35px;

    padding: 70px 6%;
  }
}


/* CONTACT MOBILE */

@media (max-width: 600px) {

  .contact-hero {
    padding: 60px 6%;
  }

  .contact-eyebrow {
    margin-bottom: 35px;
  }

  .contact-hero-main h1 {
    font-size: 44px;
  }

  .contact-section {
    padding: 60px 6%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }

  .contact-bottom {
    padding: 60px 6%;
  }
}

/* =========================
   SUCCESS PAGE
   ========================= */

.success-page {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 70px 4% 35px;
  background: #fff;
}

/* Keep success page inside one screen */

.success-page {
  height: 100vh;
  min-height: 0;
  padding: 35px 4% 22px;
  overflow: hidden;
}

.success-content {
  flex: 1;
  min-height: 0;
  justify-content: center;
}

.success-logo {
  margin-bottom: 22px;
}

.success-icon {
  margin-bottom: 24px;
}

.success-eyebrow {
  margin-bottom: 16px;
}

.success-content h1 {
  margin-bottom: 20px;
}

.success-actions {
  margin-top: 28px;
}

.success-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.success-logo {
  display: block;
  margin-bottom: 38px;
}

.success-logo img {
  display: block;
  width: 230px;
  height: auto;
}

/* CHECK ICON */

.success-icon {
  width: 72px;
  height: 72px;

  border: 1px solid #111;
  border-radius: 50%;

  position: relative;

  margin-bottom: 38px;

  opacity: 0;
  transform: scale(0.7);

  animation: successCircle 0.6s ease forwards;
}

.success-icon span {
  position: absolute;

  width: 27px;
  height: 13px;

  border-left: 1.5px solid #111;
  border-bottom: 1.5px solid #111;

  left: 22px;
  top: 24px;

  transform: rotate(-45deg) scale(0);
  transform-origin: center;

  animation: successCheck 0.45s ease 0.45s forwards;
}


/* TEXT */

.success-eyebrow {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 4px;

  margin-bottom: 25px;
}

.success-content h1 {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;

  margin-bottom: 28px;
}

.success-content p {
  max-width: 440px;

  font-size: 13px;
  line-height: 1.9;
  color: #555;
}


/* BUTTONS */

.success-actions {
  margin-top: 42px;

  display: flex;
  align-items: center;
  gap: 32px;
}

.success-primary {
  background: #181818;
  color: #fff;

  padding: 15px 22px;

  display: inline-flex;
  align-items: center;
  gap: 35px;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.success-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.success-secondary {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;

  transition: border-color 0.3s ease;
}

.success-secondary:hover {
  border-color: #111;
}


/* BOTTOM LINE */

.success-footer-line {
  border-top: 1px solid #ddd;

  padding-top: 22px;

  display: flex;
  justify-content: space-between;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
}


/* ANIMATION */

@keyframes successCircle {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successCheck {
  from {
    transform: rotate(-45deg) scale(0);
  }

  to {
    transform: rotate(-45deg) scale(1);
  }
}


/* TABLET + MOBILE */

@media (max-width: 900px) {
  .success-page {
    height: 100vh;
    min-height: 0;
    padding: 30px 6% 20px;
  }
}


@media (max-width: 600px) {
  .success-page {
    height: 100svh;
    padding: 25px 6% 18px;
  }

  .success-logo {
    margin-bottom: 18px;
  }

  .success-icon {
    margin-bottom: 20px;
  }

  .success-actions {
    margin-top: 24px;
  }


  .success-primary {
    width: 100%;
    justify-content: space-between;
  }

  .success-footer-line {
    flex-direction: column;
    gap: 8px;
  }

}

/* FINAL SUCCESS PAGE SPACING */

.success-logo {
  margin-bottom: 22px;
}

.success-icon {
  margin-bottom: 24px;
}

.success-eyebrow {
  margin-bottom: 16px;
}

.success-content h1 {
  margin-bottom: 20px;
}

.success-actions {
  margin-top: 28px;
}



/* =========================
   ABOUT - OUR TEAM
   ========================= */

.about-team {
  padding: 90px 4% 110px;
  border-top: 1px solid #eee;
}

.team-image img.abdul-karim-photo {
  object-position: center 20%;
}

.team-image img.yoosuf-photo,
.team-image img.osama-photo {
  object-position: center 60%;
}

.team-heading {
  display: grid;
  grid-template-columns: 30% 70%;
  margin-bottom: 65px;
}

.team-heading > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.team-heading-text h2 {
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 22px;
}

.team-heading-text p {
  max-width: 500px;
  color: #555;
  font-size: 12px;
  line-height: 1.9;
}


/* TEAM GRID */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd;
}

.team-member {
  background: #fff;
  padding: 22px;
}

.team-image {
  height: 500px;
  overflow: hidden;
  background: #eee;
}

.team-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center top;

  filter: grayscale(100%);

  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.025);
}


/* TEAM INFORMATION */

.team-info {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding-top: 25px;
}

.team-number {
  font-size: 9px;
  color: #888;
  padding-top: 6px;
}

.team-info h3 {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 5px;
}

.team-role {
  display: block;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;

  margin-bottom: 7px;
}

.team-meta {
  display: block;

  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #999;

  margin-bottom: 18px;
}

.team-info p {
  max-width: 310px;

  color: #555;
  font-size: 11px;
  line-height: 1.8;
}


/* TABLET */

@media (max-width: 900px) {

  .about-team {
    padding: 75px 6% 90px;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-image {
    height: 430px;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .about-team {
    padding: 60px 6% 70px;
  }

  .team-heading {
    margin-bottom: 45px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    padding: 16px;
  }

  .team-image {
    height: 430px;
  }

  .team-info h3 {
    font-size: 20px;
  }

}