/* SUFFER IN SILENCE — men's mental health brand
   Palette: gunmetal grey + silver */

:root {
  --bg: #14171b;
  --bg-deep: #0f1114;
  --panel: #1b1f24;
  --panel-2: #21262c;
  --steel: #2b323b;
  --line: #313841;
  --line-soft: #272d34;
  --silver: #c9cfd6;
  --silver-bright: #e8ebee;
  --muted: #8b939c;
  --ink: #d4d9de;
  --accent: #aeb7c0;
  --chrome: linear-gradient(178deg, #f4f6f8 0%, #c3cad2 46%, #848e99 74%, #aab3bc 100%);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--silver); text-decoration: none; }
a:hover { color: var(--silver-bright); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

::selection { background: #4a545f; color: #fff; }

:focus-visible { outline: 2px solid var(--silver); outline-offset: 3px; border-radius: 2px; }

/* ---------- crisis strip ---------- */
.crisis-strip {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 9px 16px;
}
.crisis-strip a { color: var(--silver); font-weight: 600; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #15181cf5;
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand .mark { width: 40px; height: 40px; }
.mark-img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}
.site-footer .mark-img { width: 38px; height: 38px; }
.brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--silver-bright);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--silver-bright); }
.nav-links a.active { color: var(--silver-bright); border-bottom-color: var(--silver); }
.nav-cta {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 18px !important;
  color: var(--silver) !important;
  border-bottom: 1px solid var(--line) !important;
}
.nav-cta:hover { border-color: var(--silver); background: var(--panel); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--silver);
  margin: 4px 0;
  border-radius: 2px;
}

/* ---------- photo hero (logo plate) ---------- */
.hero-photo {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-deep);
}
.hero-photo img,
.hero-photo video {
  width: 100%;
  display: block;
  max-height: 78vh;
  object-fit: cover;
}
.intro-emblem {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 0 auto 26px;
}
.intro {
  text-align: center;
  padding: 72px 24px 80px;
  background:
    radial-gradient(ellipse 800px 380px at 50% -30%, rgba(140, 152, 165, 0.10), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

/* ---------- image bands ---------- */
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.life-grid img,
.store-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
}
.life-grid .wide { grid-column: 1 / -1; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .store-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .life-grid { grid-template-columns: 1fr; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 480px at 50% -10%, rgba(140, 152, 165, 0.14), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.06em;
  font-size: clamp(56px, 10vw, 124px);
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0.08em 0.15em;
}
.hero h1 .thin {
  display: block;
  font-size: 0.34em;
  letter-spacing: 0.9em;
  text-indent: 0.9em; /* balance the trailing letterspace */
  font-weight: 500;
  margin: 0.35em 0;
}
.hero-pulse { margin: 34px auto 30px; width: min(420px, 70vw); }
.hero-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-solid {
  background: var(--silver-bright);
  color: #14171b;
}
.btn-solid:hover { background: #fff; color: #000; transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--line);
  color: var(--silver);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--silver); color: var(--silver-bright); background: var(--panel); }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(30px, 4.4vw, 44px);
  color: var(--silver-bright);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover { border-color: var(--line); transform: translateY(-3px); }
.product-visual {
  background: #f2f2f2;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info { padding: 20px 24px 24px; border-top: 1px solid var(--line-soft); }
.product-info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 17px;
  color: var(--silver-bright);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 6px 0 16px;
}
.product-meta .colorway { font-size: 13px; color: var(--muted); }
.product-meta .price { font-size: 17px; font-weight: 600; color: var(--silver); }
.product-card .btn { width: 100%; text-align: center; padding: 12px 0; margin-top: 16px; }

/* ---------- product options ---------- */
.option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.option-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  width: 42px;
  flex-shrink: 0;
}
.swatches { display: flex; gap: 10px; }
.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.swatch:hover { border-color: var(--muted); }
.swatch.selected { border-color: var(--silver-bright); transform: scale(1.08); }
.sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.size-btn {
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
  min-width: 32px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.size-btn:hover { border-color: var(--muted); color: var(--ink); }
.size-btn.selected { background: var(--silver-bright); border-color: var(--silver-bright); color: #14171b; }

/* ---------- statement band ---------- */
.statement {
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(ellipse 700px 380px at 50% 50%, rgba(140, 152, 165, 0.08), transparent 70%),
    var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.statement blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.35;
  color: var(--silver-bright);
  max-width: 820px;
  margin: 0 auto;
}
.statement blockquote em { font-style: normal; color: var(--muted); }
.statement .attribution { margin-top: 24px; color: var(--muted); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 36px 32px;
}
.stat .figure {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 6px;
}
.stat .label { color: var(--ink); font-size: 15.5px; margin-top: 10px; }
.stat .source { color: var(--muted); font-size: 12.5px; margin-top: 14px; letter-spacing: 0.04em; }

/* ---------- commitments ---------- */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.commit {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 32px;
}
.commit svg { width: 34px; height: 34px; margin-bottom: 18px; }
.commit h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 17px;
  color: var(--silver-bright);
  margin-bottom: 10px;
}
.commit p { color: var(--muted); font-size: 15px; }

/* ---------- split (about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--silver-bright);
  margin-bottom: 20px;
}
.split .copy p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }
.split .copy p strong { color: var(--ink); }
.split .visual {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.split .visual img { width: 100%; display: block; }

/* ---------- checklist / signs ---------- */
.sign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.sign {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 15px;
}
.sign svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }

/* ---------- ALEC ---------- */
.alec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.alec {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 28px 24px;
}
.alec .letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 4px;
}
.alec h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 16px;
  color: var(--silver-bright);
  margin: 12px 0 8px;
}
.alec p { color: var(--muted); font-size: 14px; }

/* ---------- resources ---------- */
.resource-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.resource {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 28px 30px;
}
.resource h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 17px;
  color: var(--silver-bright);
  margin-bottom: 6px;
}
.resource .contact { font-size: 22px; font-weight: 600; color: var(--silver); margin: 8px 0; }
.resource p { color: var(--muted); font-size: 14.5px; }

/* ---------- help band ---------- */
.help-band {
  background: linear-gradient(180deg, #21262d 0%, #191d22 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 76px 24px;
}
.help-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--silver-bright);
  margin-bottom: 14px;
}
.help-band p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
.help-band .big-line {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 8px;
}
.help-band .small { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  padding: 84px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% -20%, rgba(140, 152, 165, 0.12), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(38px, 6vw, 64px);
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0.05em 0.1em;
}
.page-hero p { color: var(--muted); max-width: 560px; margin: 16px auto 0; font-size: 17px; }

/* ---------- note / disclaimer ---------- */
.note {
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--silver);
  background: var(--panel);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--muted);
  font-size: 14px;
}
.note strong { color: var(--ink); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 16px;
  color: var(--silver-bright);
  margin: 14px 0 10px;
}
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; }
.site-footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--ink); font-size: 14.5px; }
.site-footer ul a:hover { color: var(--silver-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--silver-bright);
  color: #14171b;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: 1fr; }
  .alec-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; border-bottom: none; }
  .nav-cta { margin-top: 10px; text-align: center; }
  body.nav-open .nav-links { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 72px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .sign-grid { grid-template-columns: 1fr; }
  .resource-list { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .alec-grid { grid-template-columns: 1fr; }
}
