@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: "NectoMono";
  src: url("../fonts/NectoMono/NectoMono-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Bellefair";
  src: url("../fonts/Bellefair/Bellefair-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Dx Slight";
  src: url("../fonts/dx-slight-font/DxSlight-MediumUltra - Free Personal Use.otf") format("truetype");
}

:root {
  --font-instrument-sans: "Instrument Sans", sans-serif;
  --font-instrument-serif: "Instrument Serif", sans-serif;
  --font-Necto-Mono: "NectoMono", sans-serif;
  --font-Bellefair: "Bellefair", sans-serif;
  --font-Baskerville: "Baskervville", serif;
  --font-instrument-serif: "Instrument Serif", serif;
  --font-dx-slight: "Dx Slight", serif;
  --font96: clamp(4.8rem, 5vw, 9.6rem);
  --font64: clamp(3.2rem, 3vw, 6.4rem);
  --font80: 8rem;
  --font48: clamp(3.2rem, 2.8vw, 4.8rem);
  --font42: clamp(2rem, 1.5vw + 1.5rem, 4.2rem);
  --font40: 4rem;
  --font36: 3.6rem;
  --font32: 3.2rem;
  --font30: 3rem;
  --font28: 2.8rem;
  --font24: 2.4rem;
  --font20: 2rem;
  --font18: 1.8rem;
  --font17: 1.7rem;
  --font16: 1.6rem;
  --font14: 1.4rem;
  --font12: 1.2rem;
  --font10: 1rem;
  /* Mobile (≤ 575px) */
}

@media only screen and (max-width: 575px) {
  :root {
    --font48: clamp(2.4rem, 2.2vw, 4.8rem);
    --font40: 2.2rem;
    --font36: 2rem;
    --font32: 2rem;
    --font28: 1.8rem;
    --font24: 1.6rem;
    --font20: 1.5rem;
    --font16: 1.3rem;
    --font14: 1.2rem;
    --font12: 1.1rem;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 52.5%;
  font-family: serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 2500px) {
  html {
    font-size: 75%;
  }
}

@media only screen and (max-width: 1600px) {
  html {
    font-size: 52.5%;
  }
}

@media only screen and (max-width: 1400px) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: 50%;
  }
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: #f8f3ed;
  opacity: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.7;
}

.sectionWrapper {
  margin: 0 auto;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  max-width: calc(2000px + 16vw);
}

@media (max-width: 575px) {
  .sectionWrapper {
    margin: 0 auto;
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: calc(1400px + 10vw);
  }
}

.desktop,
.mobile {
  display: none !important;
}

@media (min-width: 769px) {
  .desktop {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .mobile {
    display: flex !important;
  }
}

.hoverUnderline {
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hoverUnderline {
    font-size: 1.4rem;
  }
}

@media (max-width: 525px) {
  .hoverUnderline {
    font-size: 1rem;
  }
}

.hoverUnderline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background-color: #260a0a;
  transition: all 0.3s ease-in-out;
}

.hoverUnderline:hover::before {
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 5.4rem 4.3rem 0 5.4rem;
  z-index: 1000;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 3rem 8% 0 8%;
  }
}

.header.gold .logo svg path {
  fill: #fee28e;
}

.header.gold .menuBtn h1 {
  color: #fee28e;
}

.header .logo {
  max-width: 7.6rem;
}

@media only screen and (max-width: 768px) {
  .header .logo {
    max-width: 5.6rem;
  }
}

.header .logo svg {
  width: 100%;
}

.header .menuBtn {
  z-index: 999;
}

.header .menuBtn h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.header .menuBtn h1:hover {
  opacity: 0.7;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #260a0a;
  z-index: 1001;
  padding-top: 17rem;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}

.menu .close {
  position: absolute;
  right: 5.5rem;
  top: 6.8rem;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.menu .close:hover {
  opacity: 0.7;
}

.menu .list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4rem;
  width: 100%;
  justify-items: center;
  margin-bottom: 7rem;
}

.menu .list .col h1 {
  margin-bottom: 5.5rem;
}

.menu .list .col h1 a {
  font-family: var(--font-instrument-serif);
  font-size: var(--font42);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
}

.menu .list .col p {
  margin-bottom: 1.9rem;
}

.menu .list .col p a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font14);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
}

.menu .image-container {
  display: flex;
  justify-content: center;
}

.menu .image-container img {
  max-width: 53rem;
  height: 100%;
  object-fit: contain;
}

.footer {
  position: relative;
  display: flex;
  padding: 10rem 8% 5rem;
  background-color: #260a0a;
  align-items: stretch;
  gap: 5%;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 5.4rem 8% 4.5rem;
  }
}

.footer .logo {
  display: flex;
  flex-direction: column;
  margin-top: 15rem;
  width: 12%;
}

