/*
Theme Name: OTZI
Author: Leon Nockolds
Description: Bespoke Theme for OTZI site
Version: 1.0
*/

.menubtn {
	display:flex;
	justify-content:center;
	align-items:center;
}
.un {
  display: inline-block;
}

.un::after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: #05130f;
  transition: 300ms;
}

.un.white-line::after {
  background: #fff;
}



.un:hover::after {
  width: 100%;
}

.page-id-89 .btn.rmv {
	pointer-events: none;
}

.workshop-logos img {
	height:82px;
	margin-right:16px;
}

.btn-arrow {
  transform: rotate(0deg);
  transition: 0.3s ease;  
}

.btn:hover .btn-arrow {
  transform: rotate(-45deg);
  transition: 0.3s ease;  
}

/* Fonts */

@font-face {
  font-family: 'Founders Grotesk';
  src: url('fonts/FoundersGroteskWeb-Regular.woff2') format('woff2'),
       url('fonts/FoundersGroteskWeb-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('fonts/FoundersGroteskWeb-Light.woff2') format('woff2'),
       url('fonts/FoundersGroteskWeb-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}


/* Reset defaults */
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0px 0 0 0;
    background-color: #FFFEF8;
    font-family: 'ltc-goudy-oldstyle-pro', sans-serif;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
  }


  button {
    all: unset;
  }
  
  button:focus {
    outline: revert;
  }
  

/* Typography */


h1 {
    color:#01130F;
    font-weight: 400;
    word-spacing: 9999rem;
    font-size: 6rem;
    line-height: 5.6rem;
    letter-spacing: -.15rem;
}

h2 {
  color:#01130F;
  font-weight: 300;
  font-size: 4.3rem;
  line-height: 3.9rem;
  letter-spacing: -.09rem;
  margin:0px;
  padding:0px;
}

h3 {
  color:#FFFEF8;
}

h4 {
  color:#FFFEF8;
}

p {
    color:#01130F;
    font-weight: 300;
    font-size: 1.188;
    line-height: 1.663rem;
}

a {
  transition: 0.3s ease;
  opacity: 1;
}

a:hover {
  transition: 0.3s ease;
  opacity: .5;
}

a.collection-link:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  p {
    
    font-size: 0.85rem;
    line-height: 1.7rem;
  
  }
  h1 {
    
    word-spacing: 0rem;
    font-size:2.813rem;
    line-height: 3rem;
    letter-spacing: -.09rem;
}
  h2 {
    font-size:2.813rem;
    line-height: 3rem;
  }
}


/* Logo coloring */

.logo {
  z-index: 1001;
}

.site-logo svg path {
  fill: #01130F;
  transition: fill 0.4s ease-in-out;
}

.menu-open .site-logo svg path {
  fill: #fffef8;
}


.menu-open .un::after {
  background: #fff;
}


/* Header styles */


#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background-color: #fffef8;
  z-index: 999;
  transition: background-color 0.4s ease;
  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#site-header.active {
  background-color: #01130F;
}

#site-header .inner {
  max-width: 1208px;
  width: calc(100% - 32px);
  height: 96px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


/* Fullscreen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw; /* use full viewport width */
  background-color: #8A3324; /* ensure it's not 'transparent' */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* above site header */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  padding-top: 96px;
  min-width: 380px;
}

.menu-open .fullscreen-menu {
  opacity: 1;
  pointer-events: all;
}


.main-menu {
  list-style: none;
    padding: 0px;
    margin: 0 0rem 0rem 6.6rem;
}

.main-footer-menu {
  list-style: none;
    padding: 0px;
    margin: 0 0rem 0rem 6.6rem;
}

.main-footer-menu li {
  margin-bottom: 6px;
}

.menu-item {
  font-size: 3.438rem;
  font-weight: 400;
  letter-spacing: -0.1rem;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-menu-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-basis: 42%;
  max-width: 380px;
  min-width: 200px;
}

.footer-menu-info ul {
  list-style: none;
    padding: 0px;
    margin: 0px;
}
.footer-menu-info li {
  margin-bottom: 6px;
}
.menu-item.inactive {
  opacity: 0.5;
  pointer-events: none;
}

.social-links {
  display: flex;
}

.social-links img {
  margin-left:16px;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

span.workshop {
  margin-right: 2.2rem;
}



.arrow img {
  display: block;
  width:27px;
}
.arrow-wrap {
  margin-top: 0px;
}

.arrow.rotate {
  transform: rotate(0deg);
}

/* Submenu animation */
.submenu {
  list-style: none;
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  font-size: 1rem;
  font-weight: 300;
}

.submenu.show {
  opacity: 1;
  max-height: 500px; /* large enough to show all items */
}

.submenu li {
  margin: 0.5rem 0;
  transition: 0.3s ease;
  opacity: 1;
}

.main-menu li a{
  color:#FFFEF8;
  text-decoration: none;
  
}

.main-menu li:hover {
  transition: 0.3s ease;
  opacity: .5;
}

.fullscreen-menu-inner {
  height: 100%;
  width: calc(100% - 32px);
  padding: 0px 16px;
  /*max-width:1512px;*/
  max-width:1212px;
  border-top: 1px solid rgba(255, 254, 248, 0.2);
  display: flex;
}

.menu-left {
     min-width: 310px;
    flex-basis: 24%;
    background-color: #01130F;
    background-image: url(images/Otzi-mega-menu.jpg);
    background-size: cover;
    background-position: bottom;
}






.menu-right {
  
  flex: 1;
  display: flex;
  
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 190px);
  margin-top: 94px;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  
}

