@font-face {
    font-family: 'Aptos Bold';
    src: url('../fonts/aptos-bold.woff2') format('woff2'),
         url('../fonts/aptos-bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InstrumentSans';
    src: url('../fonts/InstrumentSans.woff2') format('woff2'),
         url('../fonts/InstrumentSans.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InstrumentSans Italic';
    src: url('../fonts/InstrumentSans-Italic.woff2') format('woff2'),
         url('../fonts/InstrumentSans-Italic.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArnoProLightDisplay';
    src: url('../fonts/ArnoProLightDisplay.woff2') format('woff2'),
         url('../fonts/ArnoProLightDisplay.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.home {
  overflow: hidden;
}

body:not(.home) {
  overflow: auto;
}

body {
  background: #000;
  color: #fff;
  font-family: 'InstrumentSans', sans-serif;
}

body:not(.home) .portfolio-page {
  padding-top: 0;
}

.gsd-home,
.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

.hero-header {
      position: fixed;
    top: 0;
    left: 0;
    right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 55px;
}

.site-logo {
    --logo-width: clamp(200px, 30vw, 500px);

    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    width: var(--logo-width);
    height: auto;
    display: block;
}

.main-nav .menu {
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-family: 'Aptos Bold', sans-serif;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 125px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 28px;
}

.dot {
  position: relative;
  width: 82px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.45);
}

.dot span {
  position: absolute;
  left: 0;
  top: 9px;
  width: 0%;
  height: 1px;
  background: #fff;
}

.dot.active span {
  animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.hero-footer {
  position: absolute;
  left: 55px;
  right: 55px;
  bottom: 5px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.45);
  padding-top: 20px;
  padding-bottom: 10px;
}
.newsletter-input input::placeholder {
    color: #fff;
    opacity: 1; /* Firefox */
}

.newsletter-input input::-webkit-input-placeholder {
    color: #fff;
}

.newsletter-input input::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.newsletter-input input:-ms-input-placeholder {
    color: #fff;
}

.newsletter-input input::-ms-input-placeholder {
    color: #fff;
}
.footer-links {
  display: flex;
  gap: 70px;
}

.footer-links a,
.newsletter-form label {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: 'Aptos Bold', sans-serif;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: 70px;
}

.newsletter-input {
  display: flex;
  border: 1px solid rgba(255,255,255,0.45);
  height: 46px;
}

.newsletter-input input {
  width: 260px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0 18px;
  outline: none;
}

.newsletter-input button {
  width: 55px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.footer-mark {
    --logo-width: 65px;

    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-mark img {
    width: var(--logo-width);
    height: auto;
    display: block;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu li {
    list-style-type: none;
    padding: 25px 0px;
}

@media (max-width: 767px) {
    .footer-links {
        gap: 40px;
    }
   .hero-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;

    height: 72px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    transition: background .35s ease;
  }

  body.mobile-menu-open .hero-header {
    background: #F7F3EF;
  }

  .hero-header .main-nav {
    display: none;
  }

  .site-logo {
    position: relative;
    z-index: 22;
  }

  .site-logo img {
    width: 170px;
    height: auto;
  }

  .mobile-menu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 23;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.mobile-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
    background: #000;
  }

  body.mobile-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
    background: #000;
  }
  body.mobile-menu-open .site-logo img {
    filter: invert(1);
    }

  .mobile-menu-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 18;
    display: block;
    background: #F7F3EF;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 0px 20px 30px;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu {
    list-style: square;
    margin: 0;
    padding: 0 0;
    font-family: 'Aptos Bold', sans-serif;
    width: 100%;
  }

  nav.mobile-nav {
    display: flex;
    height: 100%;
    align-items: center;
    }

  .mobile-menu li {
    border-bottom: 1px solid rgba(0,0,0,1);
  }

  .mobile-menu li::marker {
    font-size: 12px;
    color: #111;
  }

  .mobile-menu a {
    color: #000;
    text-decoration: none;
    font-family: 'Aptos Bold', sans-serif;
    font-size: 36px;
    line-height: 1;
    padding-left: 18px;
  }
  .hero-footer {
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    bottom: 0;
    }

    form.newsletter-form {
        gap: 11px;
        margin-left: 0;
        margin-top: 18px;
        margin-bottom: 12px;
        flex-direction: column;
    }

    .footer-links a, .newsletter-form label {
        font-size: 14px;
    }

    .newsletter-input input {
        max-width: 172px;
    }

    .slider-dots {
        bottom: 244px;
    }

    .dot {
        width: 58px;
    }
}


body:not(.home) {
  background: #F7F3EF;
  color: #111;
  overflow: auto;
}

body:not(.home) .hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Portfolio */
.portfolio-page {
  background: #F7F3EF;
  min-height: 100vh;
  padding-top: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #F7F3EF;
}

.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 720px;
  text-decoration: none;
  color: #fff;
}

.portfolio-item--full {
  grid-column: span 2;
  min-height: 650px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 243, 239, 0);
  transition: background .35s ease;
  z-index: 1;
}

