/* CSS Document */
:root {
  --gold: #816516;
}
section {
  padding-bottom: 0;
}


.pg_container {
  max-width: 80%;
  padding: 1.5rem 2.25rem;
  margin: 0 auto;

  p {
    font-size: 16px !important;
  }
}

@media (max-width: 900px) {
  .pg_container {
    max-width: 98%;
  }
}

.pg_breadcrumbs {
  background: var(--gray);
  font-size: .875rem;
}
.pg_new-arrivals_menu {
  background: var(--gold);

  a { color: #FFF; font-size: 16px; font-style: normal; font-weight: 400; line-height: 1.3125em;   }
  .pg_container { display: flex; justify-content: space-between; }
  .pg_left_nav { letter-spacing: 3.2px; text-transform: uppercase; }
  .pg_right_nav { display: flex; gap: 1.5rem; }
}



.pg_new-arrivals_menu a.active {
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}




/* ==========================================================================
   LAYOUT: hero
   ========================================================================== */
.na-hero {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
}

.na-hero__text {
    flex: 0 0 28%;
    max-width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
    box-sizing: border-box;
}

.na-hero__headline {
  font-family: var(--font-3);
  text-transform: none !important;
  color: #14335c; /* swap for their navy variable if one exists */
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: 0 !important;
}

.na-hero__body {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem) !important;
    line-height: 1.6;
    color: #222;
    margin: 0;
}

.na-hero__image {
    flex: 1 1 72%;
    max-width: 72%;
    overflow: hidden;
}

.na-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stack on smaller screens */
@media (max-width: 900px) {
    .na-hero {
        flex-direction: column;
    }
    .na-hero__text,
    .na-hero__image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .na-hero__text {
        padding: 2rem 1.5rem;
        order: 1;
    }
    .na-hero__image {
        order: 2;
        aspect-ratio: 16 / 10;
    }
    .na-hero__image img {
        height: auto;
    }
}




/* ==========================================================================
   LAYOUT: headline_content_image
   ========================================================================== */




.na_headline {
  color: var(--darkBlue);
  text-align: center;
  font-family: var(--font-3);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px; /* 142.857% */
  text-transform: uppercase;
  margin: 5rem 0;

  h2 {
    font-weight: 600;
    margin: auto 1rem;
  }
  p {
    text-transform: none;
    margin: 1rem;
  }
  a {
    text-transform: uppercase;
    background: var(--gold) !important;
    color: white;
    padding: 0.5rem 1.875rem;
    border-radius: 100rem;
    font-family: var(--font-1) !important;
    font-weight: 500;
    font-size: 14px;
    margin: 1rem;
    display: inline-block;
    letter-spacing: normal;
    transition: all 0.25s ease-in-out;
    
    &:hover {
      background: var(--darkBlue) !important;
    }
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

.page-id-52090 .na_headline {
  margin-top: 0rem;
  margin-bottom: 1rem;
}




/* ==========================================================================
   LAYOUT: product_tabs
   ========================================================================== */
.tabcontainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 4rem;
}
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 2rem;
}
.card {
  background: white;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  padding: 1rem;
  transition: all 0.25s ease-in-out;
  transform: translateY(0);

  &:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.25);
  }

  .card-label {
    color: var(--darkBlue);
    font-size: 13px;
  }

  .card-title {
    font-family: var(--font-1) !important;
    font-size: 1.5rem !important;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.54px;
    color: var(--darkBlue);
    text-transform: none !important;
  }
}

.tabpanel img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}
.tabs ul {
    margin: 0;
}
.tabs ul li {
  list-style: none;
  margin-left: 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  &:last-child {
    margin-bottom: 0rem;
  }
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-1);
  color: var(--darkBlue);
  padding: 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  font-weight: 600;
  transition: all 0.25s ease-in-out;

  &:hover {
    color: black;
  }
}
.tab-btn.is-active {
  margin-left: 1.5rem;
}
.tab-btn.is-active::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
}

