/* ===== IVY SAGRADO — LIVELY BRAND SYSTEM ===== */
:root {
  --teal: #00897A;
  --teal-dark: #006B60;
  --teal-light: #00A896;
  --pink: #F067A6;
  --pink-dark: #D4558F;
  --aqua: #BBE2DC;
  --aqua-light: #E4F5F3;
  --blush: #FBCCCC;
  --blush-light: #FEF0F0;
  --navy: #1D3D70;
  --navy-dark: #142B50;
  --white: #FFFFFF;
  --off-white: #FAFCFC;
  --gray-light: #F4F6F6;
  --text-body: #2D4A47;
  --text-muted: #6B8E8A;
  --text-faint: #A8C4C0;
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,137,122,0.12);
  padding: 0 5%;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.nav-logo span { color: var(--pink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.nav-links a:hover { background: var(--aqua-light); color: var(--teal); }
.nav-links a.active { background: var(--aqua-light); color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  border-bottom: 2px solid var(--aqua);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--aqua-light); color: var(--teal); }

/* ===== SHARED UTILITIES ===== */
.page-top { padding-top: 72px; }
.section { padding: 90px 5%; }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,137,122,0.3); }
.btn-pink { background: var(--pink); color: white; }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,103,166,0.3); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-white { background: white; color: var(--teal); }
.btn-white:hover { background: var(--aqua-light); transform: translateY(-2px); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--aqua);
  color: var(--teal-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.tag-pink { background: var(--blush); color: var(--pink-dark); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: white;
  padding: 60px 5% 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .fl {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 14px;
}
.footer-brand .fl span { color: var(--pink); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { background: var(--teal); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom .verse-strip {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 13px;
  color: rgba(187,226,220,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .section { padding: 60px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
