h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

section {
  padding: 7rem 4rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.6rem;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 148, 62, 0.25);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #9fb8d4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(14, 16, 15, 0.7) -11%,
    rgba(14, 16, 15, 0) 11%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 4rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--deep);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(14, 16, 15, 0.55);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-text-link {
  font-size: 0.75rem;
  color: rgba(14, 16, 15, 0.4);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.hero-text-link:hover {
  color: var(--gold-light);
}
.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* --- VIDEO SECTION --- */
.video-section {
  background: var(--off-white);
  padding: 5rem 4rem;
}
.video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--deep);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.video-container::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.video-overview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--deep);
  z-index: 0;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0.75rem;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-play:hover .video-play-circle,
.video-play:focus-visible .video-play-circle {
  opacity: 1;
  border-color: rgba(184, 148, 62, 0.65);
}
.video-play:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.video-container.is-playing .video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-play-circle {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(184, 148, 62, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.video-play-circle svg {
  margin-left: 3px;
}
.video-play-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}
.video-coming {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
}

/* --- SCARCITY BAR --- */
.scarcity-bar {
  background: var(--gold);
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
}

/* --- OPENING STATEMENT --- */
.opening {
  background: var(--white, #fff);
  padding: 7rem 4rem;
}
.opening h2 em {
  display: block;
}
.opening-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.opening-inner .section-tag {
  justify-content: center;
}
.opening-inner p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.opening-inner p strong {
  color: var(--ink);
  font-weight: 500;
}

/* --- CASE STUDY / PROOF --- */
.proof {
  background: var(--deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.proof-header {
  margin-bottom: 3.5rem;
}
.proof-header .section-tag {
  color: var(--gold);
}
.proof-header .section-tag::before {
  background: var(--gold);
}
.proof-header h2 {
  color: #fff;
}
.proof-header h2 em {
  color: var(--gold-light);
}
.proof-header p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.proof-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a3a2a, #0e1a10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  border: 1px solid rgba(184, 148, 62, 0.15);
  overflow: hidden;
}
.proof-visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.proof-visual-label {
  position: relative;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 100%;
  line-height: 1.6;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(
    to top,
    rgba(10, 20, 14, 0.92) 0%,
    rgba(10, 20, 14, 0.5) 55%,
    transparent 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .proof-visual-video {
    display: none;
  }

  .proof-visual {
    background-image: url("../images/club-calendar/edition-classic.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
.proof-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.proof-meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.3rem;
}
.proof-meta-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}
.proof-layer {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.proof-layer-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 2.5rem;
}
.proof-layer-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}
.proof-layer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  font-weight: 300;
}

/* --- THREE LAYERS --- */
.layers {
  padding: 7rem 4rem;
}
.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.layer-card {
  padding: 2.2rem 1.5rem 0;
  border: none;
  border-top: 1px solid var(--warm-gray);
}
.layer-card.featured {
  border-top-color: var(--gold);
  background: transparent;
}
.layer-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  margin-top: 1.8rem;
}
.layer-card.featured .layer-icon {
  width: 36px;
  height: 36px;
}
.icon-inner {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  transform: rotate(45deg);
  background: transparent;
}
.layer-card.featured .icon-inner {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: none;
  opacity: 1;
}
.layer-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.layer-card.featured h4 {
  color: var(--gold);
  font-style: italic;
}
.layer-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* --- EDITION TOGGLE --- */
.edition-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3rem;
  gap: 0;
}
.edition-toggle-btn {
  padding: 0.7rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--warm-gray);
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.35s;
}
.edition-toggle-btn:first-child {
  border-radius: 2px 0 0 2px;
}
.edition-toggle-btn:last-child {
  border-radius: 0 2px 2px 0;
  border-left: none;
}
.edition-toggle-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.edition-panel {
  display: none;
}
.edition-panel.active {
  display: block;
}
.edition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.edition-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--pearl, #f4f3ef);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}
.edition-image--signature {
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("../images/club-calendar/edition-signature.webp");
}
.edition-image--classic {
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("../images/club-calendar/edition-classic.webp");
}
.edition-image--signature .edition-image-label,
.edition-image--classic .edition-image-label {
  color: rgba(255, 255, 255, 0.82);
}
.edition-image--signature .edition-image-icon,
.edition-image--classic .edition-image-icon {
  border-color: rgba(255, 255, 255, 0.35);
}
.edition-image--signature .edition-image-icon div,
.edition-image--classic .edition-image-icon div {
  background: rgba(255, 255, 255, 0.45);
}
.edition-image-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.edition-image-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.edition-image-icon div {
  width: 12px;
  height: 12px;
  background: var(--warm-gray);
}
.edition-details {
  padding-top: 0.5rem;
}
.edition-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.edition-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.edition-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.edition-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.edition-spec-list {
  list-style: none;
  padding: 0;
}
.edition-spec-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.5;
}
.edition-spec-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.edition-spec-list li strong {
  font-weight: 500;
}
.edition-digital-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.edition-digital-pill {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--warm-gray);
  color: var(--text-gray);
}

