/* ==========================================================
   Beauty Aesthetics by Sade Morris — Modern Luxury
   Shopify-inspired · 2026
   ========================================================== */

/* --- Variables --- */
:root {
  --cream: #faf7f4;
  --white: #ffffff;
  --pink-light: #fef1f4;
  --pink: #e87a9d;
  --pink-dark: #d46386;
  --gold: #c9a96a;
  --gold-light: #e5d2a3;
  --gold-dark: #b08d4f;
  --ink: #2d2326;
  --ink-soft: #6b5b60;
  --ink-muted: #9c8b90;
  --border: #ede4e4;
  --shadow-sm: 0 2px 8px rgba(45, 35, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(45, 35, 38, 0.08);
  --shadow-lg: 0 20px 48px rgba(45, 35, 38, 0.10);
  --shadow-gold: 0 8px 24px rgba(201, 169, 106, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
.serif { font-family: 'Playfair Display', Georgia, serif; }
.script { font-family: 'Parisienne', 'Dancing Script', cursive; font-weight: 400; }
.gold { color: var(--gold); }
.pink { color: var(--pink); }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 106, 0.4); }
  50%      { box-shadow: 0 0 0 16px rgba(201, 169, 106, 0); }
}
.animate-in {
  animation: fadeUp 0.7s ease both;
}
.animate-in-d1 { animation-delay: 0.1s; }
.animate-in-d2 { animation-delay: 0.2s; }
.animate-in-d3 { animation-delay: 0.3s; }
.animate-in-d4 { animation-delay: 0.4s; }

/* reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* --- Utility --- */
.wrap  { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-head {
  text-align: center; margin-bottom: 52px;
}
.section-head .eyebrow {
  font-family: 'Parisienne', cursive; font-size: 1.6rem;
  color: var(--pink); margin-bottom: -4px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.5px;
}
.section-head .rule {
  width: 48px; height: 3px; background: var(--gold);
  margin: 14px auto 0; border-radius: 4px;
}

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 68px;
}
.brand {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700;
}
.brand b { color: var(--gold-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.3px; transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; text-decoration: none; padding: 14px 30px;
  border-radius: 60px; font-weight: 600; font-size: 0.88rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0; transition: opacity var(--transition);
}
.btn span { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn:hover::after { opacity: 1; }
.btn-outline {
  background: transparent; color: var(--gold-dark);
  border: 2px solid var(--gold); box-shadow: none;
}
.btn-outline::after { display: none; }
.btn-outline:hover { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}
.btn-pink::after { background: linear-gradient(135deg, var(--pink-dark), var(--pink)); }

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(232, 122, 157, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(201, 169, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(232, 122, 157, 0.06) 0%, transparent 45%),
    var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,169,106,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(232,122,157,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero .welcome {
  font-family: 'Parisienne', cursive; font-size: 2.6rem;
  color: var(--pink); margin-bottom: -8px;
  animation: fadeUp 0.8s ease;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem); line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 10px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero .sub {
  font-family: 'Parisienne', cursive; font-size: 1.8rem;
  color: var(--gold-dark); margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero p {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

/* Decorative floating elements */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-dot {
  position: absolute; border-radius: 50%; opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
.hero-dot:nth-child(1) { width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,122,157,0.08), transparent); top: -80px; right: -80px; animation-delay: 0s; }
.hero-dot:nth-child(2) { width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,169,106,0.08), transparent); bottom: 10%; left: -40px; animation-delay: -2s; }
.hero-dot:nth-child(3) { width: 120px; height: 120px; background: radial-gradient(circle, rgba(232,122,157,0.06), transparent); top: 40%; left: 15%; animation-delay: -4s; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.trust-item .num {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--gold-dark);
}
.trust-item .lab { font-size: 0.75rem; color: var(--ink-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* --- Services --- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--pink));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pink-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }

/* --- Price List --- */
.price-section { background: var(--white); }
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.price-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--border);
  transition: var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card h3 {
  text-align: center; color: var(--gold-dark); font-size: 1.25rem;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-light);
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-row .name { flex: 1; }
.price-row .name small { color: var(--ink-muted); font-size: 0.78rem; }
.price-row .dots {
  flex: 1; border-bottom: 1px dotted var(--border);
  margin: 0 10px; transform: translateY(-4px);
}
.price-row .val {
  font-weight: 600; color: var(--ink);
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
}

/* Highlight rows */
.price-row.highlight {
  background: rgba(201, 169, 106, 0.06);
  margin: 0 -16px; padding: 10px 16px; border-radius: 8px;
  border-bottom-color: transparent;
}

/* --- Model Slots --- */
.model-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff; padding: 80px 0;
  position: relative; overflow: hidden;
}
.model-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.model-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.model-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); color: #fff; margin-bottom: 6px;
}
.model-content .subtitle {
  font-family: 'Parisienne', cursive; font-size: 1.3rem;
  color: rgba(255,255,255,0.8); margin-bottom: 28px;
}
.model-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px;
  text-align: left; margin: 0 auto 28px;
}
.model-grid li {
  list-style: none; font-size: 0.9rem; padding: 6px 0 6px 28px;
  position: relative;
}
.model-grid li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold-light); font-size: 0.8rem;
}
.model-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 60px; padding: 8px 20px; font-size: 0.78rem;
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.model-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* --- Testimonials --- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--border); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; font-weight: 600;
}
.testi-author .name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testi-author .from { font-size: 0.72rem; color: var(--ink-muted); }

/* --- Contact --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info .intro { color: var(--ink-soft); margin-bottom: 24px; }
.contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-row .ic {
  width: 36px; height: 36px; background: var(--pink-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); flex-shrink: 0; font-size: 0.9rem;
}
.contact-row .ic.gold { background: rgba(201, 169, 106, 0.12); color: var(--gold-dark); }
.contact-row .lab { font-weight: 600; font-size: 0.82rem; }
.contact-row .det { color: var(--ink-soft); font-size: 0.9rem; }

/* --- Form --- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.form-card .desc { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.92rem;
  font-family: inherit; color: var(--ink); background: var(--cream);
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.10);
}
.field textarea { resize: vertical; min-height: 90px; }

.form-msg {
  display: none; background: #e7f6ec; color: #2e7d4f;
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px;
  font-size: 0.88rem;
}
.form-msg.show { display: block; }

/* --- Footer --- */
footer {
  background: var(--ink); color: #fff; padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
footer .brand { color: #fff; margin-bottom: 12px; }
footer .brand-desc { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.82rem; margin-bottom: 8px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* --- Booking Page Hero --- */
.booking-hero {
  padding: 120px 24px 50px; text-align: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--pink-light) 100%);
}
.booking-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 4px;
}
.booking-hero .sub {
  font-family: 'Parisienne', cursive; font-size: 1.4rem; color: var(--pink);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero .welcome { font-size: 2rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
