@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,500&display=swap");

:root {
  --navy-950: #08131f;
  --navy-900: #0d1b2a;
  --navy-800: #132638;
  --navy-700: #1b3a5b;
  --navy-500: #2f5478;
  --navy-200: #9fb1c4;
  --navy-100: #c9d4e0;
  --paper: #fbfaf6;
  --ivory-50: #f7f3ec;
  --ivory-100: #eee7d9;
  --ivory-200: #e4dac6;
  --gold-700: #876a2e;
  --gold-600: #a5833a;
  --gold-400: #c6a75a;
  --gold-200: #e5d6a8;
  --ink-900: #141414;
  --ink-700: #2b2b2b;
  --ink-600: #4a4a4a;
  --ink-400: #8a8a8a;
  --ink-200: #d6d1c7;
  --ink-100: #e8e3d8;
  --positive: #2e6b4f;
  --caution: #a64b2a;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-max: 1200px;
  --gutter: 24px;
  --radius-1: 2px;
  --radius-2: 4px;
  --radius-3: 8px;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.yccm-menu-open { overflow: hidden; }
::selection { background: var(--gold-200); color: var(--ink-900); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }

.yccm-shell {
  min-height: 100vh;
  background: var(--ivory-50);
}

.yccm-main {
  position: relative;
  z-index: 1;
}

.yccm-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.yccm-section {
  position: relative;
  background: var(--ivory-50);
  z-index: 2;
}

.yccm-section.paper { background: var(--paper); }
.yccm-section.dark { background: var(--navy-900); color: var(--ivory-50); }
.yccm-section-inner { padding: 112px var(--gutter); max-width: var(--content-max); margin: 0 auto; }
.yccm-section-inner.compact { padding-top: 80px; padding-bottom: 80px; }

.yccm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold-700);
}

.yccm-eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.dark .yccm-eyebrow,
.yccm-hero .yccm-eyebrow,
.yccm-visit .yccm-eyebrow {
  color: var(--gold-400);
}

.yccm-h1,
.yccm-h2,
.yccm-h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

.yccm-h1 {
  font-size: 72px;
  line-height: 1.04;
}

.yccm-h2 {
  font-size: 48px;
  line-height: 1.12;
}

.yccm-h3 {
  font-size: 28px;
  line-height: 1.2;
}

.dark .yccm-h1,
.dark .yccm-h2,
.dark .yccm-h3,
.yccm-hero .yccm-h1,
.yccm-visit .yccm-h2 {
  color: var(--ivory-50);
}

.yccm-lede {
  margin: 18px 0 0;
  color: var(--ink-600);
  font-size: 20px;
  line-height: 1.5;
  max-width: 62ch;
}

.dark .yccm-lede,
.yccm-hero .yccm-lede,
.yccm-visit .yccm-lede {
  color: var(--navy-100);
}

.yccm-copy {
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.65;
}

.yccm-copy p { margin: 0; }
.yccm-copy p + p { margin-top: 18px; }

.yccm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-1);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.yccm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14);
}

.yccm-btn:active { transform: translateY(0) scale(0.98); }

.yccm-btn.gold {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
}

.yccm-btn.gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.yccm-btn.navy {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--ivory-50);
}

.yccm-btn.navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.yccm-btn.ghost-light {
  background: transparent;
  color: var(--ivory-50);
  border-color: rgba(255, 255, 255, 0.28);
}

.yccm-btn.ghost-light:hover { border-color: var(--ivory-50); }

.yccm-btn.ghost-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--ink-200);
}

.yccm-btn.ghost-dark:hover { border-color: var(--navy-900); }

.yccm-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-600);
  padding-bottom: 4px;
}

.yccm-link:hover { color: var(--navy-500); }

/* Navigation */
.yccm-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  color: var(--ivory-50);
  transition:
    padding var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.yccm-nav.is-scrolled,
