:root {
  --color-bg: #3E2B30;
  --color-primary: #C1C5A4;
  --color-muted: rgba(193, 197, 164, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: #d24520;
  color: #3E2B30;
}

::-moz-selection {
  background: #d24520;
  color: #3E2B30;
}

html,
body {
  font-family: 'polymath', sans-serif;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-family: "Jost", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

h2, .h2 {
  font-family:'tuppence', sans-serif;
  font-size: 26px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
}

h4, .h4 {
  font-family: 'polymath', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
}

h5, .h5 {
  font-family: 'tuppence', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top:0;
  margin-top: 0;
  text-transform: uppercase;
}

.top-bar {
  height: 50px;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__content {
  white-space: nowrap;
  padding-right: 10px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 3rem);
  flex: 1;
  min-height: calc(100vh - 70px);
  max-height: calc(100vh - 70px);
  padding: clamp(1rem, 3vh, 2.5rem) clamp(1rem, 4vw, 3rem);
}

.logo {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.logo__top {
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.logo__bottom {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.products {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 1600px;
  flex-shrink: 1;
  min-height: 0;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0rem;
}

.product__icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.product__icon svg {
  width: 100%;
  height: 100%;
}

.product__title {
    font-family: 'tuppence', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom:10px;
}

.product__desc {
    font-size: clamp(0.6rem, 0.95vw, 0.7rem);
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    max-width: 14em;
    margin-top: 5px;
}
.description h2 {
  margin-bottom: 10px;
}
.description p {
  font-size: 0.7em;
  color: #fff!important;
}


.footer {
  position: fixed;
  bottom: clamp(0.75rem, 2vh, 1.25rem);
  left: 30px;
  right: clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer a {
  color: var(--color-primary);
  text-decoration: none;
  text-underline-offset: 0.15em;
}

.footer a:hover {
  opacity: 0.8;
}

.footer__right {
  text-align: right;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .products {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  html,
  body {
    overflow: auto;
  }

  .splash {
    max-height: none;
    min-height: calc(100vh - 70px);
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .products {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer__right {
    text-align: left;
  }
}