.cta a {
    background: var(--darkBlue);
    color: white;
    border-radius: 100px;
    padding: 0.5rem 1rem;
}
.cta a:hover {
    background: var(--darkBlue);
    color: white;
}

/* Tab switching */
.tabpanel {
    display: none;
}
.tabpanel.is-active {
    display: block;
}

@media (width > 767px) {
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width > 1119px) {
    .wholething {
        display: grid;
        grid-template: 1fr 1fr / 300px 1fr;
        gap: 1rem;
    }
    .tabs {
        z-index: 1;
        grid-area: 1 / 1;
        margin: 2rem;
        overflow: hidden;
    }
    .tabs ul {
        background: white;
        padding: 3rem 0;
        overflow: hidden;
    }
    .tabs ul li {
        display: block;
        overflow: hidden;
    }

    .tabpanel {
        grid-area: 1 / 1 / -1 / -1;
        display: none; /* still hidden unless active */
    }
    .tabpanel.is-active {
        display: grid;
        grid-template: 1fr / 1fr 53rem;
        background: gray;
    }
    .tab-btn {
      &:hover {
        margin-left: 0.5rem;
      }
    }
    .tabpanel img {
        grid-area: 1 / 1 / -1 / -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tabcontainer {
        grid-area: 1 / 2;
        display: grid;
        grid-template-columns: 1fr;
        align-items: end;
    }
    .cards {
        display: flex;
        flex-wrap: wrap;
        margin: 2rem;
    }
    .cards .card {
        min-width: 15rem;
        max-width: 16rem;
        flex: 1 1 25%;
    }

    .cta a {
        background: white;
        color: var(--darkBlue);
    }
}




/* ==========================================================================
   LAYOUT: resources
   ========================================================================== */
.nar-resources {
  background: rgba(229, 227, 221, 0.40);
  padding: 5rem;
  & h2,
  & p {
      text-align: center;
  }
}
.nar-resources__headline {
  font-family: var(--font-3);
  color: var(--darkBlue);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.nar-resources__text {
    margin: 0 0 2.5rem;
    color: #222;
}

.nar-resources__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    text-align: left;
}

.nar-card {
  padding: 0 !important;
}
.nar-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.nar-card__media img,
.nar-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nar-playpause-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
}
.nar-playpause-btn svg circle {
    fill: rgba(0, 0, 0, 0.4);
}
.nar-playpause-btn svg path {
    fill: #fff;
}
.nar-playpause-btn .play {
    display: none;
}
.nar-playpause-btn .pause {
    display: block;
}

.nar-card__content {
    background: #fff;
    padding: 1.5rem;
}
.nar-card__headline {
    display: block;
    font-family: var(--font-3);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--darkBlue);
    text-decoration: none;
    margin-bottom: 1rem;
}
.nar-card__arrow {
    display: inline-block;
    color: var(--darkBlue);
    text-decoration: none;
    font-size: 1.25rem;
}

@media (max-width: 1119px) {
  .nar-resources__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nar-resources__cards {
    grid-template-columns: 1fr;
  }
}




/* ==========================================================================
   LAYOUT: product_category_header
AND
   LAYOUT: product_detail_header
   ========================================================================== */
.pch,
.pdh {
  display: flex;
  width: 100%;
  align-items: stretch;
  margin-bottom: 2rem;
}
.pch__image,
.pdh__image {
    flex: 1 1 50%;
    max-width: 50%;
    height: clamp(340px, 43vw, 620px);
    overflow: hidden;
}
.pch__image img, 
.pdh__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pch__image {
    height: clamp(394px, 50vw, 394px);
}


.pch__content,
.pdh__content {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: clamp(1.5rem, 4vw, 4rem);
}
.pch__content-inner,
.pdh__content-inner {
    max-width: clamp(320px, 41.6vw, 600px);
}

