h2 {
  font-family: 'Indie Flower';
  font-weight: 400;
  font-size: 64px;
  color: var(--ink);
}

/* Theme variables: soft pink + deep maroon */
:root {
  --bg: #FBFBFB;
  --ink: #5c0b2e;
  --ink-weak: #6e1a3c;
  --ring: #e8c8d6;
  --gold: #c9a24b;         /* soft watercolor gold */
  --gold-deep: #b28d34;    /* darker gold for hover/border */
  /* Pastel greens/grays sampled from leaf art (approx.) */
  --leaf-gray: #eef1ef;
  --leaf-sage-1: #e6eee9;
  --leaf-sage-2: #cfdad3;
  /* Subtle grain texture overlay (SVG feTurbulence) */
  --grain-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.06'/></svg>");
  /* Symmetric page gutter for small screens */
  --gutter: clamp(16px, 4vw, 24px);
}

/* Ensure padding counts toward width to avoid overflow asymmetry */
*, *::before, *::after { box-sizing: border-box; }

h3 {
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
}

/* Top banner with monogram and intro */
.top-banner {
  max-width: 960px;
  margin: 0 auto 16px;
}

.monogram {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto 12px;
  opacity: 0.95;
}

@media (min-width: 640px) {
  .monogram { width: 120px; }
}

.lead-thanks {
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-weak);
  max-width: 65ch;
  margin: 8px auto 0;
}

body {
  /* Fallback color behind the split background */
  background-color: var(--bg);
  /* Two layers of the same image: left half + right half */
  background-image: url('../images/background_left.png'), url('../images/background_right.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  /* Each image occupies exactly half the viewport width */
  background-size: auto 100%, auto 100%;
  /* Keep background static relative to viewport (no scroll) */
  background-attachment: fixed, fixed;
  text-align: center;
  padding: 32px var(--gutter);
  min-height: 100vh;
  color: var(--ink);
}

@supports (min-height: 100dvh) {
  body { min-height: 100dvh; }
}

/* Button list layout */
.btn-list {
  display: grid;
  grid-template-columns: 1fr; /* mobile-first: one column */
  gap: 16px;
  max-width: 720px;
  margin: 20px auto 0;
  padding: 0; /* body handles side gutter */
}

/* Large, image-backed buttons */
.btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 2px solid var(--gold);
  border-radius: 0; /* royal, square corners */
  color: var(--ink);
  background: var(--bg);
  box-shadow: 0 10px 22px rgba(92,11,46,0.06), 0 1px 0 rgba(255,255,255,0.25) inset;
  cursor: pointer;
  overflow: hidden;
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.3px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  will-change: transform;
  text-decoration: none; /* for anchor buttons */
}

/* gradient layer under content; faded in on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(145deg, var(--leaf-gray) 0%, var(--leaf-sage-1) 55%, var(--leaf-sage-2) 100%);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}

/* subtle grain overlay (shown on hover) */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain-svg);
  background-size: 160px 160px;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Icon and label inside buttons */
.btn-icon {
  width: 42px;
  height: 42px;
  z-index: 1;
  /* approximate maroon tint for external SVGs */
  filter: invert(13%) sepia(22%) saturate(1902%) hue-rotate(300deg) brightness(91%) contrast(92%);
  opacity: 0.95;
}

.btn-label { z-index: 1; }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(92,11,46,0.10), 0 1px 0 rgba(255,255,255,0.25) inset;
  border-color: var(--gold-deep);
}

.btn:hover::before { opacity: 1; }
.btn:hover::after { opacity: 0.16; }

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Removed per-button background photos; using icons instead */

/* Responsive: taller buttons on larger screens */
@media (min-width: 900px) {
  .btn {
    height: 200px;
    font-size: 22px;
  }
  .btn-icon { width: 52px; height: 52px; }
}

p {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-weak);
  max-width: 65ch;
  margin: 0 auto;
}

/* Display title styling */
h2 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 16px 0 24px;
}

a { color: var(--ink-weak); }
a:hover { color: var(--ink); }

/* Footer with monogram */
.page-footer {
  max-width: 960px;
  margin: 40px auto 12px;
}

.footer-note {
  font-size: 16px;
  color: var(--ink-weak);
  margin-top: 8px;
}
