/* Domaine des Roses — Wedding & Event Venue demo (Elegant, soft luxury, romantic) */
:root {
  --wv-ivory: #fdfbf7;
  --wv-ivory-dark: #f4f1ea;
  --wv-blush: #d4a5a5;
  --wv-blush-light: #f7eded;
  --wv-gold: #c5b393;
  --wv-gold-dark: #a89675;
  --wv-charcoal: #3e3a39;
  --wv-muted: #7a706d;
  --wv-border: #e8e2db;
  --wv-shadow: 0 8px 30px rgba(62, 58, 57, 0.06);
  --wv-font-display: 'Cormorant Garamond', Georgia, serif;
  --wv-font-body: 'Montserrat', system-ui, sans-serif;
  --demo-banner-height: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wv-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wv-charcoal);
  background: var(--wv-ivory);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--wv-gold-dark); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--wv-blush); }
h1, h2, h3, h4 {
  font-family: var(--wv-font-display);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--wv-charcoal);
  letter-spacing: 0.01em;
}

/* Header */
.wv-header {
  position: sticky;
  top: var(--demo-banner-height);
  z-index: 50;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--wv-border);
}
.wv-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wv-logo {
  font-family: var(--wv-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--wv-charcoal);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.wv-logo span { color: var(--wv-gold); font-style: italic; }
.wv-nav { display: none; gap: 0.5rem; }
@media (min-width: 768px) { .wv-nav { display: flex; } }
.wv-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wv-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.wv-nav a:hover { color: var(--wv-charcoal); }
.wv-header__cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wv-ivory);
  background: var(--wv-charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background 200ms ease;
}
.wv-header__cta:hover { background: var(--wv-gold-dark); color: var(--wv-ivory); }

/* Hero */
.wv-hero {
  position: relative;
  padding: 7rem 1.25rem 8rem;
  background: linear-gradient(180deg, var(--wv-ivory-dark) 0%, var(--wv-ivory) 100%);
  text-align: center;
  overflow: hidden;
}
.wv-hero::before, .wv-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid var(--wv-gold);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.wv-hero::before { top: -100px; left: -100px; }
.wv-hero::after { bottom: -100px; right: -100px; width: 400px; height: 400px; }
.wv-hero__inner { position: relative; max-width: 48rem; margin: 0 auto; }
.wv-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--wv-gold);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.wv-hero__ornament::before, .wv-hero__ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--wv-gold);
}
.wv-hero__title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--wv-charcoal);
}
.wv-hero__title em { font-style: italic; color: var(--wv-blush); }
.wv-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--wv-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 42ch;
  margin-inline: auto;
  font-weight: 400;
}
.wv-hero__btn {
  display: inline-flex;
  padding: 1rem 2.5rem;
  font-weight: 600;
  color: var(--wv-ivory);
  background: var(--wv-charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
  transition: background 200ms ease, transform 200ms ease;
}
.wv-hero__btn:hover { background: var(--wv-gold-dark); color: var(--wv-ivory); transform: translateY(-2px); }

/* Sections */
.wv-section { padding: 6rem 1.25rem; }
.wv-section--alt { background: var(--wv-ivory-dark); }
.wv-section__inner { max-width: 72rem; margin: 0 auto; }
.wv-section__header { text-align: center; margin-bottom: 4rem; }
.wv-section__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wv-gold-dark);
  margin-bottom: 1rem;
}
.wv-section__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.wv-section__divider {
  width: 60px;
  height: 1px;
  background: var(--wv-gold);
  margin: 1.5rem auto 0;
}

