/* ===== TOKENS ===== */
:root {
  --forest-950: #050d05;
  --forest-900: #0a1a0a;
  --forest-800: #122812;
  --forest-700: #1a3d1a;
  --forest-600: #2d5a2d;
  --forest-500: #3d7a3d;
  --moss: #4a8f4a;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #8b7332;
  --cream: #f5f0e1;
  --earth: #3d2b1f;
  --bark: #2a1f14;
  --mist: rgba(180, 220, 160, 0.06);
  --glass: rgba(10, 26, 10, 0.65);
  --glass-border: rgba(201, 168, 76, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-jp: "Noto Serif JP", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--forest-950);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== BACKGROUND LAYERS ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(45, 90, 45, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(61, 43, 31, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(26, 61, 26, 0.2) 0%, transparent 70%),
    linear-gradient(180deg, var(--forest-950) 0%, var(--forest-900) 40%, var(--bark) 100%);
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(8deg) brightness(1.05); }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.mist {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 100%, var(--mist) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 0%, var(--mist) 0%, transparent 40%);
  animation: mistDrift 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mistDrift {
  0% { opacity: 0.6; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-20px); }
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.5);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 13, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(5, 13, 5, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  object-fit: cover;
  transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover img { transform: scale(1.08) rotate(-3deg); }

.nav-brand { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand .jp {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.nav-brand .en {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:not(.btn):hover { color: var(--gold-light); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--forest-950);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(201, 168, 76, 0.55), 0 0 60px rgba(201, 168, 76, 0.15); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 143, 74, 0.15) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-vines {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  opacity: 0.12;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(74, 143, 74, 0.3) 8px,
    rgba(74, 143, 74, 0.3) 10px
  );
}

.hero-vines-left { left: 0; animation: vineSway 8s ease-in-out infinite; }
.hero-vines-right { right: 0; animation: vineSway 8s ease-in-out infinite reverse; }

@keyframes vineSway {
  0%, 100% { transform: skewX(0deg); }
  50% { transform: skewX(2deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-title { margin-bottom: 1.25rem; }

.hero-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
  animation: titleReveal 1s var(--ease-out) 0.3s both;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  margin-top: 0.25rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.5s both;
}

.hero-bio {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.8s both;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  width: min(380px, 80vw);
  height: min(380px, 80vw);
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.ring-1 { animation: ringSpin 20s linear infinite; }
.ring-2 { inset: -15px; animation: ringSpin 25s linear infinite reverse; border-color: rgba(201, 168, 76, 0.1); }
.ring-3 { inset: -30px; animation: ringSpin 30s linear infinite; border-color: rgba(74, 143, 74, 0.15); }

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-dark);
  box-shadow:
    0 0 60px rgba(74, 143, 74, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5);
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.floating { animation: floatBadge 4s ease-in-out infinite; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  animation: fadeIn 1s 1.5s both;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-sub {
  opacity: 0.7;
  font-size: 1.05rem;
}

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

.section-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 143, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-deco-left { top: 10%; left: -100px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== ABOUT ===== */
.about { background: linear-gradient(180deg, transparent, rgba(18, 40, 18, 0.4) 50%, transparent); }

/* Gallery frames */
.gallery-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--forest-900);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}

.gallery-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.gallery-frame:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.gallery-frame:hover .gallery-shine {
  transform: translateX(120%);
}

.about-featured {
  margin-bottom: 2rem;
}

.gallery-frame-hero {
  aspect-ratio: 16 / 7;
}

.gallery-frame-hero img {
  object-position: center 35%;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.35s var(--ease-out);
  transform-style: preserve-3d;
}

.gallery-card-wide {
  grid-row: span 2;
}

.gallery-card-wide .gallery-frame {
  flex: 1;
  min-height: 320px;
}

.gallery-card:not(.gallery-card-wide) .gallery-frame {
  aspect-ratio: 4 / 3;
}

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

.gallery-card-banner .gallery-frame {
  aspect-ratio: 21 / 6;
}

.gallery-card-banner .gallery-frame img {
  object-position: center 40%;
}

.gallery-card figcaption {
  padding: 1rem 0.25rem 0;
}

.gallery-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.gallery-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.gallery-desc {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.5;
}

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

.about-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.about-card p { font-size: 0.92rem; opacity: 0.8; line-height: 1.7; }

.about-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-story-inner {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.about-story-inner p {
  margin-bottom: 1.25rem;
  opacity: 0.85;
  line-height: 1.8;
}

.about-story-inner p:last-child { margin-bottom: 0; }

.about-highlight blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  border-radius: 0 12px 12px 0;
}

.about-highlight strong { color: var(--gold-light); }

/* ===== HOW TO BUY ===== */
.howtobuy {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45, 90, 45, 0.15) 0%, transparent 50%),
    var(--forest-900);
}

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

.step {
  display: flex;
  gap: 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateX(4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.step-body p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }
.step-body a { color: var(--gold); }

.contract-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contract-box label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.contract-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contract-row code {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--gold-light);
  word-break: break-all;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.howtobuy-cta { text-align: center; }

/* ===== CHART ===== */
.chart-section { padding-bottom: 5rem; }

.chart-wrapper { text-align: center; }

.chart-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== JOIN US ===== */
.joinus {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}

.joinus-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.joinus-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bannerKenBurns 25s ease-in-out infinite alternate;
}

@keyframes bannerKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.joinus-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 5, 0.85) 0%, rgba(5, 13, 5, 0.6) 40%, rgba(5, 13, 5, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 13, 5, 0.7) 0%, transparent 50%, rgba(5, 13, 5, 0.7) 100%);
}

.joinus-content {
  position: relative;
  z-index: 1;
}

.joinus-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.joinus-text {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(5, 13, 5, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  min-width: 240px;
}

.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  color: var(--gold-light);
}

.social-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.social-card span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 13, 5, 0.9);
}

.footer-inner { text-align: center; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-brand img {
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.5;
  max-width: 500px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.35;
}

/* ===== COPY TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gold);
  color: var(--forest-950);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.4s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: min(280px, 70vw); height: min(280px, 70vw); margin: 0 auto; }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-card-wide { grid-row: auto; }
  .gallery-card-wide .gallery-frame { min-height: 240px; }
  .gallery-card-banner { grid-column: auto; }
  .gallery-frame-hero { aspect-ratio: 16 / 10; }
  .gallery-card-banner .gallery-frame { aspect-ratio: 16 / 7; }
  .steps { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 13, 5, 0.97);
    padding: 1.5rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .chart-frame { height: 400px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .social-card { min-width: 100%; }
}
