/* ============================================================
   OmniTax Professionals — Global Stylesheet
   Tech Stack: Vanilla HTML5 / CSS3 (Flex + Grid) / JS ES6+
   Brand: Sage Green #518465 | Gold #D4AF37
   Fonts: Playfair Display (headings) | Inter (body) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
    --omni-green:        #518465;
    --omni-green-dark:   #013220;
    --omni-green-mid:    #3e6b51;
    --omni-green-light:  #5e9472;
    --omni-gold:         #D4AF37;
    --omni-gold-light:   #e6c94e;
    --omni-gold-dark:    #b09228;
    --omni-gold-subtle:  rgba(212, 175, 55, 0.12);

    --white:             #ffffff;
    --off-white:         #f9f7f3;
    --light-grey:        #f3f3f3;
    --mid-grey:          #8a8a8a;
    --dark-grey:         #2e2e2e;
    --text-body:         #1c1c1c;

    --font-primary:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-secondary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --max-width:      1200px;
    --navbar-height:  70px;
    --hero-photo-column: 1.5fr;
    --section-pad:    96px 24px;
    --section-pad-sm: 60px 24px;

    /* Footer TPB / CAANZ logos — horizontal inset from brand column edges (higher = closer together) */
    --footer-reg-logo-inset: 25px;
    --footer-reg-logo-height: 100px;
    /* CAANZ portrait asset — raise/lower independently of TPB & ASIC (try 90–130px) */
    --footer-caanz-logo-height: 140px;
    --footer-caanz-logo-max-width: calc(var(--footer-caanz-logo-height) * 1.4);

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  18px;

    --shadow-xs:   0 1px 4px rgba(81, 132, 101, 0.10);
    --shadow-card: 0 4px 20px rgba(81, 132, 101, 0.11), 0 1px 4px rgba(81, 132, 101, 0.06);
    --shadow-nav:  0 2px 24px rgba(81, 132, 101, 0.16);
    --shadow-lift: 0 10px 40px rgba(81, 132, 101, 0.16), 0 2px 8px rgba(81, 132, 101, 0.09);
    --shadow-modal:0 16px 64px rgba(81, 132, 101, 0.24), 0 4px 16px rgba(81, 132, 101, 0.12);

    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --transition:  0.22s var(--ease);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    padding-top: var(--navbar-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    color: var(--omni-green);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; letter-spacing: 0.01em; }

p {
    font-size: 1rem;
    color: var(--dark-grey);
    max-width: 70ch;
    line-height: 1.75;
}

.lead {
    font-size: 1.125rem;
    color: var(--dark-grey);
    line-height: 1.8;
    font-weight: 400;
}

/* ── 4. Layout Utilities ──────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad);
}

.section--sm {
    padding: var(--section-pad-sm);
}

.section--green {
    background: linear-gradient(135deg, var(--omni-green-dark) 0%, var(--omni-green) 55%, var(--omni-green-mid) 100%);
}

.section--green h1,
.section--green h2,
.section--green h3,
.section--green h4 {
    color: var(--omni-gold);
}

.section--green p,
.section--green li {
    color: rgba(255, 255, 255, 0.92);
}

.section--offwhite {
    background: var(--off-white);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__header h2 {
    margin-bottom: 14px;
}

.section__header p {
    margin: 0 auto;
    color: var(--mid-grey);
    font-size: 1.05rem;
}

.section__header--light h2 {
    color: var(--omni-gold);
}

.section__header--light p {
    color: rgba(255, 255, 255, 0.68);
}

/* Animated divider */
.divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--omni-gold), transparent);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--omni-gold);
    color: var(--omni-green-dark);
    border: 2px solid var(--omni-gold);
}

.btn--primary:hover {
    background: var(--omni-gold-light);
    border-color: var(--omni-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.38);
}

.btn--secondary {
    background: transparent;
    color: var(--omni-gold);
    border: 2px solid var(--omni-gold);
}

