:root {
  --ink: #1f3d2b;          /* deep forest green */
  --ink-soft: #4b5b4d;     /* muted green */
  --paper: #f9f7ef;        /* warm cream */
  --paper-warm: #f0ead9;
  --line: #c3a03f;         /* gold */
  --line-deep: #1f4d33;    /* forest green */
  --accent: #a9821f;       /* deep gold */
  --card: #ffffff;
  --card-border: #e7dcc0;  /* soft gold-tinted */
  --shadow: 0 8px 30px rgba(25, 55, 35, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, #fefdfb 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3.5rem);
}

.frame {
  width: 100%;
  max-width: 640px;
  background: var(--paper);
  border: 1px solid var(--line-deep);
  border-radius: 2px;
  padding: clamp(0.6rem, 2vw, 1rem);
  box-shadow: var(--shadow);
}

.inner-border {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1.75rem, 6vw, 3.25rem) clamp(1.25rem, 5vw, 3rem);
}

/* Hero */
.hero {
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.name {
  margin: 0.15em 0 0.1em;
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 11vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.ornament {
  color: var(--line);
  font-size: 1.4rem;
  margin: 0.6rem 0 0;
  opacity: 0.95;
  font-style: normal;
}

.ornament-lg {
  text-align: center;
  font-size: 2.1rem;
  margin: clamp(0.4rem, 2vw, 0.8rem) 0 clamp(1.1rem, 3vw, 1.5rem);
}

.portrait {
  display: block;
  width: clamp(150px, 42vw, 190px);
  height: clamp(150px, 42vw, 190px);
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  margin: clamp(1.1rem, 4vw, 1.6rem) auto 0;
  border: 3px solid var(--line);
  box-shadow: 0 6px 20px rgba(25, 55, 35, 0.18);
}

/* Intro */
.intro {
  text-align: center;
  max-width: 46ch;
  margin: clamp(1.4rem, 4vw, 2rem) auto clamp(1.6rem, 5vw, 2.4rem);
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: var(--ink-soft);
}

.intro p {
  margin: 0;
}

/* Donation cards */
.donations {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(31, 77, 51, 0.14);
  outline: none;
}

.card-text h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 4.5vw, 1.6rem);
  line-height: 1.15;
  color: var(--ink);
}

.detail {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
}

.give {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent);
  white-space: nowrap;
}

.card:hover .give,
.card:focus-visible .give {
  color: var(--ink);
}

/* Closing */
.closing {
  text-align: center;
  margin-top: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--ink-soft);
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.15rem);
}

.closing .ornament {
  margin-bottom: 0.4rem;
}

.closing p {
  margin: 0;
  max-width: 42ch;
  margin-inline: auto;
}