.yccm-nav.solid {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(13, 27, 42, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.yccm-nav.topo-mode:not(.is-scrolled):not(.solid) {
  color: var(--ink-900);
}

.yccm-nav.topo-mode:not(.is-scrolled):not(.solid) .yccm-wordmark span {
  color: #c95f20;
}

.yccm-nav.topo-mode:not(.is-scrolled):not(.solid) .yccm-nav-links .nav-cta {
  color: #c95f20;
  border-color: rgba(201, 95, 32, 0.56);
}

.yccm-nav.topo-mode:not(.is-scrolled):not(.solid) .yccm-nav-links a:hover {
  color: #c95f20;
}

.yccm-nav.topo-mode:not(.is-scrolled):not(.solid) .yccm-burger {
  color: var(--ink-900);
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) {
  color: var(--ivory-50);
  background: linear-gradient(180deg, rgba(8, 19, 31, 0.84), rgba(8, 19, 31, 0));
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) .yccm-wordmark {
  color: var(--ivory-50);
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) .yccm-wordmark span {
  color: var(--gold-400);
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) .yccm-nav-links .nav-cta {
  color: var(--gold-200);
  border-color: rgba(198, 167, 90, 0.68);
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) .yccm-nav-links a:hover {
  color: var(--gold-200);
}

.yccm-nav.gallery-mode:not(.is-scrolled):not(.solid) .yccm-burger {
  color: var(--ivory-50);
}

.yccm-wordmark {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 0.2em;
  font-weight: 700;
  white-space: nowrap;
}

.yccm-wordmark span {
  display: block;
  margin-top: 4px;
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.26em;
  font-weight: 600;
}

.yccm-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.yccm-nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.78;
  transition: opacity var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.yccm-nav-links a:hover { opacity: 1; color: var(--gold-200); }
.yccm-nav-links .nav-cta {
  opacity: 1;
  color: var(--gold-200);
  border: 1px solid var(--gold-400);
  padding: 9px 18px;
}

.yccm-nav-links .nav-cta:hover {
  color: var(--navy-900);
  background: var(--gold-400);
}

.yccm-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ivory-50);
  padding: 0;
  cursor: pointer;
}

.yccm-burger span {
  display: block;
  width: 23px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}

.yccm-menu-open .yccm-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.yccm-menu-open .yccm-burger span:nth-child(2) { opacity: 0; }
.yccm-menu-open .yccm-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.yccm-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 108px 28px 40px;
  background: var(--navy-900);
  color: var(--ivory-50);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out), visibility 0s linear var(--dur-slow);
}

.yccm-menu-open .yccm-mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.yccm-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.16;
}

.yccm-mobile-menu a:last-child { color: var(--gold-400); }
.yccm-mobile-meta { margin: 28px 0 0; color: var(--navy-100); font-size: 14px; line-height: 1.55; }

/* Hero */
.yccm-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(27, 58, 91, 0.72), transparent 58%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--ivory-50);
}

.yccm-topo-hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 42%, rgba(220, 108, 36, 0.09), transparent 31%),
    linear-gradient(180deg, #f1eee5, #e8e3d8);
  color: #14130f;
  isolation: isolate;
}

.yccm-topo-hero .yccm-hero-canvas {
  z-index: 0;
}

.yccm-topo-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.02) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  mix-blend-mode: multiply;
}

.yccm-topo-dot {
  position: absolute;
  z-index: 4;
  left: 49%;
  top: 36%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e86116;
  box-shadow: 0 0 0 9px rgba(232, 97, 22, 0.11);
  transform: translate(-50%, -50%);
  animation: yccm-pulse-dot 2.8s ease-in-out infinite;
}

.yccm-topo-meta {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(20, 19, 15, 0.56);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.yccm-topo-meta.left {
  left: 40px;
  top: 110px;
}

.yccm-topo-meta.right {
  right: 40px;
  top: 96px;
  align-items: flex-end;
}

.yccm-topo-hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 48px;
  padding: 106px 40px 138px;
}

.yccm-topo-title {
  margin: 0;
  color: #14130f;
  font-family: var(--font-serif);
  font-size: 184px;
  line-height: 0.82;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yccm-topo-title span {
  display: inline-block;
  color: #e86116;
  font-style: italic;
  transform: translateX(38%);
}

.yccm-topo-aside {
  justify-self: end;
  max-width: 390px;
  margin-top: 180px;
}

.yccm-topo-aside p {
  margin: 0;
  color: rgba(20, 19, 15, 0.82);
  font-size: 22px;
  line-height: 1.26;
  font-weight: 500;
}

.yccm-topo-footer {
  position: absolute;
  z-index: 4;
  left: 40px;
  right: 40px;
  bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 19, 15, 0.13);
  color: rgba(20, 19, 15, 0.5);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.yccm-topo-hero .yccm-hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.yccm-btn.topo {
  background: #14130f;
  color: #f1eee5;
  border-color: #14130f;
}

.yccm-btn.topo-ghost {
  background: transparent;
  color: #14130f;
  border-color: rgba(20, 19, 15, 0.28);
}

.yccm-topo-hero .yccm-infobar {
  z-index: 5;
  color: #14130f;
  background: rgba(241, 238, 229, 0.72);
  border-top-color: rgba(20, 19, 15, 0.15);
  backdrop-filter: blur(14px);
}

.yccm-topo-hero .yccm-infobar a {
  border-left-color: rgba(20, 19, 15, 0.13);
}

.yccm-topo-hero .yccm-kicker {
  color: #c95f20;
}

.yccm-topo-hero .yccm-info-value {
  color: #14130f;
}

@keyframes yccm-pulse-dot {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.45); opacity: 0.72; }
}