.btn--secondary:hover {
    background: var(--omni-gold);
    color: var(--omni-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── 6. Navigation ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(81, 132, 101, 0.10), 0 4px 20px rgba(81, 132, 101, 0.08);
    border-bottom: 1px solid rgba(81, 132, 101, 0.10);
    transition: box-shadow var(--transition);
}

.navbar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

/* ── Logo: horizontal rectangle — NO circular clipping ── */
.navbar__logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar__name {
    display: none;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.navbar__nav > li {
    flex-shrink: 0;
}

.navbar__link {
    color: rgba(30, 45, 38, 0.65);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 26px);
    height: 1px;
    background: var(--omni-gold);
    transition: transform var(--transition);
    transform-origin: center;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--omni-green);
    background: rgba(81, 132, 101, 0.08);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar__cta {
    margin-left: 10px;
    padding: 9px 22px;
    background: var(--omni-gold);
    color: var(--omni-green-dark);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.navbar__cta:hover {
    background: var(--omni-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

/* ── Dropdown ── */
.navbar__dropdown-wrap {
    position: relative;
}

.navbar__dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(30, 45, 38, 0.65);
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    position: relative;
}

.navbar__dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 26px);
    height: 1px;
    background: var(--omni-gold);
    transition: transform var(--transition);
    transform-origin: center;
}

.navbar__dropdown-btn:hover,
.navbar__dropdown-btn.active {
    color: var(--omni-green);
    background: rgba(81, 132, 101, 0.08);
}

.navbar__dropdown-btn:hover::after,
.navbar__dropdown-btn.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar__caret {
    font-size: 0.6rem;
    transition: transform var(--transition);
    display: inline-block;
    line-height: 1;
}

.navbar__dropdown-btn[aria-expanded="true"] .navbar__caret {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(81, 132, 101, 0.12);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 999;
}

.navbar__dropdown-wrap:hover .navbar__dropdown-menu,
.navbar__dropdown-wrap.open .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-item {
    display: block;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark-grey);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.navbar__dropdown-item:hover,
.navbar__dropdown-item.active {
    color: var(--omni-green);
    background: rgba(81, 132, 101, 0.08);
}

/* Mobile accordion group */
.navbar__mobile-group-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(30, 45, 38, 0.65);
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.navbar__mobile-group-btn:hover {
    color: var(--omni-green);
    background: rgba(81, 132, 101, 0.08);
}

.navbar__mobile-group-btn[aria-expanded="true"] .navbar__caret {
    transform: rotate(180deg);
}

.navbar__mobile-submenu {
    display: none;
    padding: 2px 0 2px 12px;
}

.navbar__mobile-submenu.open {
    display: block;
}

.navbar__mobile-submenu .navbar__link {
    padding: 9px 14px;
    font-size: 0.82rem;
    color: rgba(30, 45, 38, 0.55);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--omni-green);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 24px 20px;
    gap: 2px;
    border-top: 1px solid rgba(81, 132, 101, 0.08);
    box-shadow: 0 8px 24px rgba(81, 132, 101, 0.10);
}

.navbar__mobile.open {
    display: flex;
}

@media (min-width: 1101px) {
    .navbar__mobile,
    .navbar__mobile.open {
        display: none !important;
    }
}

.navbar__mobile .navbar__link {
    padding: 10px 14px;
    font-size: 0.85rem;
}

.navbar__mobile .navbar__link::after { display: none; }

.navbar__mobile .navbar__cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    padding: 12px;
}

/* ── 7. Hero ──────────────────────────────────────────────── */
.hero {
    background: linear-gradient(to right, var(--omni-green) 60%, var(--omni-gold-light));
    padding: 110px 24px 96px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 90% -5%,  rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at -5% 105%, rgba(212, 175, 55, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 50% 0%,   rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
    transform: translateY(var(--parallax-offset, 0));
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    pointer-events: none;
    animation: heroShimmer 12s ease-in-out infinite;
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr var(--hero-photo-column);
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--omni-gold);
    margin-bottom: 22px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--omni-gold);
}

.hero__title {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5.8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 26px;
    font-weight: 700;
}

.hero__title span {
    color: var(--omni-gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
    max-width: none;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__badges {
    display: flex;
    gap: 28px;
    margin-top: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero__badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(81, 132, 101, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--omni-gold);
    flex-shrink: 0;
}

/* Mobile Responsive: Stack them on small screens */
@media (max-width: 1000px ) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__image {
        order: -1; /* Puts image above text on mobile */
        margin-bottom: 30px;
    }
}

/* ── 8. Cards ─────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    gap: 24px;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 34px 30px;
    border: 1px solid rgba(81, 132, 101, 0.09);
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-top-color: var(--omni-gold);
}

.card__icon {
    margin-bottom: 18px;
}

.card__icon-img {
    display: block;
    width: 48px;
    height: 48px;
}

.card--value .card__icon {
    display: flex;
    justify-content: center;
}

.card--value .card__icon-img {
    margin-inline: auto;
}

.card--value h3 {
    text-align: center;
    font-size: clamp(2rem, 4.2vw, 2.5rem);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    max-width: none;
    line-height: 1.65;
}

/* Value cards — on green background */
.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    transition: border-color var(--transition), background var(--transition);
}

.value-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.07);
}

.value-card h4 {
    color: var(--omni-gold);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    max-width: none;
    line-height: 1.68;
}

/* People cards */
.people-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(81, 132, 101, 0.09);
    transition: transform var(--transition), box-shadow var(--transition);
}

.people-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.people-card__photo {
    width: 100%;
    height: 320px;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: #c0c0c0;
    overflow: hidden;
}

.people-card__photo img,
.people-card__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s var(--ease);
}

.people-card:hover .people-card__photo img,
.people-card:hover .people-card__photo-img {
    transform: scale(1.04);
}

.people-card__body {
    padding: 24px 22px 20px;
}

.people-card__name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--omni-green);
    margin-bottom: 4px;
    font-weight: 600;
}

