/* ============================================================
   GAIL CRICK MEMORIAL
   gailcrick.com
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:       #faf6ef;
  --sand:        #f0e4cc;
  --warm:        #f5ede0;
  --copper:      #b87333;
  --terracotta:  #c1440e;
  --crimson:     #7a1a1a;
  --gold:        #c9a84c;
  --charcoal:    #28201c;
  --stone:       #4a3c34;
  --muted:       #6b5c50;
  --light-stone: #8c7b6b;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Source Sans 3', system-ui, -apple-system, sans-serif;

  --max-width:    1100px;
  --max-narrow:   700px;
  --section-pad:  5rem 1.5rem;
  --ease:         0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

blockquote {
  border-left: 3px solid var(--copper);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}

blockquote p {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
  color: var(--crimson);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-narrow);
}

.section {
  padding: var(--section-pad);
}

.section--sand  { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--warm  { background: var(--warm); }
.section--dark  { background: var(--charcoal); color: var(--cream); }
.section--stone { background: var(--stone); color: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--crimson);
}

.section-header--light h2 {
  color: var(--cream);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: -1rem auto 3rem;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
}

/* --- Ornament (rose divider below section headings) --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1.25rem;
  color: var(--copper);
}

.ornament--gold {
  color: var(--gold);
  opacity: 0.7;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.ornament svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Navigation --- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

#nav.scrolled {
  background: rgba(40, 32, 28, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.875rem 1.5rem;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.9);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity var(--ease);
}

#nav.scrolled .nav-name {
  opacity: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(250, 246, 239, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--ease);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* --- Hero --- */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Gradient fallback when no hero image is set */
  background: linear-gradient(160deg, var(--charcoal) 0%, #3a2820 55%, #5a2a1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 32, 28, 0.2) 0%,
    rgba(40, 32, 28, 0.05) 35%,
    rgba(40, 32, 28, 0.65) 100%
  );
}

/* Fibonacci / concentric circles — sacred geometry at very low opacity.
   Visible to those who know to look. */
.hero-geometry {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.05) 15.3%, transparent 15.4%),
    radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.04) 24.7%, transparent 24.8%),
    radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.04) 40.0%, transparent 40.1%),
    radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.03) 64.7%, transparent 64.8%),
    radial-gradient(circle at 50% 46%, rgba(201, 168, 76, 0.02) 100%,  transparent 100.1%);
  background-size: 140vmax 140vmax;
  background-position: center 46%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-pre {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
  margin-bottom: 1.25rem;
}

.hero-name {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.hero-dates {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
  line-height: 2.2;
  margin-bottom: 0;
}

/* Scroll indicator line */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.5));
  margin: 0 auto;
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- Story Section --- */
.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.story-text .lead {
  color: var(--charcoal);
}

.story-text p {
  color: var(--stone);
}

.story-text strong {
  color: var(--crimson);
}

/* Timeline */
.story-timeline {
  position: relative;
  padding-left: 2.25rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.4rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--copper), rgba(184, 115, 51, 0.1));
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.12);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.73rem;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--sand);
  box-shadow: 0 0 0 1px var(--copper);
}

.timeline-item--featured::before {
  background: var(--crimson);
  box-shadow: 0 0 0 1px var(--crimson);
  width: 10px;
  height: 10px;
  left: -1.83rem;
  top: 0.4rem;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.timeline-item--featured .timeline-year {
  color: var(--crimson);
}

.timeline-place {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- Miner Section --- */
.miner-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}

.miner-text .lead {
  color: rgba(250, 246, 239, 0.85);
}

.miner-text p {
  color: rgba(250, 246, 239, 0.65);
}

.miner-text strong {
  color: var(--gold);
}

.miner-text blockquote {
  color: rgba(201, 168, 76, 0.75);
  border-left-color: var(--gold);
}

/* --- Competition Timeline --- */
.competition-timeline {
  max-width: 760px;
  margin: 0 auto 4rem;
}

.comp-item {
  display: grid;
  grid-template-columns: 5.5rem 3px 1fr;
  gap: 0 1.75rem;
  margin-bottom: 2.75rem;
  align-items: start;
}

.comp-item:last-child {
  margin-bottom: 0;
}

.comp-year {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copper);
  text-align: right;
  padding-top: 0.1rem;
  line-height: 1;
}

