:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --charcoal: #1A1814;
  --mid: #3D3830;
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --soft-brown: #8B7355;
  --rose: #C4826A;
  --text: #2C2820;
  --text-light: #6B6050;
}

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

/* WordPress側の余白を抑える（テーマ完全再現向け） */
body { 
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ——— NOISE OVERLAY ——— */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* ——— PAGE LOADER ——— */
#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s 0.3s, visibility 0.8s 0.3s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.2em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201,169,110,0.2);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.8s ease forwards;
}
@keyframes loaderPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
@keyframes loaderSlide { from{left:-100%;} to{left:100%;} }

/* ——— CUSTOM CURSOR ——— */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.4s, height 0.4s, border-color 0.3s;
}
body:has(a:hover) #cursor { width: 18px; height: 18px; }
body:has(a:hover) #cursor-ring { width: 60px; height: 60px; border-color: rgba(201,169,110,0.9); }

/* ——— NAVIGATION ——— */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s, padding 0.4s, box-shadow 0.6s;
}
nav#nav.scrolled {
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(24px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.4s, letter-spacing 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { max-height: 34px; width: auto; }
.nav-logo:hover { letter-spacing: 0.22em; }
nav#nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  text-decoration: none;
  transition: color 0.3s, letter-spacing 0.3s;
  font-weight: 400;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s;
}
.nav-links a:hover { color: var(--gold); letter-spacing: 0.3em; }
.nav-links a:hover::after { width: 100%; }
nav#nav.scrolled .nav-links a { color: var(--text-light); }

.nav-cta {
  padding: 10px 26px;
  border: 1px solid rgba(245,240,232,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: all 0.4s;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover { border-color: var(--gold); color: var(--charcoal); }
nav#nav.scrolled .nav-cta { border-color: var(--gold); color: var(--gold); }

/* ——— HERO ——— */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,24,20,0.85) 0%,
    rgba(26,24,20,0.6) 40%,
    rgba(26,24,20,0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0) translateX(0) scale(1); opacity: var(--op, 0.3); }
  to   { transform: translateY(var(--dy,-40px)) translateX(var(--dx,20px)) scale(1.2); opacity: var(--op2, 0.6); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: 12vw;
  backdrop-filter: blur(6px);
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 1.7s forwards;
  max-width: 12ch;
}
.hero-title em {
  color: var(--gold-light);
  font-style: normal;
}
.hero-sub {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(245,240,232,0.65);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 28ch;
  opacity: 0;
  animation: fadeUp 1s 1.9s forwards;
}
.hero-actions {
  display: flex; gap: 20px;
  opacity: 0;
  animation: fadeUp 1s 2.1s forwards;
}
.btn-primary {
  padding: 15px 40px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s;
  position: relative; overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-101%);
  transition: transform 0.4s;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
.btn-secondary {
  padding: 15px 40px;
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 50px; right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 3s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ——— MARQUEE ——— */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 40px;
  font-weight: 500;
  transition: color 0.3s;
}
.marquee-inner span:hover { color: rgba(26,24,20,0.5); }
.marquee-inner span::before { content: '✦'; margin-right: 40px; opacity: 0.5; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ——— SECTION BASE ——— */
.section-label {
  font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; color: var(--soft-brown); }
.text-link {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s, letter-spacing 0.4s, padding-bottom 0.3s;
}
.text-link:hover { color: var(--gold); letter-spacing: 0.4em; padding-bottom: 8px; }

/* ——— ABOUT ——— */
.section-about {
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%; height: 600px;
  object-fit: cover;
  filter: sepia(15%) contrast(1.05);
  transition: filter 0.6s, transform 0.8s;
}
.about-visual:hover img { filter: sepia(5%) contrast(1.1); transform: scale(1.02); }
.about-visual-label {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  padding: 28px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  font-style: italic;
  transition: transform 0.4s, bottom 0.4s, right 0.4s;
}
.about-visual:hover .about-visual-label { bottom: -28px; right: -28px; }
.about-text { padding-left: 20px; }
.about-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 40px;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--soft-brown);
  line-height: 1.8;
  margin-bottom: 44px;
  transition: padding-left 0.4s, border-color 0.3s;
}
.about-quote:hover { padding-left: 36px; border-color: var(--rose); }

