:root {
  --cream: #fdf8f6;
  --rose-beige: #d9b9af;
  --warm-beige: #caa892;
  --accent: #b27a6b;
  --text: #241b19;
  --muted: #6f5e58;
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 14px 30px rgba(28, 18, 15, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display';
}

.hero {
  min-height: 85vh;
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  padding-top: 120px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-salon.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(.9) brightness(.9);
  transform: translateY(-80px);
  will-change: transform;
  transition: transform 0.2s linear;
  z-index: 0;
  opacity: 0.98;
}

.hero-left {
  z-index: 5;
  max-width: 55ch;
  padding: 24px;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

h1 {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 3.6rem;
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.03;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2, .9, .3, 1), transform 700ms cubic-bezier(.2, .9, .3, 1);
  animation: fadeIn 2s forwards;
}

.lead {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 48ch;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms 140ms cubic-bezier(.2, .9, .3, 1), transform 700ms 140ms cubic-bezier(.2, .9, .3, 1);
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent), var(--warm-beige));
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--accent);
  border: none;
  transform: translateY(8px);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms;
  opacity: 0;
}

.cta:hover {
  transform: translateY(0px) scale(1.01);
  filter: brightness(1.03)
}

.cta:active {
  transform: translateY(2px) scale(.995)
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.portrait {
  width: 95%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20, 10, 8, 0.08);
  transform: translateY(20px) scale(.995);
  transition: transform 800ms cubic-bezier(.2, .9, .3, 1), box-shadow 300ms;
}

.reveal.in-view h1,
.reveal.in-view .lead,
.reveal.in-view .cta {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-top: 20vh;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-tagline {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 20px;
}

.reveal.in-view .cta {
  transition-delay: 240ms
}

section {
  padding: 80px 6vw;
}

.about {
  background: linear-gradient(180deg, rgba(255, 250, 249, 0.9), rgba(255, 250, 249, 0.95));
  border-top: 1px solid rgba(200, 170, 160, 0.06)
}

.section-title {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--accent)
}

.about .content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

footer {
  text-align: center;
  padding: 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.flower-illustration {
  width: 86%;
  max-width: 280px;
  opacity: 0.95;
  filter: grayscale(.02) contrast(.95);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 36px auto 0;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(18, 12, 10, 0.06);
  transition: transform 350ms cubic-bezier(.2, .9, .3, 1), box-shadow 350ms, filter 350ms;
  transform: translateY(10px);
  will-change: transform;
}

.card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 28px 60px rgba(30, 15, 10, 0.09);
  filter: brightness(1.01);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 26px 34px;
  text-align: center;
}

.card-title {
  font-family: "Playfair Display";
  font-size: 1.45rem;
  color: var(--accent);
  margin: 6px 0 10px;
}

.card-desc {
  color: var(--muted);
  font-size: 0.98rem
}

.reveal {
  opacity: 1
}

.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.learn-section {
  text-align: center;
  padding: 120px 6vw;
  background: linear-gradient(90deg, var(--accent), var(--warm-beige));
  color: #fff;
}

.learn-section h2 {
  font-family: 'Playfair Display';
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.learn {
  text-decoration: none;
  background: #fff;
  color: var(--accent);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, filter 180ms;
}

.learn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

@media (prefers-reduced-motion: reduce) {

  .portrait,
  .card,
  .cta,
  .hero-bg,
  .nav-wrap {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

.nav-wrap {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.6));
  box-shadow: 0 6px 20px rgba(15, 10, 8, 0.06);
  backdrop-filter: blur(6px);
}

.nav-wrap.transparent {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-wrap.solid {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.6));
  box-shadow: 0 6px 20px rgba(15, 10, 8, 0.06);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display";
  color: var(--accent);
  font-weight: 600;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--rose-beige);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #4e4e4e;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 65px;
    right: 28px;
    background: #fff9f7;
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10001;
  }

  .nav-links.active a {
    color: var(--accent);
    font-size: 1rem;
  }
}

.why-us {
  background: linear-gradient(180deg, #fff9f7, #fff5f2);
  padding: 80px 6vw;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.why-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}

.why-card p {
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
  line-height: 1.5;
}

.testimonials {
  padding: 90px 6vw;
  background: #fffaf8;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.testi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.quote {
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 12px;
}

.client-name {
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}