:root {
  --navy: #020915;
  --navy-soft: #07111f;
  --gold: #bd8c43;
  --gold-dark: #a17433;
  --paper: #f7f3ed;
  --ink: #111111;
  --muted: #5f594f;
  --line: rgba(255, 255, 255, .18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  padding: 8px 72px 0;
  color: #fff;
  background: var(--navy);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  line-height: 1;
}

.brand img,
.footer-brand img {
  display: block;
  width: 92px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #c99a52, var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 10px;
}

.btn-secondary {
  min-height: 36px;
  padding: 0 18px;
  font-size: 10px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 74px 72px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .56) 31%, rgba(0, 0, 0, .22) 57%, rgba(0, 0, 0, .04) 82%),
    url("../img/main-banner.jpg") center top / cover no-repeat,
    #15120e;
  background-repeat: no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: 42px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.6;
  font-weight: 500;
}

.value-bar,
.partner-panel {
  color: #fff;
  background: var(--navy);
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-height: 118px;
  padding: 28px 72px;
}

.value-bar article,
.partner-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  font-size: 32px;
}

.circle {
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  font-size: 17px;
}

.value-bar strong,
.partner-benefits strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.value-bar small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .83);
  font-size: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  align-items: center;
  gap: 58px;
  padding: 52px 72px;
  background: #f9f5ef;
}

.about-image {
  margin: 0;
}

.about-image img {
  display: block;
  width: 100%;
  height: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 16px 40px rgba(21, 14, 8, .15);
}

h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy p,
.partner-copy p,
.site-footer p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.about-copy {
  max-width: 520px;
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 42px;
  align-items: stretch;
  padding: 0 72px;
  overflow: hidden;
  background: var(--navy);
}

.partner-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: min(39vw, 456px);
  right: 0;
  height: 50px;
  background: #f9f5ef;
  border-bottom-left-radius: 56px;
  z-index: 0;
}

.partner-copy {
  position: relative;
  z-index: 1;
  padding: 34px 0 34px 0;
}

.partner-copy::before {
  display: none;
}

.partner-copy h2 {
  color: #fff;
}

.partner-copy p {
  color: rgba(255, 255, 255, .84);
}

.partner-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding: 34px 0;
}

.partner-benefits article {
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 0;
  padding: 34px 72px;
  color: #fff;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
}

.page-shell {
  background: #f9f5ef;
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 48px 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18)),
    url("../img/main-banner.jpg") center top / cover no-repeat;
}

.page-hero-collections {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18)),
    url("../img/collections-hero.jpg") center / cover no-repeat;
}

.page-logo {
  display: block;
  width: 78px;
  height: auto;
  margin-bottom: 28px;
}

.page-hero h1,
.detail-copy h1,
.form-panel h1 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-hero p,
.detail-copy p,
.form-panel p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

.category-tabs {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 26px 72px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  overflow-x: auto;
}

.category-tabs a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-tabs .active {
  color: var(--gold-dark);
}

.collection-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 72px;
}

.collection-card,
.product-card {
  display: block;
  overflow: hidden;
  background: #eee8df;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 6px;
}

.collection-card img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

.collection-card div {
  padding: 18px;
}

.collection-card h2 {
  margin: 0 0 6px;
  font-size: 15px;
}

.collection-card p,
.collection-card small {
  display: block;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  min-height: 440px;
  background: #f9f5ef;
}

.detail-copy {
  padding: 64px 72px;
}

.detail-copy p {
  color: var(--muted);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-row {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.feature-row span {
  padding-top: 34px;
  background: radial-gradient(circle at 50% 12px, transparent 0 6px, currentColor 7px 8px, transparent 9px);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  padding: 14px;
  text-align: center;
}

.product-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.product-card strong {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 72px;
  color: #fff;
  background: var(--navy);
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-weight: 600;
}

.split-page {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1fr);
  min-height: calc(100vh - 82px);
  background: #f9f5ef;
}

.form-panel {
  padding: 64px 72px;
  background: #f9f5ef;
}

.form-panel .dark-logo {
  filter: invert(1);
}

.form-panel p {
  color: var(--muted);
}

.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.compact-media {
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 1.5fr);
  min-height: auto;
  align-items: center;
}