.footer .logo img {
  max-width: 10rem;
  margin-bottom: 4rem;
}

.footer .logo p {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
}

.footer .links {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 5rem;
}

@media only screen and (max-width: 768px) {
  .footer .links {
    gap: 2rem;
    width: 100%;
  }
}

.footer .links .block {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .footer .links .blockMobile1 {
    display: grid;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 200px));
    gap: 0rem;
  }

  .footer .links .blockMobile1 img {
    max-width: 8.5rem;
  }

  .footer .links .blockMobile1 h1 {
    font-family: var(--font-Necto-Mono);
    font-size: 1rem;
    color: #ede0d0;
    margin-bottom: 0;
  }
}

.footer .links h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1.6px;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.footer .links a {
  font-family: var(--font-instrument-sans);
  font-size: var(--font14);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  margin-bottom: 0.1rem;
}

.footer .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
}

@media only screen and (max-width: 768px) {
  .footer .contact {
    margin-top: 5.5rem;
    width: 100%;
  }
}

.footer .contact h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font10);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1.6px;
  text-align: left;
  color: #ede0d0;
}

.footer .contact a {
  font-family: var(--font-instrument-sans);
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
  .footer .contact a {
    font-size: 1.2rem;
  }
}

.footer .contact #email-form {
  width: 100%;
}

.footer .contact input {
  font-family: var(--font-Necto-Mono);
  width: 100%;
  padding: 0.5rem 0rem;
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ede0d0;
  outline: none;
  margin-bottom: 2rem;
  max-width: 100%;
}

.footer .contact input::placeholder {
  font-family: var(--font-Necto-Mono);
  color: #ede0d0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer .contact input {
    order: 1;
    font-size: 1rem;
    line-height: 1;
  }
}

.footer .contact .submit {
  font-family: var(--font-Necto-Mono);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 1.12px;
  text-align: left;
  color: #fee28e;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 5.8rem;
}

@media (max-width: 768px) {
  .footer .contact .submit {
    order: 4;
    margin-bottom: 5rem;
    font-size: 1.2rem;
  }
}

.footer .contact form input {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .contact .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.footer .contact .social img {
  max-width: 2.4rem;
}

.home_Banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20rem 0 15rem;
  position: relative;
  overflow: hidden;
}

.home_Banner .bg {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 112rem;
}

.home_Banner .image {
  position: relative;
}

.home_Banner .image img {
  max-width: 40rem;
}

.home_Banner .image h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--font-Baskerville);
  font-size: var(--font24);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.8px;
  text-align: center;
  color: #E14B16;
  word-spacing: 67px;
}

@media (max-width: 1024px) {
  .home_Banner .image h1 {
    word-spacing: 37px;
  }
}

.home_Banner p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #260a0a;
  margin: 7rem 0;
}

.home_Banner h2 {
  font-family: var(--font-Baskerville);
  font-size: var(--font30);
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: 0.33;
  letter-spacing: -1.2px;
  text-align: left;
  color: #260a0a;
  margin-top: 15rem;
}

.home_Banner>img {
  max-width: 31rem;
}

.home_stories {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20rem 8% 40rem;
}

.home_stories .bg {
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  width: 30%;
  z-index: -1;
  width: 50%;
}

.home_stories .block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.home_stories .block h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font18);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  text-transform: uppercase;
}

.home_stories .block img {
  margin-bottom: 2.8rem;
}

.home_stories .block1,
.home_stories .block2,
.home_stories .block3 {
  width: 100%;
}

.home_stories .block1 .c1,
.home_stories .block1 .c2,
.home_stories .block2 .c1,
.home_stories .block2 .c2,
.home_stories .block3 .c1,
.home_stories .block3 .c2 {
  width: 50%;
}

.home_stories .block1 .c1,
.home_stories .block2 .c1,
.home_stories .block3 .c1 {
  display: flex;
  flex-direction: column;
}

.home_stories .block1 {
  position: relative;
  margin-bottom: 25rem;
  display: flex;
  justify-content: space-between;
}

.home_stories .block1 .c1 {
  align-self: flex-start;
  width: 30%;
}

.home_stories .block1 .c1 h1 {
  font-family: var(--font-instrument-serif);
  font-size: 10rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: normal;
  text-align: left;
  color: #0a05c1;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .home_stories .block1 .c1 h1 {
    font-size: 8rem;
  }
}

.home_stories .block1 .c2 {
  width: fit-content;
}

.home_stories .block1 .c2 img {
  max-width: 80rem;
  width: 100%;
  margin-bottom: 2.8rem;
}

.home_stories .block2 {
  align-items: flex-end;
  margin-right: 20vw;
}