.comp-bar {
  width: 3px;
  min-height: 90px;
  background: var(--copper);
  opacity: 0.3;
  margin-top: 0.2rem;
}

.comp-item--featured .comp-year {
  color: var(--crimson);
}

.comp-item--featured .comp-bar {
  opacity: 0.75;
  background: var(--crimson);
}

.comp-info h3 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.comp-result {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-stone);
  margin-bottom: 0.6rem;
}

.comp-result--gold   { color: var(--gold); }
.comp-result--silver { color: var(--light-stone); }

.comp-info p:last-child {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Newspaper Clippings --- */
.clippings {
  margin-top: 4rem;
}

.clippings-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--stone);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}

.clippings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.clipping {
  min-height: 300px;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 12px rgba(40, 32, 28, 0.12);
}

.clipping:nth-child(2) { transform: rotate(1.5deg); }
.clipping:nth-child(3) { transform: rotate(-0.5deg); }

/* When real clipping images are added */
.clipping img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Family Section --- */
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.family-text .lead {
  color: var(--charcoal);
}

.family-text p {
  color: var(--stone);
}

.family-text strong {
  color: var(--crimson);
}

/* --- In Memoriam --- */
.memoriam-text {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250, 246, 239, 0.75);
  line-height: 2;
}

.memoriam-text strong {
  color: rgba(250, 246, 239, 0.95);
  font-style: normal;
}

/* --- Gallery --- */
.gallery-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.gallery-nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  background: none;
  color: var(--copper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease), opacity var(--ease);
}

.gallery-nav svg {
  width: 1.1rem;
  height: 1.1rem;
}

.gallery-nav:hover:not(:disabled) {
  background: var(--copper);
  color: var(--cream);
}

.gallery-nav:disabled {
  opacity: 0.2;
  cursor: default;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  border-radius: 2px;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(40, 32, 28, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--hidden {
  display: none;
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-item--entering {
  animation: galleryFadeIn 0.35s ease forwards;
}

/* Stagger the entering animation per item */
.gallery-item--entering:nth-child(2) { animation-delay: 0.04s; }
.gallery-item--entering:nth-child(3) { animation-delay: 0.08s; }
.gallery-item--entering:nth-child(4) { animation-delay: 0.12s; }
.gallery-item--entering:nth-child(5) { animation-delay: 0.16s; }
.gallery-item--entering:nth-child(6) { animation-delay: 0.20s; }

/* Page indicator dots */
.gallery-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-stone);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity var(--ease), background var(--ease), transform var(--ease);
  border: none;
  padding: 0;
}

.gallery-dot:hover {
  opacity: 0.6;
}

.gallery-dot--active {
  background: var(--copper);
  opacity: 1;
  transform: scale(1.25);
}

/* --- Photo Placeholders --- */
.photo-placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(140, 123, 107, 0.07),
    rgba(140, 123, 107, 0.07) 10px,
    transparent 10px,
    transparent 20px
  );
  border: 2px dashed rgba(140, 123, 107, 0.28);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--light-stone);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Footer --- */
#footer {
  position: relative;
  background: var(--charcoal);
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: center;
  overflow: hidden;
}

/* Subtle concentric rings in footer */
.footer-geometry {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.04) 25%, transparent 25.1%),
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.03) 45%, transparent 45.1%),
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.02) 65%, transparent 65.1%);
  background-size: 600px 600px;
  background-position: center;
  pointer-events: none;
}

