*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #F5F0E8;
    --cream-dark: #EDE6D8;
    --terracotta: #C4673A;
    --terracotta-light: #D4845E;
    --terracotta-dark: #A85230;
    --sage: #7A9E7E;
    --sage-light: #A3C4A7;
    --sage-dark: #5C7E60;
    --gold: #C9A84C;
    --gold-light: #E0C76E;
    --charcoal: #2C2A26;
    --charcoal-light: #4A4740;
    --warm-white: #FDFBF7;
    --warm-gray: #B5AFA3;
    --blush: #E8C4B8;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-handwritten: 'Caveat', cursive;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 42px;
}

/* --- NOISE TEXTURE OVERLAY --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(44, 42, 38, 0.45);
}
nav.scrolled {
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 3rem;
    box-shadow: 0 1px 30px rgba(44, 42, 38, 0.06);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--warm-white);
}
.nav-logo img {
    height: 44px;
    width: auto;
    transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
nav.scrolled .nav-logo img { height: 36px; }
.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--charcoal); }
nav.scrolled .nav-links a { color: var(--charcoal); }
nav.scrolled .nav-links a:hover { color: var(--terracotta); }
nav.scrolled .nav-links a.active { color: var(--terracotta); }
nav.scrolled .menu-toggle span { background: var(--charcoal); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--blush); }
.nav-links a.active { color: var(--warm-white); }
.nav-links a.active::after { width: 100%; background: var(--warm-white); }
nav.scrolled .nav-links a.active::after { background: var(--terracotta); }
.nav-cta {
    background: var(--terracotta) !important;
    color: var(--warm-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 103, 58, 0.3);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--warm-white);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* --- HERO --- */
.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(44, 42, 38, 0.55) 0%,
        rgba(44, 42, 38, 0.35) 40%,
        rgba(196, 103, 58, 0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 3.5rem;
    max-width: 900px;
    background: rgba(44, 42, 38, 0.45);
    border-radius: 28px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-handwritten);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--warm-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--blush);
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(253, 251, 247, 0.85);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--warm-white);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 103, 58, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(253, 251, 247, 0.4);
}
.btn-outline:hover {
    border-color: var(--warm-white);
    background: rgba(253, 251, 247, 0.1);
    transform: translateY(-2px);
}
.btn-sage {
    background: var(--sage);
    color: var(--warm-white);
}
.btn-sage:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(122, 158, 126, 0.35);
}
.btn-gold {
    background: var(--gold);
    color: var(--warm-white);
}
.btn-gold:hover {
    background: #B89840;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* Hero flyers — pinned to the left of the hero */
.hero-flyers {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-flyer {
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform: rotate(-3deg);
}
.hero-flyer:last-child {
    transform: rotate(2deg);
}
.hero-flyer:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 3;
}
.hero-flyer img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile flyers — shown only on mobile after hero */
.mobile-flyers {
    display: none;
    background: var(--cream);
    padding: 2rem 1.5rem;
}
.mobile-flyers-inner {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}
.mobile-flyers .cta-flyer {
    flex: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(253, 251, 247, 0.5);
    font-weight: 500;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(253, 251, 247, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* --- SECTION COMMONS --- */
section { padding: 7rem 3rem; }
.section-label {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    font-weight: 300;
    max-width: 620px;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
    padding: 10rem 3rem 5rem;
    background: linear-gradient(135deg, var(--sage-dark), var(--sage));
    color: var(--warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-title { color: var(--warm-white); margin-bottom: 1rem; }
.page-hero .section-text { color: rgba(253, 251, 247, 0.7); margin: 0 auto; }

/* --- ABOUT --- */
.about {
    background: var(--warm-white);
    position: relative;
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-images {
    position: relative;
    height: 550px;
}
.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    border-radius: 20px 20px 20px 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 42, 38, 0.12);
}
.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    border-radius: 20px 4px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 42, 38, 0.12);
}
.about-img-1 img,
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.about-img-1:hover img,
.about-img-2:hover img { transform: scale(1.05); }
.about-dot {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.about-dot svg {
    width: 28px;
    height: 28px;
    fill: var(--warm-white);
}
.about-content .section-text { margin-bottom: 2rem; }
.about-founders {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}
.about-founders-avatars {
    display: flex;
}
.about-founders-avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-handwritten);
    font-size: 1.1rem;
    color: var(--warm-white);
    font-weight: 600;
}
.about-founders-avatars span:first-child {
    background: var(--terracotta);
    z-index: 1;
}
.about-founders-avatars span:last-child {
    background: var(--sage);
    margin-left: -12px;
}
.about-founders-text {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.5;
}
.about-founders-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* --- SPACES --- */
.spaces {
    background: var(--cream);
    position: relative;
}
.spaces-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}
.spaces-header .section-text { margin: 0 auto; }
.spaces-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.space-card {
    background: var(--warm-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}
.space-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(44, 42, 38, 0.1);
}
.space-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.space-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.space-card:hover .space-card-img img { transform: scale(1.08); }
.space-card-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.space-card-icon svg { width: 22px; height: 22px; fill: var(--warm-white); }
.space-card-body {
    padding: 2.25rem 2rem 2rem;
}
.space-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.space-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    font-weight: 300;
}
.space-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