.people-card__role {
    font-size: 0.78rem;
    color: var(--omni-gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.people-card__bio-preview {
    font-size: 0.875rem;
    color: var(--mid-grey);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.people-card__cta {
    margin-top: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--omni-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary);
    transition: gap var(--transition);
}

.people-card__cta::after {
    content: '→';
    transition: transform var(--transition);
}

.people-card:hover .people-card__cta {
    gap: 10px;
}

/* ── 9. Modal ─────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 50, 35, 0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-modal);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__header {
    background: var(--omni-green);
    padding: 34px 36px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.modal__photo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--omni-gold);
    flex-shrink: 0;
    background: var(--omni-green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--omni-gold);
    overflow: hidden;
}

.modal__name {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.modal__role {
    color: var(--omni-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-secondary);
}

.modal__close {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px 6px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.modal__close:hover {
    color: var(--omni-gold);
}

.modal__body {
    padding: 34px 36px 38px;
}

.modal__body p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
    max-width: none;
}

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

.modal__body ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
    list-style: disc;
}

.modal__body ul li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--dark-grey);
}

.modal__body ul:last-child {
    margin-bottom: 0;
}

/* ── Profile modal — two-column standing photo layout ── */
.modal--profile {
    max-width: 860px;
    max-height: 90vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
}

.modal__image-panel {
    width: 38%;
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--omni-gold-light) 0%, var(--omni-green) 100%);
    overflow: hidden;
    position: relative;
}

.modal__standing-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.modal__photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--omni-gold);
    background: var(--omni-green);
}

.modal__content-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.modal__scroll {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.modal--profile .modal__header {
    display: block;
    padding: 52px 36px 28px;
    flex-shrink: 0;
}

.modal--profile .modal__body {
    flex: 1;
    padding: 28px 36px 38px;
}

.modal--profile .modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 10;
    background: rgba(1, 50, 32, 0.55);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    transition: background var(--transition), color var(--transition);
}

.modal--profile .modal__close:hover {
    background: var(--omni-gold-dark);
    color: var(--white);
}

.modal__footer {
    flex-shrink: 0;
    padding: 18px 36px 28px;
    border-top: 2px solid var(--omni-gold);
    background: var(--white);
    box-shadow: 0 -10px 28px rgba(1, 50, 32, 0.1);
}

.modal__pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--omni-green) 0%, var(--omni-green-dark) 100%);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(1, 50, 32, 0.28);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.modal__pdf-btn:hover {
    background: linear-gradient(135deg, var(--omni-gold-dark) 0%, var(--omni-gold) 100%);
    color: var(--omni-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.modal__pdf-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── PDF Viewer (shared — Insights & Our People) ──────────── */
.pdf-viewer {
    --pv-glow: rgba(212, 175, 55, 0.55);
    --pv-glow-soft: rgba(212, 175, 55, 0.18);
    --pv-accent: rgba(94, 148, 114, 0.45);

    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: radial-gradient(ellipse at 50% 30%, rgba(14, 36, 24, 0.96) 0%, rgba(1, 10, 6, 0.98) 70%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pdf-viewer.open {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.pdf-viewer__grid-bg,
.pdf-viewer__scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pdf-viewer__grid-bg {
    background-image:
        linear-gradient(rgba(81, 132, 101, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(81, 132, 101, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 45%, black 10%, transparent 75%);
    animation: pdf-viewer-grid-drift 24s linear infinite;
}

@keyframes pdf-viewer-grid-drift {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 48px 48px, 48px 48px; }
}

.pdf-viewer__scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 4px
    );
    opacity: 0.35;
}

.pdf-viewer__header,
.pdf-viewer__stage,
.pdf-viewer__footer {
    position: relative;
    z-index: 1;
}

.pdf-viewer__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 28px;
    background: linear-gradient(180deg, rgba(1, 50, 32, 0.92) 0%, rgba(1, 38, 24, 0.88) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    flex-wrap: wrap;
}

.pdf-viewer__header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.pdf-viewer__subtitle {
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--omni-gold);
    white-space: nowrap;
    text-shadow: 0 0 12px var(--pv-glow-soft);
}

.pdf-viewer__sep {
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg, transparent, rgba(81, 132, 101, 0.6), transparent);
}

.pdf-viewer__title {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf-viewer__header-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 120px;
}

.pdf-viewer__pages {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.pdf-viewer__pages b {
    color: var(--omni-gold-light);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.pdf-viewer__pages-div {
    margin: 0 4px;
    opacity: 0.4;
}

.pdf-viewer__progress {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.pdf-viewer__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--omni-green-light), var(--omni-gold));
    border-radius: 99px;
    box-shadow: 0 0 10px var(--pv-glow-soft);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdf-viewer__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.pdf-viewer__close:hover {
    border-color: var(--omni-gold);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 16px var(--pv-glow-soft);
}

.pdf-viewer__close svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.7);
}

/* Stage — character-select carousel */
.pdf-viewer__stage {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 16px;
    -webkit-overflow-scrolling: touch;
}

.pdf-viewer__carousel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    width: 100%;
    max-width: min(94vw, 1380px);
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.pdf-viewer__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, filter 0.35s ease;
}