.menu-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 315px;
  
  flex-basis: 42%;
  max-width: 380px;
}

.menu-address {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  
  margin-top:16px;
  
}

.menu-address ul {
  padding:0px;
  margin:0px;
  list-style: none;
}
.menu-address ul li {
  
  margin-bottom:2px;
  
}

.menu-address a {
  text-decoration: none;
  color:#fffef8
}

.address-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  /* justify-content: center; */
  align-items: start;
}

.menu-subscribe {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  
  
}


.menu-subscribe p {
  font-size: 1rem;
  margin: 0px;
  padding:0px 0px 20px;
  color: #fffef8;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fffef8;
  padding-bottom: 0.7rem;
  transition: border-color 0.3s ease;
  max-width: 400px;
  margin-bottom: 0px;
}

.newsletter-form:focus-within {
  border-color: #ffffff;
  box-shadow: 0 1px 0 0 #ffffff;
  transition: all 0.3s ease;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.9rem;
  outline: none;
  Box-shadow: 0 0 0 40px #8A3324 inset ! important;
  text-indent: -1px;


}

.newsletter-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.newsletter-arrow img {
  display: block;
  width:27px;
}

.newsletter-input::placeholder {
  color: rgba(255, 254, 248, 0.5);
}





.submit-newsletter:hover,
.submit-newsletter:focus {
  border-color: #ffffff;
}



.menu-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width:100%;
  margin-bottom: 32px;
}

.menu-footer a {
  text-decoration: none;
  color: #fffef8;
}

.menu-items {
  list-style: none;
  padding: 0;
  text-align: center;
}

.menu-items li {
  margin: 20px 0;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
  opacity: 1;
}



@media screen and (max-width : 1100px) {
  .menu-left {
    display: none;
}
.main-menu {
  list-style: none;
  padding: 0px;
  margin: 0 0rem 0px 0;
}
.menu-info {
  width:100%;
  max-width: 100%;
  min-height: 240px;
}
.menu-right {
  margin-top: 38px;
  height: calc(100% - 134px);
}
.main-footer-menu {

  margin: 0 0rem 0rem 0rem;
}
.newsletter-form {
  margin-bottom: 40px;
}
}


@media (max-width: 668px) {

  .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    
  }

}




/* Menu icon lines */
#toggle-icon line {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: center;
  stroke: #01130F;
}

/* Animate plus to minus */
.menu-open #toggle-icon .line-1 {
  stroke: #f7f7f7;
  
}
.menu-open #toggle-icon .line-2 {
  transform: rotate(90deg);
  opacity: 0;
  
}



.menu-open #toggle-icon2 .menu-arrow {
  stroke: #f7f7f7;
  
}

#toggle-icon2 {
  transform: rotate(0deg);
  transition: 0.3s ease;  
}

.btn:hover #toggle-icon2 {
  transform: rotate(-45deg);
  transition: 0.3s ease;  
}





#site-header .btns {
   display: flex;
   z-index: 1001;
}

.btn {
    font-size: 1rem;
    
    color:#01130F;
    
    padding: 0rem 0rem 0rem;
    display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
    transition: 0.3s ease;  
    cursor: pointer;
}

.btn.header {
  padding: 0rem 0rem 0rem 0rem;
}

.menu-open .btn {
    color:#f7f7f7;
    
}

header .btn {
  margin-left: 40px;
  opacity: 1;
  transition: .3s ease;
  z-index: 1002;
	font-size:1.125rem;
}

a.btn {
    text-decoration: none;
    color:#05130f;
    font-weight: 400;
}

.btn:hover {
  opacity: 0.5;
  transition: .3s ease;
}


