@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap");
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 30px;
  width: min(400px, 100% - 32px);
  max-width: calc(100vw - 60px);
  background: #ffffff;
  border: 1px solid #05053f;
  color: #08072d;
  box-shadow: 0 24px 70px rgba(5, 5, 63, 0.16);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__inner {
  align-items: center;
  padding: 30px 20px 18px;
}
.cookie-banner p {
  margin: 0;
  font-family: "Gentium Basic", Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.35;
}
.cookie-banner__actions {
  display: flex;
  padding-top: 15px;
  gap: 10px;
}
.cookie-banner__button {
  width: 100%;
  min-height: 36px;
  padding: 0 20px;
  border: 1px solid #05053f;
  background: #05053f;
  color: #ffffff;
  cursor: pointer;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: 13px;
  transition: 0.18s ease;
}
.cookie-banner__button:hover {
  background: #08072d;
}
.cookie-banner__button--secondary {
  background: #ffffff;
  color: #05053f;
}
.cookie-banner__button--secondary:hover {
  background: #05053f;
  color: #ffffff;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    width: 100%;
    max-width: 100%;
    right: 0;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 45px 18px 30px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
  }
  .cookie-banner__button {
    width: 100%;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  height: 88px;
  padding: 0 max(30px, (100vw - 1690px) / 2);
  background: transparent;
  color: #08072d;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-header--dark {
  color: #08072d;
}
.site-header--dark .brand img {
  filter: none;
}
.site-header--dark {
  background: rgba(255, 255, 255, 0.5);
}
.site-header--light, .site-header.white {
  color: #ffffff;
  background: transparent;
}
.site-header--light .brand img, .site-header.white .brand img {
  filter: brightness(0) invert(1);
}
.site-header--menu-open, .site-header--light.site-header--menu-open, .site-header.white.site-header--menu-open {
  color: #08072d;
  background: #ffffff;
}
.site-header--menu-open .brand img, .site-header--light.site-header--menu-open .brand img, .site-header.white.site-header--menu-open .brand img {
  filter: none;
}

.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  height: 32px;
}
.brand img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.2s ease;
}
.brand__line {
  display: block;
  width: clamp(70px, 12vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 18%, currentColor 82%, transparent);
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 6px;
  cursor: pointer;
}

.cart-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 16px;
  padding: 48px;
  background: #ffffff;
  color: #08072d;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.mobile-menu a {
  color: #08072d;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    padding-inline: 20px;
    background: transparent;
  }
  .site-header--menu-open, .site-header--light.site-header--menu-open, .site-header.white.site-header--menu-open {
    color: #08072d;
    background: #ffffff;
  }
  .site-header--menu-open .brand img, .site-header--light.site-header--menu-open .brand img, .site-header.white.site-header--menu-open .brand img {
    filter: none;
  }
  .mobile-menu {
    padding: 30px;
  }
  .brand {
    gap: 12px;
    height: 24px;
  }
  .brand img {
    width: 24px;
    height: 24px;
  }
  .brand__line {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #08072d;
  background: #ffffff;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: inherit;
}

button, input {
  font: inherit;
}

.section-diamonds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(520px, 100%);
  margin-inline: auto;
}
.section-diamonds span {
  flex: 1;
  height: 1px;
  margin: 0 10px;
  background: linear-gradient(90deg, transparent, #05053f 18%, #05053f 82%, transparent);
}
.section-diamonds img {
  flex: 0 0 auto;
  width: 10px;
}
.section-diamonds img:nth-of-type(2) {
  width: 15px;
}

.product-hero {
  background: #000;
  height: 100vh;
  position: relative;
  z-index: 0;
}
.product-hero .mobile {
  display: none;
}
.product-hero__content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  max-width: calc(100vw - 60px);
}
.product-hero__content p {
  max-width: 840px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 3px;
}

.product-cuts {
  padding: 140px 48px;
}
.product-cuts .text {
  display: none;
}
.product-cuts__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.product-cuts__controls {
  display: none;
}

.cut-card {
  background: #020b35;
  position: relative;
  z-index: 0;
}
.cut-card img {
  width: 100%;
}
.cut-card__content {
  padding: 20px 15px;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  background: #05053f;
  height: 110px;
}
.cut-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.cut-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.product-banner img {
  height: 520px;
}