.yccm-gallery-hero {
  background:
    radial-gradient(ellipse 90% 70% at 50% 44%, rgba(47, 84, 120, 0.54), transparent 64%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.yccm-hero-gallery-stage {
  position: absolute;
  inset: 0;
  min-height: 100%;
  padding: 118px 64px 136px;
  overflow: hidden;
  perspective: 1100px;
  touch-action: none;
  cursor: grab;
}

.yccm-hero-gallery-stage .yccm-wall-col {
  width: 300px;
}

.yccm-hero-gallery-stage .yccm-g-tile {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0.84;
}

.yccm-hero-gallery-stage .yccm-g-title {
  font-size: 15px;
}

.yccm-hero-gallery-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.58), transparent 24%, transparent 62%, rgba(13, 27, 42, 0.82)),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(13, 27, 42, 0.44) 78%);
}

.yccm-gallery-hero .yccm-infobar {
  z-index: 4;
}

.yccm-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.yccm-cursor-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198, 167, 90, 0.18), transparent 66%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  mix-blend-mode: screen;
}

.yccm-hero:hover .yccm-cursor-glow { opacity: 1; }

.yccm-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 134px;
}

.yccm-hero .yccm-eyebrow::after { display: none; }
.yccm-hero-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 92px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ivory-50);
}

.yccm-hero-title em { color: var(--gold-200); font-style: italic; }
.yccm-hero .yccm-lede { max-width: 720px; }
.yccm-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.yccm-scrollcue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 104px;
  width: 1px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-400));
}

.yccm-infobar {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(13, 27, 42, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.yccm-infobar a {
  min-height: 96px;
  padding: 20px 32px;
  color: inherit;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transition: background var(--dur-fast) var(--ease-out);
}

.yccm-infobar a:first-child { border-left: 0; }
.yccm-infobar a:hover { background: rgba(255, 255, 255, 0.06); }
.yccm-kicker {
  margin: 0 0 6px;
  color: var(--gold-400);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.yccm-info-value {
  margin: 0;
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.2;
}

.yccm-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yccm-marquee-track {
  display: flex;
  width: max-content;
  animation: yccm-marquee 36s linear infinite;
}

.yccm-marquee span {
  padding: 0 18px;
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  opacity: 0.86;
}

.yccm-marquee b {
  color: var(--gold-600);
  font-weight: 400;
  padding-left: 36px;
}

@keyframes yccm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Cards and rows */
.yccm-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-2);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
}

.yccm-card.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 131, 58, 0.58);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.12);
}

.yccm-steps,
.yccm-events-grid,
.yccm-group-grid,
.yccm-belief-grid,
.yccm-gallery-preview-grid {
  display: grid;
  gap: 24px;
}

.yccm-steps { grid-template-columns: repeat(3, 1fr); }
.yccm-step { padding: 32px; display: flex; flex-direction: column; min-height: 310px; }
.yccm-num {
  color: var(--gold-600);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.yccm-step h3 { margin-top: 24px; }
.yccm-step p { color: var(--ink-600); margin: 16px 0 24px; }
.yccm-step .yccm-link { margin-top: auto; align-self: flex-start; }

.yccm-verse {
  position: relative;
  z-index: 2;
  --verse-x: 50%;
  --verse-y: 50%;
  background:
    radial-gradient(circle at var(--verse-x) var(--verse-y), rgba(198, 167, 90, 0.2), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(47, 84, 120, 0.36), transparent 36%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 54%, #102f38 100%);
  color: var(--ivory-50);
  overflow: hidden;
  isolation: isolate;
}

.yccm-verse::before,
.yccm-verse::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
}

.yccm-verse::before {
  background:
    conic-gradient(from 130deg at 50% 50%, transparent 0deg, rgba(198, 167, 90, 0.18) 42deg, transparent 88deg, rgba(201, 212, 224, 0.1) 150deg, transparent 238deg, rgba(198, 167, 90, 0.12) 310deg, transparent 360deg);
  filter: blur(34px);
  opacity: 0.58;
  animation: yccm-verse-aurora 28s linear infinite;
}

.yccm-verse::after {
  background:
    linear-gradient(rgba(247, 243, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 236, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 68%);
  opacity: 0.5;
  transform: rotate(-8deg);
}

.yccm-verse-canvas,
.yccm-verse-grid,
.yccm-verse-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.yccm-verse-canvas {
  z-index: 1;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.yccm-verse-grid {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(198, 167, 90, 0.12) 22.2% 22.45%, transparent 22.7% 31%, rgba(201, 212, 224, 0.1) 31.2% 31.38%, transparent 31.6%),
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(229, 214, 168, 0.045) 35px, transparent 36px);
  opacity: 0.78;
}

.yccm-verse-orbit {
  z-index: 1;
  width: min(920px, 88vw);
  height: min(920px, 88vw);
  inset: 50% auto auto 50%;
  border: 1px solid rgba(198, 167, 90, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: yccm-verse-orbit 36s linear infinite;
}

.yccm-verse-orbit::before,
.yccm-verse-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(229, 214, 168, 0.12);
}

.yccm-verse-orbit::before { inset: 12%; transform: rotate(24deg) scaleX(1.26); }
.yccm-verse-orbit::after { inset: 24%; transform: rotate(-32deg) scaleY(0.68); }

.yccm-verse-inner {
  position: relative;
  z-index: 3;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 96px 24px;
  text-align: center;
}

.yccm-verse-text {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 58px;
  line-height: 1.24;
  color: var(--ivory-50);
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}

.yccm-verse-ref {
  margin: 28px 0 0;
  color: var(--gold-400);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes yccm-verse-aurora {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.04); }
}

