:root {
  --bg: #f8efe8;
  --bg-deep: #f4e7de;
  --surface: rgba(255, 252, 247, 0.84);
  --surface-solid: #fffaf5;
  --ink: #241b18;
  --muted: #6f625b;
  --pine: #1f4f42;
  --pine-deep: #173d33;
  --berry: #ab2f3b;
  --berry-deep: #8d2430;
  --gold: #d4a64d;
  --gold-soft: #f4deb2;
  --line: rgba(112, 74, 46, 0.13);
  --shadow: 0 22px 50px rgba(63, 30, 21, 0.12);
  --radius: 30px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(212, 166, 77, 0.22), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(171, 47, 59, 0.14), transparent 22%),
    linear-gradient(180deg, #fcf5ef 0%, var(--bg) 42%, var(--bg-deep) 100%);
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.holiday-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
}
.holiday-glow-left {
  background: rgba(212, 166, 77, 0.28);
  top: -8rem;
  left: -6rem;
}
.holiday-glow-right {
  background: rgba(171, 47, 59, 0.16);
  top: 8rem;
  right: -8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 245, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(112, 74, 46, 0.08);
}
.top-trim {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px 12px 0;
}
.top-trim span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f6e7bf);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.28), 0 0 20px rgba(212,166,77,0.30);
}
.top-trim span:nth-child(3n) { background: linear-gradient(135deg, var(--berry), #d8666e); }
.top-trim span:nth-child(2n) { background: linear-gradient(135deg, var(--pine), #4b7d6f); }

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  color: var(--muted);
  font-weight: 600;
}
nav a:hover { color: var(--berry); }

.section { padding: 34px 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero { padding-top: 44px; }
.hero-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.20), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(212,166,77,0.20), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(171,47,59,0.10), transparent 24%);
  pointer-events: none;
}
.hero-copy,
.hero-art-wrap { position: relative; z-index: 1; }
.eyebrow {
  color: var(--berry);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.hero-copy h1,
.section-heading h2,
.holiday-banner h3,
.rsvp-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.02;
  margin: 0 0 14px;
}
.hero-copy h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--berry), var(--berry-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(141, 36, 48, 0.22);
}
.button.secondary {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(112, 74, 46, 0.12);
}
.button.disabled {
  opacity: 0.82;
  pointer-events: none;
}

.mini-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mini-details li {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(112, 74, 46, 0.10);
  border-radius: 20px;
  padding: 14px 16px;
}
.mini-details strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pine);
  margin-bottom: 6px;
}
.mini-details span { font-weight: 600; }

.hero-art-wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,250,245,0.78));
  max-width: 500px;
}
.hero-art img {
  width: 100%;
  border-radius: 22px;
}
.ornament {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.18) 26%, transparent 27%), linear-gradient(135deg, var(--gold), #e9c36f);
  box-shadow: inset -8px -10px 18px rgba(128,80,20,0.15), 0 18px 26px rgba(57, 30, 18, 0.10);
}
.ornament::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: rgba(125, 91, 39, 0.5);
}
.ornament::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 16px;
  height: 10px;
  transform: translateX(-50%);
  border: 2px solid rgba(125, 91, 39, 0.55);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.ornament-one {
  top: -8px;
  right: 60px;
}
.ornament-two {
  width: 42px;
  height: 42px;
  bottom: 34px;
  left: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.88), rgba(255,255,255,0.16) 26%, transparent 27%), linear-gradient(135deg, var(--pine), #3f7567);
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.section-intro {
  margin: 0;
  color: var(--muted);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  padding: 28px;
  position: relative;
}
.ribbon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--berry), var(--gold), var(--pine));
}
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,166,77,0.18), rgba(255,255,255,0.9));
  color: var(--berry);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.info-card h3 {
  margin: 0 0 6px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.holiday-banner {
  margin-top: 22px;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31,79,66,0.92), rgba(23,61,51,0.96)),
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  color: #fff;
}
.holiday-banner .eyebrow { color: var(--gold-soft); }
.holiday-banner h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.holiday-banner p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
}
.banner-stars {
  font-size: 2rem;
  color: var(--gold-soft);
  white-space: nowrap;
}

.rsvp-card {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.80), rgba(255,249,240,0.96));
}
.rsvp-card h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
.rsvp-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0 46px;
  color: var(--muted);
}
.footer-inner {
  border-top: 1px solid rgba(112, 74, 46, 0.10);
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-shell,
  .details-grid,
  .rsvp-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .mini-details { grid-template-columns: 1fr; }
  .holiday-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .top-trim { gap: 10px; }
  .top-trim span {
    width: 12px;
    height: 12px;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 16px;
  }
  .hero { padding-top: 28px; }
  .hero-shell,
  .info-card,
  .holiday-banner,
  .rsvp-card { padding: 22px; }
  .hero-copy h1 { font-size: 2.6rem; }
  .button { width: 100%; }
  .hero-actions { display: grid; }
  .ornament-one { right: 18px; }
  .ornament-two { left: 2px; bottom: 18px; }
}