.pdf-viewer__panel--prev,
.pdf-viewer__panel--next {
    flex: 0 0 168px;
    opacity: 0.62;
    transform: scale(0.76);
    filter: saturate(0.75) brightness(0.82);
}

.pdf-viewer__panel--prev:hover:not(:disabled),
.pdf-viewer__panel--next:hover:not(:disabled) {
    opacity: 0.92;
    transform: scale(0.84);
    filter: saturate(1) brightness(1);
}

.pdf-viewer__panel--active {
    flex: 1;
    max-width: min(56vw, 980px);
    cursor: default;
    transform: scale(1);
    opacity: 1;
    filter: none;
}

.pdf-viewer__panel--disabled {
    opacity: 0.28;
    cursor: not-allowed;
    pointer-events: none;
}

.pdf-viewer__panel-corners {
    position: absolute;
    inset: -6px;
    pointer-events: none;
    z-index: 2;
}

.pdf-viewer__panel-corners::before,
.pdf-viewer__panel-corners::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(81, 132, 101, 0.5);
    border-style: solid;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pdf-viewer__panel-corners::before {
    top: 0; left: 0;
    border-width: 2px 0 0 2px;
}

.pdf-viewer__panel-corners::after {
    bottom: 0; right: 0;
    border-width: 0 2px 2px 0;
}

.pdf-viewer__panel-corners--active::before,
.pdf-viewer__panel-corners--active::after {
    border-color: var(--omni-gold);
    box-shadow: 0 0 12px var(--pv-glow-soft);
}

.pdf-viewer__panel--prev:hover:not(:disabled) .pdf-viewer__panel-corners::before,
.pdf-viewer__panel--prev:hover:not(:disabled) .pdf-viewer__panel-corners::after,
.pdf-viewer__panel--next:hover:not(:disabled) .pdf-viewer__panel-corners::before,
.pdf-viewer__panel--next:hover:not(:disabled) .pdf-viewer__panel-corners::after {
    border-color: var(--omni-green-light);
}

.pdf-viewer__frame {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(81, 132, 101, 0.25);
    transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdf-viewer__frame--main {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.08),
        0 12px 48px rgba(0, 0, 0, 0.55),
        0 0 40px var(--pv-glow-soft);
}

