@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #00843D;
    --primary-dark: #005A2B;
    --secondary: #FFCD00;
    --secondary-dark: #D6A900;
    --navy: #012169;
    --navy-dark: #07152f;
    --ink: #102015;
    --muted: #5d6f61;
    --line: #dbe8d8;
    --bg: #f8fbf2;
    --card: #ffffff;
    --soft: #edf8e8;
    --gold-soft: #fff7cf;
    --green: #00843D;
    --shadow: 0 24px 70px rgba(0, 72, 35, 0.14);
    --radius: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

h1, h2, h3 {
    margin: 0 0 16px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: 1.35rem;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(880px, calc(100% - 32px));
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 16px;
    z-index: 99;
    padding: 12px 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 12px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(219, 232, 216, 0.86);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
}

.brand span span {
    color: var(--primary);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    border: 2px solid var(--secondary);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 132, 61, 0.24);
}

.flag-badge {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    background: #fff;
    border: 1px solid rgba(1, 33, 105, 0.14);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(1, 33, 105, 0.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 10px 14px;
    color: var(--muted);
    font-weight: 700;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
    background: var(--gold-soft);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 21, 47, 0.94), rgba(0, 90, 43, 0.68), rgba(255, 205, 0, 0.18)), url('https://images.pexels.com/photos/30651230/pexels-photo-30651230.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=900&w=1600') center/cover;
    transform: scale(1.02);
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 205, 0, 0.55), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 380px;
    gap: 36px;
    align-items: end;
    padding: 100px 0;
}

.hero-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.13rem;
}

.aussie-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 16px;
    padding: 9px 14px;
    color: #fff !important;
    background: rgba(1, 33, 105, 0.58);
    border: 1px solid rgba(255, 205, 0, 0.5);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.aussie-pill span {
    font-size: 1.35rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.hero .eyebrow {
    color: var(--secondary);
}

.hero-actions,
.centred-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.centred-actions {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--secondary), #ffe56a);
    box-shadow: 0 16px 36px rgba(255, 205, 0, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 44px rgba(255, 205, 0, 0.38);
}

.btn-secondary {
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid var(--line);
}

.hero-card,
.panel,
.feature-card,
.article-card,
.contact-card,
.value-card,
.sticky-card,
.tool-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 232, 216, 0.92);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 28px;
    color: var(--ink);
    border-top: 6px solid var(--secondary);
}

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

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    color: var(--primary-dark);
    background: var(--gold-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section {
    padding: 88px 0;
}

.section-heading {
    margin-bottom: 32px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;
    gap: 40px;
    align-items: end;
}

.feature-grid,
.article-grid,
.values-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card,
.value-card,
.contact-card {
    padding: 28px;
}

.feature-card svg,
.contact-card svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
    margin-bottom: 18px;
}

.feature-card:hover,
.article-card:hover,
.blog-item:hover,
.contact-card:hover,
.value-card:hover {
    transform: translateY(-4px);
}

.feature-card,
.article-card,
.blog-item,
.contact-card,
.value-card {
    transition: transform 0.22s ease;
}

.image-band {
    background: radial-gradient(circle at top right, rgba(255, 205, 0, 0.28), transparent 32%), linear-gradient(135deg, var(--navy), var(--primary-dark));
    color: #fff;
}

.band-grid,
.story-grid,
.two-column {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.band-grid img,
.story-grid img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.band-copy p,
.image-band .check-list li {
    color: rgba(255, 255, 255, 0.82);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--navy-dark);
    background: var(--secondary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
}

.compact li {
    font-size: 0.95rem;
}

.article-card {
    overflow: hidden;
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-content h3 a,
.blog-item h2 a {
    transition: color 0.2s ease;
}

.article-content h3 a:hover,
.blog-item h2 a:hover {
    color: var(--primary);
}

.text-link {
    display: inline-flex;
    color: var(--primary-dark);
    font-weight: 900;
}

.text-link::after {
    content: ' →';
    margin-left: 4px;
}

.tool-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background: radial-gradient(circle at top right, rgba(255, 205, 0, 0.32), transparent 34%), linear-gradient(135deg, #fff, #f0faea);
}

.momentum-form {
    display: grid;
    gap: 14px;
}

.momentum-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.momentum-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    background: #fff;
}

.momentum-form output {
    display: block;
    padding: 16px;
    color: var(--primary-dark);
    background: var(--gold-soft);
    border-radius: 16px;
    font-weight: 900;
}

.cta {
    padding: 88px 0;
    background: radial-gradient(circle at top left, rgba(255, 205, 0, 0.56), transparent 32%), linear-gradient(135deg, var(--primary), var(--navy));
    color: #fff;
}

.cta-inner {
    text-align: center;
}

.cta p {
    color: rgba(255, 255, 255, 0.84);
}

.page-hero,
.article-hero {
    padding: 96px 0 72px;
    text-align: center;
    background: radial-gradient(circle at top left, rgba(255, 205, 0, 0.36), transparent 34%), linear-gradient(180deg, #ffffff, #f0faea);
}

.page-hero p,
.article-hero p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
}

.contact-hero {
    background: radial-gradient(circle at bottom right, rgba(255, 205, 0, 0.42), transparent 38%), #fff;
}

.email-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--primary-dark);
    font-size: clamp(1.4rem, 4vw, 2.3rem);
    font-weight: 900;
}

.value-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 900;
    text-shadow: -1px -1px 0 var(--primary), 1px 1px 0 var(--primary);
}

.panel {
    padding: 32px;
}

.accent-panel {
    background: radial-gradient(circle at top right, rgba(255, 205, 0, 0.34), transparent 36%), linear-gradient(135deg, var(--primary), var(--navy));
    color: #fff;
}

.accent-panel p {
    color: rgba(255, 255, 255, 0.84);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.article-list {
    display: grid;
    gap: 22px;
}

.blog-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 72, 35, 0.08);
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.centred {
    justify-content: center;
}

.sidebar,
.article-aside {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 104px;
    padding: 26px;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
    padding: 64px 0 96px;
}

.article-main {
    min-width: 0;
}

.article-cover {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 42px;
}

.article-main section {
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.article-main p {
    font-size: 1.08rem;
}

.site-footer {
    padding: 64px 0 24px;
    color: #e8f5e6;
    background: linear-gradient(135deg, var(--navy-dark), #003b1c);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 32px;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--secondary);
}

.site-footer h2 {
    font-size: 1rem;
    letter-spacing: 0;
    color: #fff;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-heading,
    .band-grid,
    .story-grid,
    .two-column,
    .tool-card,
    .blog-layout,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 86px 0 56px;
    }

    .feature-grid,
    .article-grid,
    .values-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-item {
        grid-template-columns: 220px 1fr;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .flag-badge {
        width: 32px;
        height: 32px;
        font-size: 1.08rem;
    }

    .feature-grid,
    .article-grid,
    .values-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        grid-template-columns: 1fr;
    }

    .blog-thumb img,
    .band-grid img,
    .story-grid img {
        height: 300px;
    }

    .section {
        padding: 64px 0;
    }

    .page-hero,
    .article-hero {
        padding: 72px 0 56px;
    }

    .hero-card,
    .tool-card,
    .panel,
    .feature-card,
    .article-content,
    .contact-card,
    .value-card {
        padding: 22px;
    }
}