.pch__headline,
.pdh__headline {
  font-family: var(--font-3);
  color: var(--darkBlue);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.pch__text,
.pdh__text,
.pdh__text p {
    font-size: clamp(1rem, 1.1vw, 1.05rem) !important;
    line-height: 1.6;
    color: #222;
    margin: 0 0 2rem;
}
.pch__text p { font-size: clamp(1.25rem, 1.3125rem, 1.5rem) !important; line-height: 1.25em !important; }

.pdh__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
  
  &:hover * {
    color:var(--darkBlue)!important;
  }
  &:hover .pdh__cta-icon {
    background: var(--darkBlue);
  }
  
}
.pdh__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.pdh__cta-text {
    font-family: var(--font-3);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 1.3125rem;
    color: var(--gold);
}


@media (max-width: 768px) {
    .pch,
    .pdh {
        flex-direction: column;
    }
    .pch__image,
    .pch__content,
    .pdh__image,
    .pdh__content {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .pch__image,
    .pdh__image {
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .pch__content-inner,
    .pdh__content-inner {
        max-width: none;
    }
    .pch__content,
    .pdh__content {
        padding: 2rem 1.5rem;
    }
}


/* ==========================================================================
   LAYOUT: product_intro
   ========================================================================== */

.pi {
    background: #fff;
    padding: 4rem 0;
  
  /*&:nth-child(odd) { background: red !important; }*/ 
}



.pi__container {
    display: grid;
    
    gap: 3rem;
    align-items: start;
}
.pi--right .pi__container {
  grid-template-columns: 40% 1fr;  
}
.pi--left .pi__container {
  grid-template-columns: 1fr 40%;
}


.pi__content {
    order: 1;
}
.pi__gallery {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Flip position via order, not markup order */
.pi--left .pi__content {
    order: 2;
}
.pi--left .pi__gallery {
    order: 1;
}

.pi__label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--darkBlue);
    margin-bottom: 0.75rem;
}
.pi__headline {
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--darkBlue);
    margin: 0 0 1rem;
  
  a { font-family: inherit !important;font-size: inherit !important;color:inherit !important; 
    &:hover { color: var(--gold) !important; }
  }
  
}
.pi__text {
    color: #333;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 34rem;
  
  strong { font-weight: bold !important; }
  
  * { margin-bottom: 1em !important; }
  
  ul { margin-left: 2rem; color: var(--gold); list-style-type: square; }
  li { color: var(--darkBlue); font-size: 1rem !important; }
}

.pi__swatch {
    max-width: 180px;
    margin-bottom: 2rem;
}
.pi__swatch img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.pi__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--darkBlue) !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 1.75rem;
    transition: all 0.25 ease;
  &:hover {
    color: var(--gold) !important;
  }
  & svg {
    transition: transform 0.3s ease;
  }
  
  &:hover svg {
    transform: translateX(0.5rem);
  }
}

.pi__download {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
  &:hover {
    color: var(--gold) !important;
  }
}
.pi__download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.pi__download-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
    color: var(--gold);
}

/* Gallery grid — count-based rules */
.pi__gallery--count-1,
.pi__gallery--count-2 {
    grid-template-columns: 1fr;
}
.pi__gallery-item--hero {
    grid-column: 1 / -1;
}

.pi__gallery-image {
    aspect-ratio: 376 / 284 !important;
    overflow: hidden;
}
.pi__gallery:not(.pi__gallery--count-1):not(.pi__gallery--count-2) .pi__gallery-item:not(.pi__gallery-item--hero) .pi__gallery-image {
    aspect-ratio: 1 / 1;
}
.pi__gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pi__gallery-item figcaption {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--darkBlue);
}


@media (max-width: 900px) {
    .pi--left .pi__container,
    .pi--right .pi__container {
        grid-template-columns: 1fr;
    }
    .pi__content,
    .pi__gallery {
        order: 0;
    }
    .pi .pi__gallery {
        order: -1 !important; /* images always on top on mobile, regardless of desktop position */
    }
}










