:root {
    --bg: #EEE4CC;
    --bg-soft: #E5DAC0;
    --bg-deep: #D8CCAF;
    --card: #DDD2B6;
    --ink: #1E1A12;
    --ink-soft: #5C5340;
    --ink-mute: #8E8568;
    --sage: #6D8650;
    --sage-deep: #4D5E33;
    --terracotta: #B5532E;
    --saffron: #BC8A1F;
    --rule: rgba(30, 26, 18, 0.12);
    --rule-strong: rgba(30, 26, 18, 0.22);
    --display: "Fraunces", "Times New Roman", serif;
    --ui: "DM Sans", "Helvetica Neue", sans-serif;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--display);
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.06 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

.wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.ui { font-family: var(--ui); }

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.09s; }
[data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal-delay="3"] { transition-delay: 0.27s; }



nav.top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 22px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    background: rgba(238, 228, 204, 0.82);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s, background 0.4s;
}

nav.top.scrolled {
    border-bottom-color: var(--rule);
    padding: 14px 48px;
}

nav.top.menu-open {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.brand {
    font-family: var(--display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    z-index: 92;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sage);
    display: inline-grid;
    place-items: center;
    color: var(--bg);
    font-family: var(--display);
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.4s var(--ease);
}

.brand:hover .brand-mark { transform: rotate(-12deg); }

.nav-links {
    display: flex;
    gap: 36px;
    font-family: var(--ui);
    font-size: 13px;
    font-weight: 400;
}

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--saffron); }

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 92;
}

.nav-meta {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.nav-cta {
    font-family: var(--ui);
    font-size: 12px;
    letter-spacing: 0.1em;
    background: var(--ink);
    color: var(--bg);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--saffron);
    transform: translateY(-1px);
}



.burger {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: 1px solid var(--rule-strong);
    padding: 9px 16px 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--ui);
    color: var(--ink);
    transition: background 0.3s, border-color 0.3s;
    position: relative;
}

.burger:hover {
    background: rgba(30, 26, 18, 0.06);
    border-color: var(--ink-soft);
}

.burger-icon {
    position: relative;
    width: 18px;
    height: 14px;
    display: inline-block;
}

.burger-icon span {
    position: absolute;
    left: 0;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
                width 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                top 0.3s 0.2s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.2s 0.1s;
}

.burger-icon span:nth-child(1) { top: 2px; width: 100%; }
.burger-icon span:nth-child(2) { top: 7px; width: 75%; }
.burger-icon span:nth-child(3) { top: 12px; width: 100%; }

.burger:hover .burger-icon span:nth-child(2) { width: 100%; }

.burger.open .burger-icon span {
    transition: top 0.3s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.5s 0.25s cubic-bezier(0.65, 0, 0.35, 1),
                width 0.3s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.2s;
}

.burger.open .burger-icon span:nth-child(1) {
    top: 7px;
    width: 100%;
    transform: rotate(45deg);
}

.burger.open .burger-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger.open .burger-icon span:nth-child(3) {
    top: 7px;
    width: 100%;
    transform: rotate(-45deg);
}

.burger-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.2s;
    min-width: 38px;
    text-align: left;
}

.burger-label .open-text,
.burger-label .close-text {
    display: inline-block;
    transition: opacity 0.25s, transform 0.3s;
}

.burger-label .close-text {
    position: absolute;
    left: 46px;
    opacity: 0;
    transform: translateY(6px);
}

.burger.open .burger-label .open-text {
    opacity: 0;
    transform: translateY(-6px);
}

.burger.open .burger-label .close-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}



.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 85;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 90% 15%, rgba(188, 138, 31, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 5% 90%, rgba(109, 134, 80, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.menu-overlay-top {
    padding: 80px 48px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s 0.1s, transform 0.5s 0.1s;
}

.menu-overlay.open .menu-overlay-top {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-overlay-top-left::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--saffron);
    border-radius: 50%;
}

.menu-overlay-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 48px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.menu-overlay-nav {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: baseline;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    color: var(--ink);
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: color 0.3s;
}

.menu-overlay.open .menu-item {
    animation: menuRise 0.7s var(--ease) forwards;
}

.menu-overlay.open .menu-item:nth-child(1) { animation-delay: 0.2s; }
.menu-overlay.open .menu-item:nth-child(2) { animation-delay: 0.27s; }
.menu-overlay.open .menu-item:nth-child(3) { animation-delay: 0.34s; }
.menu-overlay.open .menu-item:nth-child(4) { animation-delay: 0.41s; }
.menu-overlay.open .menu-item:nth-child(5) { animation-delay: 0.48s; }

.menu-item:first-child { border-top: 1px solid var(--rule); }

.menu-item .num {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--ink-mute);
    transition: color 0.3s, transform 0.4s;
}