.home_stories .block2 .c2 {
  align-items: flex-start;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.home_stories .block2 .c2 img {
  width: 100%;
}

.home_stories .block3 {
  margin-top: -15rem;
  justify-content: flex-start;
}

.home_stories .block3 .c1 {
  align-self: flex-end;
  width: 25%;
}

.home_stories .block3 .c1 img {
  max-width: 32rem;
  width: 100%;
}

.home_stories .block3 .c1 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  margin-bottom: 4rem;
  max-width: 39rem;
  text-transform: uppercase;
}

.home_stories .block3 .c1 h1 {
  margin-bottom: 11rem;
}

.home_stories .block3 .c1 a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: left;
  color: #260a0a;
  text-transform: uppercase;
  align-self: flex-start;
}

.home_gatheredWords {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* make both columns equal height */
  justify-content: space-between;
  padding: 16rem 8%;
  position: relative;
  width: 100%;
  background-color: #24228b;
  gap: 5%;
}

@media (max-width: 1024px) {
  .home_gatheredWords {
    gap: 5rem;
  }
}

.home_gatheredWords .text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* text aligns left */
  justify-content: flex-start;
  /* content stays at top */
  gap: 0rem;
  z-index: 5;
  width: 50%;
}

.home_gatheredWords .text h1,
.home_gatheredWords .text h2 {
  font-family: var(--font-dx-slight);
  font-size: 20rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #cedcee;
  text-transform: uppercase;
}

@media (max-width: 1024px) {

  .home_gatheredWords .text h1,
  .home_gatheredWords .text h2 {
    font-size: 17rem;
  }
}

@media (max-width: 992px) {

  .home_gatheredWords .text h1,
  .home_gatheredWords .text h2 {
    font-size: 16rem;
  }
}

.home_gatheredWords .text h2 {
  margin-top: 5rem;
}

.home_gatheredWords .text h3 {
  font-family: var(--font-instrument-sans);
  font-size: var(--font18);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  width: 75%;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .home_gatheredWords .text h3 {
    font-size: var(--font16);
  }
}

.home_gatheredWords .text p {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font18);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #fee28e;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .home_gatheredWords .text p {
    font-size: var(--font16);
  }
}

.home_gatheredWords .right {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: flex-start;
  justify-content: center;
  /* centers image + link vertically within equal height column */
}

.home_gatheredWords .right img {
  max-width: 29rem;
  margin-bottom: 8.9rem;
}

@media (max-width: 1024px) {
  .home_gatheredWords .right img {
    max-width: 24rem;
  }
}

.home_gatheredWords .right a {
  margin-left: -2rem;
  color: #fee28e;
  align-self: flex-end;
}

.home_gatheredWords .right a::before {
  background-color: #fee28e;
}

.home_theCurator {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20rem 8% 9rem;
  position: relative;
  background-color: #ede0d0;
  z-index: 1;
}

.home_theCurator .head {
  position: relative;
  margin-bottom: 8.5rem;
}

.home_theCurator .head h1 {
  font-family: var(--font-Necto-Mono);
  font-size: 1.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  text-align: left;
  color: #e14b16;
  text-transform: uppercase;
  word-spacing: 17rem;
}

@media (max-width: 1060px) {
  .home_theCurator .head h1 {
    word-spacing: 9rem;
  }
}

.home_theCurator .content {
  width: 100%;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.home_theCurator .content .c1 {
  display: flex;
  width: 33.33%;
}

.home_theCurator .content .c1 img {
  object-fit: contain;
  max-width: 35rem;
  width: 100%;
}

.home_theCurator .content .bg {
  display: flex;
  width: 33.33%;
  object-fit: contain;
}

.home_theCurator .content .c2 {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home_theCurator .content .c2 h1 {
  font-family: var(--font-instrument-serif);
  font-size: 10rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.01;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  text-transform: uppercase;
  margin-bottom: 6rem;
}

@media (max-width: 1024px) {
  .home_theCurator .content .c2 h1 {
    font-size: 8rem;
    margin-bottom: 4rem;
  }
}

.home_theCurator .content .c2 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font18);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #0f0e0e;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .home_theCurator .content .c2 p {
    font-size: var(--font16);
  }
}

.home_theCurator .content .c2 a {
  font-family: var(--font-Necto-Mono);
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: left;
  color: #000;
  text-transform: uppercase;
  display: none;
}

.home_theCurator .content .c2 a.hoverUnderline::before {
  height: 1px;
  background-color: #000000;
}

.home_theShowspace {
  overflow: hidden;
  position: relative;
  display: flex;
  background-color: #260a0a;
  padding: 5rem 1% 5rem;
  overflow: hidden;
  gap: 3.2rem;
}

.home_theShowspace .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home_theShowspace .text h1 {
  font-family: var(--font-instrument-serif);
  font-size: 8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
  margin-bottom: 3.7rem;
}

.home_theShowspace .text a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.12px;
  text-align: left;
  color: #f8f3ed;
}

