/* ========================================
   VILMA'S HAIR SALON — Hazleton, PA
   Warm mauve/blush salon theme
   Cormorant Garamond (headings) + Raleway (body)
   ======================================== */

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

:root {
  --bg:        #1c1719;
  --bg-alt:    #221d20;
  --bg-warm:   #201a1d;
  --cream:     #f5ede8;
  --cream-dim: #b8a9a0;
  --accent:    #c47d8a;
  --accent-dk: #a3616e;
  --blush:     #d4959f;
  --text:      #f5ede8;
  --text-dim:  #8f7f78;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cream); }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: rgba(28, 23, 25, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}

.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -.01em;
}
.nav__brand:hover { color: var(--accent); }

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: .95rem;
}
.nav__phone svg { flex-shrink: 0; }
.nav__phone:hover { color: var(--cream); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 14vh, 10rem) 24px clamp(5rem, 10vh, 8rem);
  background:
    radial-gradient(ellipse at 35% 25%, rgba(196, 125, 138, .1) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 75%, rgba(163, 97, 110, .07) 0%, transparent 45%),
    linear-gradient(175deg, #241e21 0%, #1c1719 40%, #141113 100%);
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 660px;
}

.hero__tag {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--blush) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--cream-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all .25s;
  cursor: pointer;
  border: none;
  min-height: 48px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(196, 125, 138, .2);
}
.btn--primary:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196, 125, 138, .3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 237, 232, .2);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.15rem;
}

/* ---- SECTIONS ---- */
.section {
  padding: clamp(4.5rem, 8vh, 7rem) 0;
}

.section--alt { background: var(--bg-alt); }

.section__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: .75rem;
  font-weight: 600;
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(245, 237, 232, .04);
  border: 1px solid rgba(245, 237, 232, .07);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all .3s;
  opacity: 0;
  transform: translateY(24px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

.service-card:hover {
  border-color: rgba(196, 125, 138, .25);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  background: rgba(245, 237, 232, .06);
}

.service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.service-card p {
  font-size: .95rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ---- PROOF STRIP ---- */
.proof-strip {
  background:
    radial-gradient(ellipse at 75% 50%, rgba(196, 125, 138, .05) 0%, transparent 45%),
    var(--bg-warm);
  border-top: 1px solid rgba(245, 237, 232, .04);
  border-bottom: 1px solid rgba(245, 237, 232, .04);
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.proof-strip__inner.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

.proof-strip__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.proof-strip__icon {
  color: var(--accent);
}

.proof-strip__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cream-dim);
  text-align: center;
}

.proof-strip__divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 237, 232, .1);
  flex-shrink: 0;
}

.proof-strip__quote { flex: 1; }

.proof-strip__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.about {
  background:
    radial-gradient(ellipse at 20% 55%, rgba(196, 125, 138, .04) 0%, transparent 40%),
    var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__text {
  opacity: 0;
  transform: translateX(-24px);
}
.about__text.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .6s ease, transform .6s ease;
}

.about__text p {
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

.about__text .section__title { max-width: 460px; }

.about__accent {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(24px);
}
.about__accent.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}

.about__badge {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(196, 125, 138, .25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(196, 125, 138, .05);
}

.about__badge svg { color: var(--accent); }

.about__badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  line-height: 1.2;
}

/* ---- LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.location__info {
  opacity: 0;
  transform: translateY(24px);
}
.location__info.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

.location__block { margin-bottom: 2rem; }

.location__block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .75rem;
}

.location__block p {
  color: var(--cream-dim);
  line-height: 1.7;
}

.location__block p a {
  color: var(--accent);
  font-weight: 600;
}

.location__map {
  opacity: 0;
  transform: translateY(24px);
}
.location__map.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease .1s, transform .5s ease .1s;
}

.location__map iframe {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

/* ---- CTA ---- */
.cta {
  text-align: center;
  padding: clamp(5rem, 10vh, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(196, 125, 138, .08) 0%, transparent 50%),
    var(--bg);
}

.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta__title em {
  font-style: italic;
  color: var(--accent);
}

.cta__sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta__address {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--text-dim);
}

/* ---- FOOTER ---- */
.footer {
  background: #141113;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(245, 237, 232, .05);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer__addr,
.footer__phone {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer__phone a { color: var(--accent); }

.footer__right {
  display: flex;
  gap: 24px;
}

.footer__right a {
  font-size: .9rem;
  color: var(--cream-dim);
  font-weight: 500;
}
.footer__right a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(245, 237, 232, .05);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: .8rem;
  color: var(--text-dim);
}

.footer__bottom a {
  color: var(--accent);
  font-weight: 500;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 767px) {
  body { font-size: 16px; }

  .nav__inner { height: 56px; padding: 0 16px; }
  .nav__brand { font-size: 1.15rem; }
  .nav__phone { font-size: .85rem; }

  .hero {
    min-height: 90vh;
    padding: 6rem 20px 4rem;
  }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn { width: 100%; max-width: 280px; }

  .section { padding: clamp(3rem, 6vh, 4.5rem) 0; }
  .container { padding: 0 20px; }

  .section__title { font-size: clamp(1.5rem, 6vw, 2rem); }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card { padding: 24px 20px; }

  .proof-strip__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .proof-strip__divider {
    width: 60px;
    height: 1px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__accent { order: -1; }

  .about__badge {
    width: 140px;
    height: 140px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location__map iframe { height: 280px; }

  .cta { padding: clamp(3.5rem, 8vh, 5rem) 0; }
  .cta__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