/* ——— STATS ——— */
.section-stats {
  background: var(--charcoal);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.section-stats::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: statsGlow 6s ease-in-out infinite alternate;
}
@keyframes statsGlow {
  from { transform: translate(-50%,-50%) scale(0.8); opacity: 0.5; }
  to   { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(201,169,110,0.2);
  position: relative;
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
}
.stat-item:hover {
  border-color: rgba(201,169,110,0.6);
  transform: translateY(-8px);
  background: rgba(201,169,110,0.04);
}
.stat-item::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%;
  width: 60%; height: 2px;
  background: var(--gold);
  transition: left 0.4s, width 0.4s;
}
.stat-item:hover::before { left: 0; width: 100%; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.4s;
}
.stat-item:hover .stat-number { transform: scale(1.1); }
.stat-label {
  font-size: 11px; letter-spacing: 0.15em;
  color: rgba(245,240,232,0.5); font-weight: 300;
}

/* ——— PROJECTS ——— */
.section-projects {
  padding: 140px 60px;
  max-width: 1400px; margin: 0 auto;
}
.projects-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.project-card {
  position: relative; overflow: hidden;
  cursor: none; aspect-ratio: 3/4;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s;
  filter: sepia(20%) contrast(1.05) brightness(0.85);
}
.project-card:hover img {
  transform: scale(1.1);
  filter: sepia(5%) contrast(1.1) brightness(0.9);
}
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.92) 0%, rgba(26,24,20,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: background 0.5s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(26,24,20,0.95) 0%, rgba(26,24,20,0.3) 60%);
}
.project-tag {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
  transform: translateY(10px); opacity: 0;
  transition: transform 0.5s 0.05s, opacity 0.5s 0.05s;
}
.project-card:hover .project-tag { transform: translateY(0); opacity: 1; }
.project-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 400;
  color: var(--cream); line-height: 1.6;
  transform: translateY(20px);
  transition: transform 0.5s 0.1s;
}
.project-card:hover .project-title { transform: translateY(0); }
.project-arrow {
  display: inline-flex;
  margin-top: 16px;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
}
.project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }

/* ——— MESSAGE ——— */
.section-message {
  background: var(--cream);
  padding: 160px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.message-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px; font-weight: 300;
  color: rgba(201,169,110,0.07);
  white-space: nowrap;
  pointer-events: none; line-height: 1;
  animation: bgTextFloat 10s ease-in-out infinite alternate;
}
@keyframes bgTextFloat {
  from { transform: translate(-50%,-50%) scale(1) rotate(-1deg); }
  to   { transform: translate(-50%,-50%) scale(1.05) rotate(1deg); }
}
.message-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.message-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; line-height: 2.8;
  color: var(--text); font-weight: 300;
  letter-spacing: 0.08em;
  margin-top: 48px;
}