.btn-solid {
    font-size: 1rem;
    
    
    background:#01130F;
    border-radius: 30px;
    padding: 0.85rem 1.2rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.btn-solid:hover {
  opacity: 0.6;
  transition: .3s ease;
}

a.btn-solid {
    text-decoration: none;
    color:#FFFEF8;
    font-weight: 400;
}
  

.btn span {
  margin-right: 12px;
}


.btn.rmv {
  display: inline-flex;
}

@media (max-width: 600px) {
  .btn.rmv {
    display: none;
  }
}




.cover {
  width:100%;
        height:calc(100vh - 95px);
        margin:0;
        padding:0;
  background: url("images/otzi-header-bg.jpg") no-repeat center bottom;
  
  background-position: center bottom;
  background-size: 100% auto;
  position: relative;
  color: rgb(255, 255, 255);
  
}

.hero {
  height: 100%;
  margin: auto;
  max-width: ;
  display: flex;
  width:1208px;
  
  flex-direction: column;
  justify-content: flex-end;
}

.hero-inner {
    width: calc(100% - 32px);
    position: relative;
    max-width: 1336px;
    height: 100%;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    text-align: center;
    overflow: hidden;
    justify-content: center;
}

.hero-inner .bench {
  bottom:0px;
  position: absolute; 
  
  
  right: 1%; 
  width: 1336px;
  z-index: 10;
}

.hero-inner .otzi-logo {
  bottom: 424px;
  position: absolute; 
  left: 0%; 
  width: 512px;
  z-index: 1;

  /* Prevent flicker by setting initial state here */
  opacity: 0;
  transform: translateY(20px);

  /* Animation */
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
  animation-fill-mode: both; /* keep start state before and after animation */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-inner-inner {
    width: calc(100% - 32px);
    max-width: 1208px;
    height: 100%;
    position: relative;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-divider { 
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin:26px 0px 26px;
}

.hero-logo { 
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin:26px 0px 46px;
}




.hero-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 44px;
  z-index: 20;
}

.hero-block p  {
  color:#fffef8;
  max-width: 412px;
  font-size: 1.375rem;
  margin:0px;
  padding:0px;
text-align: left;
}

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

.hero-block .btn {
  font-family: 'Founders Grotesk', sans-serif;
  color: #fffef8;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01)), rgba(1, 19, 15, 0.06);
  border: 1px solid #fffef8;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  display: inline-flex;
  border-radius:5px;
}


/* Background image */

.hero-bg {
  
  width: 100%;
  height: 100vh;
  background-image: url("images/otzi-header-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-logo {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 30vw;
  z-index: 1;
  will-change: transform;
}

.hero-image {
  position: relative;
  z-index: 2;
  text-align: right;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.btn-projects {
  position: absolute;
  bottom: 20%;
  right: 5%;
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
}

.video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 328px;
  height:234px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  overflow: hidden;
  position: relative;
}

a.video-thumb:hover {
  opacity: 1;
}

a.video-thumb img {
  z-index: 11;
  transition: 0.3s ease;  
  opacity: 1;
  margin-bottom: 10px;
}
a.video-thumb img:hover {
  z-index: 11;
  transition: 0.3s ease;  
  opacity: 0.5;
}
a.video-thumb p {
  z-index: 11;
  font-size: 1rem;
}

.video-thumb video {
  display: flex;
  align-items: center;
  justify-content: center;
  height:100%;
}

.video-thumb-cover {
  height:100%;
  width:100%;
  position: absolute;
  left:0;
  top:0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
}

.video-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 50%;
}

.hero-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}


@media (max-width: 668px) {

.hero-block {
  
  flex-direction: column-reverse;
}

.hero-block p  {
  
  max-width: 300px;
  font-size: 1.125rem;
  

}

.video-thumb {
  display: none;
}

.hero-inner .bench {
    
   
    bottom: 21 px;
   right: -22%;
        width: 1142px;
}

.hero-inner .otzi-logo {
  bottom:376px;
  
  width: 274px;
  
}
}




.workshop h1 {
  font-size: 5rem;
  letter-spacing: -.15rem;
  margin: 0px;
}



.workshop .intro.row {
  margin:90px 0px;
  justify-content: start;
  padding-top: 93px;
}

.workshop .intro.row .column {
  justify-content: start;
}




.design h1 {
  font-size: 5rem;
  letter-spacing: -.15rem;
  margin: 0px;
}



.design .intro.row {
  margin:90px 0px;
  justify-content: start;
  padding-top: 93px;
}

.design .intro.row .column {
  justify-content: start;
}








.wp-block-video {
  margin: auto;
  text-align: center;
  margin-top: 30px;
}


.wp-block-video video {
  width:calc(100% - 32px);
  max-width: 1250px;
  height: auto;
  border-radius: 5px;
}


  
  



  
  
  
  
  
  
  .container {
    background: red;
  }

  .container2 {
    background: yellow;
  }

  .container-fw {
    width:100%;
    margin-bottom:200px;
  }

  .content {
    width: calc(100% - 32px);
    max-width: 1208px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }



  .two-column-copy {
    padding:80px 16px 16px 16px;
     width:calc(100% - 32px);
     max-width: 1004px;
     -moz-column-count: 2;
     -moz-column-gap: 32px;
     -webkit-column-count: 2;
     -webkit-column-gap: 32px;
     column-count: 2;
     column-gap: 32px;
     
     margin: auto;
     
   }
  
   .two-column-copy p:first-child {
    margin: 0;
  }

  .two-column-copy p {
    font-size: 1rem;
    line-height: 1.643rem;
    letter-spacing: -0.005rem;
  }


  .two-column-content {
    padding:80px 0px 16px 0px;
     width:100%;
     max-width: 1004px;
     margin: auto;
     
     display: flex;
	 flex-direction:row;
     
   }

   .two-column-content p {
    font-size: 1rem;
    line-height: 1.643rem;
    letter-spacing: -0.005rem;
    margin-bottom: 16px;
  }

  .two-column-content-row {
flex: 1;
margin:0px 16px;
  }

  .two-column-content ul {
    margin:0px 12px 0 0;
    padding:0px
  }

  .two-column-content ul li {
    font-weight:300;
    padding-bottom: 12px;
  }


  .text-border {
	
	border: 1px solid #01130F;
	border-radius:16px;
	padding:36px 36px 36px 5cqb;
  margin: 0px 0px 36px 0px;
}


.two-column-copy-title {
    padding:0px 16px 16px 16px;
     width:calc(100% - 32px);
     max-width: 1004px; 
     margin: auto;
     
   }



.tiles {
  width:100%;
  margin: auto;
  max-width: 1240px;
  margin-bottom: 76px;
}

  .collection-preview-block {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 200px;
}

.collection-item {
    flex: 1;
    text-align: center;
}

.collection-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}


.collection-posts-list {
  display: flex; 
  flex-wrap: wrap;
  margin: 0px;
  width: 100%;
}