.pdf-viewer__frame--prev,
.pdf-viewer__frame--next {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.pdf-viewer--forward .pdf-viewer__frame--main {
    animation: pdf-viewer-slide-in-right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdf-viewer--back .pdf-viewer__frame--main {
    animation: pdf-viewer-slide-in-left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pdf-viewer-slide-in-right {
    from { opacity: 0.4; transform: translateX(28px) scale(0.97); }
    to   { opacity: 1;   transform: translateX(0) scale(1); }
}

@keyframes pdf-viewer-slide-in-left {
    from { opacity: 0.4; transform: translateX(-28px) scale(0.97); }
    to   { opacity: 1;   transform: translateX(0) scale(1); }
}

.pdf-viewer__frame canvas {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
}

.pdf-viewer__frame--empty {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    opacity: 0.35;
}

.pdf-viewer__frame-ghost {
    font-family: var(--font-secondary);
    font-size: 28px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.2em;
}

.pdf-viewer__frame-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(212, 175, 55, 0.08) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: pdf-viewer-shimmer 1.2s ease infinite;
}

@keyframes pdf-viewer-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pdf-viewer__panel-tag {
    font-family: var(--font-secondary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.pdf-viewer__panel-tag--active {
    color: var(--omni-gold);
    text-shadow: 0 0 10px var(--pv-glow-soft);
}

/* Mobile dock — peek previews */
.pdf-viewer__dock {
    display: none;
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
    padding: 0 8px;
    flex-shrink: 0;
}

.pdf-viewer__dock-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(1, 50, 32, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pdf-viewer__dock-card {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pdf-viewer__dock-card:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.pdf-viewer__dock-card:not(:disabled):active {
    transform: scale(0.94);
}

.pdf-viewer__dock-frame {
    width: 56px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(81, 132, 101, 0.35);
    background: rgba(0, 0, 0, 0.4);
}

.pdf-viewer__dock-frame canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdf-viewer__dock-frame.pdf-viewer__frame--empty {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-viewer__dock-card--current {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.pdf-viewer__dock-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--omni-gold);
    box-shadow: 0 0 12px var(--pv-glow);
    animation: pdf-viewer-pulse 2s ease infinite;
}

@keyframes pdf-viewer-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.65; transform: scale(0.85); }
}

.pdf-viewer__dock-label {
    font-family: var(--font-secondary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--omni-gold);
}

.pdf-viewer__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.pdf-viewer__spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(81, 132, 101, 0.15);
    border-top-color: var(--omni-gold);
    border-right-color: var(--omni-green-light);
    border-radius: 50%;
    animation: pdf-viewer-spin 0.7s linear infinite;
    box-shadow: 0 0 20px var(--pv-glow-soft);
}

@keyframes pdf-viewer-spin {
    to { transform: rotate(360deg); }
}

.pdf-viewer__error {
    color: rgba(255, 255, 255, 0.45);
    padding: 40px;
    font-family: var(--font-secondary);
    text-align: center;
}

.pdf-viewer__footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 28px;
    background: linear-gradient(0deg, rgba(1, 50, 32, 0.92) 0%, rgba(1, 38, 24, 0.85) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.pdf-viewer__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid rgba(81, 132, 101, 0.35);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdf-viewer__nav:hover:not(:disabled) {
    border-color: var(--omni-gold);
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px var(--pv-glow-soft);
}

.pdf-viewer__nav:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.pdf-viewer__nav svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pdf-viewer__count {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    min-width: 90px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .modal__footer { padding: 14px 24px 22px; }

    .pdf-viewer__header {
        padding: 12px 16px;
        gap: 12px;
    }

    .pdf-viewer__header-status {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .pdf-viewer__title { font-size: 14px; }

    .pdf-viewer__stage {
        padding: 16px 12px 8px;
    }

    .pdf-viewer__carousel {
        margin-top: 0;
        margin-bottom: 0;
    }

    .pdf-viewer__carousel {
        flex-direction: column;
        gap: 0;
    }

    .pdf-viewer__panel--prev,
    .pdf-viewer__panel--next {
        display: none;
    }

    .pdf-viewer__panel--active {
        max-width: 100%;
        width: 100%;
    }

    .pdf-viewer__frame--main {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.12),
            0 8px 32px rgba(0, 0, 0, 0.5),
            0 0 24px var(--pv-glow-soft);
    }

    .pdf-viewer__dock {
        display: block;
    }

    .pdf-viewer__loading { min-height: 320px; }

    .pdf-viewer__nav {
        padding: 12px 18px;
        flex: 1;
        justify-content: center;
        max-width: 140px;
    }

    .pdf-viewer__nav span.pdf-viewer__nav-label {
        display: none;
    }
}

/* ── 10. Footer ───────────────────────────────────────────── */
.footer {
    background: linear-gradient(to right, var(--omni-green-dark) 0%, var(--omni-green) 55%, var(--omni-green-mid) 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 72px 24px 0;
}

.footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer__brand {
    margin-bottom: 18px;
}

.footer__name {
    display: block;
    color: var(--omni-gold);
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.footer__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: none;
    margin-bottom: 22px;
}

.footer__registrations {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-inline: var(--footer-reg-logo-inset);
    gap: 20px;
}

.footer__reg-logo {
    height: var(--footer-reg-logo-height);
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    opacity: 1;
}

.footer__reg-logo[src*="caanz"] {
    height: var(--footer-caanz-logo-height);
    max-width: var(--footer-caanz-logo-max-width);
}

.footer__reg-asic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: var(--footer-reg-logo-height);
    min-width: 88px;
    padding: 6px 12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    color: #fff;
    text-align: center;
    line-height: 1.1;
}

.footer__reg-asic-brand {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 1px;
}

.footer__reg-asic-text {
    font-weight: 600;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer__reg-asic-num {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.footer__col h5 {
    color: var(--omni-gold);
    font-family: var(--font-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition);
    line-height: 1.4;
}

.footer__links a:hover {
    color: var(--omni-gold);
}

.footer__contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer__contact-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    color: var(--omni-gold);
    margin-top: 3px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: var(--icon-mask) no-repeat center / contain;
    mask: var(--icon-mask) no-repeat center / contain;
}

.footer__contact-icon--location {
    --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5-2.5 1.12-2.5 2.5z'/%3E%3C/svg%3E");
}

.footer__contact-icon--email {
    --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer__bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.48);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--omni-gold);
}

.footer__liability {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0 20px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
}

/* ── 11. Services List ────────────────────────────────────── */
.services-list {
    columns: 2;
    gap: 32px;
    list-style: none;
}

.services-list li {
    break-inside: avoid;
    padding: 11px 0 11px 26px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--dark-grey);
    border-bottom: 1px solid rgba(81, 132, 101, 0.09);
    line-height: 1.5;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--omni-gold);
}

.clients-block {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(81, 132, 101, 0.12);
}

.clients-block__heading {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.clients-block__heading--sub {
    margin-top: 32px;
}

.clients-block .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 0;
    columns: unset;
}

.clients-block .services-list li {
    padding: 5px 0 5px 26px;
    border-bottom: none;
}

/* ── 12. Trust Banner ─────────────────────────────────────── */
.trust-banner {
    background: var(--off-white);
    border-top: 3px solid var(--omni-gold);
    border-bottom: 1px solid rgba(81, 132, 101, 0.10);
    padding: 36px 24px;
}

.trust-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item__number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--omni-green);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.trust-item__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid-grey);
    font-weight: 600;
    font-family: var(--font-secondary);
}