/* ——— STORIES ——— */
.section-stories { padding: 140px 60px; background: var(--charcoal); }
.stories-inner { max-width: 1400px; margin: 0 auto; }
.stories-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.4s, box-shadow 0.5s;
}
.story-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.story-card img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  filter: sepia(20%) brightness(0.85);
  transition: filter 0.6s, transform 0.7s;
}
.story-card:hover img { filter: sepia(5%) brightness(0.95); transform: scale(1.04); }
.story-info { padding: 28px; }
.story-tag {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.story-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: var(--cream);
  line-height: 1.7; font-weight: 400;
  margin-bottom: 16px;
}
.story-arrow {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.4s, color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.story-arrow::after { content: '→'; transition: transform 0.4s; }
.story-card:hover .story-arrow { letter-spacing: 0.35em; color: var(--gold-light); }
.story-card:hover .story-arrow::after { transform: translateX(6px); }

/* ——— NEWS ——— */
.section-news { padding: 140px 60px; max-width: 1400px; margin: 0 auto; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.news-card {
  display: flex; gap: 28px;
  padding: 40px;
  border: 1px solid rgba(201,169,110,0.15);
  text-decoration: none;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
  align-items: flex-start;
  position: relative; overflow: hidden;
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s;
}
.news-card:hover::after { width: 100%; }
.news-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}
.news-card img {
  width: 100px; height: 100px;
  object-fit: cover; flex-shrink: 0;
  filter: sepia(20%);
  transition: filter 0.4s, transform 0.5s;
}
.news-card:hover img { filter: sepia(5%); transform: scale(1.05); }
.news-date {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.news-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--text);
  line-height: 1.8; font-weight: 400;
}

/* ——— DONATION CTA ——— */
.section-donation {
  position: relative;
  padding: 160px 60px;
  background: var(--mid);
  overflow: hidden; text-align: center;
}
.donation-line {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: lineShimmer 4s ease-in-out infinite;
}
@keyframes lineShimmer {
  0%   { background-position: -100% 0; opacity: 0.6; }
  50%  { opacity: 1; }
  100% { background-position: 200% 0; opacity: 0.6; }
}
.donation-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  animation: orbFloat var(--dur,10s) var(--delay,0s) ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(var(--dx,30px), var(--dy,-40px)) scale(1.2); }
}
.donation-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.donation-inner .section-heading { color: var(--cream); margin-bottom: 24px; }
.donation-inner .section-heading em { color: var(--gold-light); }
.donation-text {
  font-size: 13px; line-height: 2.2;
  color: rgba(245,240,232,0.6);
  margin-bottom: 48px; font-weight: 300;
  letter-spacing: 0.05em;
}
.donation-btns { display: flex; gap: 16px; justify-content: center; }

/* ——— FOOTER ——— */
footer {
  background: var(--charcoal);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--cream); letter-spacing: 0.1em;
  margin-bottom: 20px; display: block;
  transition: letter-spacing 0.4s;
}
.footer-brand .logo-text:hover { letter-spacing: 0.22em; }
.footer-address {
  font-size: 12px; line-height: 2;
  color: rgba(245,240,232,0.4); font-weight: 300;
}
.footer-col-title {
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 12px; color: rgba(245,240,232,0.5);
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s, letter-spacing 0.3s, padding-left 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); letter-spacing: 0.12em; padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; color: rgba(245,240,232,0.25); letter-spacing: 0.1em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 10px; color: rgba(245,240,232,0.25);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ——— REVEAL SYSTEM ——— */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.from-left  { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.scale-in   { transform: scale(0.9); }
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp  { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn  { from{opacity:0;} to{opacity:1;} }

/* ——— PARALLAX TEXT ——— */
.parallax-text { will-change: transform; transition: transform 0.05s linear; }

/* ——— HORIZONTAL RULE ANIM ——— */
.gold-hr {
  width: 0; height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.gold-hr.visible { width: 120px; }

/* ——— MOBILE ——— */
@media (max-width: 900px) {
  nav#nav { padding: 22px 28px; }
  nav#nav.scrolled { padding: 16px 28px; }
  .nav-links { display: none; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .hero-content { padding: 0 28px 80px; }
  .hero-image-mask { display: none; }
  .section-about, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .about-text { padding-left: 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .projects-grid, .stories-grid, .news-grid { grid-template-columns: 1fr; }
  .section-about, .section-projects, .section-stories, .section-news,
  .section-stats, .section-message, .section-donation { padding: 80px 28px; }
  footer { padding: 60px 28px 30px; }
  .donation-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .projects-header, .stories-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .message-bg-text { font-size: 120px; }
}