.collection-post {
    width: calc(33.333% - 32px);
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.4s ease;
    margin:16px;
  }

  
  .collection-post.fade-out {
    opacity: 0;
  }
  
  .collection-post.hidden {
    display: none;
  }
  


  
  .collection-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    
  }

  .collection-overlay-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom:10px;
    align-items: center;
  }

  .collection-overlay h3 {
    width: 75%;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 300;
    margin: 0;
    padding:0;
  }
  
  .collection-overlay h4 {
    font-size: 1.875rem;
    font-weight: 300;
    margin: 0;
    padding:0;
  }
  
  .collection-image:hover .collection-overlay {
    opacity: 1;
  }
  
  .collection-title {
    margin: 0;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
  }

  .collection-arrow img {
    transform: rotate(-45deg);
    transition: 0.3s ease;  
  }
  .collection-arrow img:hover {
    transform: rotate(0deg);
    transition: 0.3s ease;  
  }
  

  @media (max-width: 668px) {

    .collection-post {
      width: calc(50% - 16px);
      margin:8px;
    }
    .collection-posts-list {
      margin: 8px;
      width: calc(100% - 16px);
    }
    .collection-overlay h3 {
      width: 80%;
      font-size: 1.5rem;

    }
     .two-column-content {
    
	 flex-direction:column;
   }
    .text-border {
      margin:16px 0px 36px 0px;
    }
    .two-column-copy {
    
     -moz-column-count: 1;
     -moz-column-gap: 32px;
     -webkit-column-count: 1;
     -webkit-column-gap: 32px;
     column-count: 1;
     column-gap: 32px;
     
     margin: auto;
     
   }
  }


.two-column-copy.design {
	padding-bottom: 136px;
}


  .row.collection-header {
    margin:5.6rem 0rem 8.2rem;
    padding-top: 95px;
  }

  .content.collection-header {
    margin-bottom:40px;
  }

  .content.collection-header .btn-solid {
    margin:6px 0px;
    font-size: 1.125rem;
    font-weight: 400;
    
    padding: 1.2rem 1.6rem 1.2rem;
    

  }

  .content.collection-header h1 {
    margin:0px 0px;
    padding:0px
  }

  .content.collection-header p {
    margin:30px 0px 30px;
    padding:0px
  }

  .content.collection-header .column {
    justify-content: space-between;
  }


  

  .category-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .category-filters-inner {
    display: flex;
    flex-direction: row;
    padding: 5px 8px;
  }


  .filter-btn {
    font-size: 1rem;
    
	background:rgba(138, 51, 36, 0.05);
    color:#01130F;
    border-radius: 5px;
    padding: 1.1rem 1.85rem ;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 150px;
    transition: 0.3s ease;  
    cursor: pointer;
    margin:5px;
  }

  .filter-btn:hover {
    opacity:.6;
  }


  .filter-btn.active {
    background: #8A3324;
    color: #FFFEF8;
  }

  /* PROJECT PAGE */


.row.project-header {
  margin:5.6rem 0rem 8.2rem;
  padding-top: 95px;
}

.row.project-header h1 {
  margin:0px 32px 0px 0px ;
    padding:0px;
  word-spacing: 0rem;
  font-size: 6rem;
  line-height: 6.4rem;
  letter-spacing: -.29rem;
}


.content.project-header .btn-solid {
  margin:6px 0px;
  font-size: 1.125rem;
  font-weight: 400;
  
  padding: 1.2rem 1.6rem 1.2rem;
  

}

  @media (max-width: 668px) {
    .filter-btn {
      
      min-width: 80px;
      padding: 0.75rem .2rem ;
    }
    .row.collection-header {
      margin:2rem 0rem 2rem;
    }
    
    .content.collection-header {
      margin-bottom: 0px;
    }
    .row.project-header {
      margin:2rem 0rem 2rem;
    }

    .row.project-header h1 {
      font-size:2.813rem;
      line-height: 3rem;
      letter-spacing: -.09rem;
      max-width: 300px;
  }
    
    
  }
  




  .collection-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4; 
    border-radius: 5px;
  }
  
  .collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  .collection-image-wrapper:hover .collection-overlay {
    opacity: 1;
  }



  



  



  /* Layout things */

 

  .two-col {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }


  .row.collection-preview {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .row.collection-preview p {
    line-height: 3rem;
  }

  .row.collection-preview  .buttons {
    margin-top: 0px;
  }

  .row.collection-preview .column{
  flex-basis: auto;
  flex: inherit;
}
  
  
  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: center;
    align-items: start;
  }


  @media (max-width: 668px) {
    .row {
      flex-direction: column;
    }
  }
  
  


  
  .section {
    display: flex;
    flex-wrap: wrap;
    
    justify-content: space-between;
    margin-bottom: 92px;
  }



  
  .image-container {
    flex: 1;
    max-width: 49.2%;

    
  }
  
  .image-container img {
    width: 100%;
    border-radius: 5px;
    aspect-ratio: 1 / 1; /* Ensures square aspect ratio */
    object-fit: cover;
    display: block;
  }
  
  .text-container {
    flex: 1;
    max-width: 39.7%;
    padding: 0px 0px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .text-container p {
    font-size: 1rem;
    letter-spacing: -.005rem;
  }

	.text-container.team {
		justify-content: center;
	}
  
  .buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3.4rem;
    
    justify-content: space-between;
  }

  .buttons .btn {
    padding: 0.95rem 0rem 0.95rem;
    font-size: 1.1rem;
  }


  .divider { 
    width: 100%;
    border-top: 1px solid rgba(1, 19, 15, 0.5);
    margin:52px 0px 46px;
  }
  
  .divider h1 {
    font-size:1.125rem;
    letter-spacing: -0.01rem;
    word-spacing: normal;
    color: rgba(1, 19, 15, 0.9);
    margin: 0px;
    line-height: 4rem;
    font-weight: 300;
  }
  


  /* 🔻 Responsive Layout for screens under 768px */
