/* =============================================================
   Lois Parker Foundation — Editorial Memorial Redesign
   Palette: Forest green, warm parchment, terracotta, gold
   Type:    Fraunces (display) + Public Sans (body)
   ============================================================= */

:root {
  /* Colors */
  --ink:        #1a1611;          /* near-black, warm */
  --ink-soft:   #3a3530;
  --paper:      #f5efe2;          /* parchment */
  --paper-deep: #ebe3d0;
  --paper-light:#faf7ed;
  --forest:     #1f3a2e;          /* deep forest green */
  --forest-2:   #2c4f3e;
  --moss:       #5a7a5e;
  --clay:       #b85c38;          /* terracotta accent */
  --gold:       #c99b4d;          /* warm gold */
  --line:       rgba(26, 22, 17, 0.14);
  --line-light: rgba(26, 22, 17, 0.08);

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --body:    "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max:    1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
}
.eyebrow.on-dark { color: var(--gold); }
.lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 7vw, 6rem); font-variation-settings: "opsz" 144, "SOFT" 30; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-variation-settings: "opsz" 60; }
h4 { font-size: 1.15rem; font-variation-settings: "opsz" 36; letter-spacing: -0.01em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
  border: 0;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 226, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--clay);
  transition: right 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--clay); }

.nav-cta {
  background: var(--forest);
  color: var(--paper-light);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(.6,.05,.3,1);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clay);
  color: var(--paper-light);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,92,56,0.3); }
.btn-dark {
  background: var(--forest);
  color: var(--paper-light);
}
.btn-dark:hover { background: var(--clay); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid currentColor;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost.on-dark { color: var(--paper-light); }
.btn-ghost.on-dark:hover { background: var(--paper-light); color: var(--forest); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,77,0.18), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,58,46,0.1), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1.5px;
  background: var(--clay);
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-lede {
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--forest), var(--forest-2) 60%, var(--moss));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(31,58,46,0.4);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,155,77,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(184,92,56,0.2), transparent 50%);
}
.hero-visual-content {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper-light);
}
.hero-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  max-width: 320px;
}
.hero-quote-attr {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.hero-visual-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
}
.hero-visual-tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-variation-settings: "opsz" 96;
  color: var(--forest);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ---------- Mission Statement ---------- */
.mission {
  background: var(--forest);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,155,77,0.15), transparent 50%);
  pointer-events: none;
}
.mission-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mission .eyebrow { color: var(--gold); margin-bottom: 1.5rem; display: inline-block; }
.mission h2 {
  color: var(--paper-light);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.mission h2 strong {
  font-weight: 500;
  font-style: normal;
  color: var(--gold);
}

/* ---------- Initiatives ---------- */
.initiatives {
  background: var(--paper);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 1rem; } }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 4rem); }

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .initiative-grid { grid-template-columns: 1fr; } }

.init-card {
  position: relative;
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
  overflow: hidden;
}
.init-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.init-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -25px rgba(31,58,46,0.25); }
.init-card:hover::before { transform: scaleX(1); }
.init-card:nth-child(2)::before { background: var(--forest); }
.init-card:nth-child(3)::before { background: var(--gold); }

.init-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--clay);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.init-card:nth-child(2) .init-num { color: var(--forest); }
.init-card:nth-child(3) .init-num { color: var(--gold); }

.init-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
}
.init-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.init-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}
.init-link .arrow { transition: transform 0.25s; }
.init-link:hover { color: var(--clay); }
.init-link:hover .arrow { transform: translateX(5px); }

/* ---------- Memorial / Story Block ---------- */
.memorial {
  background: var(--paper-deep);
  position: relative;
}
.memorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .memorial-grid { grid-template-columns: 1fr; } }