.menu-item .label {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    transition: color 0.3s, transform 0.4s var(--ease), font-style 0.3s;
}

.menu-item .arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    display: grid;
    place-items: center;
    transition: background 0.3s, border-color 0.3s, transform 0.4s;
    color: var(--ink-soft);
}

.menu-item .arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.menu-item:hover .num {
    color: var(--saffron);
    transform: translateX(-4px);
}

.menu-item:hover .label {
    color: var(--saffron);
    font-style: italic;
    transform: translateX(8px);
}

.menu-item:hover .arrow {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--bg);
}

.menu-item:hover .arrow svg { transform: translateX(2px); }

.menu-feature {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s 0.4s var(--ease),
                transform 0.7s 0.4s var(--ease);
}

.menu-overlay.open .menu-feature {
    opacity: 1;
    transform: translateX(0);
}

.menu-feature-tag {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-feature-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
}

.menu-feature-visual {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: linear-gradient(160deg, #C66536 0%, #8A3A1F 55%, #2A1209 100%);
}

.menu-feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 35%, rgba(255, 210, 130, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(218, 167, 59, 0.22) 0%, transparent 55%);
}

.menu-feature-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='mn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='1'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23mn)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.menu-feature-date {
    position: absolute;
    top: 20px;
    left: 22px;
    z-index: 2;
    color: #ECE2C6;
    font-family: var(--display);
    font-style: italic;
}

.menu-feature-date .big {
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    display: block;
}

.menu-feature-date .small {
    font-family: var(--ui);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}

.menu-feature-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.menu-feature-title em {
    font-style: italic;
    color: var(--saffron);
}

.menu-feature-meta {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.menu-feature-link {
    margin-top: auto;
    font-family: var(--ui);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink-soft);
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: start;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.menu-feature-link:hover {
    color: var(--saffron);
    border-color: var(--saffron);
    gap: 12px;
}

.menu-overlay-bottom {
    padding: 32px 48px 48px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.55s, transform 0.6s 0.55s;
}

.menu-overlay.open .menu-overlay-bottom {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay-socials {
    display: flex;
    gap: 24px;
    font-family: var(--ui);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.menu-overlay-socials a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.menu-overlay-socials a:hover { color: var(--saffron); }

@keyframes menuRise {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 128px 0 56px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, var(--rule) 1px, transparent 1px);
    background-size: 25% 100%;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    opacity: 0.5;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 38px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.2s forwards;
}

.hero-eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--ink-soft);
}

.hero-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(72px, 13vw, 220px);
    line-height: 0.86;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: rise 1.1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.45s; padding-left: 0.4em; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--saffron);
}

.hero-bottom {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: end;
    opacity: 0;
    animation: rise 1s var(--ease) 0.9s forwards;
}

.hero-tag {
    max-width: 360px;
    font-family: var(--display);
    font-size: 19px;
    line-height: 1.45;
    color: var(--ink-soft);
}

.hero-cta {
    font-family: var(--ui);
    font-size: 13px;
    letter-spacing: 0.04em;
    background: var(--ink);
    color: var(--bg);
    padding: 18px 28px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.hero-cta:hover {
    background: var(--saffron);
    transform: translateY(-2px);
}

.hero-cta .arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.hero-cta:hover .arrow { transform: translateX(4px); }

.ornament {
    position: absolute;
    top: 20%;
    right: 4%;
    width: 180px;
    height: 180px;
    opacity: 0;
    animation: rise 1.4s ease 0.7s forwards;
}

.ornament svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
    stroke: var(--sage);
}

.ornament svg circle {
    fill: var(--saffron);
}



.marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
    overflow: hidden;
    background: var(--bg-deep);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: scroll-x 38s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.marquee-track span:nth-child(4n+1) { color: var(--saffron); }
.marquee-track span:nth-child(4n+3) { color: var(--sage); }

.marquee-track i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--terracotta);
    flex: none;
}

@keyframes scroll-x {
    to { transform: translateX(-50%); }
}


section {
    padding: 90px 0;
    position: relative;
}