@media (max-width: 668px) {
  .section {
    flex-direction: column-reverse;
    margin-bottom: 32px;
  }

  .image-container,
  .text-container {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .divider { 
    border-top: none;
    margin:20px 0px 10px;
  }
  .divider h1 {
    font-size:1.125rem;
  }

  .buttons {
    
    margin-top: 2rem;
    margin-bottom: 2rem;
    
  }

}


.custom-slider {
  
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1; /* ensures it's below your navbar if navbar has z-index: 10 */
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide-content {
  position: absolute;
  color: white;
  background: rgba(0,0,0,0.45);
  height:100%;
  width: 100%;
}

.slide-content .content {
  width: calc(100% - 32px);
  
  display: flex;
  height: calc(100% - 10.6%);
  justify-content: flex-end;
  padding-bottom: 10.6%;
}

.slide-content .content a {
  margin-right: auto;
}

.slide-content .content h2 {
  color:#fffef8
}

.slide-content .content p {
  color:#fffef8;
  max-width: 335px;
  padding: 2rem 0 1rem;
}

.slide-content .content .btn {
    color:#f7f7f7;
    
    padding:1rem 0rem;
    font-size: 1.1rem;
}

.nav {
  position: absolute;
    bottom: 10%;
    
    
    display: flex;
    width: 100%;
    /* justify-content: space-between; */
    /* transform: translateY(-50%); */
    /* padding: 0 2rem; */
    z-index: 10;
    pointer-events: none;
}

.nav-inner {
  width: 1208px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.nav button {
  background: none;
  border: none;
  padding: 0rem 0rem;
  cursor: pointer;
  opacity: 1;
  transition: .3s ease;
  margin-left: 18px;
}

.nav button:hover {
  opacity: 0.5;
  transition: .3s ease;
}

.arrow-left {
  transform: rotate(180deg);
  pointer-events: all;
}

.arrow-right {
  pointer-events: all;
}

@media (max-width: 768px) {
  
  .slide-content {
    width: 100%;
  }
}








/* FOOTER */

.footer {
  
  margin:56px 16px 68px;
  width: calc(100% - 32px);
  
  
}

.footer-container {
  color: #e9e9dc;
  padding: 64px 16px 40px;
  background-color: #8A3324;
  border-radius: 5px;
  max-width: 1324px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 292px;
  
}

.footer-inner {
  width: 1208px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    
  
}

.footer-logo {
  flex-basis: 24%;
  margin-bottom: 62px;
}


.footer-logo img {
  width: 112px;
  height: auto;
  margin-top: 0px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: 41%;
  width: 90%;
  margin-bottom: 20px;
  
}



.footer-column h4 {
  font-size: 1rem;
  margin: 0px;
  padding: 0px;
  padding-bottom: 32px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  padding: 0;
  margin: 0;
}

.footer-column a {
  color:rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 30px;
  display: inline-flex;
  opacity: 1;
  transition: .3s ease;
}

.footer-column a:hover {
  opacity: 0.5;
  transition: .3s ease;
}

.footer-social {
  flex-basis: 35%;
  justify-content: flex-end;
  display: flex;
}

.instagram-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  background: rgba(255, 255, 255, 0.24);
  padding: 6px 40px 6px 6px;
  border-radius: 100px;
  color: #e9e9dc;
  text-decoration: none;
  gap: 12px;
  margin-top: 4px;
}

.instagram-button-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  justify-content: center;
  margin-right: 6px;
}

.instagram-button-icon img {
  width:20px;
}

.footer-bottom {
  max-width: 1208px;
  margin: 0px auto;
  font-size: 14px;
  width:100%;
  
  padding:0 0 0 0;
  text-align: right;
  display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-bottom p {
  margin:0px;
  padding:0px;
  color: #f9f9f9;
  font-size: 0.875rem;
}



@media (max-width: 700px) {
  .footer {
  
    margin:56px 16px 16px;
  }
  .footer-container {
    padding: 40px 16px 40px;
  }
  .footer-inner {

      flex-direction: column;

  }
  .footer-bottom {
    justify-content: flex-start;
    
    padding:30px 0 0 16px;
  }
}




/* CONTACT FORM */

.contact {
margin-top: 185px;
}

.contact h1 {
  font-size: 5rem;
  letter-spacing: -.24rem;
  margin: 0px;
  padding: 0px;
  word-spacing: normal;

}

.column.contact-form {
  margin-right: 20px;
  justify-content: flex-start;
}
.column.contact-form a {
  font-size:1.125rem;
  font-weight: 300;
  margin:12px 0px 66px;
  color:#01130FE5;
}

.custom-form {
  width: 100%;
  max-width: 488px;
  
  display: flex;
  flex-direction: column;
  
}
.contact-image {
  align-items: flex-end;
  max-width: 492px;
  margin-top:38px;
}



.custom-form label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 300;
  color: #1D1F1E;
  width: 100%;
  padding-left: 16px;
}

.custom-form input,
.custom-form textarea {
  margin-top: 0.4rem;
  margin-bottom: 24px;
  padding: 0.9rem 1.2rem;
  border: 1px solid #d8ded9;
  border-radius: 9999px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.custom-form textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 152px;
}

.custom-form .optional {
  font-size: 0.9rem;
  color: #777;
  font-weight: normal;
  margin-left: 4px;
}



.custom-form input[type=checkbox]:focus, .trade_form input[type=checkbox]:focus
{
    outline: 1px solid rgba(0, 0, 0, 0.2);
}

.custom-form input[type=checkbox], .trade_form input[type=checkbox]
{
    background-color: #FFF;
	display:inline-flex;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 17px;
    cursor: pointer;
    position: relative;
    top: 0px;
	border: 1px solid #d8ded9;
	padding:0px;
	margin:0px 12px 0px 0px;
}

.custom-form input[type=checkbox]:checked, .trade_form input[type=checkbox]:checked
{
    background-color: #8A3324;
    background: #8A3324 url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==") 3px 3px no-repeat;
}

.custom-form .btn, .trade_form .btn {
	justify-content: start;
	font-size: 1.5rem;
	margin-top:20px;
}

.custom-form p {
	font-size: 0.8rem;
    padding: 0px 16px;
    line-height: 1rem;
}

label.checkbox {
	flex-direction: row;
	align-items:center;
}

.submit-button {
  width: 100%;
  background-color: #083c2c;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  padding: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease-in-out;
  box-sizing: border-box;
}

.submit-button:hover {
  background-color: #062f22;
}

.submit-button .arrow {
  font-size: 1.2rem;
  line-height: 1;
}


.contact-block {
  margin-top:142px;
  background-color: #01130F;
}

.contact-block-inner {
  max-width: 1208px;
  width: 100%;
  padding: 90px 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.contact-block-column {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  flex-grow: 1;
  max-width: 400px;
  justify-content:space-between ;
  min-height: 228px;
 
}

.contact-block-column p {
  font-size: 1rem;;
  color: #fffef8;
  max-width: 250px;
  margin:0px;
  padding:0px
}

.contact-block-info {
  display: flex;
  align-items: flex-start;
  min-height: 44px;
}

.contact-block-info.btm {
  
  align-items: flex-end;
  
}

.contact-block-info.btm p {
  font-weight: 400;
  font-size: 1.125rem;
}

.contact-block-column a {
  color: #fffef8;
  font-weight: 400;
  font-size: 1.125;
};


.contact-block-info.btm {
  font-weight: 400;
  font-size: 1.125;
}

.contact-block-inner h2 {
  color: #fffef8;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: -.02rem;
  margin:0px;
  padding:0px;
}

.contact-icon {
  background: #fffef8;
  width:48px;
display: inline-flex;


  align-items: center;
  justify-content: center;
  height:48px;
  border-radius: 8px;
  margin-bottom: 38px;
}


.contact-img {
  width: 100%;
  max-width: 1240px;
  
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  
}


@media (max-width: 600px) {

  .contact {
    margin-top:140px;
  }

  .contact-block-inner {
        flex-direction: column;
        padding: 38px 16px;
  }

  
  .contact-block-column p {
   
    max-width: none;
    
  }
  .contact-block-column {
    min-height: 100px;
    width: 100%;
  }
  .contact h1 {
    font-size:2.813rem;
    line-height: 3rem;
    letter-spacing: -.09rem;
  }
  .column.contact-form {
    margin-right: 0px;
  }
  .contact-image img{
    aspect-ratio: 1/1;
  }
  .contact-block {
    margin-top: 32px;
  }
  .contact-block-info {
    min-height: 12px;

  }
  .contact-icon{
    margin-bottom: 20px;
    margin-top:20px
  }
}




  /* BLOG WIDGET/PAGE */

  .blog {
    background:#8A3324;
    width: 100%;
    padding:90px 0px
  }


  .blog h2 {
    color:#fffef8;
    max-width: 400px;
  }

  .blog h3 {
    color:#fffef8;
    font-size: 1.5rem;
	font-weight: 300;
  }

  .blog p {
    color:#fffef8;
  }

  .blog a {
   
      text-decoration: none;
  }


.latest-blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.blog-post {
  margin:16px 0px
}


.latest-blog-posts-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-post a {
  
  display: flex;
  flex-direction: row;

}

.blog-post img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 177px;;
  border-radius: 5px;
  margin-right: 0px;
}

.blog-preview-img {
 object-fit: cover;
  aspect-ratio: 1/1;
  margin-right: 32px!important;
}

.post-meta {
  font-size: 0.9rem;
  
  margin-top: 0.5rem;
}

.author, .reading-time {
  display: inline-block;
	font-family: 'Founders Grotesk', sans-serif;
}


.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fffef8;
  margin-top: 2.5rem;
}

