/* ═══════════════════════════════════════════
   Venus Hair Design — Modern + Lively
═══════════════════════════════════════════ */

:root {
  --black:   #111;
  --white:   #fff;
  --bg:      #f7f5f2;
  --bg-alt:  #edeae5;
  --accent:  #8b7355;
  --text:    #1a1a1a;
  --text-md: #555;
  --text-lt: #888;
  --border:  #e0ddd8;
  --radius:  12px;
  --radius-lg: 20px;
  --font:    'Inter', -apple-system, system-ui, sans-serif;
  --serif:   'Playfair Display', Georgia, serif;
  --ease:    cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ═══════════════════════════════════════════
   Labels & Headings
═══════════════════════════════════════════ */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-head { margin-bottom: 48px; }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   Buttons
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background: var(--bg);
  color: var(--accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   Animations
═══════════════════════════════════════════ */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   Nav
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 20px 48px; } }

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  z-index: 110;
}

.nav-links { display: none; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-md);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--black); }

.nav-cta {
  display: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  transition: background 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent); }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  padding: 4px 0;
  z-index: 110;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--black);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  padding: 8px 0;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--accent); }

.mobile-cta {
  font-family: var(--font) !important;
  font-size: 14px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 28px !important;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   Hero — Split Layout
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 120px 24px 60px;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 100px 48px;
    gap: 60px;
  }
}

.hero-text { max-width: 560px; }

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-md);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-stars {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 2px;
}

.proof-text {
  font-size: 13px;
  color: var(--text-lt);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 600px;
}

@media (max-width: 767px) {
  .hero-image {
    aspect-ratio: 3 / 2;
    max-height: 320px;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}

.hero-image:hover img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════
   Marquee
═══════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lt);
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════
   About — Image + Text
═══════════════════════════════════════════ */
.about { padding: 100px 0; }
@media (min-width: 768px) { .about { padding: 140px 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-text {
  font-size: 12px;
  color: var(--text-lt);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   Services
═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--white);
}
@media (min-width: 768px) { .services { padding: 140px 0; } }

.services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .services-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.col-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg);
  font-size: 15px;
  transition: padding-left 0.3s var(--ease), border-color 0.3s;
}

.price-list li:hover {
  padding-left: 8px;
  border-bottom-color: var(--accent);
}

.price-list li span:last-child {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent);
}

.price-list small {
  color: var(--text-lt);
  font-size: 13px;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services-cta p {
  font-size: 14px;
  color: var(--text-lt);
}

/* ═══════════════════════════════════════════
   Gallery — Horizontal Scroll Cards
═══════════════════════════════════════════ */
.gallery { padding: 100px 0; }
@media (min-width: 768px) { .gallery { padding: 140px 0; } }

.gallery-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) { .gallery-scroll { padding: 0 48px; } }

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.gallery-card {
  position: relative;
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-card { width: 340px; }
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.gallery-card:hover .card-label {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   Reviews
═══════════════════════════════════════════ */
.reviews {
  padding: 100px 0;
  background: var(--white);
}
@media (min-width: 768px) { .reviews { padding: 140px 0; } }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.review-stars {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-md);
  margin-bottom: 24px;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.review-card footer span {
  font-size: 12px;
  color: var(--text-lt);
}

/* ═══════════════════════════════════════════
   CTA Banner
═══════════════════════════════════════════ */
.cta-banner {
  padding: 24px 0;
}

.cta-inner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 56px 60px;
  }
}

.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════
   Contact
═══════════════════════════════════════════ */
.contact { padding: 100px 0; }
@media (min-width: 768px) { .contact { padding: 140px 0; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.detail-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.detail-group p {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.6;
}

.detail-group a {
  color: var(--text);
  transition: color 0.3s;
}
.detail-group a:hover { color: var(--accent); }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  position: relative;
  background: var(--bg-alt);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   Footer
═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-lt);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-lt);
}