@keyframes yccm-verse-orbit {
  from { transform: translate(-50%, -50%) rotate(-12deg); }
  to { transform: translate(-50%, -50%) rotate(348deg); }
}

.yccm-about-grid,
.yccm-connect-grid,
.yccm-visit-grid,
.yccm-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.yccm-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2);
  border: 1px solid var(--ink-200);
  background: var(--ivory-100);
  min-height: 480px;
}

.yccm-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 800ms var(--ease-out);
}

.yccm-photo-frame:hover img { transform: scale(1.045); }

.yccm-caption {
  margin: 12px 0 0;
  color: var(--ink-400);
  font-size: 12px;
  line-height: 1.5;
}

.yccm-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--ink-200);
}

.yccm-facts div {
  padding: 18px 18px 0 0;
  border-right: 1px solid var(--ink-200);
}

.yccm-facts div:last-child { border-right: 0; }
.yccm-fact-value {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
}
.yccm-fact-label {
  margin: 6px 0 0;
  color: var(--ink-400);
  font-size: 12px;
  line-height: 1.5;
}

.yccm-values-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.yccm-value-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, 0.028);
}

.yccm-value-panel h3 {
  margin: 20px 0;
  color: var(--ivory-50);
  font-size: 42px;
}

.yccm-value-panel p {
  margin: 0;
  color: var(--navy-100);
}

.yccm-rhythm-list { border-top: 1px solid var(--ink-200); }
.yccm-rhythm-row {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--ink-200);
  align-items: baseline;
}
.yccm-rhythm-when {
  color: var(--gold-700);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.yccm-rhythm-row h3 { font-size: 26px; }
.yccm-rhythm-row p { margin: 8px 0 0; color: var(--ink-600); }
.yccm-rhythm-meta { color: var(--ink-400) !important; text-align: right; font-size: 14px; line-height: 1.55; }

.yccm-events-grid { grid-template-columns: repeat(3, 1fr); }
.yccm-event-card {
  position: relative;
  padding: 30px;
  min-height: 280px;
  overflow: hidden;
}
.yccm-event-card:not(.next) {
  color: var(--ink-900);
}
.yccm-event-card.next {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--ivory-50);
}
.yccm-event-card.next::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(198, 167, 90, 0.28), transparent 68%);
}
.yccm-event-card.past {
  opacity: 1;
  border-color: rgba(27, 58, 91, 0.18);
}
.yccm-event-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: inherit;
}
.dark .yccm-event-card:not(.next) h3 {
  color: var(--navy-900);
}
.yccm-event-card p { position: relative; z-index: 1; color: var(--ink-600); }
.dark .yccm-event-card:not(.next) p {
  color: var(--ink-700);
}
.yccm-event-card.next p { color: var(--navy-100); }
.yccm-event-date {
  margin: 0;
  color: var(--gold-700) !important;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.next .yccm-event-date { color: var(--gold-400) !important; }
.yccm-event-badge {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.yccm-group-grid { grid-template-columns: repeat(3, 1fr); }
.yccm-group-card { padding: 30px; }
.yccm-leader-list {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-200);
}
.yccm-leader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--ink-700);
  font-weight: 600;
}
.yccm-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-200);
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 700;
}

.yccm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.yccm-faq-item { border-bottom: 1px solid var(--ink-200); }
.yccm-faq-q {
  width: 100%;
  position: relative;
  padding: 24px 44px 24px 0;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.34;
  cursor: pointer;
}
.yccm-faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-600);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
}
.yccm-faq-item.open .yccm-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.yccm-faq-a {
  display: none;
  padding: 0 0 24px;
  color: var(--ink-600);
}
.yccm-faq-item.open .yccm-faq-a { display: block; }

.yccm-gallery-teaser {
  background: var(--navy-900);
  color: var(--ivory-50);
}
.yccm-gallery-teaser .yccm-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.yccm-gallery-preview-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  align-items: stretch;
}
.yccm-preview-photo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, 0.04);
}
.yccm-preview-photo.featured { grid-row: span 2; min-height: 544px; }
.yccm-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 900ms var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.yccm-preview-photo:hover img { transform: scale(1.06); opacity: 1; }
.yccm-preview-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--ivory-50);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}
.yccm-preview-meta p { margin: 0; }