/* --- SWATCH SELECTOR --- */
.swatch-section {
  background: var(--deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.swatch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.swatch-section .section-tag {
  color: var(--gold);
}
.swatch-section .section-tag::before {
  background: var(--gold);
}
.swatch-section h2 {
  color: #fff;
}
.swatch-section h2 em {
  color: var(--gold-light);
}
.swatch-section .section-desc {
  color: rgba(255, 255, 255, 0.45);
}
.swatch-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}
.swatch-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.swatch-cat-btn {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.swatch-cat-btn:hover {
  border-color: rgba(184, 148, 62, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.swatch-cat-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 148, 62, 0.08);
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  gap: 4px;
}
.swatch-chip {
  aspect-ratio: 1;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.swatch-chip:hover {
  transform: scale(1.08);
  z-index: 2;
}
.swatch-chip.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 3px 12px rgba(184, 148, 62, 0.28);
  transform: scale(1.08);
  z-index: 2;
}
.swatch-chip-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.6rem;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}
.swatch-chip:hover .swatch-chip-tooltip {
  display: block;
}
.swatch-preview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}
.swatch-preview-header {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.swatch-preview-body {
  display: grid;
  grid-template-columns: minmax(200px, 450px) 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}
.swatch-preview-visual {
  min-width: 0;
}
.swatch-preview-card {
  aspect-ratio: 4/3;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  background: #053b16;
  width: 100%;
}
.swatch-foil-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  text-align: center;
  transition: color 0.4s;
  color: #b8943e;
  padding: 0 0.75rem;
}
.swatch-preview-details {
  min-width: 0;
}
.swatch-left {
  margin-bottom: 1.5rem;
}
.swatch-preview-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.swatch-preview-hex {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--sans);
  margin-bottom: 1.25rem;
}
.swatch-foil-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.8rem;
}
.swatch-foils {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
}
.swatch-foil-btn {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.swatch-foil-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.swatch-foil-btn.active {
  border-color: var(--gold);
  background: rgba(184, 148, 62, 0.06);
}
.swatch-foil-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.swatch-foil-name {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  text-transform: uppercase;
  text-align: left;
}
.swatch-foil-btn.active .swatch-foil-name {
  color: var(--gold);
}
.swatch-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  margin-top: 1.25rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* --- PHILOSOPHY QUOTE --- */
.philosophy {
  background: var(--off-white, #fafaf8);
  padding: 6rem 4rem;
  text-align: center;
}
.phil-inner {
  max-width: 680px;
  margin: 0 auto;
}
.phil-mark {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.philosophy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.philosophy blockquote strong {
  font-weight: 500;
  color: var(--gold);
}
.phil-sig {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* --- URGENCY / CAPACITY --- */
.urgency {
  padding: 7rem 4rem;
}
.urgency-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.urgency-text p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.urgency-text strong {
  color: var(--ink);
  font-weight: 500;
}
.countdown-card {
  border: 1px solid var(--warm-gray);
  padding: 2.5rem;
}
.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.countdown-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
.cd-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.cd-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 0.4rem;
}
.countdown-note {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* --- PROCESS STEPS --- */
.approach {
  background: var(--off-white, #fafaf8);
  padding: 7rem 4rem;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.step p {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* --- APPLICATION FORM --- */
.application {
  background: var(--deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.application::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.application .section-tag {
  color: var(--gold);
  justify-content: center;
  position: relative;
}
.application .section-tag::before {
  background: var(--gold);
}
.application h2 {
  color: #fff;
  position: relative;
}
.application h2 em {
  color: var(--gold-light);
}
.application-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
}
.application-spots {
  max-width: 400px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.spots-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.spots-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.spots-text {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.app-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
}
.app-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.app-meta-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.2rem;
}
.app-meta-value {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.app-meta-value a {
  color: var(--gold);
  text-decoration: none;
}
.app-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.app-form .form-field,
.app-card .form-field {
  margin-bottom: 1rem;
}
.app-form label,
.app-card label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}
.cs-req {
  color: var(--gold);
}
.app-form input,
.app-form select,
.app-form textarea,
.app-card input,
.app-card select,
.app-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}
.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus,
.app-card input:focus,
.app-card select:focus,
.app-card textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.app-form input::placeholder,
.app-form textarea::placeholder,
.app-card input::placeholder,
.app-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.app-form select,
.app-card select {
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding-right: 2.5rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.app-form select:has(option:checked:not([value=""])),
.app-card select:has(option:checked:not([value=""])) {
  color: #fff;
}

.app-form select option,
.app-card select option {
  background: var(--deep);
  color: #fff;
}
.app-form textarea,
.app-card textarea {
  min-height: 100px;
  resize: vertical;
}
.app-form button,
.app-card button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  border: none;
  color: var(--deep);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.35s;
}
.app-form button:hover,
.app-card button[type="submit"]:hover {
  background: var(--gold-hover, #c9a44e);
}
.form-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
  font-style: italic;
}

/* ═══ RESPONSIVE NAV (desktop rules live in general.css) ═══ */
@media (max-width: 1200px) {
  .mobile-toggle {
    display: block;
  }

  nav,
  nav.scrolled {
    padding-right: 3rem;
  }

  .nav-overlay {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.15rem 3rem 1.15rem 3.5rem;
    border-bottom: 1px solid var(--warm-gray);
    gap: 1.15rem;
    z-index: 101;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  nav.scrolled .nav-links.mobile-open {
    padding-top: 0.65rem;
  }

  .mobile-nav-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .nav-links.mobile-open .mobile-nav-header {
    display: flex;
  }

  .mobile-nav-header .nav-logo {
    border: none !important;
    padding: 0;
  }

  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: color 0.2s, transform 0.2s;
  }

  .mobile-close:hover {
    color: var(--gold);
  }

  .mobile-close svg {
    width: 26px;
    height: 26px;
  }

  .nav-links.mobile-open
    a:not(.nav-logo):not(.nav-cta):not(.repertoire-menu a) {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-links.mobile-open .repertoire-toggle {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    justify-content: center;
    width: 100%;
  }

  .nav-links.mobile-open .repertoire-menu a {
    font-size: 0.85rem;
    padding: 1rem 1.4rem;
  }

  .nav-links.mobile-open .repertoire {
    width: 100%;
  }

  .nav-links.mobile-open .repertoire-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: auto;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0.25rem 0 0.5rem 0;
    background: rgba(0, 0, 0, 0.04);
    display: none;
    overflow: hidden;
    text-align: center;
  }

  .nav-links.mobile-open .repertoire.open .repertoire-menu {
    display: block;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero-content {
    padding: 0;
  }

  section {
    padding: 5rem 3.5rem;
  }

  .video-section {
    padding: 5rem 3.5rem;
  }

  .layer-card {
    padding: 2.2rem 0 0;
  }

  .opening,
  .proof,
  .layers,
  .swatch-section,
  .philosophy,
  .urgency,
  .approach,
  .application {
    padding: 5rem 3.5rem;
  }
  .opening-inner p {
    font-size: 1rem;
  }

  .edition-layout {
    gap: 2rem;
  }
  .edition-spec-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    row-gap: 0.2rem;
    align-items: start;
  }
  .edition-spec-list li::before {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    margin-top: 0;
  }
  .edition-spec-list li strong {
    grid-column: 2;
    grid-row: 1;
  }
  .edition-image {
    max-width: 400px;
  }
  .swatch-preview-body {
    grid-template-columns: minmax(160px, 300px) 1fr;
    gap: 1.5rem 2rem;
  }
  .urgency-layout {
    grid-template-columns: 1fr;
  }
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 71% center;
  }
  .hero h1 {
    color: #fff;
  }
  .hero h1 em {
    color: var(--gold-light);
  }
  .hero-sub {
    color: rgba(255, 255, 255, 0.5);
  }
  .hero-text-link {
    color: rgba(255, 255, 255, 0.4);
  }
  .mobile-toggle {
    display: block;
  }
  .swatch-foils {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: color 0.2s, transform 0.2s;
  }

  .mobile-close:hover {
    color: var(--gold);
  }

  .mobile-close svg {
    width: 26px;
    height: 26px;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.15rem 3rem 1.15rem 3.5rem;
    border-bottom: 1px solid var(--warm-gray);
    gap: 1.15rem;
    z-index: 101;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  .nav-links.mobile-open
    a:not(.nav-logo):not(.nav-cta):not(.repertoire-menu a) {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-links.mobile-open .nav-cta {
    border-color: var(--text-gray) !important;
    color: var(--text-gray) !important;
    text-align: center;
  }

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

  .layer-card {
    padding: 0;
  }

  .video-play-circle {
    width: 56px;
    height: 56px;
  }
  .edition-toggle-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.6rem;
  }
  .edition-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .edition-image {
    width: 100%;
    max-width: none;
  }
  .proof-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .proof-visual {
    width: 100%;
    max-width: min(300px, 88vw);
    margin-inline: auto;
    max-height: none;
    align-self: center;
  }
  .swatch-grid {
    grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  }
  .swatch-preview-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .app-card {
    padding: 1.5rem;
  }
  .app-form-row {
    grid-template-columns: 1fr;
  }
  .app-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 8rem 1.5rem 4rem;
  }

  .hero-content {
    padding: 0;
  }

  .video-section {
    padding: 3.5rem 1.5rem;
  }

  .opening,
  .proof,
  .layers,
  .tiers,
  .swatch-section,
  .philosophy,
  .urgency,
  .approach,
  .application {
    padding: 4rem 1.5rem;
  }

  .app-card {
    padding: 1.5rem;
  }

  .countdown-card {
    padding: 2rem 1.5rem;
  }

  .nav-links.mobile-open {
    padding-left: 1.5rem;
    padding-right: 1rem;
    padding-top: 0.76rem;
  }

  nav.scrolled .nav-links.mobile-open {
    padding-top: 0.77rem;
  }

  nav {
    padding: 1rem 1.5rem !important;
  }

  footer {
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
}

/* ═══ ANIMATIONS (hero fadeUp + scroll reveal; JS adds .visible) ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