.footer-symbol {
  width: 52px;
  height: 60px;
  margin: 0 auto 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.footer-symbol svg {
  width: 100%;
  height: 100%;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-dates {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: rgba(201, 168, 76, 0.6);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 246, 239, 0.35);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.2);
  letter-spacing: 0.1em;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 22, 18, 0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-img {
  max-width: min(90vw, 1200px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 1.25rem;
  color: rgba(250, 246, 239, 0.55);
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(250, 246, 239, 0.6);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color var(--ease);
  font-family: var(--font-sans);
}

.lightbox-close:hover {
  color: var(--cream);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sibling reveals */
.comp-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.comp-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.gallery-item.reveal:nth-child(2) { transition-delay: 0.05s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.1s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.15s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.2s; }
.gallery-item.reveal:nth-child(6) { transition-delay: 0.25s; }
.clipping.reveal:nth-child(2) { transition-delay: 0.1s; }
.clipping.reveal:nth-child(3) { transition-delay: 0.2s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .miner-grid,
  .family-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .miner-photo,
  .family-photo {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem 1.25rem;
  }

  .hero-bg {
    object-position: 44% top;
  }

  .nav-links {
    display: none;
  }

  .nav-name {
    opacity: 1;
  }

  .clippings-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .recognition-card img {
    height: 220px;
  }

  .hero-name {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .comp-item {
    grid-template-columns: 4.5rem 2px 1fr;
    gap: 0 1.25rem;
  }

  .comp-year {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-bg {
    object-position: 30% top;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: start;
  }

  .gallery-grid {
    grid-column: 1 / -1;
  }

  .gallery-nav {
    width: 2.4rem;
    height: 2.4rem;
  }

  .gallery-nav--prev {
    justify-self: end;
  }

  .gallery-nav--next {
    justify-self: start;
  }

  .clippings-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .archive-preview-grid {
    grid-template-columns: 1fr;
  }

  .comp-item {
    grid-template-columns: 4rem 2px 1fr;
    gap: 0 1rem;
  }

  .footer-symbol {
    width: 40px;
    height: 47px;
  }
}

/* --- Recognition Grid --- */
.recognition-section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 2rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Center a lone last card in an odd-count grid */
.recognition-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(50% - 0.75rem);
}

.recognition-card {
  background: var(--sand);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.recognition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(40, 32, 28, 0.14);
}

.recognition-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.recognition-card:hover img {
  transform: scale(1.03);
}

.recognition-info {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.recognition-pub {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 0.2rem;
}

.recognition-date {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-stone);
  margin-bottom: 0.75rem;
}

.recognition-info p:last-child {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Pull quote - featured newspaper excerpt */
.pull-quote {
  border-left: none;
  border-top: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  padding: 1.5rem 2rem;
  margin: 2.5rem auto;
  max-width: 780px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--stone);
  line-height: 1.7;
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Olympic note callout */
.olympic-note {
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* --- Family Photos (2x2 grid) --- */
.family-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.family-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(40, 32, 28, 0.12);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.family-photos img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 32, 28, 0.18);
}

/* --- Archive preview grid (random clippings on main page) --- */
.archive-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.archive-preview-card {
  background: var(--sand);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 2px 2px 8px rgba(40, 32, 28, 0.10);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.archive-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(40, 32, 28, 0.16);
}

.archive-preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.archive-preview-card-label {
  padding: 0.5rem 0.7rem 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.archive-preview-card-label strong {
  display: block;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

@media (max-width: 768px) {
  .archive-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Archives CTA --- */
.archives-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.archives-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border: 1.5px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background var(--ease), color var(--ease);
}

.archives-btn:hover {
  background: var(--copper);
  color: var(--cream);
}

/* --- Clipping real images --- */
.clipping img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform var(--ease);
}

.clipping:hover img {
  transform: scale(1.02);
}

/* --- Print --- */
@media print {
  #nav,
  .hero-scroll,
  .hero-geometry,
  .footer-geometry {
    display: none;
  }

  #hero {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
