@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --sage: #65735b;
  --sage-dark: #4f5d47;
  --lavender: #8d8198;
  --gold: #b39b68;
  --text: #4d4a43;
  --muted: #817d73;
  --line: #ddd6c7;
  --shadow: 0 10px 30px rgba(73, 69, 58, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(141,129,152,.08), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(179,155,104,.09), transparent 25%),
    var(--cream);
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
}

.app-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 26px 18px 42px;
}

.hero {
  text-align: center;
  padding: 10px 8px 18px;
}

.logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  margin-bottom: 5px;
}

.eyebrow, .section-kicker {
  letter-spacing: .19em;
  font-size: .66rem;
  color: var(--sage);
  font-weight: 600;
  margin: 0 0 8px;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--sage-dark);
}

h1 {
  font-size: clamp(2.6rem, 11vw, 4.2rem);
  line-height: .9;
  margin: 8px 0 10px;
}

h1 span {
  color: var(--lavender);
  font-weight: 400;
}

.date {
  margin: 0;
  letter-spacing: .22em;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
}

.botanical-divider {
  color: var(--sage);
  opacity: .72;
  letter-spacing: .35em;
  margin: 16px 0;
}

.countdown-card, .info-card {
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(221,214,199,.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.countdown-card {
  text-align: center;
  padding: 24px 16px;
  margin: 10px 0 30px;
}

.countdown {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--sage-dark);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.countdown-label {
  color: var(--muted);
  font-size: .75rem;
  margin: 8px 0 0;
}

.menu-section { padding: 0 2px; }

.section-heading {
  text-align: center;
  margin-bottom: 16px;
}

.section-heading h2, .info-card h2 {
  font-size: 2rem;
  margin: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.menu-card {
  text-decoration: none;
  color: var(--text);
  background: rgba(255,253,248,.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 14px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(101,115,91,.4);
}

.icon {
  font-size: 1.7rem;
  margin-bottom: 7px;
}

.menu-card strong {
  color: var(--sage-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.menu-card small {
  color: var(--muted);
  font-size: .68rem;
  margin-top: 3px;
}

.info-card {
  margin-top: 18px;
  padding: 24px 20px;
}

.info-card h2 { margin-bottom: 10px; }

.info-card p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

.surprise-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.surprise-card h2 {
  font-size: 2.35rem;
}

.surprise-flower {
  color: var(--lavender);
  font-size: 2rem;
  margin-bottom: 4px;
}

.highlight {
  color: var(--sage-dark) !important;
  font-weight: 600;
}

.date-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .08em;
}

.timeline > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
}

.timeline > div:last-child { border-bottom: 0; }

.timeline b { color: var(--sage-dark); }
.timeline span { color: var(--muted); }

footer {
  text-align: center;
  padding: 34px 0 0;
  color: var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif;
}

footer p {
  font-size: 1.5rem;
  margin: 0 0 3px;
}

footer small {
  letter-spacing: .12em;
  color: var(--gold);
}

@media (min-width: 650px) {
  .app-shell { padding-left: 30px; padding-right: 30px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 360px) {
  .menu-grid { grid-template-columns: 1fr; }
}


.action-button {
  display: block;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--sage);
  color: #fffdf8;
  text-decoration: none;
  text-align: center;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: transform .18s ease, background .18s ease;
}

.action-button:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.note {
  font-size: .68rem !important;
  margin-bottom: 0;
  opacity: .85;
}
