@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --blush:        #F4DDE3;
  --blush-mid:    #EAC8D1;
  --blush-light:  #FBF3F5;
  --blush-card:   #F9EEF1;
  --rose:         #C0768A;
  --rose-dark:    #9E5A6E;
  --rose-light:   #F7E4E9;
  --cream:        #FDFAF8;
  --charcoal:     #1C1A1A;
  --mid:          #6B5C5E;
  --light:        #A89295;
  --border:       rgba(28,26,26,0.09);
  --border-mid:   rgba(28,26,26,0.15);
  --white:        #FFFFFF;
  --sage:         #B05070;
  --sage-dark:    #8C3A54;
  --sage-light:   #F7E0E6;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--blush-light);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* ANN BAR */
.ann-bar {
  background: var(--charcoal);
  padding: 11px 48px;
  text-align: center;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ann-bar a { color: var(--blush); text-decoration: none; }
.ann-bar a:hover { text-decoration: underline; }

/* NAV */
nav {
  background: rgba(253,250,248,0.97);
  padding: 0 52px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; font-style: italic;
  color: var(--charcoal); letter-spacing: 0.01em;
}
.nav-logo .creds {
  font-size: 10px; font-weight: 500; color: var(--light);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--mid);
  text-decoration: none; padding: 8px 16px; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--blush); }
.nav-links a.active { background: var(--charcoal); color: white; }
.nav-cta {
  background: var(--charcoal); color: white !important;
  padding: 11px 24px; border-radius: 100px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--charcoal); padding: 72px 80px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .f-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; font-style: italic;
  color: white; display: block; margin-bottom: 4px;
}
.footer-brand .f-creds {
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-bottom: 18px;
}
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.7;
}
.footer-disclosure { max-width: 560px; }
.footer-disclosure strong { color: rgba(255,255,255,0.35); }

/* BUTTONS */
.btn-dark {
  background: var(--charcoal); color: white;
  padding: 15px 30px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-rose {
  background: var(--rose); color: white;
  padding: 15px 30px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-white {
  background: white; color: var(--charcoal);
  padding: 15px 30px; border-radius: 100px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.88; }
.btn-outline {
  background: transparent; color: var(--charcoal);
  padding: 14px 30px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-mid); transition: all 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: white; border-color: var(--charcoal); }

/* SECTION LABEL */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.section-label::before { content: ''; width: 20px; height: 1.5px; background: var(--rose); border-radius: 2px; }

/* TAG */
.tag {
  padding: 10px 20px; border: 1.5px solid var(--border-mid);
  border-radius: 100px; font-size: 13px; font-weight: 500;
  color: var(--mid); transition: all 0.2s; cursor: default; background: white;
}
.tag:hover { border-color: var(--rose); color: var(--rose-dark); background: var(--rose-light); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade.d1 { animation-delay: 0.08s; }
.fade.d2 { animation-delay: 0.2s; }
.fade.d3 { animation-delay: 0.34s; }
.fade.d4 { animation-delay: 0.48s; }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ── SERVICES DROPDOWN ── */
nav .has-dropdown { position: relative; }
nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: white;
  border: 1px solid rgba(28,26,26,0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 9999;
}
nav .has-dropdown:hover .dropdown { display: block; }
nav .dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6B5C5E;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
nav .dropdown li a:hover { background: #FBF3F5; color: #1C1A1A; }