.home_theShowspace .text a::before {
  background-color: #f8f3ed;
}

.home_theShowspace .c1 {
  width: 50%;
  position: relative;
}

.home_theShowspace .c1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_theShowspace .c2 {
  width: 50%;
  position: relative;
}

.home_theShowspace .c2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_theShowspace .c2 .slider {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60%;
  max-width: 45%;
}

.home_theShowspace .c2 .slider .hs-arrow.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease;
}

.home_theShowspace .c2 .slider img {
  display: block;
  width: 100%;
  height: auto;
}

.home_theShowspace .c2 .slider .hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 20;
  padding: 0;
  transition: opacity 0.3s ease;
}

.home_theShowspace .c2 .slider .hs-arrow svg {
  display: block;
  width: 24px;
  height: auto;
  stroke: #fff;
}

.home_theShowspace .c2 .slider .hs-arrow:hover {
  opacity: 0.7;
}

.home_theShowspace .c2 .slider .slick-prev.hs-arrow {
  left: -40px;
}

.home_theShowspace .c2 .slider .slick-next.hs-arrow {
  right: -40px;
}

.home_image_block {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
}

.home_image_block img {
  width: 100%;
  height: auto;
}

.events_banner {
  position: relative;
  overflow: hidden;
  padding: 35rem 8% 4.7rem;
  background-color: #24228b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.events_banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 555;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font20);
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #f8f3ed;
  text-transform: uppercase;
  word-spacing: 40px;
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .events_banner h1 {
    font-size: 1rem;
    top: 32%;
  }
}

.events_banner .image {
  position: relative;
}

.events_banner .image::before {
  content: "an evocative discovery of storied lives";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 555;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font20);
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #f8f3ed;
  text-transform: uppercase;
  word-spacing: 40px;
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .events_banner .image::before {
    font-size: 1rem;
  }
}

.events_banner .image .slider {
  display: flex;
  width: 100%;
  max-width: 75rem;
}

@media only screen and (max-width: 768px) {
  .events_banner .image .slider {
    max-width: 25rem;
  }
}

.events_banner .image .slider img {
  max-width: 95rem;
}

.events_banner .image .slider .hs-arrow.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease;
}

.events_banner .image .slider .hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 20;
  padding: 0;
  transition: opacity 0.3s ease;
}

.events_banner .image .slider .hs-arrow svg {
  display: block;
  width: 24px;
  height: auto;
  stroke: #fff;
}

@media only screen and (max-width: 768px) {
  .events_banner .image .slider .hs-arrow svg {
    width: 15px;
  }
}

.events_banner .image .slider .hs-arrow:hover {
  opacity: 0.7;
}

.events_banner .image .slider .slick-prev.hs-arrow {
  left: -40px;
}

.events_banner .image .slider .slick-next.hs-arrow {
  right: -40px;
}

.events_banner .text {
  width: 90%;
  position: relative;
  display: flex;
  margin-top: 13rem;
}

@media only screen and (max-width: 768px) {
  .events_banner .text {
    margin-top: 30rem;
    width: 100%;
    flex-direction: column;
  }
}

.events_banner .text .c1 {
  width: 50%;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .events_banner .text .c1 {
    width: 100%;
  }
}

.events_banner .text .c1 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  max-width: 45rem;
}

@media only screen and (max-width: 1024px) {
  .events_banner .text .c1 p {
    max-width: 29rem;
  }
}

@media only screen and (max-width: 768px) {
  .events_banner .text .c1 p {
    margin-bottom: 1.8rem;
    font-size: 1rem;
  }
}

.events_banner .text .c2 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
  .events_banner .text .c2 {
    width: 100%;
    justify-content: flex-start;
  }
}

.events_banner .text .c2 a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: left;
  color: #fee28e;
  display: none;
}

.events_banner .text .c2 a::before {
  background-color: #fee28e;
}

.events_space {
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #f8f3ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .events_space {
    height: auto;
    padding: 17rem 0;
  }
}

.events_space .image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .events_space .image::before {
    content: "A        TACTILE        SPACE         FOR        DECORATIVE         ARTS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 555;
    font-family: var(--font-Necto-Mono);
    font-size: var(--font20);
    font-weight: normal;
    line-height: normal;
    letter-spacing: 1px;
    text-align: center;
    color: #e14b16;
    text-transform: uppercase;
    word-spacing: 35px;
    white-space: nowrap;
    font-size: 1rem;
  }
}

.events_space .image h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #e14b16;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  word-spacing: 38px;
}

@media only screen and (max-width: 768px) {
  .events_space .image h1 {
    display: none;
  }
}

.events_space .image img {
  height: auto;
  width: 60%;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .events_space .image img {
    width: 100%;
  }
}