.portfolio-item span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: opacity .35s ease;
}

.portfolio-item:hover::after {
  background: rgba(0, 0, 0, .28);
}

.portfolio-item:hover span {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item,
  .portfolio-item--full {
    grid-column: span 1;
    min-height: 520px;
  }
}

.site-footer {
  background: #F7F3EF;
  color: #111;
  padding: 70px 90px 35px;
}

.site-footer__inner {
  border-top: 1px solid #111;
    margin-top: 45px;
    display: grid;
    grid-template-columns: 180px 180px 1fr 180px;
    gap: 80px;
    align-items: start;
    padding-top: 45px;
    position: relative;
}

.footer-col,
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer h4 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
}

.site-footer a,
.site-footer span {
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

.footer-newsletter form {
  display: flex;
  width: 330px;
  border-bottom: 1px solid #111;
}

.footer-newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 0;
  outline: none;
  color: #111;
}

.footer-newsletter input::placeholder {
  color: #111;
  opacity: 1;
}

.footer-newsletter button {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.footer-big-logo {
    position: absolute;
    right: 0;
    top: 30px;
}
.footer-big-logo img {
  width: 230px;
  display: block;
}

.footer-bottom {
  grid-column: 1 / 4;
  display: flex;
  gap: 24px;
  margin-top: 45px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.footer-bottom span, .footer-bottom a {
    font-size: 8px;
}
.portfolio-item--full {
    height: 300px;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 50px 24px 30px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-newsletter form {
    width: 100%;
  }

  .footer-big-logo img {
    width: 110px;
  }

  .footer-bottom {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 0px;
  }
  .portfolio-item span {
    opacity: 1;
  }
  .portfolio-item::after {
    background: rgba(0, 0, 0, .28);
  }
  .portfolio-grid {
    gap: 0;
  }
}

/* project detail page */
.project-detail {
  background: #F7F3EF;
  color: #111;
}

.project-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.project-intro {
  display: flex;
  gap: 40px;
  padding: 80px 65px 75px;
}
.project-intro > * {
    width: 50%;
}
.project-meta h1 {
  margin: 0 0 45px;
  font-family: 'ArnoProLightDisplay', sans-serif; 
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  line-height: .9;
}

.meta-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  font-size: 16px;
}

.meta-group strong {
  font-style: italic;
  margin-bottom: 5px;
  font-family: 'Aptos Bold', sans-serif;
}

.project-description {
  padding-top: 15px;
  font-family: 'InstrumentSans', sans-serif;
}
.project-meta .meta-group:last-child {
    margin-bottom: 0;
}
.project-description p {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.project-gallery {
  padding: 0 6px 6px;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
/* Hero Banner */

.project-hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.block__seo {
    display: none !important;
}

.panel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px !important;
    margin-bottom: 6px;
}

.panel-row-style {
    display: flex;
    flex-wrap: wrap;
    gap: 6px !important;
}

@media (max-width: 767px) {
  .project-intro {
    flex-direction: column;
    padding: 55px 24px 45px;
  }

  .project-meta h1 {
    font-size: 52px;
  }
  .project-intro > * {
    width: 100%;
  }
  .suede-bottom-half .so-widget-sow-image {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .project-hero {
    height: 65vh;
  }
}

.contact-page {
  background: #F7F3EF;
  color: #111;
}

.contact-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
}

.contact-image {
  height: 100vh;
  position: sticky;
  top: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-content {
  padding: 105px 90px 55px;
  display: flex;
  flex-direction: column;
}

.contact-content h1 {
  font-family: 'ArnoProLightDisplay', sans-serif;
  margin: 0 0 55px;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -3px;
}

.contact-row {
  border-top: 1px solid #111;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 30px;
  font-size: 16px;
  line-height: 1.25;
}

.contact-label,
.contact-value,
.contact-value a,
.contact-socials a {
  color: #111;
  text-decoration: none;
}

.contact-socials {
  display: flex;
  gap: 70px;
}

.contact-newsletter form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #111;
}

.contact-newsletter input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 0 12px;
  font-size: 16px;
  outline: none;
}

.contact-newsletter input::placeholder {
  color: #777;
  opacity: 1;
}

.contact-newsletter input[type="submit"] {
  border: 0;
  background: transparent;
  font-size: 0;
  width: 45px;
  height: 35px;
  cursor: pointer;
}

.contact-newsletter form::after {
  content: "→";
  font-size: 34px;
  line-height: 1;
  pointer-events: none;
}

.contact-logo {
  margin-top: auto;
  align-self: flex-end;
}

.contact-logo img {
  width: 78px;
  height: auto;
  display: block;
}
main.contact-page {
    margin-top: 170px;
}
.contact-newsletter form:after {
    display: none;
}
@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 55vh;
    position: relative;
  }

  .contact-content {
    padding: 55px 24px 40px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: 16px;
    padding: 30px 0;
  }

  .contact-socials {
    gap: 35px;
  }
  main.contact-page {
    margin-top: 0;
  }
  .contact-content h1 {
    margin-bottom: 30px;
  }
  .contact-content h1 {
    margin-bottom: 30px;
    }

    .contact-logo {
        position: relative;
        top: -95px;
    }

    main.contact-page {
        margin-bottom: -100px;
    }
}