.product-cut-story {
  padding: 120px 48px;
  text-align: center;
}
.product-cut-story .section-diamonds {
  margin-bottom: 34px;
}
.product-cut-story h2 {
  margin: 0 0 48px;
  color: #05053f;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
}
.product-cut-story__content {
  max-width: 800px;
  margin: 0 auto 60px;
}
.product-cut-story__content p {
  margin: 0 0 18px;
  color: #05053f;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 2px;
  text-align: left;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  font-size: 14px;
  border: 1px solid #05053f;
  text-decoration: none;
  color: #05053f;
  padding: 12px 0;
}
.btn-outline:hover {
  color: #fff;
  background: #05053f;
}

@media (max-width: 900px) {
  .product-hero {
    height: 95vh;
  }
  .product-hero img.desktop {
    display: none;
  }
  .product-hero img.mobile {
    display: block;
  }
  .product-hero__content {
    display: none;
  }
  .product-cuts {
    position: relative;
    padding: 100px 0;
  }
  .product-cuts .text {
    display: block;
    padding-bottom: 80px;
  }
  .product-cuts .text p {
    width: calc(100vw - 60px);
    max-width: 500px;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 20px;
  }
  .product-cuts__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-inline: calc((100vw - min(78vw, 340px)) / 2);
  }
  .product-cuts__grid::-webkit-scrollbar {
    display: none;
  }
  .product-cuts__controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .product-cuts__dots {
    display: flex;
    gap: 12px;
    margin-left: -14px;
  }
  .product-cuts__dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 63, 0.18);
  }
  .product-cuts__dots button.is-active {
    background: #05053f;
  }
  .product-cuts__arrow {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    padding: 0;
    position: relative;
  }
  .product-cuts__arrow::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  .product-cuts__arrow[data-product-cuts-prev]::before {
    border-right: 10px solid #05053f;
  }
  .product-cuts__arrow[data-product-cuts-next]::before {
    border-left: 10px solid #05053f;
  }
  .cut-card {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .product-banner img {
    height: 260px;
  }
  .product-cut-story {
    padding: 80px 24px;
  }
  .product-cut-story .section-diamonds {
    width: min(280px, 100%);
    gap: 14px;
    margin-bottom: 28px;
  }
  .product-cut-story .section-diamonds img {
    width: 10px;
  }
  .product-cut-story .section-diamonds img:nth-of-type(2) {
    width: 14px;
  }
  .product-cut-story h2 {
    font-size: 34px;
    margin: 0 0 25px;
  }
  .product-cut-story__content {
    width: calc(100vw - 60px);
    max-width: 800px;
    margin: 0 auto 30px;
  }
  .product-cut-story__content p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(290px, 390px) 1fr;
  align-items: center;
  padding: 0 max(30px, (100vw - 1690px) / 2);
  gap: 42px;
  min-height: 100px;
  border-top: 15px solid #05053f;
}
.footer_holder {
  width: 100%;
  display: flex;
  align-items: flex-end;
  grid-gap: 42px;
}

.footer-logo {
  display: block;
  width: 36px;
  height: 36px;
}
.footer-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter {
  display: flex;
  flex: 1;
}
.newsletter input {
  width: 100%;
  height: 36px;
  border: 1px solid #d7d3df;
  padding: 0 12px;
  font-size: 12px;
  outline: none;
}
.newsletter button {
  height: 36px;
  border: 1px solid #05053f;
  background: #05053f;
  color: #ffffff;
  padding: 0 16px;
  font-size: 12px;
  cursor: pointer;
}

.footer-links {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 12px 54px;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-links__column {
  display: contents;
}
.footer-links a {
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .footer {
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 20px;
  }
  .footer-links {
    gap: 12px 20px;
    font-size: 9px;
  }
}
@media screen and (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding-block: 28px;
  }
  .footer_holder {
    justify-content: space-between;
    grid-gap: 30px;
  }
  .newsletter {
    width: 100%;
  }
  .footer-links {
    justify-self: start;
    grid-template-columns: repeat(2, auto);
    gap: 14px 80px;
  }
  .footer-links__column {
    display: contents;
  }
}/*# sourceMappingURL=style.css.map */