/* ==========================================================================
   Mortons Classic Cars — Site Stylesheet
   Palette: British Racing Green / Gold / Cream (from MCC badge branding)
   ========================================================================== */

:root {
  --green-990: #0a1d15;
  --green-950: #0f281e;
  --green-900: #143425;
  --green-800: #1b452f;
  --green-700: #23573b;
  --gold: #c9a45c;
  --gold-bright: #ddbe7f;
  --gold-dim: #a8863f;
  --cream: #f5f0e4;
  --cream-dark: #eae2cf;
  --ink: #12211a;
  --ink-soft: #3d4f45;
  --white: #ffffff;
  --shadow: 0 18px 40px -18px rgba(10, 29, 21, 0.45);
  --radius: 6px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.08em; }

.kicker {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); flex: none; }
.dark .kicker, .kicker.on-dark { color: var(--gold-bright); }
.kicker.centered { justify-content: center; }
.kicker.centered::after { content: ""; width: 44px; height: 1px; background: var(--gold); flex: none; }

.lead { font-size: 1.16rem; line-height: 1.75; color: var(--ink-soft); }
.dark .lead, .hero .lead, .page-hero .lead, .cta-band .lead { color: rgba(245, 240, 228, 0.88); }

/* ---------- Chequered divider ---------- */
.chequer {
  height: 14px;
  background:
    repeating-conic-gradient(var(--green-950) 0% 25%, var(--gold) 0% 50%) 0 0 / 14px 14px;
  opacity: 0.92;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-gold { background: var(--gold); color: var(--green-990); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245, 240, 228, 0.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--green-900); border-color: rgba(20, 52, 37, 0.4); }
.btn-ghost-dark:hover { border-color: var(--green-900); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(rgba(10, 29, 21, 0.85), rgba(10, 29, 21, 0));
}
.site-header.scrolled {
  background: rgba(10, 29, 21, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 1;
}

/* Graceful fallback for photos that are temporarily unavailable */
img.img-broken { opacity: 0; }
.gallery a:has(> img.img-broken) { display: none; }
.brand-text {
  font-family: var(--font-display);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  border-left: 1px solid rgba(201, 164, 92, 0.55);
  padding-left: 14px;
  line-height: 1.5;
}
.brand-text strong { display: block; color: var(--gold-bright); font-size: 0.78rem; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--cream);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--gold-bright); }
.nav .nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 10px 20px;
  border-radius: 3px;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--gold); color: var(--green-990); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  margin: 6px auto;
  transition: all 0.3s ease;
}

