/* ============================================
   RTW Section Styles
   ============================================ */

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--rtw-navy);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0.3) 0%,
    rgba(26, 39, 68, 0.6) 60%,
    rgba(26, 39, 68, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  padding: 100px var(--space-md) 20px;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rtw-amber);
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--rtw-white);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: none;
  white-space: nowrap;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-accent);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden;
  }
  .hero-content {
    max-width: 100%;
    padding: 60px 20px 20px;
    overflow: hidden;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    white-space: normal !important;
    font-size: 0.8rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .product-preview-header h2 {
    font-size: 1.5rem;
  }
}

/* --- Mission Strip --- */
.mission-strip {
  background: linear-gradient(135deg, var(--rtw-navy) 0%, var(--rtw-steel) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
}

.mission-strip p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Product Preview --- */
.product-preview {
  padding: 32px 0 48px;
  background: var(--rtw-cream);
}

.product-preview-header {
  text-align: center;
  margin-bottom: 24px;
}

.product-preview-header h2 {
  margin-bottom: var(--space-sm);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--rtw-white);
  transition: transform var(--transition-medium);
}

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

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rtw-sand);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card-info {
  padding: var(--space-md);
  text-align: center;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.product-card-price {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--rtw-amber);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-preview-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* --- Promise Section --- */
.promise-section {
  background: var(--rtw-sand);
  padding: var(--space-2xl) 0;
  position: relative;
}

.promise-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.promise-inner h2 {
  margin-bottom: var(--space-md);
}

.promise-inner p {
  margin-left: auto;
  margin-right: auto;
}

/* --- 25 Acts Teaser --- */
.acts-teaser {
  padding: var(--space-2xl) 0;
  background: var(--rtw-white);
}

.acts-teaser-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.acts-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.act-teaser-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--rtw-cream);
  transition: transform var(--transition-fast);
}

.act-teaser-card:hover {
  transform: translateX(4px);
}

.act-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rtw-amber);
  line-height: 1;
  min-width: 48px;
}

.act-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--rtw-navy);
  padding-top: 4px;
}

@media (max-width: 768px) {
  .acts-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Social Feed Section --- */
.social-feed {
  padding: var(--space-2xl) 0;
  background: var(--rtw-cream);
}

.social-feed-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.social-feed-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.social-feed-placeholder {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  color: var(--rtw-steel);
}

/* --- Email Capture --- */
.email-capture {
  padding: var(--space-xl) 0;
  background: var(--rtw-navy);
  text-align: center;
}

.email-capture h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--rtw-white);
  margin-bottom: var(--space-sm);
}

.email-capture p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto var(--space-md);
  font-size: 0.9375rem;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--rtw-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-form button {
  padding: 16px 32px;
  background: var(--rtw-amber);
  color: var(--rtw-white);
  border: none;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--rtw-rust);
}

@media (max-width: 640px) {
  .email-form {
    flex-direction: column;
    gap: 12px;
    padding: 0 var(--space-md);
  }
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
  background: var(--rtw-navy);
  padding: 120px 0 40px;
  text-align: center;
}

.page-hero h1 {
  color: var(--rtw-white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- 25 Acts Full Page --- */
.acts-page {
  padding: var(--space-lg) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--rtw-cream) 0%, var(--rtw-white) 30%, var(--rtw-cream) 100%);
}

.acts-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.act-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: transparent;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  transition: all 0.3s ease;
}

.act-card:first-child {
  border-top: 1px solid rgba(26, 39, 68, 0.08);
}

.act-card:hover {
  background: rgba(198, 122, 60, 0.04);
  transform: translateX(4px);
}

.act-card .act-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rtw-amber);
  line-height: 1;
  min-width: 52px;
  text-align: center;
}

