/* ============================================================
   WIND THERAPY™ — Global Stylesheet
   Ride Until The Static Dies.
   ============================================================ */

/* --- TOKENS ------------------------------------------------- */
:root {
  --wt-black:      #1A1C1F;
  --wt-ink:        #22262B;
  --wt-road:       #2A2F35;
  --wt-cream:      #F2EDE5;
  --wt-cream-dim:  rgba(242, 237, 229, 0.85);
  --wt-orange:     #C44020;
  --wt-orange-hover: #D4502E;
  --wt-steel:      #98A0A8;
  --wt-border:     rgba(242, 237, 229, 0.14);
  --wt-border-mid: rgba(242, 237, 229, 0.26);

  --wt-max:        1080px;
  --wt-gutter:     clamp(1.25rem, 5vw, 3rem);

  --wt-font:       'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  --wt-radius:     4px;
  --wt-radius-lg:  8px;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- BASE --------------------------------------------------- */
body {
  background-color: var(--wt-black);
  color: var(--wt-cream);
  font-family: var(--wt-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- LAYOUT ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wt-max);
  margin: 0 auto;
  padding: 0 var(--wt-gutter);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark  { background-color: var(--wt-black); }
.section--ink   { background-color: var(--wt-ink); }
.section--road  { background-color: var(--wt-road); }

/* --- TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--wt-font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--wt-cream);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--wt-cream-dim);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wt-orange);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--wt-cream-dim);
  max-width: 640px;
  line-height: 1.7;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--wt-orange);
  margin: 1.5rem 0;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* --- BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--wt-radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--wt-orange);
  color: var(--wt-cream);
  border: 2px solid var(--wt-orange);
}
.btn--primary:hover {
  background: var(--wt-orange-hover);
  border-color: var(--wt-orange-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--wt-cream);
  border: none;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.08em;
}
.btn--ghost::after {
  content: ' →';
  font-weight: 400;
  letter-spacing: 0;
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn--ghost:hover {
  color: var(--wt-orange);
}
.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --- NAV ---------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--wt-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wt-border);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wt-cream);
  line-height: 1;
  white-space: nowrap;
}

.nav__logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 50%;
}

.nav__logo span {
  color: var(--wt-orange);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wt-cream);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--wt-cream);
}

.nav__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wt-orange);
  transition: color 0.2s;
}

.nav__cta:hover { color: var(--wt-orange-hover); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wt-cream);
  border-radius: 2px;
}

/* --- HERO --------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 92, 46, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(184, 92, 46, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #0D0D0D 0%, var(--wt-black) 60%, #141414 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--wt-max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--wt-gutter);
}

.hero__tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wt-orange);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--wt-cream);
  max-width: 800px;
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--wt-orange);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--wt-cream-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__rule {
  width: 60px;
  height: 2px;
  background: var(--wt-orange);
  margin-bottom: 2.5rem;
}

/* --- SECTION: PHILOSOPHY ------------------------------------ */
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy__copy h2 {
  margin-bottom: 1.25rem;
}

.philosophy__copy p {
  margin-bottom: 1.25rem;
}

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

.belief {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--wt-orange);
  background: var(--wt-ink);
}

.belief p {
  font-size: 0.95rem;
  color: var(--wt-cream-dim);
  margin: 0;
  font-style: italic;
}

/* --- SECTION: ROUTES PREVIEW -------------------------------- */
.routes-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--wt-ink);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--wt-border-mid);
  transform: translateY(-2px);
}

.card__region {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wt-orange);
  margin-bottom: 0.75rem;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wt-cream);
  margin-bottom: 0.75rem;
}

.card__body {
  font-size: 0.92rem;
  color: var(--wt-cream-dim);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card__line {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--wt-steel);
  border-top: 1px solid var(--wt-border);
  padding-top: 1rem;
  margin-top: auto;
}

/* --- SECTION: NEWSLETTER ------------------------------------ */
.newsletter {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 92, 46, 0.1) 0%, transparent 60%),
    var(--wt-ink);
  border-top: 1px solid var(--wt-border);
  border-bottom: 1px solid var(--wt-border);
  text-align: center;
}

