:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --black-card: #111111;
  --gold: #c49a32;
  --gold-light: #e8c66a;
  --gold-dark: #866414;
  --white: #f5f3ee;
  --muted: #aaa59a;
  --line: rgba(196, 154, 50, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --container: 1180px;
  --card-radius: 18px;
  --panel-radius: 26px;
  --header-height: 84px;
  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 22px;
  --space-lg: 36px;
  --space-xl: 52px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

section[id] { scroll-margin-top: calc(var(--header-height) + 14px); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: var(--gold);
  color: #090909;
  padding: 10px 14px;
  z-index: 200;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

:where(a, button):focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,5,5,.86);
  border-color: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { justify-self: start; }
.brand img { width: 220px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative;
  color: #d7d2c8;
  font-size: .92rem;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--gold-light); }
.desktop-nav a.is-active::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 820;
  font-size: .95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090909;
  box-shadow: 0 14px 34px rgba(196,154,50,.18);
}
.button-primary:hover { background: var(--gold-light); box-shadow: 0 16px 36px rgba(196,154,50,.24); }
.button-ghost {
  border-color: rgba(255,255,255,.24);
  color: var(--white);
  background: rgba(5,5,5,.18);
}
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.button-outline {
  border-color: rgba(196,154,50,.55);
  color: var(--gold-light);
  background: rgba(5,5,5,.25);
}
.button-outline:hover { background: var(--gold); color: #080808; border-color: var(--gold); }
.button-large { min-height: 58px; padding-inline: 28px; }
.button-compact { min-height: 44px; padding-inline: 17px; font-size: .86rem; }
.button-icon { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }
.cta-short { display: none; }
.header-cta { justify-self: end; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.68) 47%, rgba(0,0,0,.24) 100%),
    linear-gradient(0deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,0) 35%);
  z-index: -3;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .11;
  background-image: radial-gradient(rgba(255,255,255,.16) .7px, transparent .7px);
  background-size: 6px 6px;
  pointer-events: none;
}
.hero-content { padding-top: 100px; }
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin: 22px 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 500;
}
.hero p {
  max-width: 690px;
  color: #d5d0c6;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa59a;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.hero-scroll:hover { color: var(--gold-light); }
.hero-scroll span { width: 28px; height: 1px; background: var(--gold); }

.section { padding: 120px 0; }
.brand-section { background: #080808; }
.brand-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.section-copy h2,
.section-heading h2,
.contact-card h2,
.statement-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.section-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  line-height: 1.04;
}
.section-copy p { color: var(--muted); font-size: 1.04rem; max-width: 640px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  margin-top: 42px;
}
.metric { padding-top: 20px; }
.metric strong { display: block; color: var(--gold-light); font-size: .84rem; letter-spacing: .12em; }
.metric span { display: block; color: #d6d0c5; margin-top: 6px; }
.brand-visual {
  position: relative;
  margin: 0;
  min-height: 620px;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.brand-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.06) 52%);
  pointer-events: none;
}
.brand-visual picture, .brand-visual img { width: 100%; height: 100%; }
.brand-visual img { object-fit: cover; min-height: 620px; }
.brand-visual figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.brand-visual figcaption span { color: var(--gold-light); font-size: .77rem; font-weight: 850; letter-spacing: .2em; }
.brand-visual figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }

