/* ============================================
   CROSSBAR EMPIRE - Editorial Fashion Styles
   Bold. Empowering. Unapologetic.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=DM+Sans:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Custom Properties ---------- */
:root {
  --black: #0A0A0A;
  --copper: #C4873B;
  --copper-light: #D4973F;
  --copper-glow: rgba(196, 135, 59, 0.15);
  --accent: #C4873B;
  --accent-hover: #A8712F;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --charcoal: #2D2D2D;
  --white: #FAFAFA;
  --grey: #888;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--copper);
  color: var(--cream);
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section__label {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--copper);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Reveal text animation */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1s var(--ease-out-expo) forwards;
}
.reveal-text:nth-child(1) { animation-delay: 0.2s; }
.reveal-text:nth-child(2) { animation-delay: 0.35s; }
.reveal-text:nth-child(3) { animation-delay: 0.5s; }
.reveal-text:nth-child(4) { animation-delay: 0.65s; }
.reveal-text:nth-child(5) { animation-delay: 0.8s; }
.reveal-text:nth-child(6) { animation-delay: 0.95s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(196, 135, 59, 0.1);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}
.nav__logo:hover { opacity: 0.7; }

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

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:hover { color: var(--copper); }

.nav__cta {
  background: var(--black) !important;
  color: var(--cream) !important;
  padding: 0.7rem 1.8rem;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  transition: all 0.4s var(--ease-out-expo) !important;
}

.nav__cta:hover {
  background: var(--copper) !important;
  color: var(--cream) !important;
  transform: translateY(-2px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}
.nav__toggle span + span { margin-top: 7px; }
.nav__toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s var(--ease-out-expo);
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }
  .nav__cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem !important;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--copper);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero__brand {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.hero__brand-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: 0.08em;
  color: var(--black);
  position: relative;
}

.hero__brand-line:last-child {
  font-weight: 300;
  letter-spacing: 0.35em;
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  color: var(--charcoal);
  margin-top: 0.3em;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 2rem;
  animation: expandLine 1.2s var(--ease-out-expo) 0.8s both;
}

@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.hero__sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--copper);
  margin-bottom: 3rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--black);
  color: var(--cream);
  padding: 1.2rem 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}

.hero__cta span,
.hero__cta svg { position: relative; z-index: 1; }

.hero__cta svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 10, 10, 0.15);
}
.hero__cta:hover::before { transform: scaleX(1); }
.hero__cta:hover svg { transform: translateX(5px); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s var(--ease-out-expo) 1.5s both;
}
.hero__scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--grey);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--black);
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 135, 59, 0.2);
  border-bottom: 1px solid rgba(196, 135, 59, 0.2);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
}

.marquee__track span {
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--cream);
  color: var(--charcoal);
}

#about .section { padding: 8rem 0; }

.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.about__left { position: static; }

@media (min-width: 768px) {
  .about__left { position: sticky; top: 120px; }
}

.about__headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  opacity: 0.8;
}

.about__divider {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin-top: 2rem;
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
#collection {
  background: var(--black);
  color: var(--white);
}

#collection .section { padding: 8rem 0; }
#collection .section__label { color: var(--copper); }
#collection .section__label::before { background: var(--copper); }

.collection__header {
  margin-bottom: 4rem;
}

.collection__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.collection__type {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--copper);
  letter-spacing: 0.05em;
}

/* Editorial layout */
.collection__editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .collection__editorial {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
}

.collection__feature {
  display: flex;
  flex-direction: column;
}

.collection__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.collection__card {
  display: flex;
  flex-direction: column;
}

.collection__image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}

.collection__image-wrap--large {
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .collection__image-wrap--large {
    aspect-ratio: auto;
    flex: 1;
  }
}

.collection__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s ease;
  filter: brightness(0.9);
}

.collection__image-wrap:hover .collection__img {
  transform: scale(1.06);
  filter: brightness(1);
}

.collection__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.collection__overlay-label {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}

.collection__info {
  padding: 1.5rem 0;
}

.collection__feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.collection__feature-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
}

.collection__philosophy {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--copper);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
  position: relative;
}

