
:root {
  --green-950: #073f3d;
  --green-800: #0d514e;
  --green-700: #176761;
  --gold-500: #c99136;
  --gold-300: #e6bf77;
  --cream-50: #fffaf0;
  --cream-100: #f8ecd5;
  --sand-200: #ecd2a4;
  --brown-700: #76542f;
  --text: #173b39;
  --muted: #6e7069;
  --white: #ffffff;
  --border: rgba(13, 81, 78, .14);
  --shadow: 0 20px 55px rgba(31, 63, 56, .10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0, rgba(237, 199, 126, .23), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf6eb 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--border);
  background: rgba(255, 250, 240, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-sub {
  color: var(--gold-500);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .9rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-950);
}

.section {
  position: relative;
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
  padding: 74px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 48px;
  min-height: 700px;
}

.intro-banner {
  width: 100%;
  filter: drop-shadow(0 24px 30px rgba(75, 52, 25, .18));
}

.intro-copy h1,
.section-heading h2,
.location-card h2,
.whatsapp-copy h2,
.closing-section h2 {
  margin: 8px 0 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

.intro-copy h1 { font-size: clamp(2.25rem, 5vw, 4.8rem); }
.section-heading h2,
.location-card h2,
.whatsapp-copy h2,
.closing-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); }

.eyebrow {
  margin: 0;
  color: var(--gold-500);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--green-800);
  color: white;
}

.button-secondary {
  border-color: rgba(13, 81, 78, .25);
  background: rgba(255,255,255,.65);
  color: var(--green-950);
}

.button.is-disabled {
  cursor: default;
  opacity: .72;
  transform: none;
}

.event-section,
.practical-section {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.info-card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-500);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.info-card p { margin-bottom: 0; color: var(--muted); }

.gift-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  align-items: center;
  gap: 30px;
  padding-top: 95px;
  padding-bottom: 95px;
}

.gift-content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 50px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,250,240,.94), rgba(248,236,213,.9));
  box-shadow: var(--shadow);
}

.gift-content p { max-width: 760px; }

.gift-intro {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
}

.gift-highlight {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.gift-highlight img { width: 90px; }

.gift-highlight span {
  display: block;
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gift-highlight strong {
  display: block;
  margin: 4px 0;
  color: var(--green-950);
  font-size: 1.1rem;
}

.gift-highlight p { margin: 5px 0 0; color: var(--muted); }

.gift-signpost {
  justify-self: center;
  width: min(100%, 300px);
  filter: drop-shadow(0 18px 24px rgba(67, 47, 28, .18));
}

.location-section {
  padding-top: 40px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 430px);
  align-items: center;
  gap: 34px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: var(--cream-50);
  background:
    radial-gradient(circle at 100% 0, rgba(201,145,54,.28), transparent 24rem),
    linear-gradient(145deg, #073f3d, #0d514e);
  overflow: hidden;
}

.location-card h2 { color: white; }
.location-card p { color: rgba(255,255,255,.77); }

.location-card img {
  width: 100%;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.18));
}

.location-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  font-size: .86rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 5px rgba(230,191,119,.13);
}

.practical-list {
  display: grid;
  gap: 14px;
}

.practical-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.practical-list article:first-child { border-top: 0; }

.practical-list article > span {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.practical-list h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.1rem;
}

.practical-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.whatsapp-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.quote-plaque {
  width: 100%;
  filter: drop-shadow(0 20px 24px rgba(68, 47, 22, .18));
}

.whatsapp-copy p { color: var(--muted); }
.whatsapp-copy strong { color: var(--green-950); }
.whatsapp-button { margin-top: 12px; }

.closing-section {
  text-align: center;
  padding-bottom: 90px;
}

.closing-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}

.site-footer a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .intro,
  .gift-section,
  .location-card,
  .whatsapp-section {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: 0;
    padding-top: 48px;
  }

  .intro-banner {
    max-width: 700px;
    margin-inline: auto;
  }

  .gift-signpost {
    width: min(58vw, 280px);
  }

  .location-card img {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .quote-plaque {
    width: min(100%, 650px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,250,240,.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    min-height: 44px;
    padding: 12px;
    border-radius: 10px;
  }

  .event-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }

  .gift-section { padding-top: 70px; }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .intro-copy h1 { font-size: 2.5rem; }

  .quick-links {
    flex-direction: column;
  }

  .button { width: 100%; }

  .gift-highlight {
    grid-template-columns: 62px 1fr;
  }

  .gift-highlight img { width: 62px; }

  .location-card { padding: 26px 20px; }

  .practical-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
