@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=IM+Fell+English+SC&family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;700&display=swap');

:root {
  --burgundy: #6b1d2e;
  --burgundy-dark: #4a0f1c;
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-pale: #e6c87a;
  --parchment: #f0e6cc;
  --parchment-light: #f7f0db;
  --parchment-dark: #ddd0b0;
  --sepia: #3e2c1d;
  --sepia-light: #5c4a36;
  --ink: #2b1a0e;
  --green: #2d4a2d;
  --green-light: #4a6b4a;
  --shadow: rgba(62, 44, 29, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IM Fell English', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.8;
  background-color: var(--parchment);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 29, 46, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(62, 44, 29, 0.03) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(62, 44, 29, 0.015) 2px,
      rgba(62, 44, 29, 0.015) 4px
    );
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header / Masthead ── */

header {
  background: var(--sepia);
  background-image:
    linear-gradient(135deg, var(--burgundy-dark) 0%, var(--sepia) 50%, var(--burgundy-dark) 100%);
  color: var(--gold-pale);
  padding: 48px 0 36px;
  text-align: center;
  border-bottom: 4px double var(--gold);
  position: relative;
}

header::before,
header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

header::before { top: 6px; }
header::after { bottom: 6px; }

header h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-shadow: 1px 1px 0 var(--burgundy-dark), 2px 2px 4px rgba(0,0,0,0.5);
}

header .tagline {
  font-family: 'IM Fell English SC', serif;
  font-size: 1rem;
  margin-top: 10px;
  color: var(--gold-pale);
  opacity: 0.85;
  letter-spacing: 1px;
}

.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 12px 0;
  letter-spacing: 8px;
}

/* ── Navigation ── */

.site-nav {
  margin-top: 20px;
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: 'Cinzel', serif;
  color: var(--gold-pale);
  opacity: 0.85;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  text-decoration: none;
}

/* ── Sections ── */

section {
  padding: 48px 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--parchment-light);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(184, 134, 11, 0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(62, 44, 29, 0.01) 3px,
      rgba(62, 44, 29, 0.01) 6px
    );
}

h2 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--burgundy);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
}

h2::after {
  content: '❦ ❦ ❦';
  display: block;
  font-family: serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 6px;
}

h3 {
  font-family: 'Cinzel', serif;
  color: var(--sepia);
  font-size: 1.15rem;
  margin: 28px 0 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}

p {
  margin-bottom: 16px;
}

/* Drop cap on first paragraph of each section */
section .container > h2 + p:first-of-type::first-letter,
section .container > p:first-of-type::first-letter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.2rem;
  font-weight: 900;
  float: left;
  line-height: 0.85;
  padding: 6px 8px 0 0;
  color: var(--burgundy);
}

a {
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold);
}

a:hover {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
}

strong {
  color: var(--burgundy);
  font-weight: 700;
}

em {
  color: var(--sepia-light);
}

/* ── Hero image ── */

.hero {
  padding: 36px 0 24px;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border: 8px solid var(--sepia);
  border-radius: 2px;
  box-shadow:
    0 0 0 1px var(--gold),
    0 6px 24px var(--shadow);
  filter: sepia(0.15) saturate(0.9);
}

.hero .container {
  position: relative;
}

.hero .container::before {
  content: '✦';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 1;
}

/* ── Contact info box ── */

.contact-info {
  background: var(--parchment-dark);
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
  padding: 24px 28px;
  border: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: inset 0 0 12px rgba(62, 44, 29, 0.1);
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  pointer-events: none;
}

/* ── Buttons ── */

.donate-buttons {
  display: flex;
  gap: 18px;
  margin: 28px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 0;
  transition: all 0.3s;
  position: relative;
  box-shadow: 2px 2px 0 var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px; right: 3px; bottom: 3px;
  border: 1px solid currentColor;
  opacity: 0.3;
  pointer-events: none;
}

.btn:hover {
  text-decoration: none;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--shadow);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--gold-pale);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
}

.btn-secondary {
  background: var(--parchment-light);
  color: var(--burgundy);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--parchment-dark);
}

/* ── Footer ── */

footer {
  background: var(--sepia);
  background-image: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--sepia) 50%, var(--burgundy-dark) 100%);
  color: var(--gold-pale);
  padding: 36px 0;
  font-size: 0.9rem;
  text-align: center;
  border-top: 4px double var(--gold);
}

footer p {
  margin-bottom: 8px;
  opacity: 0.75;
}

.photo-credit {
  font-family: 'IM Fell English SC', serif;
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* ── Maintenance page: step lists ── */

.lead {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sepia-light);
  margin-bottom: 24px;
  text-align: center;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  padding: 14px 0 14px 52px;
  position: relative;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step, upper-roman);
  position: absolute;
  left: 0;
  top: 12px;
  width: 38px;
  height: 38px;
  background: var(--burgundy);
  color: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 1px 1px 3px var(--shadow);
}

.care-list {
  margin: 16px 0;
  padding-left: 24px;
  list-style: none;
}

.care-list li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.care-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── Tables ── */

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
  border: 2px solid var(--sepia);
  background: var(--parchment-light);
  box-shadow: 2px 2px 0 var(--shadow);
}

.cost-table th {
  background: var(--sepia);
  background-image: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--sepia) 100%);
  color: var(--gold-pale);
  text-align: left;
  padding: 12px 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}

.cost-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  color: var(--ink);
}

.cost-table tbody tr:nth-child(even) {
  background: rgba(184, 134, 11, 0.06);
}

.cost-table tbody tr:hover {
  background: rgba(184, 134, 11, 0.12);
}

.cost-table tfoot td {
  border-top: 2px solid var(--gold);
  border-bottom: none;
  padding-top: 14px;
  font-family: 'Cinzel', serif;
  color: var(--burgundy);
}

.cost-table tfoot tr:last-child td {
  border-top: 1px solid rgba(184, 134, 11, 0.3);
}

/* ── Warning box ── */

.warning-box {
  background: #f5e6c8;
  border: 2px solid var(--burgundy);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.92rem;
  position: relative;
  box-shadow: 2px 2px 0 var(--shadow);
}

.warning-box::before {
  content: '⚠';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--gold-pale);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
}

/* ── Responsive ── */

@media (max-width: 600px) {
  header h1 { font-size: 1.6rem; letter-spacing: 1px; }
  .site-nav a { padding: 6px 12px; font-size: 0.75rem; }
  section { padding: 32px 0; }
  h2 { font-size: 1.3rem; }
  .hero-image { border-width: 5px; }
  .btn { padding: 10px 20px; font-size: 0.82rem; }
}