.compact-media .form-panel {
  align-self: center;
}

.compact-media .image-panel {
  padding: 48px 72px 48px 0;
}

.compact-media .image-panel img {
  height: 540px;
  min-height: 0;
  border-radius: 6px;
  object-position: center center;
}

.access-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 3px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  font: inherit;
}

.form-notice {
  margin-top: 18px;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.form-notice[hidden] {
  display: none;
}

.form-notice.success {
  border: 1px solid rgba(33, 116, 76, .24);
  color: #1f6b49;
  background: rgba(33, 116, 76, .09);
}

.form-notice.error {
  border: 1px solid rgba(145, 52, 44, .24);
  color: #91342c;
  background: rgba(145, 52, 44, .09);
}

.access-form .btn:disabled {
  cursor: progress;
  opacity: .7;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.benefit-strip,
.stats-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 72px;
  background: #f1ebe2;
}

.benefit-strip article,
.stats-strip article {
  text-align: center;
}

.benefit-strip strong,
.stats-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.benefit-strip small,
.stats-strip small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.story-panel {
  align-self: center;
}

.story-text p {
  max-width: 620px;
  color: var(--muted);
}

.story-text strong {
  color: var(--ink);
}

.strength-discover {
  margin-top: 34px;
}

.strength-discover h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.1;
  text-transform: uppercase;
}

.strength-discover p {
  max-width: 720px;
  margin-bottom: 14px;
}

.dark-btn {
  background: var(--navy);
}

.clean-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}

.clean-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-dark);
}

.contact-list {
  margin-top: 28px;
}

.contact-list p {
  margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 18px;
    padding: 16px 24px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .value-bar,
  .about-section,
  .partner-panel,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .value-bar,
  .partner-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-panel {
    grid-template-columns: 1fr;
  }

  .partner-copy::before {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-hero,
  .category-tabs,
  .collection-grid,
  .product-grid,
  .detail-copy,
  .page-cta,
  .form-panel,
  .benefit-strip,
  .stats-strip {
    padding-left: 24px;
    padding-right: 24px;
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-hero,
  .split-page {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 460px;
  }

  .split-page {
    min-height: auto;
  }

  .compact-media .image-panel {
    padding: 0 24px 36px;
  }

  .compact-media .image-panel img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 14px;
    padding: 16px 18px;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand img {
    width: 80px;
  }

  .main-nav {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    width: 100%;
    overflow: visible;
    font-size: 13px;
  }

  .main-nav a {
    min-width: 0;
  }

  .header-actions {
    justify-self: stretch;
    justify-content: space-between;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-small {
    min-height: 32px;
    padding: 0 12px;
  }

  .hero {
    min-height: 520px;
    align-items: flex-end;
    padding: 48px 18px;
    background-position: 62% top;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .value-bar,
  .about-section,
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .value-bar {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .value-bar article {
    justify-content: flex-start;
  }

  .about-section {
    gap: 28px;
    padding: 36px 18px;
  }

  .about-image img {
    height: 260px;
    max-height: 260px;
  }

  .partner-panel {
    padding: 0 18px;
  }

  .partner-benefits {
    align-items: start;
    padding-top: 18px;
  }

  .site-footer {
    padding: 28px 18px;
  }

  .page-hero,
  .category-tabs,
  .collection-grid,
  .product-grid,
  .detail-copy,
  .page-cta,
  .form-panel,
  .benefit-strip,
  .stats-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero h1,
  .detail-copy h1,
  .form-panel h1 {
    font-size: 32px;
  }

  .collection-grid,
  .product-grid,
  .benefit-strip,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-card img {
    height: 300px;
  }

  .product-card img {
    height: 300px;
  }

  .detail-hero img,
  .image-panel img {
    min-height: 360px;
    height: 420px;
  }

  .compact-media .image-panel {
    padding: 0 18px 32px;
  }

  .compact-media .image-panel img {
    height: 360px;
  }

  .stats-strip,
  .benefit-strip {
    gap: 26px;
  }
}
