:root {
  --near-black: #0f0f10;
  --deep-charcoal: #171717;
  --stone: #f3f0eb;
  --warm-gray: #e7e2da;
  --mid-gray: #777777;
  --fog-blue: #9ca8b2;
  --lavender-gray: #d6d0de;
  --product-card: rgba(231, 226, 218, 0.56);
  --product-photo-field: #e7e2da;
  --product-photo-border: rgba(15, 15, 16, 0.1);
  --line: rgba(15, 15, 16, 0.08);
  --line-strong: rgba(15, 15, 16, 0.16);
  --shadow-soft: 0 24px 60px rgba(15, 15, 16, 0.08);
  --max-width: 1240px;
  --desktop-pad: clamp(2.5rem, 4vw, 4rem);
  --mobile-pad: 1.25rem;
  --section-space: clamp(4.5rem, 10vw, 10rem);
  --heading-font: "Bahnschrift SemiCondensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--stone);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-inline: var(--desktop-pad);
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.75rem, 9vw, 7.5rem);
  max-width: 7ch;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

p {
  margin: 0;
  font-size: 1rem;
  color: rgba(15, 15, 16, 0.8);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--near-black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--near-black);
  color: var(--stone);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #252527;
  border-color: #252527;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(243, 240, 235, 0.82);
  border-bottom: 1px solid rgba(243, 240, 235, 0.4);
  padding-bottom: 0.2rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 240, 235, 0.9);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(15, 15, 16, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  gap: 1.5rem;
}

.wordmark {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(243, 240, 235, 0.92);
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 240, 235, 0.9);
}

.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .wordmark {
  color: var(--near-black);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(243, 240, 235, 0.3);
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(15, 15, 16, 0.14);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: stretch;
  color: var(--stone);
  background: var(--deep-charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-barbell.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 16, 0.82) 0%, rgba(15, 15, 16, 0.58) 32%, rgba(15, 15, 16, 0.18) 58%, rgba(15, 15, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(15, 15, 16, 0.18) 0%, rgba(15, 15, 16, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-copy {
  max-width: 36rem;
  padding-top: 6vh;
}

.intro {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.products {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero .eyebrow,
.hero-text {
  color: rgba(243, 240, 235, 0.84);
}

.hero-text {
  margin-top: 1.5rem;
  max-width: 31rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.intro-layout,
.philosophy-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.intro-copy p,
.notify-copy p,
.philosophy-copy p {
  max-width: 40rem;
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--product-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(15, 15, 16, 0.06);
}

.product-meta {
  display: flex;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--line-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.product-image-wrap {
  background: var(--product-photo-field);
  border: 1px solid var(--line);
  margin-top: 1rem;
  min-height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.2vw, 1rem);
}

.product-image-wrap img {
  aspect-ratio: 4 / 5;
  width: min(100%, 26rem);
  height: auto;
  border: 1px solid var(--product-photo-border);
  box-shadow: 0 14px 38px rgba(15, 15, 16, 0.07);
  object-fit: cover;
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding-top: 1.5rem;
}

.product-type {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.notify-panel {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
}

.notify-form {
  margin-top: 2rem;
}

.fine-print {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.ml-embedded {
  width: 100%;
}

.ml-embedded .ml-form-embedContainer,
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedBody,
.ml-embedded .ml-form-embedContent {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedBody {
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.ml-embedded .ml-form-embedTitle,
.ml-embedded .ml-form-embedDescription {
  display: none !important;
}

.ml-embedded form {
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: stretch;
}

.ml-embedded input[type="email"],
.ml-embedded input {
  width: 100% !important;
  min-height: 3.25rem !important;
  padding: 0 1rem !important;
  border: 1px solid var(--line-strong) !important;
  background: rgba(243, 240, 235, 0.7) !important;
  color: var(--near-black) !important;
  outline: none !important;
  box-shadow: none !important;
}

.ml-embedded input::placeholder {
  color: rgba(15, 15, 16, 0.45) !important;
}

.ml-embedded input:focus {
  border-color: rgba(15, 15, 16, 0.28) !important;
  box-shadow: 0 0 0 4px rgba(15, 15, 16, 0.06) !important;
}

.ml-embedded button,
.ml-embedded input[type="submit"] {
  width: 100% !important;
  min-height: 3.25rem !important;
  padding: 0.9rem 1.4rem !important;
  border: 1px solid var(--near-black) !important;
  background: var(--near-black) !important;
  color: var(--stone) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease !important;
}

.ml-embedded button:hover,
.ml-embedded input[type="submit"]:hover {
  background: #252527 !important;
  border-color: #252527 !important;
  transform: translateY(-1px);
}

.ml-embedded .ml-form-successBody,
.ml-embedded .ml-form-successContent {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center !important;
}

.ml-embedded form .ml-form-successBody,
.ml-embedded form .ml-form-successContent {
  grid-column: 1 / -1 !important;
}

.ml-embedded .ml-form-successContent h1,
.ml-embedded .ml-form-successContent h2,
.ml-embedded .ml-form-successContent h3,
.ml-embedded .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  font-family: var(--heading-font) !important;
  font-size: 1.4rem !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: var(--near-black) !important;
}

.ml-embedded .ml-form-successContent p {
  margin: 0 !important;
  color: var(--mid-gray) !important;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.traits span {
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2rem 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a,
.footer-note {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

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

@media (max-width: 900px) {
  .hero {
    min-height: 78vh;
  }

  .intro-layout,
  .philosophy-layout,
  .product-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 1rem;
  }

  .ml-embedded form {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-image-wrap {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .shell {
    padding-inline: var(--mobile-pad);
  }

  .header-inner {
    min-height: 4.6rem;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    align-items: end;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    max-width: 6ch;
  }

  h2 {
    max-width: 10ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-link {
    color: rgba(243, 240, 235, 0.92);
  }

  .product-card,
  .notify-panel {
    padding: 1.25rem;
  }
}