.yccm-home-gallery-frame {
  position: relative;
  z-index: 2;
  margin: 0 var(--gutter);
  padding-bottom: 96px;
}

.yccm-home-gallery-stage {
  min-height: 680px;
  padding: 54px 44px 76px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-3);
  background:
    radial-gradient(ellipse 80% 70% at 52% 45%, rgba(47, 84, 120, 0.52), transparent 70%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.yccm-home-gallery-stage .yccm-g-tile {
  display: block;
  color: inherit;
  text-decoration: none;
}

.yccm-home-gallery-note {
  position: absolute;
  left: 28px;
  bottom: 116px;
  z-index: 3;
  margin: 0;
  color: var(--gold-200);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.yccm-connect-card { padding: 44px; }
.yccm-next-steps { margin-top: 32px; border-top: 1px solid var(--ink-200); }
.yccm-next-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-200);
}
.yccm-next-step p { margin: 0; color: var(--ink-600); }
.yccm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.yccm-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.yccm-field label,
.yccm-field-label {
  color: var(--ink-600);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.yccm-field input,
.yccm-field textarea {
  width: 100%;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-1);
  background: var(--ivory-50);
  color: var(--ink-900);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.yccm-field textarea { min-height: 112px; resize: vertical; }
.yccm-field input:focus,
.yccm-field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(27, 58, 91, 0.08);
}
.yccm-choice-group { display: flex; flex-wrap: wrap; gap: 8px; }
.yccm-choice {
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-1);
  background: var(--paper);
  color: var(--ink-700);
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.yccm-choice:hover,
.yccm-choice.active {
  background: var(--navy-900);
  color: var(--ivory-50);
  border-color: var(--navy-900);
}
.yccm-form-note { margin: 14px 0 0; color: var(--ink-400); text-align: center; font-size: 12px; }

.yccm-visit {
  background: var(--navy-900);
  color: var(--ivory-50);
  position: relative;
  z-index: 2;
}
.yccm-visit-inner { max-width: var(--content-max); margin: 0 auto; padding: 112px var(--gutter) 64px; }
.yccm-visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.yccm-visit-detail p { margin: 0; color: var(--ivory-50); }
.yccm-visit-detail a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
.yccm-visit-detail a:hover { border-color: var(--gold-400); }
.yccm-footer-rule { border: 0; border-top: 1px solid var(--gold-600); opacity: 0.4; margin: 82px 0 24px; }
.yccm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(247, 243, 236, 0.48);
  font-size: 12px;
}

/* Inner pages */
.yccm-page-hero {
  padding: 156px var(--gutter) 90px;
  background: var(--navy-900);
  color: var(--ivory-50);
  position: relative;
  overflow: hidden;
}
.yccm-page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(198, 167, 90, 0.2), transparent 66%);
}
.yccm-page-hero > * { position: relative; z-index: 1; }
.yccm-page-hero .yccm-h1 { color: var(--ivory-50); }
.yccm-page-hero .yccm-lede { color: var(--navy-100); }
.yccm-belief-grid { grid-template-columns: repeat(4, 1fr); }
.yccm-belief-card { padding: 26px; }
.yccm-belief-card h3 { font-size: 23px; }
.yccm-belief-card p { color: var(--ink-600); margin: 12px 0 0; font-size: 15px; }
.yccm-map-frame {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-2);
}
.yccm-map-frame iframe { width: 100%; min-height: 430px; border: 0; display: block; filter: saturate(0.8); }

/* Gallery page */
.yccm-gallery-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 12%, rgba(198, 167, 90, 0.14), transparent 30%),
    radial-gradient(circle at 24% 38%, rgba(47, 84, 120, 0.38), transparent 35%),
    var(--navy-900);
  color: var(--ivory-50);
  overflow-x: hidden;
}
.yccm-gallery-showcase {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  min-height: 620px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 40px 96px;
  perspective: 1400px;
  perspective-origin: 48% 42%;
}
.yccm-spotlight-main,
.yccm-spotlight-card {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.yccm-spotlight-main {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 90, 0.52);
  border-radius: var(--radius-2);
  background: var(--navy-950);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  transform: translateZ(24px);
}
.yccm-spotlight-main img,
.yccm-spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}
.yccm-spotlight-main img {
  filter: saturate(0.94) contrast(1.04);
}
.yccm-spotlight-main::after,
.yccm-spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.yccm-spotlight-main::after {
  background:
    radial-gradient(circle at 78% 14%, rgba(229, 214, 168, 0.26), transparent 28%),
    linear-gradient(180deg, transparent 42%, rgba(8, 19, 31, 0.86));
}
.yccm-spotlight-main:hover img,
.yccm-spotlight-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.06);
}
.yccm-spotlight-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 19, 31, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.yccm-spotlight-caption span,
.yccm-spotlight-card em {
  color: var(--gold-400);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.yccm-spotlight-caption strong {
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.15;
}
.yccm-spotlight-caption em {
  color: var(--navy-100);
  font-size: 12px;
  font-style: normal;
}
.yccm-spotlight-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-content: center;
  transform-style: preserve-3d;
}
.yccm-spotlight-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  transform: translate3d(var(--spot-x, 0), var(--spot-y, 0), var(--spot-z, 0)) rotateY(-2deg);
  animation: yccm-spotlight-float 18s ease-in-out var(--spot-delay, 0s) infinite alternate;
}
.yccm-spotlight-card:nth-child(even) {
  transform: translate3d(var(--spot-x, 0), var(--spot-y, 0), var(--spot-z, 0)) rotateY(2deg);
}
.yccm-spotlight-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(8, 19, 31, 0.86));
}
.yccm-spotlight-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 2px;
  text-align: left;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}