.event_prelude {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  width: 100%;
  padding: 15rem 8%;
  gap: 17rem;
}

@media only screen and (max-width: 768px) {
  .event_prelude {
    flex-direction: column;
    padding: 0rem 8% 15rem;
  }
}

.event_prelude .c1 {
  width: 60%;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .event_prelude .c1 {
    width: 100%;
  }
}

.event_prelude .c1 h1 {
  font-family: var(--font-instrument-serif);
  font-size: 12rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: normal;
  text-align: left;
  color: #601808;
  text-transform: uppercase;
  margin-bottom: 5.6rem;
}

@media only screen and (max-width: 1024px) {
  .event_prelude .c1 h1 {
    font-size: 8rem;
  }
}

@media only screen and (max-width: 768px) {
  .event_prelude .c1 h1 {
    font-size: 5.8rem;
    margin-bottom: 5.5rem;
  }
}

.event_prelude .c1 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  margin-bottom: 7rem;
  max-width: 60rem;
}

@media only screen and (max-width: 768px) {
  .event_prelude .c1 p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}

.event_prelude .c1 a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1.12px;
  text-align: left;
  color: #0f0e0e;
  align-self: flex-start;
}

.event_prelude .c2 {
  display: flex;
  width: 40%;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .event_prelude .c2 {
    width: 100%;
    justify-content: center;
  }
}

.event_prelude .c2 img {
  object-fit: contain;
  width: 100%;
  max-width: 28rem;
  align-self: center;
}

@media only screen and (max-width: 768px) {
  .event_prelude .c2 img {
    max-width: 20rem;
  }
}

.hereAndNow_banner {
  position: relative;
  display: flex;
  padding: 5rem 8%;
  min-height: 100vh;
}

.hereAndNow_banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hereAndNow_banner .c1 {
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.hereAndNow_banner .c1 h1 {
  font-family: var(--font-dx-slight);
  font-size: 16rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #fee28e;
  margin-bottom: 4.8rem;
  text-transform: uppercase;
}

.hereAndNow_banner .c1 p {
  font-family: var(----font-Necto-Mono);
  font-size: var(--font30);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1.2px;
  text-align: left;
  color: #fee28e;
  text-transform: uppercase;
}

.hereAndNow_banner .c2 {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hereAndNow_banner .c2 img {
  max-width: 24rem;
}

.products_banner {
  position: relative;
  min-height: 100vh;
  padding: 12rem 8%;
}

@media only screen and (max-width: 768px) {
  .products_banner {
    padding: 22rem 8% 5rem;
  }
}

.products_banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
  z-index: -1;
}

.products_banner .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
}

.products_banner .content h1,
.products_banner .content h2 {
  font-family: var(--font-dx-slight);
  font-size: 24rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #e14b16;
  text-transform: uppercase;
}

@media only screen and (max-width: 1100px) {

  .products_banner .content h1,
  .products_banner .content h2 {
    font-size: 20rem;
  }
}

@media only screen and (max-width: 1024px) {

  .products_banner .content h1,
  .products_banner .content h2 {
    font-size: 18rem;
  }
}

@media only screen and (max-width: 768px) {

  .products_banner .content h1,
  .products_banner .content h2 {
    font-size: 10rem;
  }
}

.products_banner .content h1 {
  align-self: flex-start;
}

@media only screen and (max-width: 768px) {
  .products_banner .content h1 {
    align-self: center;
  }
}

.products_banner .content h2 {
  align-self: flex-end;
}

@media only screen and (max-width: 768px) {
  .products_banner .content h2 {
    align-self: center;
  }
}

.products_banner .content p {
  font-family: var(--font-Necto-Mono);
  font-size: 2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #e14b16;
  text-transform: uppercase;
  word-spacing: 50px;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .products_banner .content p {
    font-size: 1rem;
    word-spacing: 22px;
    margin-bottom: 2rem;
  }
}

.products_banner>p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font20);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  max-width: 32rem;
}

@media only screen and (max-width: 768px) {
  .products_banner>p {
    font-size: 1.2rem;
    max-width: 19rem;
    margin: 0 auto;
    margin-top: 30rem;
  }
}

.products_items {
  position: relative;
  aspect-ratio: 16 / 7;
  margin: 0 auto;
}

.products_items a {
  position: absolute;
  display: block;
  transition: transform 0.2s ease;
}