.post-meta img {
  width:32px;
  border-radius: 50%;
  object-fit: cover;
}
.post-header {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 92px;
}

.post-header h1 {
  
  color: #fffef8;
    font-weight: 400;
    word-spacing: normal;
    font-size: 3.875rem;
    line-height: 4.25rem;
    letter-spacing: -.1rem;
    text-align: center;
    max-width: 560px;
    margin: auto;
}

.post-date, .author-name {
	font-family: 'Founders Grotesk', sans-serif;
}

.blog-page-header-bg {
  width:100%;
  height: 100vh;
background-color: #8A3324;
position: absolute;
top:0;
left:0;
z-index: -1;
}


.blog-page-header h1 {
  font-size:3.875rem;
}

.blog-page-inner {
  max-width: 1208px;
  width: calc(100% - 32px);
  padding: 95px 16px 0px;
  
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-direction:row;
}


.post-hero-image {
  margin-top: 92px;
}

.post-hero-image img{
  aspect-ratio: 16/9;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 800px;
}


.blog-left {
  flex: 1;
    height: calc(100vh - 165px);
    align-items: flex-end;
    justify-content: center;
    display: flex
;
}

.blog-left .post-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fffef8;
  margin-top: 0.5rem;
}
.blog-left .post-meta img {
    width: 48px;
    border-radius: 30px;
    object-fit: cover;
}

.blog-centre {
  max-width:800px;
  flex-shrink: 0;
}

.blog-centre p {
  max-width:684px;
  margin: 50px auto;
  font-size: 1.125rem;
  line-height: 1.625rem;
  
}