.yccm-spotlight-card strong {
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.18;
}
.yccm-gallery-archive-head {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto 24px;
  color: var(--navy-100);
}
.yccm-gallery-archive-head p {
  margin: 0;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.yccm-gallery-archive-head span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes yccm-spotlight-float {
  from { translate: 0 -8px; }
  to { translate: 0 8px; }
}
.yccm-gallery-page > .yccm-gallery-stage {
  position: relative;
  min-height: auto;
  padding: 60px 40px 120px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, #16293e 0%, var(--navy-900) 70%);
  cursor: default;
  perspective: 1400px;
  perspective-origin: 50% 28%;
  touch-action: auto;
}
.yccm-gallery-stage.is-dragging { cursor: grabbing; }
.yccm-gallery-page > .yccm-gallery-stage .yccm-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  align-items: start;
  gap: 22px;
  width: auto;
  max-width: 1500px;
  margin: 0 auto;
  transform: none !important;
  transform-style: preserve-3d;
  will-change: auto;
}
.yccm-gallery-stage[data-gallery-mode="drag"] .yccm-wall {
  display: flex;
  gap: 28px;
  width: max-content;
  transform-style: preserve-3d;
  will-change: transform;
}
.yccm-gallery-page > .yccm-gallery-stage .yccm-wall-col {
  display: contents;
}
.yccm-gallery-stage[data-gallery-mode="drag"] .yccm-wall-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 320px;
  flex-shrink: 0;
  transform-style: preserve-3d;
}
.yccm-g-tile {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, 0.032);
  transform-style: preserve-3d;
  transition: opacity var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  will-change: transform, filter;
}
.yccm-gallery-page .yccm-g-tile {
  position: relative;
  cursor: pointer;
  translate: 0 var(--float-y, 0px);
  transform:
    perspective(1200px)
    translateZ(calc(var(--depth, 0px) + var(--hover-z, 0px)))
    rotateX(calc(var(--tilt-x, 0deg) + var(--hover-tilt-x, 0deg)))
    rotateY(calc(var(--tilt-y, 0deg) + var(--hover-tilt-y, 0deg)));
  transform-style: preserve-3d;
  filter: none !important;
  transition:
    transform 420ms var(--ease-out),
    opacity var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
  will-change: transform;
  break-inside: avoid;
  animation: yccm-gallery-drift var(--drift-duration, 20s) ease-in-out var(--drift-delay, 0s) infinite alternate;
}

.yccm-gallery-page .yccm-wall-col:nth-child(even) .yccm-g-tile {
  transform:
    perspective(1200px)
    translateZ(calc(var(--depth, 0px) + var(--hover-z, 0px)))
    rotateX(calc(var(--tilt-x, 0deg) + var(--hover-tilt-x, 0deg)))
    rotateY(calc(var(--tilt-y, 0deg) + var(--hover-tilt-y, 0deg)));
}

.yccm-gallery-page .yccm-wall-col:nth-child(3n) .yccm-g-tile {
  transform:
    perspective(1200px)
    translateZ(calc(var(--depth, 0px) + var(--hover-z, 0px)))
    rotateX(calc(var(--tilt-x, 0deg) + var(--hover-tilt-x, 0deg)))
    rotateY(calc(var(--tilt-y, 0deg) + var(--hover-tilt-y, 0deg)));
}

.yccm-g-tile.dim { opacity: 0.18; }
.yccm-g-tile:hover {
  border-color: rgba(198, 167, 90, 0.68);
}
.yccm-gallery-page .yccm-g-tile:hover {
  animation-play-state: paused;
  transform:
    perspective(1200px)
    translateZ(calc(var(--depth, 0px) + var(--hover-z, 0px) + 12px))
    rotateX(calc(var(--tilt-x, 0deg) + var(--hover-tilt-x, 0deg)))
    rotateY(calc(var(--tilt-y, 0deg) + var(--hover-tilt-y, 0deg)))
    scale(1.006);
  background: rgba(255, 255, 255, 0.055);
}
.yccm-gallery-page .yccm-g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 30%), rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%);
  opacity: var(--glare-opacity, 0);
  mix-blend-mode: screen;
  transition: opacity 260ms var(--ease-out);
}

