/* ============================================
   THE CORE CONNECTION - STYLES
   ============================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0D;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
.text-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.font-mono-label {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Section Styles */
.section-pinned {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.section-flowing {
  position: relative;
  width: 100%;
  padding: 80px 6vw;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 6vh;
  transform: translateX(-50%);
  z-index: 10;
  width: 280px;
  color: white;
}

.hero-nipper {
  position: absolute;
  right: 4vw;
  top: 5vh;
  z-index: 10;
  width: 60px;
  color: #E1062C;
}

.hero-play-btn {
  position: absolute;
  left: 50%;
  top: 52vh;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.play-circle:hover {
  background: rgba(255,255,255,0.1);
}

.play-icon {
  width: 40px;
  height: 40px;
  color: white;
  margin-left: 4px;
}

.hero-tagline {
  position: absolute;
  left: 6vw;
  top: 66vh;
  z-index: 10;
  max-width: 40vw;
}

.hero-tagline p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
}

.hero-tracks {
  position: absolute;
  right: 4vw;
  top: 56vh;
  width: 26vw;
  text-align: right;
  z-index: 10;
}

.hero-tracks ul {
  list-style: none;
}

.hero-tracks li {
  margin-bottom: 12px;
}

.hero-tracks a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.hero-tracks a:hover {
  color: white;
}

.hero-scroll {
  position: absolute;
  left: 3vw;
  bottom: 6vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-text {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.6);
}

/* Shirts Section */
.shirts-section {
  background: #0B0B0D;
  padding: 10vh 6vw;
  min-height: 100vh;
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 40px;
}

.products-container {
  margin-top: 60px;
}

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

.product-card {
  cursor: pointer;
}

.product-image {
  aspect-ratio: 1;
  background: #141414;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-name {
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.product-price {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-left: 8px;
}

.products-description {
  margin-top: 60px;
  max-width: 800px;
}

.products-description p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.shop-all {
  margin-top: 40px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.shop-link:hover {
  color: white;
}

.shop-link svg {
  width: 16px;
  height: 16px;
}

.shop-link:hover svg {
  transform: translate(4px, -4px);
}

/* About Section */
.about-section {
  background: #0B0B0D;
  padding: 80px 6vw;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 24px;
}

.section-headline.dark {
  color: #0B0B0D;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 48px;
}

.divider.dark {
  background: rgba(0,0,0,0.2);
}

.about-text-container {
  max-width: 900px;
}

.about-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.about-text {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}

/* Featured Section */
.featured-section {
  background: #F4F4F2;
  padding: 80px 6vw;
}

.light-bg {
  background: #F4F4F2;
}

.featured-text {
  max-width: 900px;
}

.featured-text p {
  color: rgba(0,0,0,0.8);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

/* Timeline/Person Sections */
.courtney-section,
.corey-section,
.podcast-section,
.ephesians-section,
.approach-section,
.vision-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0B0B0D;
  position: relative;
}

.section-image {
  position: absolute;
  top: 0;
  width: 48vw;
  height: 100%;
  z-index: 5;
}

.section-image.right {
  right: 0;
}

.section-image.left {
  left: 0;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hairline {
  position: absolute;
  top: 10vh;
  width: 1px;
  height: 80vh;
  background: rgba(255,255,255,0.2);
  z-index: 10;
}

.hairline:not(.left) {
  left: 52vw;
}

.hairline.left {
  left: 48vw;
}

.section-text {
  position: absolute;
  top: 18vh;
  z-index: 10;
  max-width: 40vw;
}

.section-text.left {
  left: 6vw;
}

.section-text.right {
  right: 6vw;
  text-align: right;
}

.era-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 12vw, 140px);
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: white;
  display: block;
  margin-bottom: 32px;
}

.section-title-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 32px);
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-body {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}

.section-body.quote {
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.quote-reference {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: 16px;
}

.section-headline-small {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 8px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 32px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: white;
  color: #0B0B0D;
}

/* Newsletter */
.newsletter {
  margin-top: 48px;
}

.newsletter-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.newsletter-form input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  width: 280px;
}

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

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
}

.newsletter-form button {
  padding: 12px 24px;
  background: white;
  color: #0B0B0D;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: rgba(255,255,255,0.9);
}

/* Footer */
.footer-section {
  background: #0B0B0D;
  padding: 64px 6vw;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  width: 240px;
  color: white;
  margin-bottom: 24px;
}

.footer-left address {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.social-icon:hover {
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-tracks {
    display: none;
  }
  
  .hero-tagline {
    max-width: 80vw;
    left: 6vw;
  }
  
  .section-image {
    width: 100%;
    height: 50vh;
    position: relative;
  }
  
  .section-image.right,
  .section-image.left {
    right: auto;
    left: 0;
  }
  
  .courtney-section,
  .corey-section,
  .podcast-section,
  .ephesians-section,
  .approach-section,
  .vision-section {
    flex-direction: column;
    min-height: auto;
  }
  
  .hairline {
    display: none;
  }
  
  .section-text {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: 100%;
    padding: 48px 6vw;
    text-align: left;
  }
  
  .section-text.right {
    text-align: left;
  }
  
  .era-label {
    font-size: clamp(40px, 10vw, 80px);
  }
}

@media (max-width: 768px) {
  .hero-logo {
    width: 200px;
  }
  
  .hero-nipper {
    width: 40px;
  }
  
  .play-circle {
    width: 80px;
    height: 80px;
  }
  
  .play-icon {
    width: 30px;
    height: 30px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-right {
    align-items: flex-start;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
}