.products_items a img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.products_items a:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.products_items .item-1 {
  left: 14%;
  top: 58%;
  width: 18%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.products_items .item-2 {
  left: 32%;
  top: 18%;
  width: 22%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.products_items .item-3 {
  left: 72%;
  top: 22%;
  width: 26%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.products_items .item-4 {
  left: 48%;
  top: 66%;
  width: 18%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.products_items .item-5 {
  left: 84%;
  top: 64%;
  width: 22%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.graphics {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15rem 5rem;
}

@media only screen and (max-width: 768px) {
  .graphics {
    padding: 12rem 10rem;
  }
}

.graphics .bg {
  max-width: 38rem;
  width: 100%;
  object-fit: contain;
}

.products_list {
  position: relative;
  height: 100vh;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .products_list {
    flex-direction: column;
  }
}

.products_list .filter {
  position: absolute;
  top: 6rem;
  left: 8%;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
  z-index: 7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.products_list .filter:hover {
  opacity: 0.7;
}

.products_list .bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* width: 10rem; */
  height: 70vh;
  z-index: 6;
  
}


@media only screen and (max-width: 768px) {

.products_list .bg {

  width: 10rem;

}

}

.products_list .c1 {
  width: 50%;
  background-color: #601808;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .products_list .c1 {
    width: 100%;
    padding: 10rem 0;
  }
}

.products_list .c1 p {
  font-family: var(--font-Baskerville);
  font-size: var(--font20);
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #e14b16;
  word-spacing: 40px;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(50%, -50%) rotate(-90deg);
  transform-origin: center;
}

@media only screen and (max-width: 768px) {
  .products_list .c1 p {
    word-spacing: 15px;
    right: 7%;
    font-size: 1rem;
  }
}

.products_list .c1 img {
  max-width: 50%;
}

.products_list .c2 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 7rem;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 9rem;
  overflow-y: auto;
  /* Nice scrolling behavior */
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  /* Firefox */
  scrollbar-width: thin;
  /* auto | thin | none */
  scrollbar-color: #601808 transparent;
  /* thumb | track */
  /* WebKit/Chromium */
}

@media only screen and (max-width: 768px) {
  .products_list .c2 {
    width: 100%;
    gap: 5rem;
    min-height: 50vh;
    margin: 3rem 0;
  }
}

.products_list .c2::-webkit-scrollbar {
  width: 10px;
}

.products_list .c2::-webkit-scrollbar-track {
  background: transparent;
}

.products_list .c2::-webkit-scrollbar-thumb {
  background-color: #601808;
  /* soft gold */
  border: 2px solid #260a0a;
  /* matches panel bg */
  border-radius: 999px;
  /* pill thumb */
}

.products_list .c2::-webkit-scrollbar-thumb:hover {
  background-color: #601808;
}

.products_list .c2::-webkit-scrollbar-corner {
  background: transparent;
}

.products_list .c2 .block {
  display: flex;
  width: 80%;
  gap: 6rem;
}

@media only screen and (max-width: 768px) {
  .products_list .c2 .block {
    gap: 3.4rem;
  }
}

.products_list .c2 .block .image {
  width: 30%;
}

.products_list .c2 .block .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.products_list .c2 .block .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.products_list .c2 .block .text h1 {
  font-family: var(--font-instrument-serif);
  font-size: var(--font36);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1.44px;
  text-align: left;
  color: #0f0e0e;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .products_list .c2 .block .text h1 {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
}

.products_list .c2 .block .text p {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 0.64px;
  text-align: left;
  color: #0f0e0e;
}

@media only screen and (max-width: 768px) {
  .products_list .c2 .block .text p {
    font-size: 1rem;
  }
}

.text_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30rem 8%;
}

.text_block h1 {
  font-family: var(--font-Baskerville);
  font-size: var(--font32);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.8px;
  text-align: center;
  color: #e14b16;
}

@media only screen and (max-width: 768px) {
  .text_block h1 {
    font-size: 1.2rem;
  }
}

.image_block {
  width: 100%;
  height: auto;
  display: flex;
}

.image_block img {
  width: 100%;
  height: auto;
}

.product_filter_popUp {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 45%;
  height: 100vh;
  background-color: #260a0a;
  display: none;
  flex-direction: column;
  z-index: 1005;
  padding: 10rem;
  gap: 8rem;
  overflow-y: auto;
  /* Nice scrolling behavior */
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  /* Firefox */
  scrollbar-width: thin;
  /* auto | thin | none */
  scrollbar-color: #fee28e transparent;
  /* thumb | track */
  /* WebKit/Chromium */
}

@media only screen and (max-width: 1024px) {
  .product_filter_popUp {
    padding: 10rem 5rem;
  }
}

@media only screen and (max-width: 768px) {
  .product_filter_popUp {
    width: 100%;
  }
}

.product_filter_popUp::-webkit-scrollbar {
  width: 10px;
}

.product_filter_popUp::-webkit-scrollbar-track {
  background: transparent;
}

.product_filter_popUp::-webkit-scrollbar-thumb {
  background-color: #fee28e;
  /* soft gold */
  border: 2px solid #260a0a;
  /* matches panel bg */
  border-radius: 999px;
  /* pill thumb */
}

.product_filter_popUp::-webkit-scrollbar-thumb:hover {
  background-color: #fee28e;
}

.product_filter_popUp::-webkit-scrollbar-corner {
  background: transparent;
}

.product_filter_popUp .close {
  position: absolute;
  top: 5rem;
  right: 2rem;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  z-index: 55;
}

.product_filter_popUp .close:hover {
  opacity: 0.7;
}

.product_filter_popUp .block {
  width: 90%;
  display: flex;
  gap: 10rem;
}

@media only screen and (max-width: 1024px) {
  .product_filter_popUp .block {
    gap: 5rem;
  }
}

.product_filter_popUp .block .c1 {
  width: 30%;
  display: flex;
}

.product_filter_popUp .block .c1 h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  text-transform: uppercase;
}

.product_filter_popUp .block .c2 {
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 1.6rem;
}

.product_filter_popUp .block .c2 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.product_filter_popUp .block .c2 p:hover {
  opacity: 0.7;
}

.contact_banner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 22rem 8%;
  background-color: #260a0a;
  align-items: flex-start;
  gap: 7%;
}

