:root {
  --bg: #f6f1e8;
  --bg-alt: #ede4d6;
  --bg-hero: #f2eadf;
  --line: rgba(86, 64, 46, 0.18);
  --text: #30251d;
  --muted: #6e5d4f;
  --accent: #87684b;
  --accent-dark: #6c5038;
  --container: 760px;
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 2.25rem), var(--container));
  margin: 0 auto;
}

.footer-mark {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero-copy {
  padding-top: 0.5rem;
}

.eyebrow,
.card-kicker,
.meta-label,
.notice-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.eyebrow-big {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
}

.card-kicker-medium {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 0rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 16vw, 5rem);
  margin-top: 0.5rem;
}

h2 {
  font-size: clamp(2.15rem, 10vw, 3.4rem);
  margin-top: 0.45rem;
}

h3 {
  font-size: clamp(1.5rem, 7vw, 2rem);
  margin-bottom: 0.5rem;
}

p {
  margin: 0;
}

.hero-lead,
.section-heading p,
.muted,
.faq-item p,
.note-strip p {
  color: var(--muted);
}

.hero-lead {
  /* max-width: 28rem; */
  margin-top: 1rem;
  font-size: 1rem;
}

.hero-date {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-visual {
  padding-top: 0.5rem;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: rgba(47, 36, 29, 0.74);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.section {
  padding: 3.25rem 0;
}

.section-plain {
  background: var(--bg);
}

.footer-plain {
  background: var(--bg) !important;
}

.section-tint {
  background: var(--bg-alt);
}

.hero.section-plain {
  background: var(--bg-hero);
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading p {
  margin-top: 0.7rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: none;
}

.timeline-time {
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline-content p {
  color: var(--muted);
}

.place-list,
.simple-columns,
.faq-list {
  display: grid;
  gap: 1.1rem;
}

.place-item:not(:last-child),
.simple-block:not(:last-child),
.faq-item {
  padding: 0.15rem 0 1.1rem;
}

.guest-table-card {
  text-align: center;
}

@media (min-width: 761px) {
  .guest-table-card {
    text-align: left;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  background: var(--accent-dark);
  color: #fdf8f2;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.35;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 1px 4px rgba(48, 37, 29, 0.08);
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.text-link:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(48, 37, 29, 0.12);
}

.text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.text-link:active {
  box-shadow: 0 1px 3px rgba(48, 37, 29, 0.1);
}

.detail-list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  list-style: outside circle;
}

.detail-list li+li {
  margin-top: 0.5rem;
}

.note-strip {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq-list {
  gap: 0.9rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--bg-alt);
}

.footer-shell {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

@media (min-width: 761px) {
  .section {
    padding: 3.75rem 0;
  }

  .timeline {
    gap: 0.25rem;
  }

  .timeline-item {
    padding: 1.15rem 0;
  }

  .timeline-content .text-link {
    width: auto !important;
    display: inline-flex;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-top: 0.25rem;
  }

  .gift-image {
    max-width: 28rem;
    margin-inline: auto;
    padding: 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  .hero-home .hero-grid {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-home .hero-visual {
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero-home .hero-lead {
    margin-inline: auto;
  }
}

@media (min-width: 900px) {
  .hero-home .container {
    width: min(calc(100% - 4rem), 980px);
  }

  .hero-home.section-plain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .hero-home .hero-lead {
    max-width: 30rem;
    font-size: 1.05rem;
    margin-inline: 0;
  }

  h1 {
    font-size: clamp(3.25rem, 4vw, 4.25rem);
  }

  .hero-home .hero-visual {
    max-width: none;
    margin-inline: 0;
  }

  .hero-home .hero-visual .photo-placeholder img {
    width: 100%;
    max-height: min(72vh, 540px);
    object-fit: contain;
    object-position: center bottom;
    margin-inline: auto;
  }
}

@media (min-width: 1100px) {
  :root {
    --container: 820px;
  }

  .hero-home .container {
    width: min(calc(100% - 5rem), 1040px);
  }
}

@media (max-width: 760px) {
  .hero.section-plain {
    padding-top: 2.8rem;
    padding-bottom: 2.5rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .timeline-time {
    font-size: 0.95rem;
  }

  .place-item:not(:last-child),
  .simple-block:not(:last-child),
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
}