.memorial-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--forest-2), var(--moss));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(31,58,46,0.35);
}
.memorial-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px, transparent 8px,
      rgba(0,0,0,0.04) 8px, rgba(0,0,0,0.04) 9px
    );
}
.memorial-img-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  color: var(--paper-light);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  z-index: 1;
}
.memorial-img-dates {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  z-index: 1;
}
.memorial-content .eyebrow { margin-bottom: 1.5rem; display: inline-block; }
.memorial-content h2 { margin-bottom: 1.5rem; }
.memorial-content p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
.memorial-content blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--clay);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

/* ---------- Donate strip ---------- */
.donate-strip {
  background: var(--clay);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}
.donate-inner h2 {
  color: var(--paper-light);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 600px;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.donate-inner h2 strong { font-style: normal; font-weight: 500; }
.donate-strip .btn-ghost.on-dark {
  border-color: var(--paper-light);
}

/* ---------- Page header ---------- */
.page-header {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,77,0.12), transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a { color: var(--clay); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.6rem; opacity: 0.5; }

.page-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.page-header h1 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-header .lede { max-width: 640px; }

/* ---------- Article body (initiative pages) ---------- */
.article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
}
@media (max-width: 880px) { .article { grid-template-columns: 1fr; } }

.article-side {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 880px) { .article-side { position: static; } }
.article-side .label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article-side h4 {
  font-style: italic;
  font-size: 1.3rem;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  color: var(--ink);
  line-height: 1.3;
}

.article-body h2 { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.article-body h3 {
  margin: 2.5rem 0 1rem;
  font-size: 1.4rem;
  color: var(--forest);
}
.article-body p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.2rem; }
.article-body p strong, .article-body strong { color: var(--ink); font-weight: 700; }
.article-body em { color: var(--forest); font-style: italic; font-weight: 500; }

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0 2.5rem;
  padding-left: 0;
}
.bullet-list li {
  display: flex;
  gap: 1rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 0;
}
.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 0.55rem;
}

.detail-block {
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
  border-radius: 2px;
}
.detail-block p { margin-bottom: 0.7rem; font-size: 0.98rem; }
.detail-block p:last-child { margin-bottom: 0; }
.detail-block strong { display: block; margin-bottom: 0.3rem; color: var(--ink); }

.cta-block {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--forest);
  color: var(--paper-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-block h3 {
  color: var(--paper-light);
  font-size: 1.5rem;
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  text-align: center;
}
.team-portrait {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--forest-2), var(--moss));
  border-radius: 4px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.team-portrait::after {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  font-family: var(--display);
  font-style: italic;
  font-size: 5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  opacity: 0.85;
}
.team-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.team-card .role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-card .linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.team-card .linkedin:hover { color: var(--clay); border-color: var(--clay); }

/* ---------- Testimonials (Education) ---------- */
.testimonials {
  background: var(--paper-deep);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--paper-light);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.3rem; left: 1.5rem;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--clay);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
  padding-top: 1.5rem;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  display: block;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 0.3rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 4px;
}
.contact-card h3 { margin-bottom: 1rem; color: var(--forest); }
.contact-card p { color: var(--ink-soft); }
.contact-card a {
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.contact-card a:hover { color: var(--ink); }
.contact-address {
  font-style: normal;
  line-height: 1.7;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.notice {
  background: var(--clay);
  color: var(--paper-light);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  margin-top: 3rem;
}
.notice .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}
.notice p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.8rem; }
.notice strong { color: var(--paper-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper-deep);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,226,0.15);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }

.footer-brand .brand { color: var(--paper-light); margin-bottom: 1.2rem; }
.footer-brand .brand-mark { width: 50px; height: 50px; }
.footer-brand .brand-text small { color: var(--gold); }
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245,239,226,0.7);
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(245,239,226,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper-light); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245,239,226,0.5);
}
.footer-bottom a:hover { color: var(--paper-light); }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(.2,.8,.2,1) both; }
.rise-1 { animation-delay: 0.1s; }
.rise-2 { animation-delay: 0.2s; }
.rise-3 { animation-delay: 0.35s; }
.rise-4 { animation-delay: 0.5s; }
.rise-5 { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
