:root {
    --bg: #f6f4ee;
    /* cream background */
    --teal: #2f7a75;
    /* main teal */
    --teal-dark: #246a65;
    /* deeper teal */
    --teal-soft: #e6f2f0;
    /* pale teal tint */
    --text: #0e2f2d;
    /* readable text */
    --muted: rgba(14, 47, 45, 0.72);

    --sun: #f6c64f;
    /* button yellow */
    --sun-hover: #eebc38;

    --white: #ffffff;
    --border: rgba(14, 47, 45, 0.10);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);

    --radius: 22px;
    --max: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Stack Sans Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), 92%);
    margin: 0 auto;
}

/* header / nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--teal);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.2px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--white);
    padding: 4px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 14px;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
    color: var(--sun-hover) !important;
}

/* hero */
.hero {
    padding: 64px 0 42px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-weight: 900;
    letter-spacing: 0.3px;
}

.hero h1 {
    margin: 0 0 16px;
    color: var(--teal-dark);
    font-weight: 900;
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    line-height: 1.05;
}

.muted {
    color: var(--teal-dark);
}

.lead {
    margin: 0 auto 22px;
    max-width: 70ch;
    color: var(--teal-dark);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    padding: 14px 20px;
    border-radius: 18px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn.primary {
    background: var(--sun);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(246, 198, 79, 0.35);
    display: block;
    width: 30%;
    min-width: 150px;
}

.get-in-touch {
    width: 30% !important;
    min-width: 150px;
}

.register-interest {
    width: 30% !important;
    min-width: 200px;
}

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

.btn.ghost {
    background: transparent;
    color: var(--teal-dark);
    border-color: rgba(36, 106, 101, 0.25);
}

.btn.ghost:hover {
    background: rgba(36, 106, 101, 0.06);
    border-color: rgba(36, 106, 101, 0.40);
}

/* hero logo panel */
.hero-card {
    background: var(--white);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* sections */
.section {
    padding: 56px 0;
}

.section-alt {
    background: var(--teal-soft);
}

.section-head h2 {
    margin: 0 0 8px;
    color: var(--teal-dark);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 900;
}

.subhead {
    margin: 0;
    color: var(--muted);
    max-width: 75ch;
}

/* split layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.media-card,
.content-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.media-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.content-card {
    padding: 22px;
}

.content-card h2 {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-weight: 900;
}

.content-card h3 {
    margin: 0 0 12px;
    color: rgba(36, 106, 101, 0.92);
    font-size: 1.06rem;
    font-weight: 800;
}

.content-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 14px 0 18px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 18px;
}

.card h3 {
    margin: 0 0 8px;
    color: var(--teal-dark);
    font-weight: 900;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card.accent {
    background: rgba(246, 198, 79, 0.18);
    border-color: rgba(246, 198, 79, 0.35);
}

/* event stack pills */
.stack {
    display: grid;
    gap: 10px;
    margin: 14px 0 18px;
}

.event-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.event-pill strong {
    color: var(--teal-dark);
}

.event-pill span {
    color: var(--muted);
    font-weight: 700;
}

/* Mini cards */
.mini-card {
    background: rgba(36, 106, 101, 0.06);
    border: 1px solid rgba(36, 106, 101, 0.14);
    border-radius: 18px;
    padding: 14px;
}

.mini-card h3 {
    margin: 0 0 6px;
    color: var(--teal-dark);
    font-weight: 900;
}

.mini-card p {
    margin: 0;
    color: var(--muted);
}

/* contact */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
}

.contact-list a {
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--teal);
    color: rgba(255, 255, 255, 0.92);
    padding: 18px 0;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--sun);
}

/* responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .media-card img {
        min-height: 240px;
    }

    .brand-name {
        display: none;
    }

    .nav {
        gap: 8px;
    }
}

.centred {
    text-align: center;
}

h1, h2, h3 {
    font-family: "Stack Sans Headline", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}