.line-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(196,154,50,.08), transparent 28%),
    var(--black);
}
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; margin: 18px 0; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, #141414, #0a0a0a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.015);
  transition: border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.product-card:hover {
  border-color: rgba(196,154,50,.52);
  box-shadow: inset 0 0 0 1px rgba(196,154,50,.05), 0 18px 40px rgba(0,0,0,.16);
  background: linear-gradient(145deg, #17150f, #0a0a0a 58%);
}
.product-index { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.product-info { margin-top: 52px; position: relative; z-index: 2; }
.product-card h3 { margin: 0 0 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.85rem; font-weight: 500; }
.product-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-top: 12px;
  padding: 0 10px;
  border: 1px solid rgba(196,154,50,.34);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.product-line {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(196,154,50,.2);
  border-radius: 50%;
}
.product-line::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(196,154,50,.13);
  border-radius: 50%;
}

.statement-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: linear-gradient(135deg, #16120a 0%, #070707 45%, #0c0a06 100%);
  border-block: 1px solid var(--line);
}
.statement-section::before {
  content: "S";
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(196,154,50,.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(46vw, 650px);
  line-height: .7;
  pointer-events: none;
}
.statement-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.statement-inner img { width: 72px; margin: 0 auto 18px; }
.statement-inner p { margin: 0 0 12px; color: var(--gold-light); letter-spacing: .18em; font-size: .74rem; font-weight: 850; text-transform: uppercase; }
.statement-inner h2 { margin: 0; font-size: clamp(2.4rem, 5.5vw, 5rem); line-height: 1.02; }

.contact-section { background: #080808; }
.contact-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(196,154,50,.3);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(196,154,50,.08), transparent 32%),
    #0e0e0e;
}
.contact-card h2 { margin: 16px 0 12px; font-size: clamp(2.4rem, 4.7vw, 4.4rem); line-height: 1.02; }
.contact-card p { color: var(--muted); margin: 0; }
.contact-actions { display: grid; gap: 22px; justify-items: stretch; }
.social-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.social-links a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  color: #c8c3b9;
  background: var(--black-card);
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); background: #14120e; }
.social-links svg { width: 26px; height: 26px; fill: currentColor; }
.social-links span { font-size: .74rem; font-weight: 800; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #050505;
}
.footer-inner {
  min-height: 158px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-block: 28px;
}
.footer-brand img { width: 190px; }
.footer-center { display: grid; justify-items: center; gap: 12px; }
.footer-center p { margin: 0; color: #7e7a72; font-size: .8rem; text-align: center; }
.footer-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-socials a {
  color: #aaa59a;
  font-size: .78rem;
  font-weight: 750;
  transition: color .2s ease;
}
.footer-socials a:hover { color: var(--gold-light); }
.back-to-top { justify-self: end; }
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 300;
  width: min(calc(100% - 32px), 440px);
  padding: 14px 18px;
  border: 1px solid rgba(196,154,50,.46);
  border-radius: 14px;
  background: rgba(11,11,11,.95);
  color: #e7e1d6;
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .brand img { width: 190px; }
  .brand-grid, .contact-card { grid-template-columns: 1fr; }
  .brand-visual, .brand-visual img { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .contact-actions { max-width: 560px; }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 38px 0;
    text-align: center;
  }
  .back-to-top { justify-self: center; }
}

@media (max-width: 680px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { min-height: var(--header-height); grid-template-columns: 1fr auto; gap: 12px; }
  .brand img { width: 148px; }
  .header-cta { display: inline-flex; min-height: 40px; padding-inline: 14px; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .hero { min-height: 94svh; }
  .hero-video { object-position: 58% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.34) 100%),
      linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.08));
  }
  .hero-content { padding-top: 88px; padding-bottom: 100px; }
  .hero h1 { font-size: clamp(2.9rem, 13.5vw, 4.35rem); line-height: .98; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-scroll { display: none; }
  .section { padding: 82px 0; }
  .metrics { grid-template-columns: 1fr; gap: 18px; }
  .metric { border-top: 1px solid rgba(255,255,255,.06); padding-top: 14px; }
  .metrics .metric:first-child { border-top: 0; }
  .brand-visual, .brand-visual img { min-height: 500px; }
  .brand-visual figcaption { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 190px; }
  .product-info { margin-top: 42px; }
  .statement-section { padding: 82px 0; }
  .contact-card { padding: 28px 20px; }
  .contact-actions { gap: 16px; }
  .social-links { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .social-links a { min-height: 86px; border-radius: 15px; gap: 6px; }
  .social-links svg { width: 24px; height: 24px; }
  .social-links span { display: inline; font-size: .66rem; }
  .footer-inner { gap: 22px; }
  .footer-brand img { width: 176px; }
  .footer-socials { gap: 14px; }
  .back-to-top { width: 100%; max-width: 280px; min-height: 50px; }
  .site-toast { bottom: 18px; }
}

@media (max-width: 390px) {
  .brand img { width: 136px; }
  .header-cta { min-height: 38px; padding-inline: 12px; font-size: .8rem; }
  .social-links span { font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero { background: url('assets/scathan-athlete.webp') 58% center/cover no-repeat; }
}
