/* Minnesota Secular Weddings — "Blush Garden" design system */

:root {
  --cream: #FBF3EC;
  --cream-2: #F7F1EC;
  --rose: #C98B87;
  --rose-dark: #B06F6B;
  --sage: #7C8B6F;
  --ink: #2E2A28;
  --ink-soft: #5b5551;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  padding-bottom: 0;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 .4em;
  color: var(--ink);
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
}

/* scroll reveal — subtle, not bouncy */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* nav */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 243, 236, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eadfd6;
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: relative;
}
.logo { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 20px; }
.navlinks { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 600; }
.navlinks a { text-decoration: none; color: var(--ink-soft); }
.navlinks a.cta { background: var(--rose); color: #fff; padding: 9px 20px; border-radius: 24px; }
.navtoggle { display: none; font-size: 22px; background: none; border: none; cursor: pointer; color: var(--ink); }

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 100px;
  text-align: center;
  background: linear-gradient(180deg, #FBF3EC 0%, #F3E7DE 100%);
}
.hero svg.deco { position: absolute; opacity: .5; will-change: transform; }
.hero .deco.left { left: -40px; top: 20px; width: 220px; transform: scaleX(-1); }
.hero .deco.right { right: -40px; bottom: 0; width: 220px; }
.hero h1 { font-size: 52px; line-height: 1.12; margin: 14px 0 18px; }
.hero p.sub { max-width: 520px; margin: 0 auto 34px; color: var(--ink-soft); font-size: 17px; }

.btnrow { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn.primary { background: var(--rose); color: #fff; }
.btn.secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }

section { padding: 74px 24px; }
section.alt { background: var(--cream-2); }
.center { text-align: center; }
.lede { max-width: 600px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; }

/* ceremonies */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
.feature { text-align: center; }
.icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* about */
.about { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center; max-width: 820px; margin: 0 auto; }
.avatar { width: 220px; height: 220px; border-radius: 50%; background: #EFE0D8; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about h2 { font-size: 30px; }
.about p { color: var(--ink-soft); font-size: 15.5px; }
.credentials { margin-top: 14px; font-size: 13px; color: var(--sage); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }

/* pricing */
.grid4-price { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.price-card { background: #fff; border-radius: 14px; padding: 28px 22px; box-shadow: 0 6px 20px rgba(60, 40, 30, .06); display: flex; flex-direction: column; }
.price-card h3 { font-size: 20px; margin-bottom: 2px; }
.price-card .amt { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--rose-dark); font-weight: 700; margin-bottom: 12px; }
.price-card p { font-size: 13.5px; color: var(--ink-soft); flex-grow: 1; }
.price-card .btn { margin-top: 16px; text-align: center; padding: 10px; font-size: 13px; }

/* faq */
.faq { max-width: 700px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid #e8ddd2; }
.faq-q {
  padding: 18px 4px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 15.5px; background: none; border: none;
  width: 100%; text-align: left; font-family: inherit; color: inherit;
}
.faq-a { max-height: 0; overflow: hidden; font-size: 14.5px; color: var(--ink-soft); transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 16px; }
.faq-item.open .chev { transform: rotate(45deg); }
.chev { transition: transform .2s ease; font-size: 20px; color: var(--rose); }

/* reviews */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.quote { background: #fff; border-radius: 14px; padding: 26px; box-shadow: 0 6px 20px rgba(60, 40, 30, .05); text-align: left; }
.quote .title { font-style: normal; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.quote p.body { font-style: italic; font-size: 14.5px; color: var(--ink-soft); }
.quote .who { margin-top: 14px; font-weight: 700; font-size: 13px; color: var(--sage); }
.stars {
  display: inline-block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--cream-2); color: var(--sage); padding: 3px 8px; border-radius: 10px;
  margin-bottom: 10px; font-weight: 700;
}
.reviews-link { margin-top: 30px; text-decoration: underline; font-weight: 700; }

/* book */
.book { background: var(--ink); color: #F3E7DE; text-align: center; }
.book h2 { color: #fff; }
.book .lede { color: #cfc3ba; }
.book .btn.secondary { color: #fff; border-color: #fff; }

footer { background: #221F1D; color: #a99f99; text-align: center; padding: 26px; font-size: 12.5px; }

/* sticky mobile CTA */
.stickycta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; padding: 12px 18px; box-shadow: 0 -4px 18px rgba(0, 0, 0, .08); z-index: 30;
}
.stickycta .btn { display: block; text-align: center; }

/* mobile nav dropdown */
@media (max-width: 700px) {
  .navlinks a:not(.cta) { display: none; }
  .navtoggle { display: block; }
  .stickycta { display: block; }
  body { padding-bottom: 70px; }

  nav.open .navlinks {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid #eadfd6;
    padding: 8px 24px 16px;
  }
  nav.open .navlinks a:not(.cta) {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eadfd6;
  }
  nav.open .navlinks a.cta { margin-top: 12px; text-align: center; }
}

section[id] { scroll-margin-top: 80px; }

@media (max-width: 820px) {
  .hero h1 { font-size: 38px; }
  .grid4, .grid4-price, .grid3 { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 520px) {
  .grid4, .grid4-price, .grid3 { grid-template-columns: 1fr; }
}