@keyframes yccm-gallery-drift {
  from {
    translate: calc(var(--drift-x, 8px) * -1) calc(var(--float-y, 0px) - 5px);
  }
  to {
    translate: var(--drift-x, 8px) calc(var(--float-y, 0px) + 5px);
  }
}
.yccm-g-image {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.yccm-g-image img { width: 100%; height: 100%; object-fit: cover; }
.yccm-g-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 6px 6px;
}
.yccm-g-cat {
  margin: 0 0 4px;
  color: var(--gold-400);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.yccm-g-title {
  margin: 0;
  color: var(--ivory-50);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.28;
}
.yccm-g-year { color: var(--navy-100); opacity: 0.75; font-size: 12px; white-space: nowrap; }
.yccm-gallery-title {
  position: relative;
  z-index: 20;
  max-width: 780px;
  padding: 142px 40px 28px;
  pointer-events: auto;
}
.yccm-gallery-title .yccm-h1 {
  color: var(--ivory-50);
  font-size: 56px;
}
.yccm-gallery-title p { color: var(--navy-100); margin: 10px 0 0; font-size: 16px; }
.yccm-gallery-filters {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 40px 22px;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(13, 27, 42, 0.78) 72%, transparent);
  backdrop-filter: blur(10px);
}
.yccm-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-1);
  background: rgba(13, 27, 42, 0.62);
  color: var(--ivory-50);
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.yccm-chip:hover { border-color: var(--ivory-50); }
.yccm-chip.active {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
}
.yccm-gallery-vignette {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.84) 0%, transparent 16%, transparent 78%, rgba(13,27,42,0.86) 100%),
    linear-gradient(90deg, rgba(13,27,42,0.68) 0%, transparent 12%, transparent 88%, rgba(13,27,42,0.68) 100%);
}
.yccm-gallery-page .yccm-gallery-vignette { display: none; }
.yccm-gallery-empty {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.yccm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 19, 31, 0.92);
}
.yccm-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-2);
}
.yccm-lightbox-close,
.yccm-lightbox-nav,
.yccm-lightbox-action {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: var(--ivory-50);
  border-radius: var(--radius-2);
  cursor: pointer;
}
.yccm-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 24px;
}
.yccm-lightbox-nav {
  position: fixed;
  top: 50%;
  width: 46px;
  height: 58px;
  font-size: 30px;
  transform: translateY(-50%);
}
.yccm-lightbox-nav.prev { left: 24px; }
.yccm-lightbox-nav.next { right: 24px; }
.yccm-lightbox-meta {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.yccm-lightbox-meta h2 { color: var(--ivory-50); font-size: 30px; }
.yccm-lightbox-meta p { margin: 6px 0 0; color: var(--navy-100); }
.yccm-lightbox-action {
  min-height: 44px;
  padding: 0 16px;
}
.yccm-toast {
  position: fixed;
  z-index: 220;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--gold-600);
  color: var(--navy-900);
  padding: 12px 18px;
  border-radius: var(--radius-2);
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

/* Reveal and motion */
[data-reveal],
.reveal {
  opacity: 1;
  transform: none;
}

.yccm-js [data-reveal],
.yccm-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.yccm-js [data-reveal].is-visible,
.yccm-js .reveal.active,
.yccm-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic { will-change: transform; }
.tilt-card { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .yccm-belief-grid { grid-template-columns: repeat(2, 1fr); }
  .yccm-values-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .yccm-nav { padding: 14px 20px; }
  .yccm-nav-links a:not(.nav-cta) { display: none; }
  .yccm-nav-links .nav-cta { display: none; }
  .yccm-burger { display: block; }
  .yccm-h1 { font-size: 52px; }
  .yccm-h2 { font-size: 38px; }
  .yccm-hero-title { font-size: 58px; }
  .yccm-hero-content { padding-bottom: 212px; }
  .yccm-scrollcue { display: none; }
  .yccm-infobar { grid-template-columns: 1fr; }
  .yccm-infobar a {
    min-height: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .yccm-info-value { font-size: 16px; text-align: right; }
  .yccm-topo-hero-content {
    min-height: calc(100vh - 250px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 108px 24px 88px;
  }
  .yccm-topo-title { font-size: 108px; }
  .yccm-topo-title span { transform: translateX(16%); }
  .yccm-topo-aside {
    justify-self: start;
    max-width: 430px;
    margin-top: 0;
  }
  .yccm-topo-footer { display: none; }
  .yccm-topo-meta.left {
    left: 24px;
    top: auto;
    bottom: 258px;
  }
  .yccm-topo-meta.right {
    right: 24px;
    top: 88px;
  }
  .yccm-steps,
  .yccm-events-grid,
  .yccm-group-grid,
  .yccm-about-grid,
  .yccm-connect-grid,
  .yccm-visit-grid,
  .yccm-feature-grid,
  .yccm-faq-grid,
  .yccm-gallery-preview-grid {
    grid-template-columns: 1fr;
  }
  .yccm-section-inner { padding-top: 88px; padding-bottom: 88px; }
  .yccm-rhythm-row { grid-template-columns: 1fr; gap: 8px; }
  .yccm-rhythm-meta { text-align: left; }
  .yccm-gallery-teaser .yccm-section-inner { align-items: flex-start; flex-direction: column; }
  .yccm-preview-photo.featured { min-height: 300px; }
  .yccm-form-row,
  .yccm-visit-details,
  .yccm-facts { grid-template-columns: 1fr; }
  .yccm-facts div { border-right: 0; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .yccm-h1 { font-size: 42px; line-height: 1.08; }
  .yccm-h2 { font-size: 34px; }
  .yccm-hero-title { font-size: 48px; }
  .yccm-lede { font-size: 18px; }
  .yccm-hero-actions { margin-top: 32px; }
  .yccm-btn { width: 100%; padding-left: 20px; padding-right: 20px; }
  .yccm-topo-hero-content {
    min-height: calc(100vh - 292px);
    padding: 116px 20px 80px;
  }
  .yccm-topo-title { font-size: 76px; }
  .yccm-topo-aside p { font-size: 18px; }
  .yccm-topo-meta {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .yccm-topo-meta.left { bottom: 300px; }
  .yccm-topo-meta.right { top: 78px; }
  .yccm-infobar a { align-items: flex-start; flex-direction: column; }
  .yccm-info-value { text-align: left; }
  .yccm-verse-text { font-size: 36px; }
  .yccm-step,
  .yccm-connect-card,
  .yccm-value-panel { padding: 24px; }
  .yccm-values-track { grid-template-columns: 1fr; }
  .yccm-belief-grid { grid-template-columns: 1fr; }
  .yccm-page-hero { padding-top: 136px; }
  .yccm-home-gallery-frame { margin: 0; padding-bottom: 72px; }
  .yccm-gallery-stage.yccm-home-gallery-stage {
    min-height: 620px;
    padding: 36px 20px 68px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .yccm-home-gallery-note {
    left: 20px;
    bottom: 88px;
  }
  .yccm-gallery-stage.yccm-home-gallery-stage .yccm-wall { gap: 18px; }
  .yccm-gallery-stage.yccm-home-gallery-stage .yccm-wall-col { width: 230px; gap: 18px; }
  .yccm-gallery-page .yccm-gallery-title {
    padding: 118px 24px 24px;
    max-width: none;
  }
  .yccm-gallery-page .yccm-gallery-title .yccm-h1 {
    font-size: 58px;
    line-height: 0.96;
  }
  .yccm-gallery-page .yccm-gallery-title p {
    display: block;
    font-size: 15px;
  }
  .yccm-gallery-page .yccm-gallery-filters {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0 24px 28px;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0), rgba(13, 27, 42, 0.94));
  }
  .yccm-gallery-filters::-webkit-scrollbar { display: none; }
  .yccm-gallery-filters { scrollbar-width: none; }
  .yccm-chip { flex-shrink: 0; }
  .yccm-gallery-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px 24px 44px;
    gap: 24px;
  }
  .yccm-spotlight-main { min-height: 430px; }
  .yccm-spotlight-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }
  .yccm-spotlight-caption strong { font-size: 24px; }
  .yccm-spotlight-rail {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .yccm-spotlight-card {
    min-height: 190px;
    transform: translate3d(0, 0, var(--spot-z, 0)) rotateY(0deg);
  }
  .yccm-spotlight-card:nth-child(even) {
    transform: translate3d(0, 0, var(--spot-z, 0)) rotateY(0deg);
  }
  .yccm-gallery-archive-head {
    padding: 0 24px;
    margin-bottom: 10px;
  }
  .yccm-gallery-page > .yccm-gallery-stage {
    padding: 42px 24px 120px;
  }
  .yccm-gallery-page > .yccm-gallery-stage .yccm-wall {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-width: 0;
  }
  .yccm-gallery-page .yccm-g-tile,
  .yccm-gallery-page .yccm-g-tile:hover {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    animation: none;
    translate: none;
    transform: none !important;
  }
  .yccm-gallery-page .yccm-g-meta,
  .yccm-gallery-page .yccm-g-title {
    min-width: 0;
  }
  .yccm-gallery-page .yccm-g-title {
    overflow-wrap: anywhere;
  }
  .yccm-gallery-page .yccm-g-image {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .yccm-lightbox-nav { display: none; }
  .yccm-lightbox-meta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .yccm-topo-title { font-size: 64px; }
  .yccm-topo-hero-content { padding-left: 20px; padding-right: 20px; }
}