/* --- SPACE RENTAL --- */
.rentals {
    background: var(--warm-white);
    position: relative;
}
.rentals-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.rentals-header .section-text { margin: 0 auto; }
.rentals-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.rental-card {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}
.rental-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44, 42, 38, 0.08);
}
.rental-card-img {
    height: 180px;
    overflow: hidden;
}
.rental-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.rental-card:hover .rental-card-img img { transform: scale(1.06); }
.rental-card-body {
    padding: 1.75rem 2rem 2rem;
}
.rental-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.rental-card-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.rental-card-price sup {
    font-size: 1rem;
    vertical-align: super;
}
.rental-card-rate {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 1.25rem;
}
.rental-card-features {
    list-style: none;
    padding: 0;
}
.rental-card-features li {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-weight: 300;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.rental-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}
.rentals-cta {
    text-align: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* --- EVENTS --- */
.events {
    background: var(--charcoal);
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}
.events::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 103, 58, 0.08), transparent 70%);
}
.events-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
}
.events-header .section-label { color: var(--gold-light); }
.events-header .section-title { color: var(--warm-white); }
.events-header .section-text { color: rgba(253, 251, 247, 0.6); }
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.event-card {
    background: rgba(253, 251, 247, 0.04);
    border: 1px solid rgba(253, 251, 247, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 72px auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.event-card:hover {
    background: rgba(253, 251, 247, 0.07);
    border-color: rgba(253, 251, 247, 0.15);
    transform: translateX(4px);
}
.event-img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}
.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-date {
    text-align: center;
    min-width: 60px;
}
.event-date-day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--terracotta-light);
    line-height: 1;
}
.event-date-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(253, 251, 247, 0.4);
    margin-top: 0.25rem;
    font-weight: 500;
}
.event-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--warm-white);
}
.event-info p {
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
    font-weight: 300;
}
.event-price {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    white-space: nowrap;
}
.event-price.free { color: var(--sage-light); }
.event-price.paid { color: var(--gold-light); }
.event-card a.event-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--terracotta-light);
    text-decoration: none;
    font-weight: 500;
}
.event-card a.event-link:hover {
    text-decoration: underline;
}

/* --- MEMBERSHIP --- */
.membership {
    background: var(--warm-white);
    position: relative;
}
.membership-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.membership-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}
.membership-header .section-text { margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.price-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 2.25rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    position: relative;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44, 42, 38, 0.08);
}
.price-card.featured {
    background: var(--charcoal);
    color: var(--warm-white);
    border-color: var(--terracotta);
}
.price-card.featured .price-amount { color: var(--warm-white); }
.price-card.featured .price-period { color: rgba(253,251,247,0.5); }
.price-card.featured .price-label { color: rgba(253,251,247,0.7); }
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--warm-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1.25rem;
    border-radius: 100px;
    white-space: nowrap;
}
.price-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}
.price-label {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--charcoal);
    line-height: 1;
}
.price-amount sup {
    font-size: 1.5rem;
    vertical-align: super;
}
.price-period {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}
.membership-cta {
    text-align: center;
    margin-top: 2rem;
}
.perks-section {
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}
.perks-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.2;
    max-width: 260px;
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.perk-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.perk-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--terracotta);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.perk-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--charcoal-light);
    font-weight: 400;
}

/* --- EDUCATION --- */
.education {
    background: var(--sage);
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}
.education::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
}
.education-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.education-header {
    max-width: 600px;
    margin-bottom: 3.5rem;
}
.education-header .section-label { color: var(--gold-light); }
.education-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.edu-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.35s;
}
.edu-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}
.edu-card-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.edu-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.edu-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.8);
    font-weight: 300;
    margin-bottom: 1.25rem;
}
.edu-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.6);
    margin-bottom: 0.5rem;
}
.edu-detail svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 2;
}
.edu-instructor {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.6);
    line-height: 1.6;
}
.edu-instructor strong {
    color: var(--warm-white);
    font-weight: 600;
}

