:root {
  --black: #0b0b0b;
  --deep: #1a1a1a;
  --graphite: #2a2a2a;
  --white: #ededed;
  --sand: #a89f8a;
  --muted: #a4a19a;
  --line: rgba(237, 237, 237, 0.12);
  --line-strong: rgba(168, 159, 138, 0.34);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body::selection {
  background: rgba(168, 159, 138, 0.35);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 78% 16%, rgba(168, 159, 138, 0.14), transparent 28rem),
    linear-gradient(145deg, #050505 0%, #0b0b0b 54%, #171717 100%);
  background-size: 78px 78px, 78px 78px, cover, cover;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 5px);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.header-nav,
.hero-actions,
.hero-product-tag,
.center {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  display: block;
  width: auto;
  max-width: 172px;
  height: 38px;
  object-fit: contain;
  background: var(--white);
}

.brand .logo-image {
  max-width: 154px;
  height: 34px;
}

.logo-image.is-missing {
  display: none;
}

.logo-fallback {
  display: none;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.logo-slot.logo-missing .logo-fallback {
  display: inline-flex;
}

.header-nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-nav a {
  transition: color 180ms ease;
}

.header-nav a:hover {
  color: var(--white);
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  padding: 118px clamp(18px, 5vw, 64px) 58px;
}

.hero-copy {
  max-width: 780px;
}

.hero-logo {
  margin-bottom: 28px;
}

.hero-logo .logo-image {
  height: 54px;
  max-width: 230px;
}

.hero-logo .logo-fallback {
  border-left: 3px solid var(--sand);
  padding-left: 14px;
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 22px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.7vw, 96px);
}

h2 {
  font-size: clamp(34px, 5.2vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.section-inner p,
.lead-panel p,
.site-footer p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 159, 138, 0.48);
  padding: 0 22px;
  color: var(--white);
  background: rgba(237, 237, 237, 0.035);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 237, 237, 0.56);
}

.button.primary {
  background: var(--sand);
  color: #0b0b0b;
  box-shadow: 0 18px 46px rgba(168, 159, 138, 0.18);
}

.button.full {
  width: 100%;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.athlete-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(168, 159, 138, 0.24);
  background: #070707;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.athlete-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: brightness(1.18) contrast(1.08) saturate(0.9);
}

.athlete-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 18%, rgba(168, 159, 138, 0.18), transparent 17rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
  opacity: 1;
}

.athlete-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(237, 237, 237, 0.11);
  pointer-events: none;
}

.editorial-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  gap: 8px;
  color: var(--white);
  text-transform: uppercase;
}

.editorial-frame span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
}

.editorial-frame strong {
  max-width: 150px;
  font-size: 13px;
  line-height: 1.3;
}

.hero-product-tag {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(237, 237, 237, 0.16);
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-product-tag strong {
  color: var(--white);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.section-inner,
.section-heading {
  max-width: 980px;
}

.narrow {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.philosophy {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(168, 159, 138, 0.08), transparent 22% 78%, rgba(168, 159, 138, 0.05)),
    linear-gradient(180deg, rgba(237, 237, 237, 0.035), rgba(0, 0, 0, 0.25));
}

.collection,
.forged-section,
.kifaru-man {
  max-width: 1440px;
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 34px;
}

.collection-copy {
  display: grid;
  gap: 10px;
  max-width: 700px;
}

.collection-copy p {
  margin: 0;
}

.collection-copy p:nth-child(2) {
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-grid,
.lifestyle-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.lifestyle-card,
.value-card,
.lead-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.07), rgba(237, 237, 237, 0.02)),
    #101010;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34);
}

.product-card {
  min-height: 560px;
  padding: 18px;
}

.lifestyle-card {
  padding: 18px;
}

.entry-media {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  margin: 0 0 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 18%, rgba(168, 159, 138, 0.12), transparent 13rem),
    linear-gradient(145deg, #1b1b1b, #050505 62%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.42), 0 28px 70px rgba(0, 0, 0, 0.38);
}

.entry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.36)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 24% 76%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.entry-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.04) saturate(0.9);
}

.entry-image.is-missing {
  display: none;
}

.entry-media figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--sand);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  z-index: 0;
}

.lifestyle-media {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.42), 0 28px 70px rgba(0, 0, 0, 0.38);
}

.lifestyle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.48)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.06), transparent 26% 76%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.lifestyle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.92);
}

.lifestyle-card h3 {
  color: var(--white);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.product-specs span {
  border: 1px solid rgba(168, 159, 138, 0.28);
  background: rgba(168, 159, 138, 0.06);
  color: var(--sand);
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-card {
  min-height: 168px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.lead-section {
  border-block: 1px solid var(--line);
}

.lead-panel {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(24px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  outline: none;
  padding: 0 14px;
}

input:focus {
  border-color: rgba(168, 159, 138, 0.76);
  box-shadow: 0 0 0 3px rgba(168, 159, 138, 0.08);
}

.form-message {
  min-height: 26px;
  margin: 0;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
}

.center {
  justify-content: center;
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 38px 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-logo .logo-image {
  height: 42px;
  max-width: 190px;
}

.site-footer strong,
.footer-logo .logo-fallback {
  font-size: 18px;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-section,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 112px;
  }

  .hero-visual {
    place-items: start;
  }

  .athlete-card {
    width: min(100%, 620px);
    min-height: 560px;
  }

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

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    padding: 14px 16px;
  }

  .header-nav {
    display: none;
  }

  .brand {
    font-size: 13px;
  }

  .brand .logo-image {
    height: 30px;
    max-width: 142px;
  }

  .hero-logo {
    margin-bottom: 20px;
  }

  .hero-logo .logo-image {
    height: 42px;
    max-width: 190px;
  }

  .hero-section {
    min-height: auto;
    padding: 48px 16px 44px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
  }

  .athlete-card {
    min-height: 480px;
    background-position: center top;
  }

  .hero-product-tag {
    display: grid;
  }

  .section {
    padding: 64px 16px;
  }

  .product-card {
    min-height: auto;
  }

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

  .value-card {
    min-height: 112px;
  }

  .lead-panel {
    padding: 22px;
  }
}