@media only screen and (max-width: 768px) {
  .contact_banner {
    grid-template-columns: 1fr;
    padding: 17rem 8% 17rem;
    gap: 13rem;
  }
}

.contact_banner .c1 h1 {
  font-family: var(--font-instrument-serif);
  font-size: 10rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  margin-bottom: 6rem;
}

@media only screen and (max-width: 1024px) {
  .contact_banner .c1 h1 {
    font-size: 8rem;
  }
}

@media only screen and (max-width: 768px) {
  .contact_banner .c1 h1 {
    font-size: 6rem;
    margin-bottom: 2.4rem;
  }
}

.contact_banner .c1 p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font18);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
}

@media only screen and (max-width: 768px) {
  .contact_banner .c1 p {
    font-size: 1.2rem;
  }
}

.contact_banner .c2 {
  display: flex;
  flex-direction: column;
}

.contact_banner .c2 form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact_banner .c2 form>div {
  display: flex;
  flex-direction: column;
}

.contact_banner .c2 form label {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  margin-bottom: 2rem;
}

.contact_banner .c2 form .field {
  width: 100%;
  padding: 0.9rem 0.8rem;
  border: 1px solid #fee28e;
  background: transparent;
  color: #fee28e;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
}

.contact_banner .c2 form .field::placeholder {
  color: rgba(248, 243, 237, 0.5);
}

.contact_banner .c2 form .field:focus {
  border-color: #feefc1;
}

.contact_banner .c2 form textarea.field {
  min-height: 160px;
  resize: vertical;
  resize: none;
}