.act-card:nth-child(5n+1) .act-number { color: var(--rtw-amber); }
.act-card:nth-child(5n+2) .act-number { color: var(--rtw-steel); }
.act-card:nth-child(5n+3) .act-number { color: var(--rtw-rust); }
.act-card:nth-child(5n+4) .act-number { color: var(--rtw-sky); }
.act-card:nth-child(5n+5) .act-number { color: var(--rtw-navy); }

.act-card .act-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--rtw-navy);
  letter-spacing: 0.01em;
}

.act-card:last-child {
  background: var(--rtw-navy);
  border-bottom: none;
  border-radius: 8px;
  margin-top: 24px;
  justify-content: center;
}
.act-card:last-child .act-number { color: var(--rtw-amber); font-size: 2.2rem; }
.act-card:last-child .act-text { color: var(--rtw-white); font-weight: 600; font-size: 1.2rem; }
.act-card:last-child:hover {
  background: var(--rtw-steel);
  transform: translateX(0) scale(1.01);
}

/* --- Blog / Editorial Cards --- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.editorial-card {
  background: var(--rtw-white);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition-fast), transform var(--transition-medium);
}

.editorial-card:hover {
  border-bottom-color: var(--rtw-amber);
  transform: translateY(-4px);
}

.editorial-card-image {
  overflow: hidden;
  background: linear-gradient(135deg, var(--rtw-sand) 0%, var(--rtw-cream) 100%);
  max-height: 350px;
}
.editorial-card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.editorial-card-body {
  padding: var(--space-md);
}

.editorial-card-label {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rtw-amber);
  margin-bottom: 8px;
}

.editorial-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.editorial-card-excerpt {
  font-size: 0.9375rem;
  color: var(--rtw-steel);
  line-height: 1.6;
}

.editorial-card a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- Article / Profile Page --- */
.article-page {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.article-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.article-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.75em;
}

.article-meta {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rtw-steel);
  margin-bottom: var(--space-lg);
}

/* --- Contact / Form Page --- */
.contact-page {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

/* --- Product Page --- */
.product-page {
  padding-top: 100px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.product-gallery {
  position: relative;
}

.product-gallery-main {
  aspect-ratio: 4 / 5;
  background: var(--rtw-cream);
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

.product-price {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--rtw-amber);
  font-weight: 600;
}

.product-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rtw-steel);
}

.preorder-notice {
  background: var(--rtw-cream);
  padding: var(--space-md);
  border-left: 3px solid var(--rtw-amber);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.preorder-notice strong {
  color: var(--rtw-amber);
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.variant-selector {
  display: flex;
  gap: 12px;
}

.variant-option {
  padding: 12px 24px;
  border: 1.5px solid var(--rtw-silver);
  background: none;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-option.is-selected {
  border-color: var(--rtw-navy);
  background: var(--rtw-navy);
  color: var(--rtw-white);
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-input {
  width: 80px;
  text-align: center;
  padding: 12px;
  border: 1.5px solid var(--rtw-silver);
  font-family: var(--font-body);
  font-size: 1rem;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--rtw-amber);
  color: var(--rtw-white);
  border: none;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.add-to-cart-btn:hover {
  background: var(--rtw-rust);
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Community Page --- */
.community-section {
  padding: var(--space-xl) 0;
}

.community-cta {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--rtw-cream);
  margin-top: var(--space-xl);
}

.community-cta h3 {
  margin-bottom: var(--space-sm);
}

/* --- Our Story / Editorial Long-form --- */
.story-section {
  padding: var(--space-xl) 0;
}

.story-section--alt {
  background: var(--rtw-cream);
}

.story-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.story-content h2 {
  margin-bottom: var(--space-md);
}

.story-content p {
  font-size: 1.7rem;
  line-height: 1.9;
}

.story-full-width-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--rtw-sand);
  overflow: hidden;
}

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

/* --- Nomination Form --- */
.nomination-section {
  padding: var(--space-xl) 0;
  background: var(--rtw-sand);
  text-align: center;
}

.nomination-form {
  max-width: 500px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}
