@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 {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #08072d;
  background: #ffffff;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
}

h1, h2, .btn, a, button {
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

#top {
  margin-top: 91px;
}

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

button, input {
  font: inherit;
}

.section-pad {
  padding-inline: clamp(24px, 8vw, 80px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 18px;
  border: 1px solid #08072d;
  background: #ffffff;
  color: #08072d;
  font-size: 13px;
  line-height: 1;
  transition: 0.2s ease;
}
.btn:hover {
  background: #08072d;
  color: #ffffff;
}
.btn--light {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.btn--light:hover {
  background: #ffffff;
  color: #08072d;
}

.hero {
  position: relative;
  max-width: 1690px;
  margin: 0 auto 72px;
  height: clamp(450px, 50vw, 900px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 5, 63, 0) 0%, rgba(101, 101, 101, 0.11) 100%);
}
.hero__image {
  filter: brightness(0.86);
  background: #08072d;
}
.hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 74px);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.hero a {
  margin-top: 8px;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.intro-grid,
.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}

.intro-grid__image {
  min-height: 680px;
}
.intro-grid__image img {
  filter: contrast(1.15) saturate(1.2);
}

.intro-grid__content {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 680px;
  text-align: center;
}
.intro-grid__content h2 {
  margin: 28px 0 50px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}
.intro-grid__content h2 br:nth-of-type(2) {
  display: none;
}

.decor-line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(420px, 80%);
}
.decor-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7d3df, transparent);
}
.decor-line .diamond-detail {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.decor-line .diamond-detail.larger {
  width: 18px;
  height: 18px;
}

.stone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(430px, 100%);
  margin-bottom: 42px;
}
.stone-row img {
  aspect-ratio: 1/1.28;
}

.stone-row--mobile {
  display: none;
}

.performance-grid {
  grid-template-columns: 1fr 1.2fr;
  background-image: radial-gradient(#d7d3df 0.8px, transparent 0.8px);
  background-size: 14px 14px;
}

.performance-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 650px;
  text-align: center;
}
.performance-card img {
  width: min(520px, 100%);
  height: auto;
  aspect-ratio: 1.6/1;
  margin-bottom: 54px;
  -o-object-position: 30% 95%;
     object-position: 30% 95%;
}
.performance-card h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
}
.performance-card p {
  max-width: 520px;
  margin: 0 0 52px;
  font-size: 14px;
  line-height: 1.75;
}

.performance-image {
  min-height: 650px;
}
.performance-image img {
  -o-object-position: 42% center;
     object-position: 42% center;
}

.stats {
  padding: 140px 92px 120px;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
}
.stats h3,
.stats strong,
.stats p,
.stats span {
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.stats-slider {
  position: relative;
  overflow: hidden;
}

.stats-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  transition: transform 0.5s ease;
}

.stat-card {
  min-width: 0;
}
.stat-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}
.stat-card__box {
  min-height: 145px;
  padding: 22px 24px;
  background: #05053f;
  color: #ffffff;
}
.stat-card__box strong {
  display: block;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.stat-card__box p {
  margin: 0;
  max-width: 310px;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.bar {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.bar::after {
  content: var(--num);
  display: block;
  position: absolute;
  top: 0;
  left: var(--value);
}
.bar i {
  display: block;
  width: var(--value);
  height: 13px;
  margin-top: 5px;
  background: #05053f;
}
.bar--diamond i {
  background: rgba(5, 5, 63, 0.62);
}

.slider-arrow,
.slider-dots {
  display: none;
}

.outperform {
  position: relative;
  min-height: 340px;
  color: #ffffff;
  text-align: center;
}
.outperform::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 63, 0.38);
}
.outperform__image {
  position: absolute;
  inset: 0;
}
.outperform__image--mobile {
  display: none;
}
.outperform > div {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 340px;
}
.outperform h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
}

@media (max-width: 900px) {
  #top {
    margin-top: 63px;
  }
  .hero {
    height: max(350px, 85vh);
    margin-top: 0;
    margin-bottom: 0;
    padding-inline: 0;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero a {
    font-size: 12px;
  }
  .hero__content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10vh;
  }
  .intro-grid {
    display: flex;
    flex-direction: column;
  }
  .intro-grid__content {
    order: -1;
    min-height: 150px;
    padding: 45px 34px;
  }
  .intro-grid__content .decor-line,
  .intro-grid__content .stone-row--desktop {
    display: none;
  }
  .intro-grid__content h2 {
    margin: 0 0 30px;
    font-size: 30px;
    line-height: 1.1;
  }
  .intro-grid__content h2 br:nth-of-type(1) {
    display: none;
  }
  .intro-grid__content h2 br:nth-of-type(2) {
    display: initial;
  }
  .intro-grid__content .btn {
    min-height: 26px;
    padding: 12px 24px;
    font-size: 12px;
  }
  .intro-grid__image {
    min-height: 210px;
  }
  .performance-grid {
    display: flex;
    flex-direction: column;
    background-image: none;
  }
  .performance-card {
    order: -1;
    min-height: auto;
    padding-block: 32px;
  }
  .performance-card > img {
    display: none;
  }
  .performance-card .stone-row--mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin: 40px 0 0;
  }
  .performance-card .stone-row--mobile img {
    display: block;
    aspect-ratio: 1/1.3;
    margin: 0;
    -o-object-position: center center;
       object-position: center center;
  }
  .performance-card h2 {
    margin-bottom: 14px;
    font-size: 34px;
    max-width: 333px;
  }
  .performance-card p {
    max-width: 333px;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.55;
    text-align: justify;
  }
  .performance-card .btn {
    min-height: 28px;
    padding: 12px 24px;
    font-size: 12px;
  }
  .performance-image {
    min-height: 395px;
  }
  .performance-image img {
    -o-object-position: center center;
       object-position: center center;
  }
  .stats {
    padding: 0;
    overflow: hidden;
  }
  .stats-slider {
    width: 100%;
    padding: 0 0 42px;
    overflow: visible;
  }
  .stats-track {
    display: flex;
    gap: 0;
    width: 100%;
  }
  .stat-card {
    flex: 0 0 100%;
    padding: 38px 38px 0;
  }
  .stat-card h3 {
    font-size: 24px;
  }
  .stat-card__box {
    min-height: 88px;
    padding: 14px 16px;
  }
  .stat-card__box strong {
    margin-bottom: 14px;
    font-size: 11px;
  }
  .stat-card__box p {
    font-size: 8px;
  }
  .bar {
    margin-top: 10px;
    font-size: 8px;
  }
  .bar i {
    height: 8px;
  }
  .slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 26px;
    height: 52px;
    border: 0;
    background: transparent;
    color: #05053f;
    font-size: 24px;
    cursor: pointer;
  }
  .slider-arrow--prev {
    left: 8px;
  }
  .slider-arrow--next {
    right: 8px;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .slider-dots button {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 63, 0.25);
  }
  .slider-dots button.is-active {
    background: #05053f;
  }
  .outperform {
    min-height: 520px;
  }
  .outperform__image--desktop {
    display: none;
  }
  .outperform__image--mobile {
    display: block;
    -o-object-position: center top;
       object-position: center top;
  }
  .outperform::after {
    background: rgba(5, 5, 63, 0.22);
  }
  .outperform > div {
    min-height: 520px;
    align-content: end;
    padding-bottom: 34px;
  }
  .outperform h2 {
    font-size: 38px;
  }
  .outperform .btn--desktop {
    display: none;
  }
}
.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 */