 /* ── Hero ───────────────────────────────────────── */
      #home {
         min-height: calc(100vh - 60px);
         background: var(--ox);
         position: relative;
         overflow: hidden;
         display: flex;
         align-items: center;
      }

      .hero-bg-ring {
         position: absolute;
         border-radius: 50%;
         border: 1px solid rgba(196, 154, 60, 0.12);
         pointer-events: none;
      }

      .hero-bg-ring:nth-child(1) {
         width: 600px;
         height: 600px;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
      }

      .hero-bg-ring:nth-child(2) {
         width: 900px;
         height: 900px;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
      }

      .hero-bg-ring:nth-child(3) {
         width: 1200px;
         height: 1200px;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         border-color: rgba(196, 154, 60, 0.06);
      }

      .hero-torch {
         position: absolute;
         right: 8%;
         top: 50%;
         transform: translateY(-50%);
         opacity: 0.06;
      }

      .hero-inner {
         position: relative;
         z-index: 2;
         max-width: var(--max);
         margin: 0 auto;
         padding: 80px 24px;
         display: grid;
         grid-template-columns: 1fr;
         gap: 0;
      }

      .hero-lux {
         font-family: var(--serif);
         font-size: 13px;
         letter-spacing: 0.3em;
         color: var(--gold);
         opacity: 0.85;
         text-transform: uppercase;
      }

      .hero-h1 {
         font-family: var(--serif);
         font-size: clamp(32px, 6vw, 64px);
         font-weight: 500;
         line-height: 1.1;
         color: #F8F0E0;
         margin-bottom: 12px;
      }

      .hero-h1 em {
         font-style: italic;
         color: var(--gold-lt);
      }

      .hero-set {
         font-size: 14px;
         color: rgba(240, 208, 128, 0.65);
         letter-spacing: 0.1em;
         text-transform: uppercase;
         margin-bottom: 6px;
      }

      .hero-desc {
         font-size: 15px;
         color: rgba(240, 208, 128, 0.5);
         margin-bottom: 36px;
         max-width: 480px;
      }

      .hero-vision {
         font-family: var(--serif);
         font-size: 20px;
         font-style: italic;
         color: rgba(248, 240, 224, 0.6);
      }



      .btn-primary {
         padding: 12px 32px;
         background: var(--gold);
         color: var(--ox-dark);
         font-size: 14px;
         font-weight: 600;
         letter-spacing: 0.03em;
         border: none;
         border-radius: var(--r);
         transition: background 0.15s, transform 0.1s;
         display: inline-flex;
         align-items: center;
         gap: 8px;
      }

      .btn-primary:hover {
         background: var(--gold-lt);
      }

      .btn-primary:active {
         transform: scale(0.98);
      }

      .btn-primary:focus-visible {
         outline: 2px solid #fff;
         outline-offset: 3px;
      }

      .btn-ghost {
         padding: 12px 28px;
         background: transparent;
         color: rgba(248, 240, 224, 0.75);
         font-size: 14px;
         font-weight: 400;
         border: 1px solid rgba(196, 154, 60, 0.35);
         border-radius: var(--r);
         transition: border-color 0.15s, color 0.15s;
      }

      .btn-ghost:hover {
         border-color: rgba(196, 154, 60, 0.7);
         color: #F0D880;
      }

      .btn-ghost:focus-visible {
         outline: 2px solid var(--gold);
         outline-offset: 2px;
      }

      .hero-scroll {
         position: absolute;
         bottom: 32px;
         left: 50%;
         transform: translateX(-50%);
         color: rgba(196, 154, 60, 0.4);
         font-size: 11px;
         letter-spacing: 0.15em;
         text-transform: uppercase;
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 8px;
      }

      .hero-scroll::after {
         content: '';
         width: 1px;
         height: 40px;
         background: linear-gradient(to bottom, rgba(196, 154, 60, 0.3), transparent);
      }


      /* ── Section Shared ─────────────────────────────── */
      .section {
         padding: 80px 24px;
      }

      .section-inner {
         max-width: var(--max);
         margin: 0 auto;
      }

      .section-label {
         font-size: 11px;
         letter-spacing: 0.2em;
         text-transform: uppercase;
         color: var(--ox);
         margin-bottom: 14px;
         font-weight: 500;
      }

      .section-title {
         font-family: var(--serif);
         font-size: clamp(28px, 4vw, 44px);
         font-weight: 500;
         line-height: 1.2;
         color: var(--ink);
         margin-bottom: 20px;
      }

      .section-body {
         font-size: 16px;
         color: var(--ink-soft);
         line-height: 1.75;
         max-width: 680px;
      }

      .divider {
         width: 48px;
         height: 2px;
         background: linear-gradient(to right, var(--ox), transparent);
         margin-bottom: 32px;
         border-radius: 2px;
      }

      /* ── About ──────────────────────────────────────── */
      #about {
         background: #fff;
      }

      .about-grid {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 60px;
         align-items: start;
         margin-top: 40px;
      }

      .about-rules {
         margin-top: 32px;
      }

      .rule-item {
         display: flex;
         gap: 12px;
         align-items: flex-start;
         padding: 16px 0;
         border-bottom: 1px solid var(--border);
      }

      .rule-item:first-child {
         border-top: 1px solid var(--border);
      }

      .rule-dot {
         width: 6px;
         height: 6px;
         border-radius: 50%;
         background: var(--ox);
         flex-shrink: 0;
         margin-top: 8px;
      }

      .rule-text {
         font-size: 15px;
         color: var(--ink-mid);
         line-height: 1.6;
      }

      .about-callout {
         background: var(--ox-pale);
         border-left: 3px solid var(--ox);
         border-radius: 0 var(--r) var(--r) 0;
         padding: 28px 24px;
         margin-top: 32px;
      }

      .about-callout-title {
         font-family: var(--serif);
         font-size: 17px;
         font-weight: 600;
         color: var(--ox);
         margin-bottom: 10px;
      }

      .about-callout p {
         font-size: 14px;
         color: var(--ink-mid);
         line-height: 1.7;
      }

  /* ── Anthem ─────────────────────────────────────── */
      #anthem {
         background: var(--ox-dark);
         position: relative;
         overflow: hidden;
      }

      .anthem-bg {
         position: absolute;
         inset: 0;
         opacity: 0.04;
         background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
         background-size: 30px 30px;
      }

      .anthem-inner {
         position: relative;
         z-index: 2;
         max-width: 720px;
         margin: 0 auto;
         text-align: center;
      }

      .anthem-quote {
         font-family: var(--serif);
         font-size: clamp(22px, 4vw, 36px);
         font-style: italic;
         font-weight: 400;
         color: rgba(248, 240, 224, 0.9);
         line-height: 1.55;
         margin-bottom: 28px;
      }

      .anthem-quote-mark {
         font-family: var(--serif);
         font-size: 80px;
         line-height: 0.5;
         color: var(--gold);
         opacity: 0.3;
         display: block;
         margin-bottom: 16px;
      }

      .anthem-attr {
         font-size: 12px;
         letter-spacing: 0.18em;
         text-transform: uppercase;
         color: rgba(196, 154, 60, 0.55);
      }

      /* ── Gallery ────────────────────────────────────── */
      #gallery {
         background: var(--sand);
      }

      .gallery-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 12px;
         margin-top: 36px;
      }

      .gallery-item {
         position: relative;
         aspect-ratio: 1/1;
         overflow: hidden;
         border-radius: var(--r);
         cursor: pointer;
         background: var(--sand-dark);
      }

      .gallery-item img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.4s ease;
      }

      .gallery-item:hover img {
         transform: scale(1.05);
      }

      .gallery-item:focus-visible {
         outline: 2px solid var(--ox);
         outline-offset: 2px;
      }

      .gallery-overlay {
         position: absolute;
         inset: 0;
         background: linear-gradient(to top, rgba(74, 16, 16, 0.75) 0%, transparent 60%);
         opacity: 0;
         transition: opacity 0.3s;
         display: flex;
         align-items: flex-end;
         padding: 12px;
      }

      .gallery-item:hover .gallery-overlay,
      .gallery-item:focus-visible .gallery-overlay {
         opacity: 1;
      }

      .gallery-caption {
         font-size: 12px;
         color: rgba(248, 240, 224, 0.9);
         font-weight: 500;
         letter-spacing: 0.03em;
      }

      /* placeholder gallery images (SVG patterns) */
      .gallery-placeholder {
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-family: var(--serif);
         font-size: 14px;
         color: var(--ink-soft);
         text-align: center;
         padding: 16px;
         line-height: 1.5;
      }

      /* ── Events ─────────────────────────────────────── */
      #events {
         background: #fff;
      }

      .events-list {
         display: flex;
         flex-direction: column;
         gap: 20px;
         margin-top: 36px;
      }

      .event-card {
         background: var(--sand);
         border: 1px solid var(--border);
         border-radius: var(--r-lg);
         padding: 28px 32px;
         display: grid;
         grid-template-columns: auto 1fr auto;
         gap: 28px;
         align-items: start;
         transition: box-shadow 0.2s, transform 0.2s;
      }

      .event-card:hover {
         box-shadow: var(--shadow-lg);
         transform: translateY(-2px);
      }

      .event-date-block {
         text-align: center;
         min-width: 56px;
         padding-top: 4px;
      }

      .event-month {
         font-size: 10px;
         letter-spacing: 0.15em;
         text-transform: uppercase;
         color: var(--ox);
         font-weight: 600;
         background: var(--ox-pale);
         padding: 3px 8px;
         border-radius: 4px;
         margin-bottom: 4px;
         display: block;
      }

      .event-day {
         font-family: var(--serif);
         font-size: 40px;
         font-weight: 500;
         line-height: 1;
         color: var(--ink);
      }

      .event-title {
         font-family: var(--serif);
         font-size: 22px;
         font-weight: 600;
         color: var(--ink);
         margin-bottom: 6px;
      }

      .event-meta {
         font-size: 12px;
         color: var(--ox);
         font-weight: 500;
         letter-spacing: 0.05em;
         margin-bottom: 10px;
         display: flex;
         align-items: center;
         gap: 6px;
      }

      .event-meta svg {
         width: 12px;
         height: 12px;
      }

      .event-desc {
         font-size: 14px;
         color: var(--ink-soft);
         line-height: 1.65;
      }

      .btn-ox {
         padding: 10px 22px;
         background: var(--ox);
         color: #F0D880;
         font-size: 13px;
         font-weight: 500;
         border: none;
         border-radius: var(--r);
         white-space: nowrap;
         align-self: center;
         transition: background 0.15s, transform 0.1s;
      }

      .btn-ox:hover {
         background: var(--ox-mid);
      }

      .btn-ox:active {
         transform: scale(0.98);
      }

      .btn-ox:focus-visible {
         outline: 2px solid var(--ox);
         outline-offset: 3px;
      }

      .btn-ox-outline {
         padding: 10px 22px;
         background: transparent;
         color: var(--ox);
         font-size: 13px;
         font-weight: 500;
         border: 1.5px solid var(--ox);
         border-radius: var(--r);
         white-space: nowrap;
         align-self: center;
         transition: background 0.15s, color 0.15s;
      }

      .btn-ox-outline:hover {
         background: var(--ox-pale);
      }

      .btn-ox-outline:focus-visible {
         outline: 2px solid var(--ox);
         outline-offset: 3px;
      }




     /* ── Style Guide Section ───────────────────────── */
      #styleguide {
         background: var(--sand-dark);
         padding: 60px 24px;
      }

      .sg-inner {
         max-width: var(--max);
         margin: 0 auto;
      }

      .sg-title {
         font-family: var(--serif);
         font-size: 28px;
         margin-bottom: 36px;
         color: var(--ink);
      }

      .sg-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 20px;
         margin-bottom: 40px;
      }

      .sg-swatch {
         border-radius: var(--r);
         overflow: hidden;
         border: 1px solid var(--border);
      }

      .sg-swatch-color {
         height: 64px;
      }

      .sg-swatch-info {
         padding: 10px 14px;
         background: #fff;
      }

      .sg-swatch-name {
         font-size: 13px;
         font-weight: 500;
         color: var(--ink);
         margin-bottom: 2px;
      }

      .sg-swatch-hex {
         font-size: 12px;
         color: var(--ink-soft);
         font-family: monospace;
      }

      .sg-type-item {
         margin-bottom: 20px;
         padding-bottom: 20px;
         border-bottom: 1px solid var(--border);
      }

      .sg-type-label {
         font-size: 11px;
         letter-spacing: 0.15em;
         text-transform: uppercase;
         color: var(--ox);
         margin-bottom: 6px;
      }



      /* ── Lightbox ───────────────────────────────────── */
      .lightbox {
         display: none;
         position: fixed;
         inset: 0;
         z-index: 300;
         background: rgba(26, 22, 20, 0.92);
         align-items: center;
         justify-content: center;
      }

      .lightbox.open {
         display: flex;
      }

      .lb-content {
         position: relative;
         max-width: 860px;
         width: 100%;
         padding: 0 60px;
         text-align: center;
      }

      .lb-img-wrap {
         border-radius: var(--r-lg);
         overflow: hidden;
         background: var(--sand-dark);
         min-height: 200px;
         display: flex;
         align-items: center;
         justify-content: center;
      }

      .lb-img-wrap img {
         max-height: 70vh;
         width: 100%;
         object-fit: contain;
      }

      .lb-placeholder {
         width: 100%;
         /*min-height: 300px;*/
         display: flex;
         align-items: center;
         justify-content: center;
         font-family: var(--serif);
         font-size: 18px;
         color: var(--ink-soft);
      }

      .lb-caption {
         font-size: 14px;
         color: rgba(248, 240, 224, 0.65);
         margin-top: 16px;
         font-family: var(--serif);
         font-style: italic;
         letter-spacing: 0.03em;
      }

      .lb-nav {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         width: 44px;
         height: 44px;
         border-radius: 50%;
         background: rgba(248, 240, 224, 0.1);
         border: 1px solid rgba(248, 240, 224, 0.2);
         color: rgba(248, 240, 224, 0.8);
         display: flex;
         align-items: center;
         justify-content: center;
         transition: background 0.15s;
      }

      .lb-nav:hover {
         background: rgba(248, 240, 224, 0.2);
      }

      .lb-nav:focus-visible {
         outline: 2px solid var(--gold);
         outline-offset: 2px;
      }

      .lb-prev {
         left: 8px;
      }

      .lb-next {
         right: 8px;
      }

      .lb-close {
         position: absolute;
         top: 16px;
         right: 16px;
         width: 40px;
         height: 40px;
         border-radius: 50%;
         background: rgba(248, 240, 224, 0.1);
         border: 1px solid rgba(248, 240, 224, 0.15);
         color: rgba(248, 240, 224, 0.8);
         display: flex;
         align-items: center;
         justify-content: center;
         z-index: 310;
         transition: background 0.15s;
      }

      .lb-close:hover {
         background: rgba(248, 240, 224, 0.2);
      }

      .lb-close:focus-visible {
         outline: 2px solid var(--gold);
         outline-offset: 2px;
      }

      .lb-counter {
         position: absolute;
         bottom: 20px;
         left: 50%;
         transform: translateX(-50%);
         font-size: 12px;
         color: rgba(248, 240, 224, 0.4);
         letter-spacing: 0.1em;
      }




      /* ── Responsive ─────────────────────────────────── */
      @media (max-width: 768px) {
         .nav-links {
            display: none;
         }

         .hamburger {
            display: flex;
         }

         .nav-mobile {
            display: block;
            padding: 16px 20px 20px;
            border-top: 1px solid var(--border);
            background: rgba(247, 243, 238, 0.97);
         }

         .nav-mobile.hidden {
            display: none;
         }

         .nav-mobile a {
            display: block;
            padding: 10px 0;
            font-size: 15px;
            color: var(--ink-mid);
            border-bottom: 1px solid var(--border);
         }

         .nav-mobile a:last-child {
            border-bottom: none;
         }

         .about-grid {
            grid-template-columns: 1fr;
            gap: 32px;
         }

         .event-card {
            grid-template-columns: 1fr;
            gap: 16px;
         }

         .event-date-block {
            display: flex;
            align-items: center;
            gap: 12px;
         }

         .event-day {
            font-size: 28px;
         }

         .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
         }

         .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
         }

         .lb-content {
            padding: 0 48px;
         }

         .hero-torch {
            display: none;
         }

         .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
         }
      }

      @media (max-width: 480px) {
         .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
         }

         .hero-ctas {
            flex-direction: column;
         }

         .btn-primary,
         .btn-ghost {
            width: 100%;
            justify-content: center;
            text-align: center;
         }
      }



 