@media (max-width: 620px) {
  .brand-text { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 29, 21, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.1rem; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--green-990);
  color: var(--cream);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-bg.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 29, 21, 0.80) 0%, rgba(10, 29, 21, 0.62) 45%, rgba(10, 29, 21, 0.30) 100%);
  z-index: 1;
}
.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-dots button {
  width: 34px; height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(245, 240, 228, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.hero-dots button:hover { background: rgba(245, 240, 228, 0.6); }
.hero-dots button.active { background: var(--gold); }
.hero-content { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 90px; }
.hero-badge { width: 110px; height: auto; margin-bottom: 34px; opacity: 0.95; }
.hero h1 { color: var(--cream); max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero .lead { max-width: 54ch; margin: 26px 0 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-phone {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  white-space: nowrap;
}
.hero-phone:hover { color: var(--gold-bright); }
.hero-phone .icon { width: 20px; height: 20px; flex: none; }

@media (max-width: 700px) {
  .hero { min-height: 100svh; }
  .hero-content {
    padding-top: 118px;
    padding-bottom: 74px;
    text-align: center;
  }
  .hero-badge { width: 88px; margin: 0 auto 26px; }
  .hero h1 { max-width: none; }
  .hero .lead {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 20px auto 30px;
    max-width: 34ch;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas .btn { justify-content: center; }
  .hero-phone { justify-content: center; margin-top: 6px; }
  .kicker { justify-content: center; }
  .kicker::after { content: ""; width: 44px; height: 1px; background: var(--gold); flex: none; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .page-hero { padding: 130px 0 60px; text-align: center; }
  .page-hero .lead { margin-left: auto; margin-right: auto; }
}

.page-hero {
  position: relative;
  background: var(--green-990);
  color: var(--cream);
  padding: 170px 0 80px;
  overflow: hidden;
}
.page-hero .badge-watermark {
  position: absolute;
  right: -120px; top: -60px;
  width: 480px;
  opacity: 0.05;
  pointer-events: none;
}
.page-hero h1 { color: var(--cream); }
.page-hero .lead { max-width: 62ch; margin-top: 18px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.dark { background: var(--green-950); color: var(--cream); }
.dark h2, .dark h3 { color: var(--cream); }
.cream-deep { background: var(--cream-dark); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.value-card {
  background: var(--white);
  border: 1px solid rgba(20, 52, 37, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .icon { width: 46px; height: 46px; color: var(--green-800); margin-bottom: 18px; }
.value-card h3 { color: var(--green-900); margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 0.98rem; }

.service-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 240, 228, 0.14);
}
.service-item:last-child { border-bottom: none; }
.service-num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  flex: none;
  padding-top: 3px;
}
.service-item h3 { margin-bottom: 6px; color: var(--gold-bright); }
.service-item p { color: rgba(245, 240, 228, 0.75); font-size: 0.98rem; }

/* ---------- Project cards ---------- */
.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--green-900);
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 26px -12px rgba(10, 29, 21, 0.4);
}
.project-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-card .pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 29, 21, 0) 30%, rgba(10, 29, 21, 0.92) 100%);
  z-index: 1;
}
.project-card .pc-text {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: var(--cream);
}
.project-card .pc-year {
  font-family: var(--font-display);
  color: var(--gold-bright);
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  text-transform: uppercase;
}
.project-card h3 { margin-top: 4px; font-size: 1.24rem; line-height: 1.25; }
.project-card .pc-cta {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.project-card:hover .pc-cta { opacity: 1; transform: translateY(0); }

/* ---------- Before / After slider ---------- */
.ba-wrap { margin: 0 0 26px; }
.ba-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.dark .ba-label { color: var(--gold-bright); }
.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--green-900);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: none;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba .ba-after { clip-path: inset(0 0 0 50%); }
.ba .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 3;
  cursor: ew-resize;
}
.ba .ba-handle::after {
  content: "◂ ▸";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--green-990);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.ba .ba-tag {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  background: rgba(10, 29, 21, 0.75);
  color: var(--cream);
}
.ba .ba-tag.before { left: 14px; }
.ba .ba-tag.after { right: 14px; color: var(--gold-bright); }

/* ---------- Featured restoration (home) ---------- */
.feature-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: 36px; } }
.testimonial {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 34px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  line-height: 1.3;
}
.dark .testimonial blockquote { color: var(--cream); }
.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.dark .testimonial cite { color: rgba(245, 240, 228, 0.7); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green-900);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery a:hover img { transform: scale(1.07); }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10, 29, 21, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 78vh; object-fit: contain; border-radius: 4px; }
.lightbox .lb-caption { color: var(--cream); margin-top: 16px; font-size: 0.95rem; letter-spacing: 0.04em; }
.lightbox button {
  position: absolute;
  background: none; border: 1px solid rgba(245, 240, 228, 0.35);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 999px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold-bright); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--green-950);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
  color: var(--cream);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10, 29, 21, 0.88);
}
.cta-band .badge-watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  opacity: 0.05;
  pointer-events: none;
}
.cta-band h2 { max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { max-width: 52ch; margin: 0 auto 34px; color: rgba(245, 240, 228, 0.8); }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 3px;
  pointer-events: none;
}
.portrait-caption {
  margin-top: 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--green-900);
}
.portrait-caption span { display: block; color: var(--gold-dim); font-size: 0.72rem; letter-spacing: 0.26em; margin-top: 4px; }
.prose p { margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- About image band ---------- */
.about-band { background: var(--green-990); }
.about-band img {
  width: 100%;
  height: clamp(240px, 48vh, 520px);
  object-fit: cover;
  display: block;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid > *, .contact-form > *, .form-row > * { min-width: 0; }
input, select, textarea { min-width: 0; }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--green-900);
  display: block;
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid rgba(20, 52, 37, 0.25);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.25);
}
textarea { min-height: 150px; resize: vertical; }

.info-card {
  background: var(--green-950);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.info-card h3 { color: var(--gold-bright); margin-bottom: 16px; }
.info-list { list-style: none; display: grid; gap: 16px; margin-bottom: 34px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; }
.info-list .icon { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 4px; }
.info-list a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(201, 164, 92, 0.4); }
.info-list a:hover { color: var(--gold-bright); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid rgba(245, 240, 228, 0.12); }
.hours-table td:last-child { text-align: right; color: var(--gold-bright); }
.hours-table tr:last-child td { border-bottom: none; }

.map-frame {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  filter: saturate(0.9);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-990);
  color: rgba(245, 240, 228, 0.75);
  padding: 70px 0 0;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .badge { width: 130px; margin-bottom: 20px; opacity: 0.92; }
.site-footer h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(245, 240, 228, 0.75); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 228, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245, 240, 228, 0.5);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-40 { margin-top: 40px; }
.notice {
  background: rgba(201, 164, 92, 0.14);
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--green-900);
}
