/* Garden Album palette — hand-replicated from wedding-rsvp/DESIGN.md + tailwind.config.ts.
   Keep in sync with that file if the couple ever changes the brand palette. */
:root {
  --forest: #2F4733;
  --sage: #7E9B6E;
  --clay: #B5825F;
  --cream: #F1EFE3;
  --surface: #FCFBF6;
  --muted: #5f6b5c;
  --line: #E3E0D2;

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;

  --radius-card: 20px;
  --radius-pill: 9999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, .07);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 64px;
}

/* Couple wordmark — same treatment as rsvp.suyasharajan.com's fallback page */
.wordmark {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0;
}

.wordmark em {
  font-weight: 300;
  font-style: italic;
}

.sub-label {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 12px 0 0;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

.welcome {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 30rem;
  margin: 0 0 40px;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 44rem;
  margin-bottom: 40px;
}

.photo {
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 150ms, border-color 150ms;
}

.btn-primary {
  background: var(--forest);
  color: white;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--forest) 90%, black);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid color-mix(in srgb, var(--forest) 30%, transparent);
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--forest) 60%, transparent);
  background: color-mix(in srgb, var(--forest) 5%, transparent);
}

@media (min-width: 640px) {
  .wordmark {
    font-size: 42px;
  }

  .photo {
    max-width: 21rem;
  }
}