.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter__inner h2 {
  margin-bottom: 1rem;
}

.newsletter__inner p {
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  background: var(--wt-road);
  border: 1px solid var(--wt-border-mid);
  border-radius: var(--wt-radius);
  color: var(--wt-cream);
  font-size: 0.9rem;
  font-family: var(--wt-font);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter__form input::placeholder { color: var(--wt-steel); }
.newsletter__form input:focus { border-color: var(--wt-orange); }

.newsletter__note {
  font-size: 0.78rem;
  color: var(--wt-steel);
  margin-top: 1rem;
}

.form-status {
  width: 100%;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--wt-steel);
}

.form-status.is-error {
  color: var(--wt-orange-hover);
}

.form-status.is-success {
  color: var(--wt-cream-dim);
}

/* --- SECTION: MERCH TEASER ---------------------------------- */
.merch-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}

.merch-teaser__visual {
  background:
    linear-gradient(135deg, var(--wt-road) 0%, var(--wt-ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 320px;
}

.merch-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--wt-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
}

.merch-badge__mark {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wt-cream);
}

.merch-badge__sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wt-orange);
}

.merch-teaser__copy {
  background: var(--wt-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 1px solid var(--wt-border);
}

.merch-teaser__copy h2 { margin-bottom: 1rem; }
.merch-teaser__copy p  { margin-bottom: 2rem; }

/* --- SECTION: APPAREL -------------------------------------- */
.apparel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.apparel-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--wt-border);
  overflow: hidden;
}

.apparel-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
}

.apparel-card img {
  display: block;
  width: 100%;
  height: auto;
}

.apparel-card__copy {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.apparel-card__copy h2 {
  margin-bottom: 0.8rem;
}

.apparel-card__copy p {
  color: var(--wt-cream-dim);
}

.appeal-panel {
  border-top: 1px solid rgba(198, 86, 38, 0.55);
  border-bottom: 1px solid rgba(198, 86, 38, 0.55);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.appeal-panel h2 {
  max-width: 780px;
  margin-bottom: 1rem;
}

.appeal-panel p {
  max-width: 760px;
  color: var(--wt-cream-dim);
}

/* --- FOOTER ------------------------------------------------- */
.footer {
  background: #0C0C0C;
  border-top: 1px solid var(--wt-border);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--wt-steel);
  max-width: 260px;
  margin-top: 0.75rem;
}

.footer__nav h4 {
  font-size: 0.68rem;
  color: var(--wt-steel);
  margin-bottom: 1rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav ul a {
  font-size: 0.88rem;
  color: var(--wt-cream-dim);
  transition: color 0.2s;
}

.footer__nav ul a:hover { color: var(--wt-cream); }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--wt-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--wt-steel);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wt-steel);
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--wt-cream); }

/* --- PAGE HERO (inner pages) -------------------------------- */
.page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse at 70% 0%, rgba(184, 92, 46, 0.08) 0%, transparent 50%),
    var(--wt-black);
  border-bottom: 1px solid var(--wt-border);
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { max-width: 560px; }

/* --- PLACEHOLDER -------------------------------------------- */
.placeholder {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--wt-border-mid);
  border-radius: var(--wt-radius-lg);
  color: var(--wt-steel);
}

.placeholder p { color: var(--wt-steel); font-size: 0.9rem; }

/* --- RESPONSIVE --------------------------------------------- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links.nav__links--open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--wt-gutter) 1.25rem;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid var(--wt-border);
  }
  .nav__links.nav__links--open a {
    width: 100%;
    padding: 0.8rem 0;
    border-top: 1px solid var(--wt-border);
  }
  .nav__toggle { display: flex; }

  .philosophy__grid,
  .merch-teaser,
  .apparel-grid,
  .apparel-card--wide,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .merch-teaser__visual { min-height: 240px; }
  .merch-teaser__copy { border-left: none; border-top: 1px solid var(--wt-border); }

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

  .routes-preview__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .btn--group { flex-direction: column; align-items: flex-start; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { width: 100%; }
}
