
:root {
  --color-black: #0A0A0A;
  --color-white: #FAFAFA;
  --color-grey-100: #F0F0F0;
  --color-grey-200: #E0E0E0;
  --color-grey-400: #999999;
  --color-grey-600: #666666;
  --color-grey-800: #333333;
  --color-pro: #D4001A;
  --color-wild: #2E7D32;
  --color-lifestyle: #5C6BC0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo span {
  font-weight: 400;
  opacity: 0.5;
  margin-left: 6px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--color-white);
  color: var(--color-black);
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* Mobile menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.3s;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .nav-toggle:checked ~ .nav-links {
    right: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  filter: brightness(0.4) contrast(1.1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 70%, rgba(10,10,10,1) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  opacity: 0.65;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

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

.btn-primary {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-black);
  padding: 16px 36px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--color-grey-200);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 16px 36px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════ */

.section {
  padding: var(--section-pad) 24px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════
   BRAND PILLARS — THREE LINES
   ═══════════════════════════════════════ */

.brands {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.brand-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.brand-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.brand-card-img img {
  filter: brightness(0.45) saturate(0.8);
}

.brand-card:hover .brand-card-img {
  transform: scale(1.05);
}

.brand-card:hover .brand-card-img img {
  filter: brightness(0.55) saturate(1);
}

.brand-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
}

.brand-accent {
  width: 32px;
  height: 3px;
  margin-bottom: 20px;
}

.brand-accent-pro { background: var(--color-pro); }
.brand-accent-wild { background: var(--color-wild); }
.brand-accent-lifestyle { background: var(--color-lifestyle); }

.brand-card-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}

.brand-card-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.brand-card-desc {
  font-size: 0.9rem;
  opacity: 0.55;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 28px;
}

.brand-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.brand-card:hover .brand-card-link {
  opacity: 1;
}

@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .brand-card {
    aspect-ratio: 16/10;
  }
}

/* ═══════════════════════════════════════
   ORIGIN STORY
   ═══════════════════════════════════════ */

.origin {
  background: var(--color-black);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.origin-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.origin-image img {
  filter: brightness(0.85) contrast(1.05);
}

.origin-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.origin-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.origin-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 8px;
}

.origin-text p {
  font-size: 1.05rem;
  opacity: 0.6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.origin-text p:first-of-type {
  font-size: 1.2rem;
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .origin-stat-row {
    gap: 32px;
  }
}

/* ═══════════════════════════════════════
   ATHLETE STORIES
   ═══════════════════════════════════════ */

.athletes {
  background: var(--color-grey-100);
  color: var(--color-black);
}

.athletes .section-eyebrow { opacity: 0.35; }
.athletes .section-desc { opacity: 0.5; }

.athlete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.athlete-card {
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.3s;
}

.athlete-card:hover {
  transform: translateY(-4px);
}

.athlete-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.athlete-card-img img {
  transition: transform 0.6s;
}

.athlete-card:hover .athlete-card-img img {
  transform: scale(1.05);
}

.athlete-card-body {
  padding: 28px 24px;
}

.athlete-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.tag-pro { background: rgba(212,0,26,0.1); color: var(--color-pro); }
.tag-wild { background: rgba(46,125,50,0.1); color: var(--color-wild); }
.tag-lifestyle { background: rgba(92,107,192,0.1); color: var(--color-lifestyle); }

.athlete-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.athlete-card-excerpt {
  font-size: 0.9rem;
  opacity: 0.5;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .athlete-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════
   PERFORMANCE CREDIBILITY
   ═══════════════════════════════════════ */

.credibility {
  background: var(--color-black);
  text-align: center;
}

.cred-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.cred-stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.cred-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

.cred-quote {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cred-quote blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.7;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 24px;
}

.cred-quote cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  font-style: normal;
}

@media (max-width: 768px) {
  .cred-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ═══════════════════════════════════════
   NEWSLETTER SIGNUP
   ═══════════════════════════════════════ */

.newsletter {
  background: var(--color-grey-800);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.4);
}

.newsletter-submit {
  padding: 16px 28px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.newsletter-submit:hover {
  opacity: 0.85;
}

.newsletter-note {
  font-size: 0.8rem;
  opacity: 0.35;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */

.contact {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 1.05rem;
  opacity: 0.8;
}

.contact-info-value a {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
}

.contact-info-value a:hover {
  border-color: rgba(255,255,255,0.6);
}

/* EP Email contact form placeholder */
.contact-form-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.contact-form-placeholder p {
  font-size: 0.85rem;
  opacity: 0.3;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.8rem;
  opacity: 0.3;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.7rem;
  opacity: 0.2;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================
   PAGE TEMPLATE STYLES
   ======================================== */

.template-page .content-section {
    padding: 4rem 0;
}

.template-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.template-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.template-page .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.template-page .page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.template-page .page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.template-page .page-content p {
    margin-bottom: 1.25rem;
}

.template-page .page-content a {
    color: var(--color-primary, var(--blue, #0088FF));
    text-decoration: none;
}

.template-page .page-content a:hover {
    text-decoration: underline;
}

.template-error .content-section {
    padding: 6rem 0;
    text-align: center;
}

/* Contact form on pages */
.ep-contact-form-wrapper {
    max-width: 600px;
    margin: 2rem auto;
}

.ep-contact-form input[type="text"],
.ep-contact-form input[type="email"],
.ep-contact-form textarea {
    background: var(--color-card, var(--card-bg, #16213E));
    color: var(--color-text, var(--grey-text, #B0B0C0));
    border: 1px solid var(--color-border, #2A2A4A);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.ep-contact-form input:focus,
.ep-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary, var(--blue, #0088FF));
}

.ep-contact-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ep-contact-form .form-field {
    margin-bottom: 1.5rem;
}

.ep-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ep-contact-form button,
.ep-contact-form input[type="submit"] {
    background: var(--color-primary, var(--blue, #0088FF));
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ep-contact-form button:hover {
    background: var(--color-primary-hover, #0077E6);
}

.site-footer {
    position: relative;
    z-index: 1;
}.container, .section-inner, [class*="-inner"] { max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; box-sizing: border-box; }
section, [class*="section"] { overflow-x: hidden; }
.button, a.button { display: inline-block; padding: 0.875rem 2rem; border-radius: 6px; font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s; line-height: 1.4; }
.button.update, .btn-primary { background: var(--color-primary, var(--color-accent, #2196f3)); color: #fff !important; border: 2px solid var(--color-primary, var(--color-accent, #2196f3)); }
.button.action, .btn-outline { background: transparent; border: 2px solid currentColor; }
a.read-more { font-weight: 600; text-decoration: none; border-bottom: 2px solid currentColor; }
.hero-bg, [class*="hero-bg"] { z-index: -2 !important; }
.hero-gradient, .hero-overlay { z-index: -1 !important; }
.hero-bg img { object-fit: cover; width: 100%; height: 100%; }