/* --- GALLERY --- */
.gallery {
    background: var(--cream);
    padding-bottom: 5rem;
}
.gallery-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}
.masonry-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}
.masonry-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,42,38,0.5), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item .masonry-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: var(--warm-white);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.masonry-item:hover .masonry-caption {
    opacity: 1;
    transform: translateY(0);
}
/* Feature tiles span multiple cells */
.masonry-item.wide { grid-column: span 2; }
.masonry-item.tall { grid-row: span 2; }
.masonry-item.featured { grid-column: span 2; grid-row: span 2; }

/* --- CONTACT --- */
.contact-section {
    background: var(--warm-white);
    position: relative;
}
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2,
.contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.contact-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-card:hover {
    transform: translateX(4px);
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--warm-white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-card-text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.5;
}
.contact-card-text a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.contact-card-text a:hover {
    color: var(--terracotta);
}
.contact-card-text strong {
    color: var(--charcoal);
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-hours {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-hours h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.contact-hours-list {
    list-style: none;
    padding: 0;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-weight: 300;
    border-bottom: 1px solid var(--cream-dark);
}
.contact-hours-list li:last-child {
    border-bottom: none;
}
.contact-map {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 42, 38, 0.08);
}
.contact-map iframe {
    display: block;
    width: 100%;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 103, 58, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--warm-gray);
    font-weight: 300;
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4740' d='M6 8.825L0.575 3.4l0.85-0.85L6 7.125l4.575-4.575 0.85 0.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
}
.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}
.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-weight: 300;
}

/* --- VENDOR/CTA BANNER --- */
.cta-banner {
    background: var(--gold);
    color: var(--charcoal);
    text-align: center;
    padding: 4rem 3rem;
}
.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 2rem;
}
.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-flyers {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.cta-flyer {
    width: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 42, 38, 0.15);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-flyer:hover {
    transform: translateY(-4px) rotate(-1deg);
}
.cta-flyer img {
    width: 100%;
    height: auto;
    display: block;
}
.btn-dark {
    background: var(--charcoal);
    color: var(--warm-white);
}
.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 42, 38, 0.35);
}
.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}
.btn-outline-dark:hover {
    background: rgba(44, 42, 38, 0.08);
    transform: translateY(-2px);
}

/* --- FOOTER/CONTACT --- */
.footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 5rem 3rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}
.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.5);
    font-weight: 300;
    max-width: 300px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    text-decoration: none;
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--terracotta-light); }
.footer-hours-list li {
    cursor: default;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--terracotta-light);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.5);
    font-weight: 300;
    line-height: 1.5;
}
.footer-contact-item a {
    color: rgba(253, 251, 247, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--terracotta-light); }

.footer-newsletter {
    margin-top: 1.5rem;
}
.footer-newsletter a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.footer-newsletter a:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.3);
    font-weight: 300;
}
.footer-hours {
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.3);
    font-weight: 300;
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(44, 42, 38, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    cursor: pointer;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.15);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-flyers { left: 1.5rem; }
    .hero-flyer { width: 160px; }
    section { padding: 5rem 2rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 400px; }
    .events-inner { grid-template-columns: 1fr; gap: 3rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .rentals-grid { grid-template-columns: repeat(2, 1fr); }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .perks-section { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2.5rem 2rem;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; color: var(--charcoal); }
    .nav-links a:hover { color: var(--terracotta); }
    .nav-links a.active { color: var(--terracotta); }
    .nav-links a.active::after { background: var(--terracotta); }
    .menu-toggle { display: block; }

    section { padding: 4rem 1.5rem; }
    .hero-content { padding: 2rem 1.5rem; }
    .hero-flyers { display: none; }
    .mobile-flyers { display: block; }

    .spaces-grid { grid-template-columns: 1fr; }
    .rentals-grid { grid-template-columns: 1fr; }
    .education-cards { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .perks-grid { grid-template-columns: 1fr 1fr; }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .masonry-item.featured { grid-column: span 2; grid-row: span 1; }

    .event-card {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    .event-img { display: none; }
    .event-price {
        grid-column: 2;
        justify-self: start;
    }
    .cta-flyer { width: 160px; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .masonry-item.wide, .masonry-item.tall, .masonry-item.featured { grid-column: span 1; grid-row: span 1; }
    .about-images { height: 300px; }
    .perks-grid { grid-template-columns: 1fr; }
}
