:root {
  --ink: #1d1d1d;
  --ivory: #f5f1ec;
  --taupe: #d8cec4;
  --olive: #6f6250;
  --gold: #bf9e7e;
  --paper: #efe6dc;

  --serif: Didot, "Bodoni 72", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
}

body {
  min-height: 100vh;
}

.page-frame {
  width: 100%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(245, 241, 236, 0.72);
  border-bottom: 1px solid rgba(29, 29, 29, 0.06);
}

.top-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  width: min(1200px, 95vw);
  margin: 0 auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.top-nav a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 auto;
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero,
.product-showcase,
.feature-card {
  scroll-margin-top: 5.8rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(110%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.35), rgba(18, 18, 18, 0.18), rgba(18, 18, 18, 0.35));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(820px, 92vw);
  padding: 2.2rem 1.8rem;
}

.brand-wordmark {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 400;
  opacity: 0.95;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-row {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta-primary {
  color: #161616;
  background: #fff;
}

.cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.cta:hover {
  transform: translateY(-1px);
}

.intro-line {
  min-height: 34vh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  background: var(--ivory);
  text-align: center;
}

.intro-line p {
  max-width: none;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}

.product-showcase {
  padding: 3.5rem 0 2.5rem;
  background: #fbfaf7;
}

.showcase-heading {
  width: min(1320px, 97.5vw);
  margin: 0 auto;
  padding: 0 1rem 2.65rem;
}

.showcase-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.product-grid {
  width: min(1320px, 97.5vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 29, 29, 0.09);
  border-bottom: 1px solid rgba(29, 29, 29, 0.09);
  background: #fcfbf8;
}

.product-card {
  min-width: 0;
  border-right: 1px solid rgba(29, 29, 29, 0.09);
}

.product-card:last-child {
  border-right: 0;
}

.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-media {
  position: relative;
  aspect-ratio: 0.9 / 1.18;
  background: #fff;
  overflow: hidden;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.product-image-primary {
  object-fit: contain;
  padding: clamp(1.7rem, 2.5vw, 2.4rem);
  opacity: 1;
}

.product-image-hover {
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.035);
}

.product-link:hover .product-image-primary,
.product-link:focus-visible .product-image-primary {
  opacity: 0;
  transform: scale(0.985);
}

.product-link:hover .product-image-hover,
.product-link:focus-visible .product-image-hover {
  opacity: 1;
  transform: scale(1);
}

.product-link:focus-visible {
  outline: 2px solid rgba(29, 29, 29, 0.28);
  outline-offset: -2px;
}

.product-meta {
  padding: 0.95rem 1rem 1.2rem;
  background: #fffdfa;
}

.product-name,
.product-price {
  margin: 0;
}

.product-name {
  font-size: 0.98rem;
  line-height: 1.25;
  text-transform: capitalize;
}

.product-price {
  margin-top: 0.4rem;
  color: #655f57;
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  background: var(--paper);
}

.feature-card {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: min(82vh, 760px);
  object-fit: cover;
  display: block;
}

.feature-copy {
  padding: 1.35rem 1.2rem 1.3rem;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.feature-copy p {
  margin: 0.6rem 0 0;
  color: #5a564f;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .top-nav {
    width: 94vw;
  }

  .nav-list {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 66px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-showcase {
    padding-bottom: 2rem;
  }

  .showcase-heading {
    width: 94vw;
    padding-inline: 0;
  }

  .product-grid {
    width: 94vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:nth-child(2n) {
    border-right: 0;
  }

  .intro-line {
    min-height: 28vh;
    padding: 3rem 1.25rem;
  }

  .intro-line p {
    font-size: 2.1rem;
    white-space: normal;
    max-width: 16ch;
  }
}

@media (max-width: 500px) {
  .hero-content {
    padding-inline: 1rem;
  }

  .hero-video {
    transform: scale(1.06);
  }

  .cta {
    width: min(100%, 16.5rem);
  }

  .cta-row {
    flex-direction: column;
  }

  .showcase-heading h2 {
    font-size: 1.55rem;
    line-height: 1.05;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 29, 0.09);
  }

  .product-card:last-child {
    border-bottom: 0;
  }

  .product-media {
    aspect-ratio: 1 / 1.12;
  }

  .intro-line p {
    font-size: 1.9rem;
    max-width: 13ch;
  }
}

.hero-content,
.product-showcase,
.feature-grid {
  animation: appear 1.05s ease;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
