:root {
  --sage: #5b7a62;
  --sage-d: #3f5845;
  --leaf: #6e8b74;
  --rose: #e8c4c4;
  --rose-d: #c98989;
  --blush: #f8ecec;
  --cream: #fbf7f2;
  --ivory: #fffdfb;
  --gold: #c4a574;
  --gold-d: #9c7a4a;
  --ink: #3a322c;
  --muted: #6f655d;
  --line: #eadfd4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(63, 88, 69, 0.1);
  --max: 1140px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(58, 50, 44, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--sage-d);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f3d9c8, transparent 42%),
    linear-gradient(145deg, var(--rose-d), var(--sage));
  box-shadow: inset 0 0 0 2px rgba(196,165,116,.55);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-d);
  opacity: .85;
}
.nav a:hover { opacity: 1; color: var(--gold-d); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 650;
  border-radius: 999px;
  padding: 13px 22px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--sage), var(--sage-d));
  color: white;
  box-shadow: 0 10px 22px rgba(63, 88, 69, .22);
}
.btn-gold {
  background: linear-gradient(180deg, #d4b58a, var(--gold-d));
  color: white;
}
.btn-light {
  background: white;
  color: var(--sage-d);
  border: 1px solid var(--line);
}
.btn-ghost {
  background: var(--blush);
  color: var(--sage-d);
}
.btn-lg { padding: 16px 28px; font-size: 15px; letter-spacing: .04em; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--sage-d);
  transition: .2s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(90vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58,50,44,.15) 0%, rgba(58,50,44,.42) 45%, rgba(58,50,44,.78) 100%),
    linear-gradient(90deg, rgba(63,88,69,.28), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 70px;
  max-width: 680px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.12;
}
h1 { font-size: clamp(40px, 6.4vw, 68px); margin-bottom: 16px; }
h2 { font-size: clamp(32px, 4.4vw, 48px); color: var(--sage-d); margin-bottom: 12px; }
h3 { font-size: 24px; color: var(--sage-d); }
.lead { font-size: 18px; color: rgba(255,255,255,.92); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 16px; }
.pin {
  display: inline-flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.section { padding: 88px 0; }
.section.alt { background: var(--ivory); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(58,50,44,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card img { height: 180px; width: 100%; object-fit: cover; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body p { color: var(--muted); flex: 1; font-size: 14px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
}
.shot img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.shot figcaption {
  position: absolute;
  inset: auto 12px 12px;
  background: rgba(63,88,69,.82);
  color: white;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
}
.shot figcaption strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.shot figcaption span { opacity: .86; font-size: 12px; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit {
  background: white;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}
.dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--sage-d);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.occ {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 650;
  color: var(--sage-d);
}
.help-box {
  margin-top: 28px;
  background: linear-gradient(180deg, #f4ebe3, #efe3d6);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.split img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 22px 0; }
.ig-grid img { height: 140px; width: 100%; object-fit: cover; border-radius: 12px; }

.cta {
  background:
    linear-gradient(180deg, rgba(63,88,69,.55), rgba(58,50,44,.78)),
    url("https://images.unsplash.com/photo-1518199266791-5375a83190b7?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
}
.cta h2, .cta p { color: white; }
.cta p { max-width: 560px; margin: 0 auto 22px; opacity: .92; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.info-card, .form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 700; color: var(--sage-d); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdfb;
  font-size: 15px;
}
.field textarea { min-height: 110px; resize: vertical; }

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .32);
  font-weight: 700;
}
.float-wa .bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #128c7e;
  display: grid;
  place-items: center;
}

.site-footer {
  background: #3f5845;
  color: #f4ebe3;
  padding: 48px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.site-footer a { color: #f4ebe3; }
.site-footer .logo { color: white; }
.copy {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  font-size: 13px;
  color: #d8cbbd;
}

.reveal { opacity: 0; transform: translateY(16px); transition: .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cards, .gallery, .benefits, .occasions, .split, .contact-grid, .footer-grid, .ig-grid {
    grid-template-columns: 1fr 1fr;
  }
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 78px 16px auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 64px 0; }
  .cta { padding: 42px 20px; }
}
@media (max-width: 640px) {
  .cards, .gallery, .benefits, .occasions, .split, .contact-grid, .footer-grid, .ig-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid { grid-template-columns: 1fr 1fr; }
}
