@font-face { font-family: 'Peachi'; src: url('/fonts/peachi-regular.otf') format('opentype'); font-weight: 400; }
@font-face { font-family: 'Peachi'; src: url('/fonts/peachi-bold.otf') format('opentype'); font-weight: 700; }

:root {
    --black: #1a1a1a;
    --white: #ffffff;
    --off-white: #f5f0eb;
    --terracotta: #C0755A;
    --concrete: #888;
    --font-display: 'Peachi', Georgia, serif;
    --font-body: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 2.5rem;
    background: rgba(26,26,26,0.92); backdrop-filter: blur(12px);
}
.nav-logo img { height: 26px; filter: invert(1); mix-blend-mode: screen; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--terracotta); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* HERO */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
}
.hero-copy {
    position: relative;
    display: flex; flex-direction: column; justify-content: center;
    padding: 7rem 3rem 4rem;
}
.hero-copy-bg {
    position: absolute; inset: 0;
    background: url('/img/events-hero.jpg') center center/cover;
    filter: saturate(0.85) brightness(0.4) contrast(1.05);
    z-index: 0;
}
.hero-copy-inner { position: relative; z-index: 2; max-width: 560px; }
.breadcrumb {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    margin-bottom: 1rem; letter-spacing: 0.3px;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.4; }
.hero-label {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 1.5rem;
}
.hero-copy h1 {
    font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-copy h1 em { font-style: normal; color: var(--terracotta); }
.hero-copy .lead {
    font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.78);
    margin-bottom: 2rem;
}
.hero-bullets {
    list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
    margin-bottom: 2rem;
}
.hero-bullets li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.hero-bullets svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }
.price-anchor {
    display: inline-flex; align-items: baseline; gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    background: rgba(192,117,90,0.15);
    border: 1px solid rgba(192,117,90,0.35);
    border-radius: 50px;
    font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.9);
}
.price-anchor strong { color: var(--terracotta); font-weight: 700; font-size: 1rem; }

/* FORM */
.hero-form-panel {
    background: var(--off-white);
    color: var(--black);
    padding: 7rem 3rem 4rem;
    display: flex; align-items: center; justify-content: center;
}
.hero-form-card {
    width: 100%; max-width: 440px;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.form-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 0.65rem;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    margin-bottom: 0.5rem; line-height: 1.15;
    color: var(--black);
}
.form-sub {
    font-size: 0.92rem; color: #666;
    margin-bottom: 1.5rem; line-height: 1.55;
}
.lead-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.form-row { display: flex; gap: 0.6rem; }
.form-group label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; color: #555;
}
.form-group input, .form-group select {
    padding: 0.75rem 0.95rem;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    width: 100%;
}
.form-group input::placeholder { color: rgba(0,0,0,0.3); }
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--white);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    padding-right: 2.25rem;
}
.submit-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
    background: var(--terracotta); color: var(--white);
    padding: 0.95rem 1.5rem; border-radius: 50px;
    font-size: 0.98rem; font-weight: 600; letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s;
    width: 100%; margin-top: 0.4rem; border: none; cursor: pointer;
    font-family: var(--font-body);
}
.submit-btn:hover { background: #a8624a; transform: translateY(-1px); }
.submit-btn svg { width: 18px; height: 18px; }
.form-microcopy {
    font-size: 0.76rem;
    color: #888;
    text-align: center;
    margin-top: 0.65rem;
    letter-spacing: 0.2px;
}

/* SECTIONS */
section { padding: 6rem 3rem; }
.section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
}
.section-sub {
    font-size: 1.05rem; line-height: 1.65;
    max-width: 680px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.75);
}
.bg-light .section-sub { color: #555; }
.bg-light { background: var(--off-white); color: var(--black); }
.bg-dark { background: var(--black); color: var(--white); }

/* TRUST */
.trust-strip { padding: 2rem 3rem; background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.trust-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 0.3rem; }
.trust-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; text-transform: uppercase; }

/* CONTENT BLOCKS */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; line-height: 1.2; }
.content-block p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.content-block ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.content-block li { font-size: 1rem; line-height: 1.75; margin-bottom: 0.5rem; }
.content-block strong { color: var(--terracotta); }
.bg-light .content-block { color: #333; }
.bg-light .content-block strong { color: var(--terracotta); }

/* INCLUDES GRID */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.includes-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 1.75rem 1.5rem; }
.includes-icon { width: 40px; height: 40px; background: rgba(192,117,90,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.includes-icon svg { width: 20px; height: 20px; color: var(--terracotta); }
.includes-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.includes-card p { font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.6); }

/* TESTIMONIAL CARD (single inline) */
.tm-inline { background: var(--white); border-radius: 16px; padding: 2rem 1.75rem; max-width: 720px; margin: 0 auto; box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.tm-inline-stars { color: #f5a623; display: flex; gap: 2px; margin-bottom: 1rem; }
.tm-inline-stars svg { width: 16px; height: 16px; fill: currentColor; }
.tm-inline-text { font-size: 1.05rem; line-height: 1.6; color: #333; margin-bottom: 1.5rem; font-style: italic; }
.tm-inline-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.06); }
.tm-inline-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; }
.tm-inline-name { font-weight: 700; font-size: 0.95rem; color: var(--black); display: block; }
.tm-inline-event { font-size: 0.8rem; color: #888; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { width: 100%; text-align: left; background: transparent; border: none; padding: 1.5rem 0; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--terracotta); font-weight: 400; transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '–'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.95rem; line-height: 1.65; color: #555; }
.faq-answer-inner { padding-bottom: 1.5rem; }
.faq-item.open .faq-answer { max-height: 500px; }

/* CTA STRIP */
.cta-strip { background: var(--terracotta); color: var(--white); text-align: center; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 1.25rem; }
.cta-strip p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--white); color: var(--terracotta); padding: 1rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: transform 0.2s; }
.cta-strip-btn:hover { transform: translateY(-2px); }

/* FOOTER */
.footer { padding: 2.5rem 3rem; background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer a:hover { color: var(--terracotta); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-copy { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero-form-panel { padding: 3rem 1.5rem; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.show { display: flex !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(26,26,26,0.98); padding: 1.5rem 2rem; gap: 1.25rem; }
    section { padding: 4rem 1.5rem; }
    .trust-strip { padding: 2rem 1.5rem; }
    .includes-grid { grid-template-columns: 1fr; }
    .hero-form-card { padding: 2rem 1.5rem; }
    .footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 2rem 1.5rem; }
}