.blog-centre .wp-block-image img {
  border-radius: 5px;
}

.blog-right {
  flex: 1;
  
}

.column.blog-preview {
  margin-right: 20px;
  justify-content: flex-start;
}

@media (max-width: 1140px) {
  .blog-page-inner {
    flex-direction: column;
  }

  .blog-left, .blog-right {
    display: none;
  }

  .blog-centre {
    width: 100%;
    max-width: 100%;
  }
  .post-hero-image img{
    aspect-ratio: 1/1;
    
  }
  .post-header h1 {
    font-size:2.813rem;
    line-height: 3rem;
    letter-spacing: -.09rem;
    
}


}


.carousel-container {
  width: 80%;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(-33.33%);
}

.carousel-slide {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 80%;
  object-fit: contain;
  border-radius: 5px;
}

.carousel-btns {
  text-align: center;
  margin-top: 10px;
}

.carousel-btn {
  padding: 10px 20px;
  margin: 0 15px;
  font-size: 16px;
  cursor: pointer;
}





  /* PROJECT COLLECTION PAGE */

  .item-row {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    
}

.item-row .column {

  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
 
}
.item-row .column h1 {
  margin: 0px;
  text-align: center;
  word-spacing: 0px;
  font-size: 6rem;
  line-height: 5.6rem;
  max-width: 566px;

}

.item-row p {
  font-size:18px;
  line-height: 1.5rem;
  max-width: 592px;
  padding:16px 32px;
  text-align: center;
}

.item-intro {
  padding:0px 0px 0px 0px;
}

.item-image img {
  width:100%;
  
}


  .item-image img {
    height:100%;
    object-fit: cover;
  }


  @media (max-width: 900px) {

    .item-row {
      height: auto;
      flex-direction: column;
      padding-top: 95px;
    }

    .item-row h1 {
      font-size:2.813rem;
      line-height: 3rem;
      letter-spacing: -.09rem;
      max-width: 300px;
    }
      .item-image img {
        height: 600px;
      
  }
  .item-intro {
    padding:0px 0px 32px 0px;
  }

  }

  @media (max-width: 600px) {
    
    .item-row .column h1 {
        font-size:2.813rem;
        line-height: 3rem;
        letter-spacing: -.09rem;
        max-width: 300px;
    }
  }



  .carousel {
    width:100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .carousel img {
    object-fit: cover;
    border-radius: 5px;
  }

  .carousel-image-med {
    width:33%;
    min-width:450px;
    opacity: .6;
    margin:16px
  }

  .carousel-image-lrg {
    width:33%;
    min-width:550px;
    margin:16px
  }

  .carousel-image-med img {
    min-width:450px;
    width: 100%;
    max-height: 530px;
  }

  .carousel-image-lrg img {
    min-width:550px;
    width: 100%;
    max-height: 690px;
  }


.slideshow-controls {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px; 
  flex-direction: row;
}

.slideshow-controls img {
  margin:12px
}

.slideshow-controls .arrow-right {
  rotate: 180deg;
}




.content.design wp-block-image {
  margin: auto;
  border-radius: 5px;
}

.content.design .text-container {
  justify-content: center;
}

.wp-image-wrapper {
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 108px;

}

.wp-block-image img {

    width:100%;
    max-width: 1250px;
    height: auto;
    border-radius: 5px;
    

}

.doc .intro.row {
    margin: 0px 0px;
    justify-content: start;
    padding-top: 93px;
}

.doc h2 {
  font-size: 2rem;
    letter-spacing: -0.03rem;
}

.doc h1 {
  word-spacing: 0rem;
}

.doc h3 {
	color: #01130F;
}


.trade_form {
  max-width: 100%;

display: flex;
flex-direction: column;
}

.trade_form .btn-solid {
  color:#fff;
  width: 210px;
}

.trade_form_contact_details {
  display: flex;
  width:100%;
  flex-direction: row;
}

.trade_form_col {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
}

.trade_form_col.left {
  margin-right: 16px;
}
.trade_form_col.right {
  margin-left: 16px;
}

.trade_section_title {
  margin-top: 10px;
  font-size: 1.8em;
  
  padding-bottom: 5px;
  letter-spacing: -.02rem;
}

.trade_label {
  
  font-size: 1rem;
  font-weight: 300;
  color: #1D1F1E;
  width: 100%;
  padding-left: 16px;
}

.trade_input {
  margin-top: 0.4rem;
  margin-bottom: 24px;
  padding: 0.9rem 1.2rem;
  border: 1px solid #d8ded9;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.trade_optional {
  font-size: 0.9em;
  color: #777;
}

.trade_submit {
 
  cursor: pointer;
}

.trade_submit:hover {
  background-color: #555;
}


@media (max-width: 600px) {
  .trade_form_contact_details {
  flex-direction: column;
  }
.trade_form_col.left {
  margin-right: 0px;
}
.trade_form_col.right {
  margin-left: 0px;
}
}



.doc .intro.row {
    margin: 0px 0px;
    justify-content: start;
    padding-top: 93px;
}

.doc h2 {
  font-size: 3rem;
}

.doc h1 {
  word-spacing: 0rem;
}




.featured-posts-slider {
    background: #8A3324;
    width: calc(100% - 32px);
    padding: 90px 16px;
    margin-top:0px;
}


.featured-posts-slider-title {
  max-width: 1208px;
  width: calc(100% - 32px);
  padding:0px 16px;
  margin:0px auto 30px;
  flex-direction: row;

}

.featured-posts-slider-title .btn {
  
}

.featured-posts-slider-title a.btn {
  color:#FFFEF8;
}

.featured-posts-slider-title h2 {
  color: #FFFEF8;
}
.featured-posts-slider-title p {
  color: #FFFEF8;
  padding-right: 32px;
}

.featured-posts-slider-inner {
  display: flex;
  max-width: 1324px;
  width: calc(100% - 32px);
  background-color: #FFFEF8;
  border-radius: 24px;
  margin: 0px auto;
  padding:66px 16px;
  
}

.featured-posts-content {
  max-width: 1208px;
  width: calc(100% - 32px);
  padding:0px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
}


.row.featured-posts-preview {
    width: 100%;
    
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0px;
    margin-bottom: 20px;
}

.column.featured-posts-preview {
  flex-basis: auto;
  flex: auto;
}


.featured-posts-left {
  display: flex;
  padding:60px 0px;
  flex-direction: column;
  justify-content: space-between;
}

.featured-posts-left h3 {
  font-size: 3rem;
  color:#01130F;
  padding: 0px;
  margin:0px;
}

.featured-posts-left p {
  max-width: 488px;
  padding: 16px 32px 0px 0px;
}


.featured-posts-right {
  display: flex;
}

.featured-posts-right img {
  aspect-ratio: 1/1;
  max-width: 488px;
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
}

.preview-prev-arrow {
  margin-right:16px;
  opacity: 1;
  transition: all .3s;
}
.preview-next-arrow {
  transform: rotate(180deg);
  opacity: 1;
  transition: all .3s;
}

.preview-prev-arrow:hover {
  cursor: pointer;
  transition: all .3s;
  opacity: .5;

}
.preview-next-arrow:hover {
  cursor: pointer;
  transition: all .3s;

  opacity: .5;
}


@media (max-width: 552px) {
    
    .featured-posts-content {
  

  flex-direction: column;
  flex-direction: column-reverse;
 width: calc(100% - 0px);
    padding: 0px 0px;
  
}

.featured-posts-slider-inner {
  
  padding:16px 16px;
  
}
  }


/* Lightbox background fade */
#video-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease; /* slower fade-in */
}