/* ── 13. CTA Section ──────────────────────────────────────── */
.cta-section {
    background: linear-gradient(to right, var(--omni-green-dark) 0%, var(--omni-green) 55%, var(--omni-green-mid) 100%);
    padding: var(--section-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .cta-section2 {
    background: linear-gradient(to right, var(--omni-green-dark) 0%, var(--omni-green) 55%, var(--omni-green-mid) 100%);
    padding: var(--section-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
} */

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at center, rgba(212, 175, 55, 0.10) 0%, transparent 65%);
    pointer-events: none;
    animation: ctaGlow 10s ease-in-out infinite;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto 38px;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ── 14. Utility ──────────────────────────────────────────── */
.text-gold   { color: var(--omni-gold); }
.text-green  { color: var(--omni-green); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }

/* ── 15a. Page Hero (inner pages) ────────────────────────── */
.page-hero {
    padding: 96px 24px 80px;
    background: linear-gradient(135deg, 
        var(--omni-gold) 0%, 
        var(--omni-green) 50%, 
        var(--omni-gold) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% -10%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 110%, rgba(212, 175, 55, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 56ch;
    margin: 0 auto;
}

/* ── 15b. Teaser Cards (Home links to sections) ─────── */
.teaser-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.teaser-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 40px 36px;
    border: 1px solid rgba(81, 132, 101, 0.09);
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
}

.teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-top-color: var(--omni-gold);
}

.teaser-card h3 {
    color: var(--omni-green);
    margin-bottom: 12px;
}

.teaser-card p {
    color: var(--mid-grey);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.teaser-card__cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--omni-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-secondary);
}

.teaser-card__cta::after {
    content: ' →';
}

.teaser-cards--site {
    grid-template-columns: repeat(3, 1fr);
}

/* ── 15b-i. Home — modern platinum accent (replaces gold) ─ */
.page-home {
    --home-accent:        #ffffff;
    --home-accent-soft:   rgba(255, 255, 255, 0.90);
    --home-accent-muted:  rgba(255, 255, 255, 0.68);
    --home-accent-subtle: rgba(255, 255, 255, 0.14);
    --home-accent-border: rgba(255, 255, 255, 0.32);
    --home-accent-on-light: var(--omni-green-light);
}

.page-home .hero {
    background: linear-gradient(135deg, var(--omni-green-dark) 0%, var(--omni-green) 52%, var(--omni-green-mid) 100%);
}

.page-home .hero::before {
    background:
        radial-gradient(ellipse 75% 65% at 92% -8%,  rgba(255, 255, 255, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 50% 50% at -4% 108%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 42% 48% at 50% 0%,   rgba(255, 255, 255, 0.08) 0%, transparent 62%);
}

.page-home .hero::after {
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
}

.page-home .hero__image img {
    border-color: var(--home-accent-border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.page-home .hero__badge-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--home-accent-border);
    color: var(--home-accent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.page-home .divider {
    background: linear-gradient(90deg, transparent, var(--home-accent-on-light), transparent);
}

.page-home .about-commitments li span {
    color: var(--home-accent-on-light);
}

.page-home .leadership__eyebrow {
    color: var(--omni-green-mid);
}

.page-home .teaser-card:hover {
    border-top-color: var(--home-accent-on-light);
}

.page-home .cta-section::before {
    background: radial-gradient(ellipse 80% 60% at center, rgba(255, 255, 255, 0.10) 0%, transparent 65%);
}

.page-home .cta-section .btn--primary {
    background: var(--home-accent);
    color: var(--omni-green-dark);
    border-color: var(--home-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.page-home .cta-section .btn--primary:hover {
    background: #f4f7f5;
    border-color: #f4f7f5;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.page-home .btn--secondary {
    color: var(--omni-green);
    border-color: var(--omni-green);
}

.page-home .btn--secondary:hover {
    background: var(--omni-green);
    color: var(--home-accent);
    box-shadow: 0 8px 24px rgba(81, 132, 101, 0.28);
}

.page-home .navbar__link::after {
    background: var(--omni-green-light);
}

.page-home .footer__grid {
    border-bottom-color: var(--home-accent-subtle);
}

.page-home .footer__name,
.page-home .footer__col h5 {
    color: var(--home-accent-soft);
}

.page-home .footer__links a:hover,
.page-home .footer__bottom a:hover {
    color: var(--home-accent);
}

.page-home .footer__contact-icon {
    color: var(--home-accent-muted);
}

.page-home .section--offwhite {
    background: #f7f9f8;
}

/* ── 15b-ii. Home — About & Leadership ─────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-commitments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-commitments li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--dark-grey);
}

.about-commitments li span {
    color: var(--omni-gold);
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.leadership {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.leadership__figure {
    margin: 0;
}

.leadership__figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(81, 132, 101, 0.12);
}

.leadership__eyebrow {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--omni-gold-dark);
    margin-bottom: 12px;
    display: block;
}

.leadership__content h2 {
    margin-bottom: 16px;
}

.leadership__content .lead {
    margin-bottom: 20px;
}

.leadership__names {
    font-size: 0.9375rem;
    color: var(--mid-grey);
    margin-bottom: 24px;
    font-style: italic;
}

/* ── 15c. Contact Form & Info ────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--omni-gold-subtle);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--omni-green);
    -webkit-mask: var(--icon-mask) no-repeat center / contain;
    mask: var(--icon-mask) no-repeat center / contain;
}

.contact-info__icon--email {
    --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23518465' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.contact-info__icon--location {
    --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23518465' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5-2.5 1.12-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-info__icon--globe {
    --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23518465' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.contact-info__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--omni-gold-dark);
    font-family: var(--font-secondary);
    margin-bottom: 3px;
}

.contact-info__value {
    font-size: 0.9375rem;
    color: var(--dark-grey);
}

.contact-info__value a {
    color: var(--omni-green);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition);
}

.contact-info__value a:hover {
    text-decoration-color: var(--omni-green);
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--omni-green);
    margin-bottom: 7px;
    font-family: var(--font-secondary);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(81, 132, 101, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    color: var(--text-body);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-color: var(--omni-green);
    box-shadow: 0 0 0 3px rgba(81, 132, 101, 0.10);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.contact-form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23518465' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__submit {
    margin-top: 8px;
}

.contact-form__char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--mid-grey);
    margin-top: 4px;
    font-family: var(--font-secondary);
}

.contact-form__char-count--limit {
    color: #c0392b;
    font-weight: 600;
}

/* ── Careers file upload ──────────────────────────────────── */
.careers-upload {
    position: relative;
    border: 2px dashed rgba(81, 132, 101, 0.30);
    border-radius: var(--radius-md);
    background: var(--off-white);
    transition: border-color var(--transition), background var(--transition);
    cursor: pointer;
}

.careers-upload--dragover {
    border-color: var(--omni-green);
    background: rgba(81, 132, 101, 0.06);
}

.careers-upload__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.careers-upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    gap: 6px;
    cursor: pointer;
}

.careers-upload__icon {
    display: block;
    width: 32px;
    height: 32px;
    color: var(--omni-green);
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.careers-upload__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--omni-green);
}

.careers-upload__sub {
    font-size: 0.78rem;
    color: var(--mid-grey);
}

.careers-upload__error {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #c0392b;
    font-weight: 500;
}

.form-success {
    display: none;
    background: rgba(81, 132, 101, 0.08);
    border: 1px solid rgba(81, 132, 101, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    color: var(--omni-green);
    font-size: 0.9375rem;
    margin-top: 16px;
}

/* ── 15. Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .navbar__nav       { display: none; }
    .navbar__hamburger { display: flex; }
}

@media (max-width: 1024px) {
    .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
    .teaser-cards--site { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --section-pad:    60px 20px;
        --section-pad-sm: 40px 20px;
        --footer-reg-logo-inset: 0;
        --footer-reg-logo-height: 80px;
        --footer-caanz-logo-height: 80px;
    }

    .cards-grid--3,
    .cards-grid--2      { grid-template-columns: 1fr; }
    .cards-grid--4      { grid-template-columns: 1fr; }

    .services-list      { columns: 1; }

    .clients-block .services-list {
        grid-template-columns: 1fr;
    }

    .footer__grid       { grid-template-columns: 1fr; gap: 28px; }

    .footer__registrations {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
        justify-items: center;
        gap: 12px;
        width: 100%;
    }

    .footer__reg-logo {
        height: auto;
        max-height: var(--footer-reg-logo-height);
        max-width: 100%;
        width: auto;
    }

    .footer__reg-logo[src*="caanz"] {
        height: auto;
        max-height: var(--footer-caanz-logo-height);
        max-width: 100%;
    }

    .footer__reg-asic {
        height: auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 5px 6px;
    }

    .footer__reg-asic-brand {
        font-size: clamp(0.75rem, 3.2vw, 1.1rem);
    }

    .footer__reg-asic-text {
        font-size: clamp(0.45rem, 2vw, 0.58rem);
    }

    .footer__reg-asic-num {
        font-size: clamp(0.62rem, 2.5vw, 0.82rem);
    }

    .hero               { padding: 76px 20px 64px; }

    .modal              { margin: 12px; border-radius: var(--radius-md); }
    .modal__header      { padding: 24px 24px 20px; }

    .modal--profile                 { flex-direction: column; max-height: 92vh; }
    .modal__image-panel             { width: 100%; height: 260px; flex-shrink: 0; }
    .modal__photo-placeholder       { min-height: 260px; }
    .modal--profile .modal__header  { padding: 28px 24px 20px; }
    .modal--profile .modal__body    { padding: 20px 24px 28px; }

    .teaser-cards,
    .teaser-cards--site    { grid-template-columns: 1fr; }
    .about-grid,
    .leadership             { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid           { grid-template-columns: 1fr; gap: 40px; }
    .contact-form__row      { grid-template-columns: 1fr; }
    .page-hero              { padding: 72px 20px 60px; }

    /* Inner page two-column layouts */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1fr 1.5fr"],
    [style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    .modal__body        { padding: 26px 24px 30px; }

    .hero__actions      { flex-direction: column; }
    .hero__actions .btn { text-align: center; }

    .section__header    { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    :root { --navbar-height: 62px; }
    .navbar__inner  { height: 62px; }
    .trust-banner__inner { flex-direction: column; gap: 24px; }
    .hero__badges   { gap: 16px; }
}

/* ── 16. Animation Keyframes ──────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}

/* ── 17. Scroll Animation Utilities ──────────────────────── */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.animate-hidden.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-hidden--delay-1 { transition-delay: 0.10s; }
.animate-hidden--delay-2 { transition-delay: 0.20s; }
.animate-hidden--delay-3 { transition-delay: 0.30s; }
.animate-hidden--delay-4 { transition-delay: 0.40s; }
.animate-hidden--delay-5 { transition-delay: 0.50s; }

/* ── 18. Hero Entrance Animations ─────────────────────────── */
.hero__eyebrow  { animation: fadeInLeft 0.70s          var(--ease) both; }
.hero__title    { animation: fadeInUp   0.85s 0.08s     var(--ease) both; }
.hero__subtitle { animation: fadeInUp   0.85s 0.18s     var(--ease) both; }
.hero__actions  { animation: fadeInUp   0.85s 0.28s     var(--ease) both; }
.hero__badges   { animation: fadeInUp   0.85s 0.42s     var(--ease) both; }

/* ── 19. Accessibility Utilities ──────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── 20. Legal / Policy Pages ─────────────────────────────── */
.legal-document {
    max-width: 72ch;
    margin: 0 auto;
}

.legal-document__meta {
    font-size: 0.9rem;
    color: var(--mid-grey);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-grey);
}

.legal-document__meta a {
    color: var(--omni-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document__toc {
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--omni-gold);
    padding: 24px 28px;
    margin-bottom: 48px;
}

.legal-document__toc h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--omni-green);
}

.legal-document__toc ol {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-document__toc a {
    color: var(--omni-green-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.92rem;
}

.legal-document__toc a:hover {
    color: var(--omni-green-dark);
}

.legal-document section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.legal-document h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--omni-green-dark);
}

.legal-document h3 {
    font-size: 1.05rem;
    margin: 20px 0 10px;
    color: var(--omni-green);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.legal-document p,
.legal-document li {
    font-size: 0.95rem;
    color: var(--dark-grey);
    max-width: none;
}

.legal-document p + p {
    margin-top: 12px;
}

.legal-document ul,
.legal-document ol {
    margin: 12px 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-document ul ul,
.legal-document ol ol {
    margin-top: 8px;
}

.legal-document a {
    color: var(--omni-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document a:hover {
    color: var(--omni-green-dark);
}

.legal-pdf-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-grey);
}

.legal-pdf-toolbar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

.legal-pdf-toolbar__links a {
    color: var(--omni-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-pdf-embed {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(81, 132, 101, 0.15);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.legal-pdf-embed__page {
    display: block;
    width: 100%;
    height: auto;
}

.legal-pdf-embed__page + .legal-pdf-embed__page {
    border-top: 1px solid rgba(81, 132, 101, 0.1);
}

.legal-pdf-embed__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 48px;
}

.legal-pdf-embed__error {
    padding: 48px 24px;
    text-align: center;
    color: var(--mid-grey);
}

.legal-document__notice {
    background: var(--omni-gold-subtle);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 0.92rem;
    color: var(--dark-grey);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.commitment-strip {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
}

.commitment-strip__intro {
    grid-column: 1;
    grid-row: 1;
}

.commitment-strip__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.commitment-strip__list--left {
    grid-column: 2;
    grid-row: 1;
}

.commitment-strip__list--right {
    grid-column: 3;
    grid-row: 1;
}

.commitment-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--dark-grey);
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--omni-gold);
}

.commitment-strip__item::before {
    content: '\2022';
    color: var(--omni-gold);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.text-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.text-bullet::before {
    content: '\2022';
    color: var(--omni-gold);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--dark-grey);
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--omni-gold);
}

.feature-list__item::before {
    content: '\2022';
    color: var(--omni-gold);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .commitment-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "intro intro"
            "left right";
    }

    .commitment-strip__intro {
        grid-area: intro;
    }

    .commitment-strip__list--left {
        grid-area: left;
    }

    .commitment-strip__list--right {
        grid-area: right;
    }
}

@media (max-width: 768px) {
    .commitment-strip {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "left"
            "right";
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .animate-hidden,
    .animate-hidden.in-view,
    .hero__eyebrow,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__badges,
    .hero::after,
    .cta-section::before {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