/* ==========================================================================
   LAYOUT: species_availability
   ========================================================================== */
.psa {
    background: #fff;
    padding: 0;
}
.psa__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.psa__content {
  order: 1;
  padding-top: 2rem;
}
.psa__image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.psa--left .psa__content {
    order: 2;
}
.psa--left .psa__image {
    order: 1;
}
.psa__image img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  width: auto;
}

.psa__headline {
    font-family: var(--font-3) !important;
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--darkBlue);
    text-transform: uppercase;
    margin: 0 0 1rem;
}
.psa__text {
    color: #333;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 34rem;
}

.psa__label {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #555;
    margin-bottom: 0.75rem;
}

.psa__lines-block {
    margin-bottom: 2rem;
}
.psa__lines {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.psa__line-item {
    font-family: var(--font-3) !important;
    font-size: 30px !important;
  font-weight: 600;
    color: var(--darkBlue);
}

.psa__material-group {
    margin-bottom: 1.5rem;
}
.psa__dots {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.psa__dot {
  text-align: center;
  max-width: 8rem;
}
.psa__dot-swatch {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto 0.5rem;
}
.psa__dot-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.psa__dot-label {
    font-family: var(--font-1) !important;
    font-size: 15px !important;
    color: var(--darkBlue) !important;
}

@media (max-width: 900px) {
    .psa__container {
        grid-template-columns: 1fr;
    }
    .psa__content,
    .psa__image {
        order: 0;
      justify-content: flex-start;
    }
    .psa .psa__image {
        order: -1 !important;
    }
}

/* ==========================================================================
   LAYOUT: material_availability
   (reuses .psa__headline, .psa__text, .psa__label, .psa__material-group,
   .psa__dots, .psa__dot, .psa__dot-swatch, .psa__dot-label from species_availability)
   ========================================================================== */
.pma {
    background: #fff;
    padding: 4rem 0;
}
.pma__container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    align-items: start;
}
.pma__content {
  padding-top: 2rem;
}
.pma__groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 900px) {
    .pma__container {
        grid-template-columns: 1fr;
    }
}



















/* ==========================================================================
   LAYOUT: product_gallery
   ========================================================================== */
.pgal {
    background: #fff;
    padding: 4rem 0;
}

.pgal__row {
    width: 100%;
}
.pgal__row--text {
  /*
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  */
  margin-bottom: 2rem;
}
.pgal__row--images {
    margin-bottom: 1.5rem;
}

.pgal__headline {
    font-family: var(--font-3) !important;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--darkBlue);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.pgal__text {
    color: #333;
    margin: 0;
    max-width: 40rem;
}

.pgal__scroller {
    width: 100%;
    overflow: hidden;
}
.pgal__track {
    display: flex;
    gap: 1.25rem;
    height: clamp(240px, 34vw, 560px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none; /* Firefox */
}
.pgal__track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.pgal__item {
    flex: 0 0 auto;
    height: 100%;
    scroll-snap-align: start;
}
.pgal__item img {
    height: 100%;
    width: auto;
    display: block;
}

.pgal__controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.pgal__progress-track {
    position: relative;
    flex: 1 1 auto;
    height: 2px;
    background: #ddd;
    border-radius: 2px;
}
.pgal__progress-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.pgal__arrows {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.pgal__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.pgal__arrow:hover {
    background: var(--gold);
    color: #fff;
}
.pgal__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}
.pgal__arrow:disabled:hover {
    background: transparent;
    color: var(--gold);
}

@media (max-width: 600px) {
    .pgal__track {
        height: 220px;
    }
    .pgal__controls {
        gap: 1rem;
    }
}








/* ==========================================================================
   LAYOUT: color_pairings
   ========================================================================== */
.cpc {
    background: #fff;
    padding: 4rem 0;
}
.cpc__container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: start;
}
.cpc__content {
  padding-top: 2rem;  
}
.cpc__headline {
    font-family: var(--font-3) !important;
    font-weight: 600 !important;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--darkBlue);
    text-transform: uppercase;
    margin: 0 0 1rem;
}
.cpc__text {
    color: #333;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.cpc__image {
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.cpc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cpc__grid {
    display: grid;
    /* Default: 3 columns, viewport ≥ 1360px */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
}

.cpc__item {
    display: block;
    text-decoration: none;
    color: inherit;
}
.cpc__swatch {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 1rem;
}
.cpc__swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cpc__caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 1.25rem !important;
}
.cpc__title {
    font-weight: 700;
    color: var(--darkBlue);
    font-size: 1.1rem;
}
.cpc__arrow {
    display: flex;
    align-items: center;
    color: var(--darkBlue);
    transition: transform 0.2s ease;
}
.cpc__item:hover .cpc__arrow {
    transform: translateX(0.5rem);
}