.about-page {
  background: #F7F3EF;
  color: #111;
  padding-top: 164px;
}

.about-page img {
  max-width: 100%;
  display: block;
}

.about-page h1 {
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  margin: 0 0 40px;
}

.profile-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
    padding: 0 20px 80px;
    row-gap: 40px;
}

.team-member {
  display: flex;
  flex-direction: column;
}

.team-member > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.team-member .copy {
  padding: 22px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.team-member .title h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: 'Aptos Bold', sans-serif;
}
.siteorigin-widget-tinymce.textwidget h2 {
    font-family: 'Aptos Bold', sans-serif;
}   
.team-member .title h5 {
  margin: 6px 0 16px;
  font-size: 12px;
  font-weight: 400;
}

.team-member .copy p {
  margin: 0;
}

.hh-100-tag {
  max-width: 90px;
  margin-bottom: 12px;
}

.about-top-column img {
    width: 100%;
    height: 100%;
}

.about-top-row {
    padding: 0 30px;
    gap: 50px !important;
}

.about-top-row .panel-grid-cell:first-child .about-top-column {
    width: 60%;
}

.about-hero-img {
    margin-top: 60px;
}
.about-content-row {
    padding: 40px 30px;
}

.seo--about, .block--seo {
    display: none;
}

.about-page .panel-layout .panel-grid:last-child {
    display: none;
}
.about-page-body .site-logo img, .contact-page-body .site-logo img {
    filter: invert(1);
}


.about-page-body .mobile-menu-toggle span, .contact-page-body .mobile-menu-toggle span {
    background: #000;
}
.about-page-body .main-nav a, .contact-page-body .main-nav a {
    color: #000;
}
@media (max-width: 767px) {
  .about-page {
    padding-top: 90px;
    overflow: hidden;
  }

  .profile-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 10px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .profile-slider::-webkit-scrollbar {
    display: none;
  }

  .team-member {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .team-member > img {
    aspect-ratio: 3 / 4;
  }

  .about-top-row {
    padding: 0 10px;
  }
  .about-top-row .panel-grid-cell:first-child .about-top-column {
    width: 100%;
  }
  .about-hero-img {
    margin-top: 10px;
  }
  .about-content-row {
    padding: 20px 10px;
 }
 .team-member .copy {
        line-break: anywhere;
 }
}