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

:root {
  --blush:        #FFF0F5;
  --rose:         #D4A0C0;
  --rose-dark:    #B87A9E;
  --plum:         #4A3040;
  --plum-light:   #7A5068;
  --mint:         #A8E6CF;
  --mint-dark:    #7DD3B0;
  --lavender:     #C7CEEA;
  --lav-light:    #EEF0FF;
  --peach:        #FFD6CC;
  --white:        #FFFFFF;
  --card-bg:      rgba(255,255,255,0.75);
  --shadow:       0 8px 32px rgba(180,120,158,0.15);
  --shadow-hover: 0 16px 48px rgba(180,120,158,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--blush);
  color: var(--plum);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(255,240,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,192,0.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--plum-light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-dark); border-bottom-color: var(--rose); }

.nav-btn {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-btn:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,240,245,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,160,192,0.25);
  padding: 1rem 5vw 1.5rem;
  z-index: 99;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(180,120,158,0.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--plum);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(212,160,192,0.2);
  display: block;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose-dark); }
.mobile-menu .mobile-order {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  justify-content: center;
  border-bottom: none;
}

/* ── PAGE HERO BANNER ── */
.page-banner {
  padding: 130px 5vw 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.page-banner > * { position: relative; z-index: 1; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.6rem;
  display: block;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 1rem;
}
.page-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--plum-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(180,120,158,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(180,120,158,0.5); }

/* ── FOOTER ── */
footer {
  background: var(--plum);
  color: rgba(255,240,245,0.7);
  padding: 3rem 5vw 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
footer p { font-size: 0.82rem; line-height: 1.7; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  margin: 1.5rem 0;
}
.footer-links a {
  color: rgba(255,240,245,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--rose); }
.footer-divider { border: none; border-top: 1px solid rgba(255,240,245,0.1); margin: 1.5rem 0; }
.footer-copy { font-size: 0.78rem; color: rgba(255,240,245,0.35); }

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── BREAKPOINTS ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-btn   { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  nav { padding: 0 4vw; }
  .page-banner { padding: 100px 4vw 50px; }
  .nav-logo { font-size: 1.2rem; }
}

@media (max-width: 400px) {
  .page-banner { padding: 90px 4vw 40px; }
}