.collection__philosophy::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 2rem;
  opacity: 0.5;
}


/* ============================================
   FIND YOUR FIT SECTION
   ============================================ */
#find-your-fit {
  background: var(--cream);
  color: var(--charcoal);
}

#find-your-fit .section { padding: 8rem 0; }

.fit__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .fit__layout {
    grid-template-columns: 0.8fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.fit__left { position: static; }

@media (min-width: 768px) {
  .fit__left { position: sticky; top: 120px; }
}

.fit__headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.fit__description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
  opacity: 0.8;
}

.fit__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-left: 0;
}

.fit__feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.fit__feature-number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--copper);
  letter-spacing: 0.2em;
  flex-shrink: 0;
}

.fit__feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

/* ============================================
   FORMS (shared)
   ============================================ */
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 600px) {
  .form__group {
    flex-direction: row;
  }
}

.fit__form input,
.join__form input {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(45, 45, 45, 0.2);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  flex: 1;
  min-width: 0;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.fit__form input::placeholder,
.join__form input::placeholder {
  color: rgba(45, 45, 45, 0.35);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fit__form input:focus,
.join__form input:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-glow);
}

.fit__form input.error,
.join__form input.error {
  border-color: #c0392b;
}

.fit__form button,
.join__form button {
  width: 100%;
  background: var(--black);
  color: var(--cream);
  padding: 1rem 2rem;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.fit__form button::before,
.join__form button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}

.fit__form button span,
.join__form button span {
  position: relative;
  z-index: 1;
}

.fit__form button:hover,
.join__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(10, 10, 10, 0.1);
}

.fit__form button:hover::before,
.join__form button:hover::before {
  transform: scaleX(1);
}

/* ============================================
   JOIN SECTION
   ============================================ */
#join {
  background: var(--black);
  color: var(--white);
}

#join .section { padding: 8rem 0; }

.join__layout {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join__headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.join__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
}

/* Dark forms */
#join .join__form input {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
#join .join__form input::placeholder { color: rgba(255, 255, 255, 0.3); }
#join .join__form input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196, 135, 59, 0.15);
}
#join .join__form button {
  background: var(--copper);
}
#join .join__form button::before {
  background: var(--accent-hover);
}

/* WhatsApp prominent button */
.join__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  border: 1px solid #25D366;
  color: #25D366;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out-expo);
}

.join__whatsapp:hover {
  background: #25D366;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.join__whatsapp svg {
  flex-shrink: 0;
}

/* Socials */
.join__socials {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.join__socials a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.join__socials a:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.social__arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.join__socials a:hover .social__arrow {
  transform: translate(3px, -3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(45, 45, 45, 0.08);
  padding: 3rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    align-items: center;
  }
  .footer__right { text-align: right; }
  .footer__center { text-align: center; }
}

.footer__logo {
  width: 50px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__logo { margin: 0; }
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--black);
  margin-top: 0.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--charcoal);
  opacity: 0.4;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer__links a:hover { opacity: 1; color: var(--copper); }

.footer__copy {
  font-size: 0.75rem;
  opacity: 0.3;
  color: var(--charcoal);
}

.footer__contact {
  font-size: 0.75rem;
  opacity: 0.5;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.footer__contact a {
  color: var(--copper);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.footer__contact a:hover { opacity: 0.7; }

/* ============================================
   FORM FEEDBACK
   ============================================ */
.form-success {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.5rem;
  color: var(--copper);
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  font-family: var(--font-body);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .container { padding: 0 3rem; }
  .nav__inner { padding: 1.2rem 3rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 4rem; }
  .nav__inner { padding: 1.2rem 4rem; }
}

@media (max-width: 480px) {
  .hero__brand-line:first-child { font-size: clamp(3rem, 15vw, 5rem); }
  .hero__brand-line:last-child { font-size: clamp(1.5rem, 7vw, 2.5rem); }
  .hero__scroll-hint { display: none; }
  .join__socials { flex-direction: column; align-items: center; }
  .fit__headline { font-size: clamp(2.5rem, 12vw, 4rem); }
}
