/* ===== CSS VARIABLES ===== */
:root {
  --primary-cream: #faf8f3;
  --accent-teal: #2d7a7b;
  --accent-coral: #e88b7b;
  --accent-sage: #a8c5b5;
  --dark-navy: #1a2332;
  --light-gray: #e8e4de;
  --white: #ffffff;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== BASE ===== */
body {
  font-family: "DM Sans", sans-serif;
  background: var(--primary-cream);
  color: var(--dark-navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(45, 122, 123, 0.1);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-teal);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent-teal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent-teal);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 122, 123, 0.2);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 123, 0.3);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  padding: 1.5rem 5%;
  border-bottom: 1px solid rgba(45, 122, 123, 0.1);
  flex-direction: column;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 122, 123, 0.08);
  transition: color 0.3s ease;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent-teal); }

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--accent-teal);
  color: var(--white);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 65px;
  padding: 5rem 5% 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(168,197,181,0.1) 0%, rgba(232,139,123,0.05) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,122,123,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,139,123,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-subtitle {
  color: var(--accent-teal);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-navy);
}

.page-title .accent {
  color: var(--accent-coral);
  font-style: italic;
}

.page-description {
  font-size: 1.1rem;
  color: rgba(26, 35, 50, 0.7);
  line-height: 1.8;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }

.section-subtitle {
  color: var(--accent-coral);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: rgba(26, 35, 50, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 3rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 2.5rem;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.footer-description { color: rgba(255,255,255,0.65); line-height: 1.8; }

.footer-section h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent-coral); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .nav-links { gap: 1.4rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .page-hero { padding: 3.5rem 5% 3rem; }
  .page-title { font-size: 2rem; }
  .page-description { font-size: 1rem; }
  .section-title { font-size: 2.2rem; }
  footer { padding: 2.5rem 5% 1.5rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 400px) {
  .page-title { font-size: 1.75rem; }
}