.section-tag {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.section-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
}



.next-event {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.next-event-visual {
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #C66536 0%, #8A3A1F 55%, #2A1209 100%);
    border-radius: 4px;
}

.next-event-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 35%, rgba(255, 210, 130, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(218, 167, 59, 0.22) 0%, transparent 55%);
}

.next-event-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='nn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='1'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nn)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.next-event-visual-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: rgba(236, 226, 198, 0.8);
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.next-event-date-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    color: #ECE2C6;
    font-family: var(--display);
    font-style: italic;
}

.next-event-date-tag .big {
    font-size: 56px;
    line-height: 1;
    font-weight: 300;
    display: block;
}

.next-event-date-tag .small {
    font-family: var(--ui);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.85;
}

.next-event-text h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(44px, 5.5vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.next-event-text h2 em {
    font-style: italic;
    color: var(--saffron);
    font-weight: 300;
}

.next-event-text .meta {
    font-family: var(--ui);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 36px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.next-event-text .meta span { position: relative; }

.next-event-text .meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--ink-mute);
    border-radius: 50%;
}

.next-event-text p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 36px;
    max-width: 460px;
}

.next-event-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-solid {
    font-family: var(--ui);
    background: var(--ink);
    color: var(--bg);
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
}

.btn-solid:hover {
    background: var(--saffron);
    transform: translateY(-2px);
}

.btn-link {
    font-family: var(--ui);
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--ink-soft);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-link:hover {
    color: var(--saffron);
    border-color: var(--saffron);
}



.practice-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 56px;
    align-items: end;
    margin-bottom: 52px;
}

.practice-head .section-tag { grid-column: 1 / -1; }

.practice-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(48px, 6.5vw, 116px);
    line-height: 0.88;
    letter-spacing: -0.035em;
}

.practice-head h2 em {
    font-style: italic;
    color: var(--saffron);
}

.practice-intro {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 420px;
    align-self: center;
}

.practice-list {
    border-top: 1px solid var(--rule);
}

.practice-item {
    display: grid;
    grid-template-columns: 80px 1fr 220px 56px;
    gap: 32px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.practice-item:hover {
    background: var(--bg-soft);
    padding-left: 24px;
}

.practice-num {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    padding-top: 8px;
    transition: color 0.3s;
}

.practice-item:hover .practice-num { color: var(--terracotta); }

.practice-body h3 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.practice-item:hover .practice-body h3 {
    color: var(--saffron);
    font-style: italic;
}

.practice-body p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 460px;
}

.practice-meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding-top: 12px;
}

.practice-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease), color 0.3s;
}

.practice-arrow svg {
    width: 15px;
    height: 15px;
}

.practice-item:hover .practice-arrow {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--bg);
    transform: rotate(-45deg);
}


.season {
    background: var(--bg-deep);
    border-top: 1px solid var(--rule);
}

.season-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 44px;
    flex-wrap: wrap;
    gap: 24px;
}