.contact_banner .c2 form .actions {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.contact_banner .c2 form .actions button {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.12px;
  text-align: left;
  color: #fee28e;
  background-color: transparent;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact_banner .c2 form .actions button::before {
  background: #fee28e;
}

.contact_banner .c3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_banner .c3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 768px) {
  .contact_banner .c3 img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.contact_graphic_text_block {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #260a0a;
  align-items: center;
  justify-content: center;
  padding: 10rem 8% 30rem;
}

@media only screen and (max-width: 768px) {
  .contact_graphic_text_block {
    padding: 10rem 8% 25rem;
  }
}

.contact_graphic_text_block img {
  max-width: 30rem;
  margin-bottom: 20rem;

}

.contact_graphic_text_block p {
  font-family: var(--font-Baskerville);
  font-size: var(--font32);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.8px;
  text-align: center;
  color: #cedcee;
  word-spacing: 42px;
}

@media only screen and (max-width: 1024px) {
  .contact_graphic_text_block p {
    word-spacing: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .contact_graphic_text_block p {
    font-size: 1rem;
    word-spacing: 5px;
  }
}

.contact_image_block {
  position: relative;
  display: flex;
  width: 100%;
}

.contact_image_block img {
  width: 100%;
  height: auto;
}

.postType_one_banner {
  position: relative;
  padding: 17rem 8%;
  display: flex;
  background-color: #260a0a;
  gap: 5%;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner {
    display: grid;
    grid-template-columns: 10% 80%;
    align-items: center;
    column-gap: 3rem;
    row-gap: 10rem;
    padding: 15rem 8% 8.5rem;
  }
}

.postType_one_banner .tab {
  width: 10%;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .tab {
    grid-column: 1;
    width: unset;
  }
}

.postType_one_banner .tab img {
  max-width: 6rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.postType_one_banner .tab img:hover {
  opacity: 0.8;
}

.postType_one_banner .c1 {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;

}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c1 {
    grid-column: 2;
    width: 100%;
  }
}

.postType_one_banner .c1 img {
  width: 100%;
  max-width: 40rem;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.postType_one_banner .c2 {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c2 {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.postType_one_banner .c2>h1 {
  font-family: var(--font-instrument-serif);
  font-size: var(--font80);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 3.2px;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
  margin-bottom: 7rem;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c2>h1 {
    font-size: 6rem;
    margin-bottom: 2.5rem;
  }
}



.postType_one_banner .c2>p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  margin-bottom: 8rem;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c2>p {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
}

.postType_one_banner .c2 a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.12px;
  text-align: left;
  color: #fee28e;
}

.postType_one_banner .c2 a::before {
  background-color: #fee28e;
}

.postType_one_banner .c2 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 5.8rem;
  gap: 2rem;
}

.postType_one_banner .c2 .content .block {
  display: flex;
  flex-direction: column;
}

.postType_one_banner .c2 .content .block h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c2 .content .block h1 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
}

.postType_one_banner .c2 .content .block p {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font12);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #fee28e;
}

@media only screen and (max-width: 768px) {
  .postType_one_banner .c2 .content .block p {
    font-size: 1rem;
  }
}

.postType_two_banner {
  position: relative;
  display: flex;
  background-color: #601808;
  gap: 0%;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner {
    flex-direction: column;
  }
}

.postType_two_banner .c1 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17rem 10% 17rem 8%;
  gap: 5%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 {
    width: 100%;
    padding: 12rem 8% 5rem 8%;
    gap: 0rem;
  }
}

.postType_two_banner .c1 h4 {
  font-family: var(--font-Baskerville);
  font-size: var(--font20);
  font-weight: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #e14b16;
  word-spacing: 40px;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translate(50%, -50%) rotate(-90deg);
  transform-origin: center;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 h4 {
    font-size: 1rem;
  }
}

.postType_two_banner .c1 .tab {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 10%;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .tab {
    width: 8%;
  }
}

.postType_two_banner .c1 .tab img {
  max-width: 6rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  aspect-ratio: 1/1;
}

.postType_two_banner .c1 .tab img:hover {
  opacity: 0.8;
}

.postType_two_banner .c1 .image {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .image {
    width: 90%;
  }
}

.postType_two_banner .c1 .image h1 {
  font-family: var(--font-instrument-serif);
  font-size: var(--font80);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

@media only screen and (max-width: 1024px) {
  .postType_two_banner .c1 .image h1 {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .image h1 {
    font-size: 4rem;
  }
}

.postType_two_banner .c1 .image h2 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.63;
  letter-spacing: normal;
  text-align: left;
  color: #ede0d0;
  margin-bottom: 8rem;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .image h2 {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
  }
}

.postType_two_banner .c1 .image p {
  font-family: var(--font-instrument-sans);
  font-size: var(--font14);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f8f3ed;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .image p {
    font-size: 1rem;
    text-align: center;
  }
}

.postType_two_banner .c1 .image img {
  width: 100%;
  max-width: 35rem;
  object-fit: contain;
  margin-bottom: 7rem;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c1 .image img {
    width: 70%;
  }
}

.postType_two_banner .c2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ede0d0;
  padding: 17rem 8% 17rem 5%;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c2 {
    width: 100%;
    padding: 7.9rem 8% 7rem 8%;
  }
}

.postType_two_banner .c2 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 5.8rem;
  row-gap: 10rem;
  column-gap: 2rem;
}

@media only screen and (max-width: 768px) {
  .postType_two_banner .c2 .content {
    grid-template-columns: 30% 60%;
    row-gap: 4.8rem;
    column-gap: 3rem;
  }
}

.postType_two_banner .c2 .content .block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.postType_two_banner .c2 .content .block:nth-child(5) {
  justify-content: center;
}

.postType_two_banner .c2 .content .block h1 {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.postType_two_banner .c2 .content .block h3 {
  font-family: var(--font-instrument-sans);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #0f0e0e;
}

.postType_two_banner .c2 .content .block img {
  max-width: 14rem;
}

.postType_two_banner .c2 .content .block p {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #79543f;
}

.postType_two_banner .c2 .content .block a {
  font-family: var(--font-Necto-Mono);
  font-size: var(--font16);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #260a0a;
  text-transform: uppercase;
}





/* CF7 response message only (no borders, readable, simple) */
.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: .8rem 0;
  border: none !important;
  background: none !important;
    font-family: var(--font-instrument-sans);
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffcd7a; /* soft yellow like your screenshot */
}


.wpcf7-validation-errors,
.wpcf7-mail-failed {
  color: #ff6b6b !important;
}

/* CF7 field error text (the small hint below the field) */
.wpcf7-not-valid-tip {
  color: #ff6b6b;        /* soft red for errors */
    font-family: var(--font-instrument-sans);
 font-size: 1.4rem;     /* make readable */
  font-weight: 500;
  margin-top: .4rem;
  background: none !important;
  border: none !important;
}

.wpcf7 {
    width: 100%;
}