
:root {
  --cream: #fbf3e4;
  --cream-2: #fffaf1;
  --paper: #fffdf8;
  --olive: #60714a;
  --olive-dark: #344528;
  --sage: #dfe7d3;
  --terracotta: #b96d45;
  --gold: #d9a441;
  --ink: #2f2a24;
  --muted: #6f6256;
  --line: rgba(96, 113, 74, .22);
  --shadow: 0 22px 70px rgba(68, 50, 27, .13);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(217,164,65,.18), transparent 36rem),
    linear-gradient(180deg, var(--cream), #f7ead7 48%, #efe2cc);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}
a { color: var(--olive-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  min-height: 72px; padding: 14px clamp(18px, 4vw, 52px);
  display: flex; align-items: center; gap: 22px;
  background: rgba(255, 250, 241, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-title {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 850; letter-spacing: .02em; text-decoration: none;
  color: var(--olive-dark); white-space: nowrap;
}
.site-title::before { content: "✦"; color: var(--gold); margin-right: .55rem; }
.site-nav { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: .86rem; font-weight: 750; text-decoration: none;
  padding: 8px 12px; border-radius: 999px; color: var(--muted);
}
.site-nav a:hover { background: var(--sage); color: var(--olive-dark); }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 8px 14px; color: var(--olive-dark); font-weight: 800; }
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 72px); display: grid; place-items: center; padding: clamp(46px, 7vw, 94px) clamp(18px, 4vw, 52px); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(251,243,228,.93), rgba(223,231,211,.84)), url('../images/autumn-blaze.jpg') center/cover; transform: scale(1.02); }
.hero-inner { position: relative; width: min(1120px, 100%); display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero-copy { background: rgba(255,253,248,.78); border: 1px solid rgba(255,255,255,.72); border-radius: var(--radius); padding: clamp(28px, 5vw, 58px); box-shadow: var(--shadow); }
.eyebrow { margin: 0 0 10px; color: var(--terracotta); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--olive-dark); }
h1 { font-size: clamp(2.5rem, 7vw, 5.6rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
.subtitle { font-size: clamp(1.15rem, 2.2vw, 1.55rem); color: var(--muted); margin: 18px 0; }
.audio-link { display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 20px; padding: 11px 16px; border-radius: 999px; background: var(--olive); color: #fff; text-decoration: none; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; font-weight: 800; }
.audio-link:hover { background: var(--terracotta); color: #fff; }
.dates { color: var(--olive-dark); font-weight: 700; margin: 0; }
.hero-portrait { margin: 0; justify-self: center; padding: 18px; background: var(--paper); border-radius: 999px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9); }
.hero-portrait img { width: min(420px, 70vw); aspect-ratio: 1; object-fit: cover; border-radius: 999px; border: 10px solid #f4e2c5; }
.section { padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 52px); }
.section-warm { background: rgba(255,250,241,.72); }
.section-green { background: linear-gradient(180deg, rgba(223,231,211,.72), rgba(251,243,228,.72)); }
.section-heading { width: min(980px, 100%); margin: 0 auto clamp(28px, 5vw, 58px); text-align: center; }
.section-heading h2 { margin-bottom: 14px; }
.memory-list { width: min(1120px, 100%); margin: 0 auto; display: grid; gap: clamp(26px, 4vw, 48px); }
.memory-card { display: grid; grid-template-columns: minmax(260px, .82fr) 1.18fr; gap: clamp(22px, 4vw, 48px); align-items: center; padding: clamp(18px, 3vw, 34px); border-radius: var(--radius); background: rgba(255,253,248,.92); border: 1px solid rgba(96,113,74,.16); box-shadow: var(--shadow); }
.memory-card.reverse { grid-template-columns: 1.18fr minmax(260px, .82fr); }
.memory-card.reverse .memory-photo { order: 2; }
.memory-photo { margin: 0; align-self: stretch; }
.memory-photo img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; border-radius: calc(var(--radius) - 10px); box-shadow: 0 10px 32px rgba(47,42,36,.12); }
.memory-copy p { color: var(--muted); margin: 16px 0 0; text-align: left; }
.memory-copy h3 { margin-bottom: 12px; }
.photo-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.photo-tile { position: relative; overflow: hidden; min-height: 230px; border-radius: 22px; background: var(--paper); box-shadow: 0 14px 36px rgba(47,42,36,.12); text-decoration: none; color: #fff; }
.photo-tile img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform .35s ease; }
.photo-tile span { position: absolute; inset: auto 12px 12px; padding: 8px 10px; border-radius: 999px; background: rgba(47,42,36,.68); backdrop-filter: blur(10px); font-size: .82rem; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; font-weight: 750; }
.photo-tile:hover img { transform: scale(1.05); }
.map-card { width: min(1080px, 100%); margin: 0 auto; padding: 12px; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: min(620px, 70vh); border: 0; border-radius: calc(var(--radius) - 10px); }
.download-grid { width: min(980px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.download-card { display: grid; gap: 12px; align-content: start; padding: 18px; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); border: 1px solid var(--line); }
.download-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; }
.download-card strong { color: var(--olive-dark); font-size: 1.2rem; line-height: 1.2; }
.download-card span { color: var(--terracotta); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; font-weight: 800; font-size: .9rem; }
.site-footer { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 52px); background: var(--olive-dark); color: #f8f0df; }
.site-footer h2 { color: #fff1cc; }
.site-footer p { max-width: 720px; }
.site-footer address { font-style: normal; }
.copyright { grid-column: 1 / -1; color: rgba(248,240,223,.72); margin: 0; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; background: rgba(47,42,36,.84); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 96vw); max-height: 86vh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.35); background: #fff; }
.lightbox-close { position: fixed; top: 18px; right: 18px; border: 0; border-radius: 999px; background: #fff; color: var(--olive-dark); padding: 10px 16px; font-weight: 900; cursor: pointer; }
@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .menu-toggle { display: block; }
  .site-nav { display: none; width: 100%; padding-top: 12px; }
  .site-header.menu-open { flex-wrap: wrap; }
  .site-header.menu-open .site-nav { display: grid; grid-template-columns: 1fr 1fr; margin-left: 0; }
  .hero-inner, .memory-card, .memory-card.reverse, .site-footer { grid-template-columns: 1fr; }
  .memory-card.reverse .memory-photo { order: 0; }
  .hero-copy { text-align: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header.menu-open .site-nav { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .memory-photo img { min-height: 240px; }
}
