@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --sand: #fdf9f4;
  --shell: #fff4ec;
  --rose: #f3dede;
  --deep: #543c3e;
  --muted: #7a5f63;
  --accent: #d39aa8;
  --white: #ffffff;
  --shadow: 0 25px 60px rgba(84, 60, 62, 0.12);
  --font: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, var(--shell), var(--sand));
  color: var(--deep);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(110, 87, 84, 0.08);
  border-bottom: 1px solid rgba(211, 154, 168, 0.25);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--deep);
}

.nav-link--active {
  background: var(--rose);
  color: var(--deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 999px;
}

.home-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 6vw, 4.5rem) 4rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.hero-intro {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 222, 221, 0.85));
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 154, 168, 0.35);
}

.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-video-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 222, 221, 0.9));
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 154, 168, 0.35);
}

.hero-video-media {
  display: flex;
  justify-content: center;
}

.hero-video {
  width: 100%;
  max-width: 600px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #000;
}

.hero-video-text h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-family: 'Playfair Display', serif;
  color: var(--deep);
}

.hero-video-text p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 0.45rem;
}

.salon-intro {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.salon-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.salon-eyebrow {
  width: 100%;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--accent);
}

.salon-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-family: 'Playfair Display', serif;
}

.salon-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(243, 222, 221, 0.6);
  font-weight: 600;
  color: var(--deep);
}

.salon-subhead {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  max-width: 720px;
}

.offer-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

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

.offer-pill {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(211, 154, 168, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.offer-tag {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(84, 60, 62, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--deep);
}

.offer-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.catalog-section {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.catalog-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: 'Playfair Display', serif;
}

.catalog-header p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.category-card {
  border-radius: 28px;
  padding: 1.2rem 1rem 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 222, 221, 0.85));
  border: 1px solid rgba(211, 154, 168, 0.3);
  box-shadow: 0 18px 45px rgba(79, 63, 71, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 200px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(79, 63, 71, 0.15);
}

.category-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: rgba(243, 222, 221, 0.5);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(84, 60, 62, 0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}

.category-card__title {
  margin: 0;
  font-weight: 600;
  color: var(--deep);
}

.category-card__subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.category-card--loading {
  justify-content: center;
  align-items: center;
  color: var(--muted);
}

.floating-menu {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  border: none;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 15px 30px rgba(84, 60, 62, 0.3);
  display: none;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  z-index: 9;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  body.nav-ready .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: clamp(1rem, 5vw, 3rem);
    right: clamp(1rem, 5vw, 3rem);
    flex-direction: column;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(79, 63, 71, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 12;
  }

  body.nav-ready .nav-link {
    width: 100%;
    text-align: left;
  }

  body.nav-ready .nav.nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-menu {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .home-shell {
    padding: 1.5rem 1.25rem 3rem;
  }

  .offer-scroll {
    grid-auto-columns: minmax(200px, 80%);
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
