:root {
  --color-cream: #faf6ef;
  --color-cream-alt: #f3ede1;
  --color-blush: #f0c9c9;
  --color-blush-dark: #e2a3a8;
  --color-sage: #93a583;
  --color-sage-dark: #71805f;
  --color-gold: #c9a86a;
  --color-text: #4a453e;
  --color-text-light: #7a7469;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(74, 69, 62, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text);
}

.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--color-sage-dark);
}

p { margin: 0 0 16px; color: var(--color-text-light); }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
.section-alt { background: var(--color-cream-alt); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head p { margin-top: 8px; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-sage-dark);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-sage-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(113, 128, 95, 0.3);
}
.btn-primary:hover { background: var(--color-sage); }

.btn-outline {
  background: transparent;
  border-color: var(--color-sage-dark);
  color: var(--color-sage-dark);
}
.btn-outline:hover { background: var(--color-sage-dark); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 69, 62, 0.08);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-sage-dark);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-badge-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--color-blush);
  color: var(--color-sage-dark);
}

.logo-text {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1;
}
.logo-text-sub {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}
.nav-links a:hover { color: var(--color-sage-dark); }

.nav-cta-desktop { flex-shrink: 0; }
.nav-cta-item { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,246,239,0.55) 0%, rgba(250,246,239,0.85) 75%, var(--color-cream) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero h1 {
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero h1 .script {
  font-size: 1.25em;
  font-weight: 700;
}
.hero-sub { font-size: 1.1rem; margin-bottom: 32px; }
.hero-sub .script { font-size: 1.4em; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Icon strip */
.icon-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.icon-card { text-align: center; }
.icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-sage-dark);
  box-shadow: var(--shadow);
}
.icon-card h3 { font-size: 1.05rem; }
.icon-card p { font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-placeholder {
  display: none;
  width: 100%; height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 16px;
}
.gallery-placeholder span { font-size: 2.2rem; margin-bottom: 8px; }
.gallery-placeholder p { color: #fff; font-weight: 600; margin: 0; font-size: 0.9rem; }

.ph-1, .ph-7 { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); }
.ph-2, .ph-8 { background: linear-gradient(135deg, var(--color-blush-dark), #d68b91); }
.ph-3, .ph-9 { background: linear-gradient(135deg, var(--color-gold), #b3894f); }
.ph-4, .ph-10 { background: linear-gradient(135deg, #a9b7cd, #7f91ad); }
.ph-5, .ph-11 { background: linear-gradient(135deg, var(--color-blush), var(--color-blush-dark)); }
.ph-6, .ph-12 { background: linear-gradient(135deg, var(--color-sage-dark), #4f5c41); }

.gallery-cta { text-align: center; margin-top: 40px; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.price-card h3 {
  font-size: 1.1rem;
  border-bottom: 2px solid var(--color-cream-alt);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(74, 69, 62, 0.12);
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:last-child { font-weight: 700; color: var(--color-sage-dark); }

.addon-note {
  margin-top: 32px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.addon-note h4 { margin-bottom: 8px; }
.addon-note p { margin: 0; font-size: 0.9rem; }

/* About */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.badge-row { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.stat-badge {
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 110px;
}
.stat-badge strong { display: block; color: var(--color-sage-dark); font-size: 1.1rem; }
.stat-badge span { font-size: 0.78rem; color: var(--color-text-light); }

.about-flourish { display: flex; align-items: center; justify-content: center; }
.about-flourish-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px solid var(--color-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.about-flourish-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-flourish-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
}
.about-flourish-fallback span {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--color-text);
}

/* Contact / CTA band */
.cta-band { background: var(--color-sage-dark); color: #fff; }
.cta-band .eyebrow { color: var(--color-blush); }
.cta-band h2, .cta-band .script { color: #fff; }
.cta-band .section-head p { color: rgba(255,255,255,0.8); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(74, 69, 62, 0.15);
  color: var(--color-text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-sage-dark);
}
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.contact-form .btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.8rem; color: var(--color-text-light); margin: 0; }
.form-status { font-size: 0.9rem; font-weight: 600; margin: 0; min-height: 1.2em; }
.form-status-success { color: var(--color-sage-dark); }
.form-status-error { color: #b3564f; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 600;
  color: #fff;
  transition: background 0.15s ease;
}
.contact-link:hover { background: rgba(255,255,255,0.18); }
.contact-location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* Footer */
.site-footer { padding: 28px 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-cream-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-sage-dark);
}
.footer-social a:hover { background: var(--color-sage-dark); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .icon-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .about-flourish { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background: var(--color-cream);
    padding: 18px 20px;
    gap: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.nav-open .nav-cta-item { display: block; margin-top: 4px; }
  .nav-links.nav-open .nav-cta { display: inline-block; text-align: center; width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-strip { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
}