/* Visible state */
#video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Video container */
.lightbox-content {
    position: relative;
    max-width: 60%;
    max-height: 60%;
}

/* Video styling */
#lightbox-video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease; /* slower fade-in */
    border-radius: 5px;
}

#lightbox-video.visible {
    opacity: 1;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: none;
    border: none;
    
    cursor: pointer;
    border-radius: 50%;
    
    
    opacity: 0;
    transition: opacity 0.5s ease; /* slightly faster than video fade */
}

.close-btn.visible {
    opacity: 1;

}

.close-btn img {
  width: 46px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.close-btn img:hover {
  opacity: .5;
  transition: opacity 0.5s ease;
}


.collection-projects {
  width:100%;
  display: flex;

  
  height: 100%;
}


.collection-projects-photos {
  padding-top:96px;
  width:57%;
  height: 100%;
  
}




.collection-projects-content {
  padding-top:150px;
  width:26%;
  
  height: 100%;
  position: sticky;
  top:0px;
  display: flex;
  align-items: flex-end;
  max-width: 604px;
  margin-left: 6%;
  
}


.accordion-container {
  width:100%;
    border-bottom: #000 1px solid;
    max-width: 414px;
    height: 100%;

  margin-bottom: 100px;

}


p.price {
	margin-top: -6px;
    padding-bottom: 14px;
}

.project-info p {
    font-size: 0.813rem;
    line-height: 1.313rem;
  }

  .project-container {
    width: 100%;

    max-width: 414px;
    height: 100%;
    margin-bottom: 100px;
}

.accordion-container h1, .project-container h1 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  word-spacing:0px;
      max-width: 300px;
      padding:0px 0px 30px 0px;
      margin:0px;
}

.faq-drawer__content-wrapper {
  
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
  
}
.faq-drawer__content-wrapper p {
  font-size: 0.813rem;
  line-height: 1.313rem;
}


.faq-drawer__title {
  border-top: #000 1px solid;
  cursor: pointer;
  display: flex;
  gap:20px;
  font-size: 1.125rem;
  padding: 20px 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-out;
}

.faq-drawer__title::before {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 2px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 10px;
}

/* OPTIONAL HOVER STATE */
.faq-drawer__title:hover { 
  color: #4E4B52  ;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  max-height: 666px;
  padding-bottom: 36px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::before {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 80px;
  }
}


figure.wp-block-gallery img {
  border-radius: 0px;
}

figure.wp-block-gallery figure:nth-child(3n+1) {
  width:100%!important;
}

figcaption {
  display: none;
}


@media (max-width: 600px) {


  .collection-projects {
    
    flex-direction: column-reverse;

  }
    
    .collection-projects-photos {
  padding-top:6px;
  width:100%;

  
}



.accordion-container {
   
    max-width: 600px;
}

.collection-projects-content {
  padding-top:100px;
  width:90%;
  
  height: 100%;
  position: relative;
  top:0px;
  max-width: 100%;
  margin-left: 16px;
  
}
  }


.custom-form.thank-you-message,
.custom-form.error-message {
  text-align: center;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}

.custom-form.thank-you-message p {
  color: #2e7d32; /* green */
  font-size: 1.1em;
}

.custom-form.error-message p {
  color: #c62828; /* red */
  font-size: 1.1em;
}

  
.quote {
  margin-top: 0px;
  font-size: clamp(2rem, 6rem, 7vw);
  line-height: 76px;
  text-align: center;
  overflow: hidden;
  color: #dfdcff;
}

.split-line {
  overflow: hidden;
}


