/* ===========================================================
   La Banda Beauty Inc — styles
   Plain, dependency-free CSS.
   =========================================================== */

:root {
  --ivory:      #fbf8f5;
  --cream:      #f4ede6;
  --sand:       #e9ddd2;
  --espresso:   #2b2320;
  --charcoal:   #4a4039;
  --muted:      #8a7d72;
  --rose:       #b76e79;   /* rose gold accent */
  --rose-deep:  #9c5560;
  --gold:       #c9a77c;
  --line:       rgba(43, 35, 32, 0.12);
  --shadow:     0 18px 50px rgba(43, 35, 32, 0.10);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; }

p { color: var(--charcoal); }

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

em { font-style: italic; }

img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
  white-space: nowrap;
}
.wordmark em {
  color: var(--rose);
  font-style: italic;
}
.wordmark--footer { font-size: 1.7rem; color: var(--ivory); }
.wordmark--footer em { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--espresso);
  color: var(--ivory);
}
.btn--solid:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(251, 248, 245, 0.5);
}
.btn--ghost:hover { background: rgba(251, 248, 245, 0.12); border-color: var(--ivory); }
.btn--full { width: 100%; text-align: center; border: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { border-color: var(--line); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--rose); }
.nav__links .nav__cta {
  border: 1px solid var(--espresso);
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  color: var(--espresso);
}
.nav__links .nav__cta:hover {
  background: var(--espresso);
  color: var(--ivory);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--espresso);
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--pad) 6rem;
  overflow: hidden;
  color: var(--ivory);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(183, 110, 121, 0.55), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 167, 124, 0.45), transparent 55%),
    linear-gradient(135deg, #3a2f2a 0%, #2b2320 55%, #1f1916 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(251, 248, 245, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
}
.hero__content { max-width: 860px; position: relative; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--ivory);
  margin-bottom: 1.6rem;
}
.hero__title em { color: var(--gold); }
.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(251, 248, 245, 0.82);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  font-size: 1.4rem;
  color: rgba(251, 248, 245, 0.6);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Section shell ---------- */
section { scroll-margin-top: 80px; }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head__sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}
.section-head--light .eyebrow { color: var(--gold); }
.section-head--light h2, .section-head--light .section-head__sub { color: var(--ivory); }
.section-head--light .section-head__sub { color: rgba(251, 248, 245, 0.7); }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p { margin-bottom: 1.1rem; max-width: 56ch; }
.about__text strong { color: var(--espresso); font-weight: 500; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.stat {
  background: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--rose);
  font-weight: 500;
}
.stat__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* ---------- Offer ---------- */
.offer {
  background: var(--cream);
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}
.offer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon {
  font-size: 1.8rem;
  color: var(--rose);
  display: block;
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Why ---------- */
.why {
  background:
    radial-gradient(ellipse at 75% 15%, rgba(183, 110, 121, 0.30), transparent 55%),
    linear-gradient(160deg, #332a26, #221b18);
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}
.why__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}
.why__item { border-top: 1px solid rgba(251, 248, 245, 0.18); padding-top: 1.4rem; }
.why__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.why__item h3 { color: var(--ivory); margin-bottom: 0.6rem; }
.why__item p { color: rgba(251, 248, 245, 0.68); font-size: 0.93rem; }

/* ---------- Brands / categories ---------- */
.brands {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
  text-align: center;
}
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 820px;
  margin: 0 auto;
}
.chip {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: all 0.25s ease;
}
.chip:hover { background: var(--rose); color: var(--ivory); border-color: var(--rose); transform: translateY(-2px); }
.brands__note {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.brands__note a { color: var(--rose); border-bottom: 1px solid currentColor; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 167, 124, 0.30), transparent 55%),
    linear-gradient(160deg, #2b2320, #1f1916);
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}
.contact__grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__text h2 { color: var(--ivory); margin-bottom: 1.2rem; }
.contact__text p { color: rgba(251, 248, 245, 0.75); margin-bottom: 2rem; }
.contact__details { list-style: none; display: grid; gap: 1.3rem; }
.contact__details li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__value { color: var(--ivory); font-size: 1.05rem; }
.contact__value a:hover { color: var(--gold); }

.contact__form {
  background: rgba(251, 248, 245, 0.04);
  border: 1px solid rgba(251, 248, 245, 0.14);
  border-radius: 6px;
  padding: 2.2rem;
  display: grid;
  gap: 1.1rem;
}
.contact__form label { display: grid; gap: 0.4rem; }
.contact__form label span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 248, 245, 0.7);
}
.contact__form input,
.contact__form textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ivory);
  background: rgba(251, 248, 245, 0.06);
  border: 1px solid rgba(251, 248, 245, 0.18);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(251, 248, 245, 0.10);
}
.contact__form-note {
  font-size: 0.78rem;
  color: rgba(251, 248, 245, 0.5);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1512;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(251, 248, 245, 0.12);
}
.footer__brand p { color: rgba(251, 248, 245, 0.55); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 248, 245, 0.7);
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  max-width: var(--maxw);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(251, 248, 245, 0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .offer__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.8rem;
    background: var(--ivory);
    padding: 0 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 110; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .offer__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}
