:root {
    --purple: #7b3f98;
    --purple-soft: #d8b7e8;
    --green: #556b1f;
    --green-dark: #30410f;
    --ink: #102033;
    --cream: #fff9ef;
    --paper: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 60px rgba(16, 32, 51, 0.18);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(216, 183, 232, .55), transparent 34rem),
        linear-gradient(135deg, #fff9ef 0%, #fff 45%, #efe4f4 100%);
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 28px;
    align-items: start;
    background: var(--paper);
    border: 1px solid rgba(123, 63, 152, .18);
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero__content {
    padding: clamp(28px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    margin-bottom: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: .88;
    letter-spacing: .02em;
}

.tagline {
    font-size: clamp(1.7rem, 4vw, 3rem);
    color: var(--green);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    margin-bottom: 26px;
}

.event-card {
    background: linear-gradient(135deg, var(--purple), #a66cc5);
    color: white;
    padding: 24px;
    border-radius: 24px;
    display: grid;
    gap: 6px;
    width: min(100%, 540px);
}

.event-card .label {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .12em;
}

.event-card strong {
    color: #e6e88a;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .9;
}

.event-card span:not(.label), .event-card a {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.schedule {
    margin: 18px 0 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--purple);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.button--primary { background: var(--green); color: white; }
.button--secondary { border: 2px solid var(--purple); color: var(--purple); }

.hero__image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    min-height: 0;
    background: var(--purple-soft);
}

.hero__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.section {
    margin-top: 24px;
    background: var(--paper);
    border: 1px solid rgba(85, 107, 31, .16);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 16px 40px rgba(16, 32, 51, .10);
}

.intro h2, .callout h2, .contact h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--green-dark);
}

.intro p, .callout p, .contact p {
    font-size: 1.2rem;
    max-width: 760px;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    border-top: 7px solid var(--purple);
    box-shadow: 0 14px 32px rgba(16, 32, 51, .10);
}

.feature-card h3 {
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 1.5rem;
}

.callout {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    flex: 0 0 auto;
}

.phone {
    color: var(--green);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero__image { min-height: 0; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .callout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .page-shell { width: min(100% - 20px, 1180px); padding: 10px 0; }
    .hero, .section { border-radius: 22px; }
    .features { grid-template-columns: 1fr; }
    .event-card { padding: 20px; }
    .badge { width: 180px; height: 180px; }
}