.season-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(44px, 5.5vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.season-head h2 em {
    font-style: italic;
    color: var(--saffron);
}

.event-list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.event-row {
    display: grid;
    grid-template-columns: 110px 1fr 200px 140px 44px;
    gap: 28px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.event-row:hover {
    background: var(--bg-soft);
    padding-left: 22px;
    padding-right: 22px;
}

.event-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.event-date strong {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0;
    color: var(--ink);
    transition: color 0.3s;
}

.event-row:hover .event-date strong { color: var(--saffron); }

.event-name {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(20px, 2.3vw, 30px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    transition: transform 0.35s var(--ease);
}

.event-row:hover .event-name { transform: translateX(8px); }

.event-venue {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.event-spots {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
    justify-self: start;
    border: 1px solid var(--rule-strong);
    padding: 6px 12px;
    border-radius: 999px;
}

.event-go {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    justify-self: end;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.event-go svg {
    width: 14px;
    height: 14px;
}

.event-row:hover .event-go {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--bg);
    transform: translateX(4px);
}


.creed {
    border-top: 1px solid var(--rule);
}

.creed-quote {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(32px, 4.6vw, 80px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 16ch;
    margin-bottom: 44px;
}

.creed-quote em {
    font-style: italic;
    color: var(--sage);
}

.creed-foot {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
}

.creed-foot p {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 520px;
}

.creed-foot .link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ui);
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink-soft);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.creed-foot .link:hover {
    color: var(--saffron);
    border-color: var(--saffron);
    gap: 14px;
}


.numbers {
    background: var(--ink);
    color: var(--bg);
    padding: 80px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 0 36px;
    border-left: 1px solid rgba(238, 228, 204, 0.18);
}

.stat:first-child { padding-left: 0; border-left: none; }

.stat-num {
    display: block;
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(56px, 7vw, 116px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--bg);
}

.stat-label {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(238, 228, 204, 0.65);
}


.join {
    background: var(--ink);
    color: var(--bg);
    padding: 104px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.join::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(210, 104, 64, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 90%, rgba(168, 192, 131, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(218, 167, 59, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.join-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.join h2 {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(60px, 9vw, 160px);
    line-height: 0.84;
    letter-spacing: -0.04em;
}

.join h2 em {
    font-style: italic;
    color: #D26840;
    font-weight: 300;
}

.join-right p {
    font-size: 19px;
    line-height: 1.5;
    color: rgba(238, 228, 204, 0.75);
    max-width: 460px;
    margin-bottom: 36px;
}

.join-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    color: var(--ink);
    padding: 18px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--ui);
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: background 0.3s, transform 0.3s, gap 0.3s;
}

.join-cta:hover {
    background: #D26840;
    transform: translateY(-2px);
    gap: 18px;
}


footer {
    background: var(--bg);
    padding: 80px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 32px;
}

.footer-brand-name {
    font-family: var(--display);
    font-weight: 300;
    font-size: 44px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ink);
}

.footer-brand-name em {
    font-style: italic;
    color: var(--saffron);
}

.footer-brand p {
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 340px;
    line-height: 1.5;
}

.footer-col h4 {
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--ui);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
    color: var(--saffron);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--ui);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.footer-bottom .credit {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.footer-bottom .credit a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom .credit a:hover { color: var(--saffron); }

.footer-bottom .credit em {
    font-family: var(--display);
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1;
    position: relative;
    top: 1px;
}


@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}


@media (max-width: 1024px) {
    .wrap { padding: 0 32px; }

    nav.top {
        padding: 18px 32px;
        grid-template-columns: 1fr auto;
    }

    .nav-links { display: none; }
    .nav-right .nav-meta { display: none; }
    .nav-right .nav-cta { display: none; }
    .ornament { display: none; }

    .menu-overlay-top { padding: 80px 32px 0; }

    .menu-overlay-grid {
        padding: 40px 32px;
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
    }

    .menu-overlay-bottom { padding: 24px 32px 36px; }

    .next-event {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .practice-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .practice-item {
        grid-template-columns: 48px 1fr 44px;
        gap: 20px;
    }

    .practice-meta {
        grid-column: 2 / 3;
        padding-top: 6px;
    }

    .event-row {
        grid-template-columns: 80px 1fr 40px;
        gap: 18px;
    }

    .event-venue,
    .event-spots { display: none; }

    .creed-foot {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .creed-foot .link { justify-self: start; }

    .numbers-grid { grid-template-columns: 1fr 1fr; }

    .stat {
        padding: 32px 24px;
        border-left: none;
        border-top: 1px solid rgba(238, 228, 204, 0.18);
    }

    .stat:first-child,
    .stat:nth-child(2) { border-top: none; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .wrap { padding: 0 22px; }

    nav.top { padding: 14px 22px; }

    .hero { padding: 110px 0 60px; }
    .hero::before { display: none; }
    .hero-eyebrow { margin-bottom: 32px; }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .next-event-date-tag .big { font-size: 40px; }

    section { padding: 62px 0; }

    .practice-item:hover { padding-left: 0; }
    .practice-body p { font-size: 15px; }

    .event-row:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .numbers-grid { grid-template-columns: 1fr; }

    .stat:nth-child(2) {
        border-top: 1px solid rgba(238, 228, 204, 0.18);
    }

    .menu-overlay-top {
        padding: 70px 22px 0;
        font-size: 10px;
    }

    .menu-overlay-grid { padding: 28px 22px; }
    .menu-overlay-bottom { padding: 20px 22px 30px; }

    .menu-item {
        grid-template-columns: 36px 1fr auto;
        gap: 16px;
        padding: 18px 0;
    }

    .menu-item .arrow { width: 24px; height: 24px; }

    .menu-feature { padding: 22px; }
    .menu-feature-title { font-size: 26px; }

    .burger-label { display: none; }
    .burger { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}