/* 2 columns, 1025px–1359px */
@media (max-width: 1359px) {
  .cpc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 column (still side-by-side with content), 901px–1024px */
@media (max-width: 1024px) {
  .cpc__container {
    grid-template-columns: 60% 40%;
  }
  .cpc__grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
    .cpc__container {
        grid-template-columns: 1fr;
    }
  .cpc__content {
    padding-top: 0rem;  
  }
    .cpc__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






/* ==========================================================================
   LAYOUT: related_products
   ========================================================================== */
.rpc {
    padding: 4rem 0;
}
.rpc--darkBlue {
    background: var(--darkBlue);
    color: #fff;
}
.rpc--gold {
    background: var(--gold);
    color: #fff;
}
.rpc--stone {
    background: #F5F4F0;
    color: var(--darkBlue);
}
.rpc--none {
    background: transparent;
    color: var(--darkBlue);
}

.rpc__headline {
    font-family: var(--font-3) !important;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: inherit;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.rpc__text {
    color: inherit;
    margin: 0 0 2rem;
    max-width: 40rem;
}

.rpc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.rpc__item {
    display: block;
    text-decoration: none;
    color: inherit;
}
.rpc__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.rpc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.rpc__item:hover .rpc__image img {
    transform: scale(1.08);
}

.rpc__caption {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}
.rpc__title {
  font-weight: 700;
  font-size: 1.6875rem !important;
  color: white;
}


.rpc__arrow {
    display: flex;
    align-items: center;
    color: white;
    transition: transform 0.2s ease;
}
.rpc__item:hover .rpc__arrow {
    transform: translateX(0.5rem);
}

.rpc--none .rpc__title,
.rpc--none .rpc__arrow,
.rpc--stone .rpc__title,
.rpc--stone .rpc__arrow {
    color: var(--darkBlue);
}



@media (max-width: 900px) {
    .rpc__grid {
        grid-template-columns: 1fr;
    }
}






/* ==========================================================================
   LAYOUT: door_details
   ========================================================================== */
.dd {
    background: #fff;
    padding: 4rem 0;
}
.dd__headline {
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}
.dd__text {
    color: #333;
    line-height: 1.6;
    margin: 0 0 2.5rem;
}

.dd__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  
  &:last-child {
    margin-bottom: 0;
  }
}

.dd__image img {
    width: 100%;
    height: auto;
    display: block;
}

.dd__doorname {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  color: #000;
  margin: 0 0 1.25rem;
  text-transform: none !important;
  font-family: var(--font-1) !important;
}

.dd__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: #fff;
}
.dd__card {
    background: #F5F4F0;
    padding: 1.5rem;
}
.dd__detail {
  display: block;
  font-family: var(--font-3) !important;
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  line-height: 1.2em;
  margin-bottom: 0.75rem;
}
.dd__label {
    display: block;
    font-family: var(--font-1) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .dd__row {
        grid-template-columns: 1fr;
    }
    .dd__image {
        order: -1;
    }
    .dd__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
















