/* Soft Romantic Palette */
:root {
  --cream: #FDF8F4;
  --blush: #F5E6E0;
  --dusty-rose: #D4A5A5;
  --sage: #9CAF88;
  --charcoal: #3D3D3D;
  --soft-gold: #C9A962;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 18px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p {
  font-family: 'Lato', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
}

a {
  color: var(--dusty-rose);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--blush);
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dusty-rose);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253, 248, 244, 0.3) 0%,
    rgba(253, 248, 244, 0.6) 50%,
    rgba(253, 248, 244, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.hero .tagline {
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

/* Sections */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.section-title .accent {
  width: 60px;
  height: 2px;
  background: var(--dusty-rose);
  margin: 1rem auto;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Cards */
.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Testimonials */
.testimonials {
  background: var(--blush);
}

.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.testimonial cite {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--dusty-rose);
}

/* What You Get */
.features {
  background: var(--white);
}

.features ul {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
}

.features li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--blush);
}

.features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--dusty-rose);
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--dusty-rose);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--dusty-rose);
  color: var(--dusty-rose);
}

.btn-outline:hover {
  background: var(--dusty-rose);
  color: var(--white);
}

/* CTA Section */
.cta {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.cta h2 {
  color: var(--cream);
}

.cta p {
  color: var(--blush);
  margin-bottom: 2rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--blush);
  padding: 1.5rem 0;
}

.faq-item h3 {
  color: var(--dusty-rose);
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  color: var(--blush);
  font-size: 0.9rem;
}

footer .social-links {
  margin: 1.5rem 0;
}

footer .social-links a {
  color: var(--cream);
  margin: 0 1rem;
  font-size: 1.2rem;
}

footer .social-links a:hover {
  color: var(--dusty-rose);
}

/* Page Header */
.page-header {
  padding-top: 120px;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--blush);
}

.page-header h1 {
  margin-bottom: 1rem;
}

/* Pricing */
.pricing {
  text-align: center;
  font-size: 1.3rem;
  color: var(--dusty-rose);
  margin: 2rem 0;
}

/* Map placeholder */
.map-section {
  background: var(--blush);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
}

.location-list li {
  padding: 1rem;
  background: var(--white);
  border-radius: 4px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--blush);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reverse {
    direction: ltr;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }
}