/* Spaces (Gallery Grid) */
.wv-spaces { display: grid; gap: 2rem; }
@media (min-width: 768px) { .wv-spaces { grid-template-columns: repeat(3, 1fr); } }
.wv-space {
  background: var(--wv-ivory);
  border: 1px solid var(--wv-border);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.wv-space:hover { transform: translateY(-6px); box-shadow: var(--wv-shadow); }
.wv-space__img {
  height: 18rem;
  background-size: cover;
  background-position: center;
}
.wv-space__img--garden { background: linear-gradient(135deg, #d4a5a5 0%, #f7eded 100%); }
.wv-space__img--ballroom { background: linear-gradient(135deg, #c5b393 0%, #fdfbf7 100%); }
.wv-space__img--courtyard { background: linear-gradient(135deg, #3e3a39 0%, #7a706d 100%); }
.wv-space__body { padding: 2rem; text-align: center; }
.wv-space__title { font-size: 1.75rem; margin-bottom: 0.5rem; font-weight: 500; }
.wv-space__capacity { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wv-gold-dark); font-weight: 600; margin-bottom: 1rem; }
.wv-space__desc { font-size: 0.9375rem; color: var(--wv-muted); margin: 0; line-height: 1.7; }

/* AI Event Planner Hook */
.wv-ai {
  background: var(--wv-charcoal);
  color: var(--wv-ivory);
  padding: 4rem 2rem;
  display: grid;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--wv-gold);
  position: relative;
}
@media (min-width: 768px) { .wv-ai { grid-template-columns: 1fr 1fr; padding: 5rem; } }
.wv-ai__ornament { color: var(--wv-gold); font-size: 2rem; margin-bottom: 1rem; }
.wv-ai__title { font-size: 2.25rem; color: var(--wv-ivory); font-weight: 400; margin-bottom: 1rem; }
.wv-ai__text { color: rgba(253, 251, 247, 0.8); margin-bottom: 2rem; line-height: 1.8; }
.wv-ai__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.wv-ai__features li { 
  display: flex; 
  align-items: flex-start; 
  gap: 1rem; 
  font-size: 0.9375rem; 
  color: rgba(253, 251, 247, 0.9); 
  line-height: 1.6;
}
.wv-ai__features li::before { 
  content: '❦'; 
  color: var(--wv-gold); 
  font-size: 1.25rem; 
  flex-shrink: 0;
  margin-top: 2px;
}

/* Packages */
.wv-packages { display: grid; gap: 2rem; }
@media (min-width: 768px) { .wv-packages { grid-template-columns: repeat(3, 1fr); } }
.wv-package {
  background: var(--wv-ivory);
  border: 1px solid var(--wv-border);
  padding: 3rem 2rem;
  text-align: center;
  transition: border-color 300ms ease, transform 300ms ease;
}
.wv-package:hover { border-color: var(--wv-gold); transform: translateY(-4px); }
.wv-package--featured { border: 2px solid var(--wv-gold); background: var(--wv-ivory-dark); }
.wv-package__name { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.wv-package__price { font-family: var(--wv-font-display); font-size: 2.5rem; font-weight: 600; color: var(--wv-charcoal); margin-bottom: 0.25rem; }
.wv-package__guests { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wv-muted); font-weight: 600; margin-bottom: 2rem; }
.wv-package__divider { width: 40px; height: 1px; background: var(--wv-gold); margin: 0 auto 2rem; }
.wv-package__features { list-style: none; padding: 0; margin: 0 0 2.5rem; text-align: left; }
.wv-package__features li { padding: 0.625rem 0; font-size: 0.875rem; color: var(--wv-charcoal); border-bottom: 1px solid var(--wv-border); display: flex; align-items: center; gap: 0.75rem; }
.wv-package__features li::before { content: '✓'; color: var(--wv-gold-dark); font-weight: bold; }
.wv-package__btn {
  display: block;
  padding: 1rem;
  font-weight: 600;
  color: var(--wv-ivory);
  background: var(--wv-charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: background 200ms ease;
}
.wv-package__btn:hover { background: var(--wv-gold-dark); color: var(--wv-ivory); }

/* Footer */
.wv-footer {
  background: var(--wv-charcoal);
  color: rgba(253, 251, 247, 0.75);
  padding: 5rem 1.25rem 2rem;
  text-align: center;
}
.wv-footer__inner { max-width: 48rem; margin: 0 auto; }
.wv-footer__brand { font-family: var(--wv-font-display); font-size: 2rem; color: var(--wv-ivory); margin-bottom: 1rem; font-weight: 500; }
.wv-footer__brand span { color: var(--wv-gold); font-style: italic; }
.wv-footer__text { font-size: 0.9375rem; line-height: 1.8; margin: 0 auto 2rem; max-width: 36ch; }
.wv-footer__divider { width: 60px; height: 1px; background: var(--wv-gold); margin: 0 auto 2rem; }
.wv-footer__contact { list-style: none; padding: 0; margin: 0 0 3rem; font-size: 0.875rem; letter-spacing: 0.05em; }
.wv-footer__contact li { margin-bottom: 0.75rem; }
.wv-footer__contact a { color: var(--wv-gold); text-decoration: none; }
.wv-footer__contact a:hover { color: var(--wv-ivory); }
.wv-footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(253, 251, 247, 0.1); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
