/* =========================================================
   Truth Comes Full Circle — Australia Tour 2026
   Anonymous for the Voiceless
   Visual system carried over from the Week of Truth page.
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --av-red: #d81313;
    --av-red-dark: #a80e0e;
    --av-black: #000000;
    --av-dark: #0A0A0A;
    --av-gray: #1A1A1A;
    --av-gray-light: #2A2A2A;
    --av-white: #FFFFFF;
    --av-off-white: #F0F0F0;
    --av-text-muted: #999999;
    --av-text-dim: #666666;
    --font-heading: 'Source Sans 3', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--av-black);
    color: var(--av-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 44px;
    width: auto;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--av-black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('perth-hero-bg.jpg') center top / cover no-repeat;
    opacity: 0.25;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.17) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    max-width: 960px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--av-red);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 9.5vw, 118px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
}

.hero-with {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-off-white);
}

.hero-with strong {
    font-weight: 900;
}

.hero-location {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 14px;
    text-transform: uppercase;
    color: var(--av-white);
    margin-top: 40px;
    /* letter-spacing pushes the block off-centre; pull it back */
    text-indent: 14px;
}

.hero-date-badge {
    display: inline-block;
    background: var(--av-red);
    color: var(--av-white);
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: 3px;
    padding: 6px 28px;
    margin: 18px 0 40px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--av-red);
    color: var(--av-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 42px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--av-white);
    color: var(--av-black);
    transform: translateY(-2px);
}

.hero-cta.is-ghost {
    background: transparent;
    border: 2px solid var(--av-white);
    padding: 16px 40px;
}

.hero-cta.is-ghost:hover {
    background: var(--av-white);
    color: var(--av-black);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--av-white);
    opacity: 0.5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ---------- Countdown ---------- */
.countdown-section {
    background: var(--av-red);
    padding: 40px 20px;
}

.countdown-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    gap: 32px;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.countdown-unit-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

/* ---------- Section basics ---------- */
.section {
    padding: 100px 40px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--av-red);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--av-off-white);
    max-width: 700px;
}

.section-text+.section-text {
    margin-top: 20px;
}

.section-text a,
.inline-link {
    color: var(--av-red);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.section-text a:hover,
.inline-link:hover {
    border-bottom-color: var(--av-red);
}

/* ---------- About ---------- */
.about-section {
    background: var(--av-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--av-white);
}

.about-image img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s;
}

.about-image:hover img {
    filter: grayscale(0%);
}

/* Three big numbers: 5 cubes / 5 masterclasses / 5 sanctuaries */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
}

.stat-cell {
    background: var(--av-gray);
    padding: 28px 18px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: var(--av-red);
}

.stat-caption {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--av-text-muted);
    margin-top: 10px;
}

/* ---------- Event details cards ---------- */
.details-section {
    background: var(--av-black);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.detail-card {
    background: var(--av-gray);
    padding: 48px 36px;
    text-align: center;
    transition: background 0.3s;
}

.detail-card:hover {
    background: var(--av-gray-light);
}

.detail-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    stroke: var(--av-red);
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-text-muted);
    margin-bottom: 12px;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-sub {
    font-size: 14px;
    color: var(--av-text-muted);
    margin-top: 8px;
}

/* ---------- Schedule ---------- */
.schedule-section {
    background: var(--av-dark);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.schedule-card {
    background: var(--av-gray);
    padding: 40px 32px;
    border-left: 4px solid var(--av-red);
    display: flex;
    flex-direction: column;
}

.schedule-card-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-text-dim);
    margin-bottom: 10px;
}

.schedule-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.schedule-card-date {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--av-red);
    margin-bottom: 20px;
}

.schedule-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--av-off-white);
}

.schedule-card-text+.schedule-card-text {
    margin-top: 14px;
}

.schedule-card-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    font-size: 15px;
    color: var(--av-text-muted);
}

.schedule-card-detail.is-pending {
    font-style: italic;
    opacity: 0.75;
}

.schedule-card-detail svg {
    width: 18px;
    height: 18px;
    stroke: var(--av-red);
    flex-shrink: 0;
    margin-top: 4px;
}

.schedule-card-note {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(216, 19, 19, 0.08);
    border-left: 3px solid var(--av-red);
    font-size: 14px;
    line-height: 1.7;
    color: var(--av-off-white);
}

.schedule-card-note a {
    color: var(--av-red);
    text-decoration: none;
    font-weight: 700;
}

.schedule-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--av-red);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: gap 0.3s;
    align-self: flex-start;
}

.schedule-card-link:hover {
    gap: 14px;
}

.schedule-card-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.schedule-card-links .schedule-card-link {
    margin-top: 0;
    padding-top: 0;
}

.schedule-card-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ---------- Map ---------- */
.map-section {
    background: var(--av-black);
    padding: 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.map-info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-address {
    margin-top: 32px;
}

.map-address-line {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--av-off-white);
}

.map-address-line.is-pending {
    color: var(--av-text-muted);
    font-style: italic;
}

.map-address-line svg {
    width: 20px;
    height: 20px;
    stroke: var(--av-red);
    flex-shrink: 0;
    margin-top: 3px;
}

.map-address-line strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--av-white);
    margin-bottom: 2px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--av-red);
    color: var(--av-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all 0.3s;
}

.map-link:hover {
    background: var(--av-white);
    color: var(--av-black);
}

.map-note {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--av-text-muted);
}

.map-directions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

#map {
    height: 100%;
    min-height: 460px;
    background: var(--av-gray);
}

/* The basemap is CARTO dark_all, which is dark out of the box — no tile-pane
   filter needed here (see main.js). */
.leaflet-container {
    background: var(--av-gray);
}

.leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--av-text-muted) !important;
    font-size: 11px;
}

.leaflet-control-attribution a {
    color: var(--av-off-white) !important;
}

.leaflet-bar a {
    background: var(--av-gray) !important;
    color: var(--av-white) !important;
    border-bottom-color: var(--av-gray-light) !important;
}

.leaflet-bar a:hover {
    background: var(--av-gray-light) !important;
}

/* ---------- Tour (five cities) ---------- */
.tour-section {
    background: var(--av-dark);
}

.tour-list {
    margin-top: 56px;
    border-top: 1px solid var(--av-gray);
}

/* Each city is a native <details>, so the panels work without JS. */
.tour-item {
    border-bottom: 1px solid var(--av-gray);
    border-left: 4px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.tour-item.is-live {
    border-left-color: var(--av-red);
    background: rgba(216, 19, 19, 0.06);
}

.tour-row {
    display: grid;
    grid-template-columns: 190px 1fr auto auto;
    align-items: center;
    gap: 32px;
    padding: 26px 24px 26px 20px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s;
}

.tour-row::-webkit-details-marker {
    display: none;
}

.tour-row:hover {
    background: var(--av-gray);
}

.tour-item.is-live .tour-row:hover {
    background: rgba(216, 19, 19, 0.12);
}

.tour-row:focus-visible {
    outline: 2px solid var(--av-red);
    outline-offset: -2px;
}

.tour-chevron {
    width: 22px;
    height: 22px;
    stroke: var(--av-text-dim);
    flex-shrink: 0;
    transition: transform 0.3s, stroke 0.3s;
}

.tour-row:hover .tour-chevron {
    stroke: var(--av-white);
}

.tour-item[open]>.tour-row .tour-chevron {
    transform: rotate(180deg);
    stroke: var(--av-red);
}

.tour-date {
    display: inline-block;
    background: var(--av-red);
    color: var(--av-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 10px;
    white-space: nowrap;
}

.tour-item:not(.is-live) .tour-date {
    background: var(--av-gray-light);
    color: var(--av-text-muted);
}

.tour-city {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.6vw, 44px);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--av-text-dim);
    transition: color 0.3s;
}

.tour-item.is-live .tour-city,
.tour-item[open] .tour-city {
    color: var(--av-white);
    font-weight: 700;
}

.tour-status {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--av-text-dim);
    text-align: right;
    white-space: nowrap;
}

.tour-item.is-live .tour-status {
    color: var(--av-red);
}

/* ---------- Tour city panel ---------- */
.tour-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px 40px;
    padding: 4px 24px 36px 20px;
}

.tour-slot {
    border-left: 2px solid var(--av-gray-light);
    padding-left: 18px;
}

.tour-item.is-live .tour-slot {
    border-left-color: var(--av-red-dark);
}

.tour-slot-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-red);
    margin-bottom: 12px;
}

.tour-slot-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--av-off-white);
    margin-bottom: 8px;
}

.tour-slot-line svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--av-red);
}

.tour-slot-line.is-pending {
    color: var(--av-text-muted);
    font-style: italic;
}

.tour-slot-line.is-pending svg {
    stroke: var(--av-text-dim);
}

.tour-slot-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--av-white);
    text-decoration: none;
    border-bottom: 1px solid var(--av-red);
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.tour-slot-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.tour-slot-link:hover {
    color: var(--av-red);
    border-bottom-color: var(--av-white);
}

.tour-item.is-past .tour-city {
    color: var(--av-text-dim);
    font-weight: 400;
}

.tour-item.is-past .tour-date {
    opacity: 0.55;
}

.tour-item.is-past .tour-status {
    color: var(--av-text-dim);
}

/* ---------- Wrap-up: the tour is over ---------- */
/* Nothing is promoted any more, so the single-city sections and the
   countdown come off the page and the tour list becomes the overview. */
.is-tour-over #countdown-section,
.is-tour-over #details,
.is-tour-over #schedule,
.is-tour-over #location,
.is-tour-over #footer-weekend-link,
.is-tour-over .faq-item[data-when="upcoming"] {
    display: none;
}

.is-tour-over .hero-location {
    color: var(--av-text-muted);
}

/* The "full weekend" link sits in the panel grid without a slot rule. */
.tour-slot-more {
    border-left-color: transparent;
    display: flex;
    align-items: flex-start;
}

.tour-note {
    margin-top: 32px;
    font-size: 15px;
    color: var(--av-text-muted);
}

/* ---------- Fundraiser ---------- */
.fund-section {
    background: var(--av-black);
    position: relative;
    overflow: hidden;
}

.fund-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216, 19, 19, 0.10) 0%, transparent 55%);
    pointer-events: none;
}

.fund-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

.fund-progress {
    margin: 36px 0 8px;
}

.fund-bar {
    height: 14px;
    background: var(--av-gray-light);
    overflow: hidden;
}

.fund-bar-fill {
    height: 100%;
    width: 0;
    background: var(--av-red);
    transition: width 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fund-figures {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-top: 14px;
    font-family: var(--font-heading);
}

.fund-raised {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.fund-goal {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--av-text-muted);
}

.fund-uses-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-text-muted);
    margin-top: 36px;
}

.fund-uses {
    list-style: none;
    margin-top: 12px;
}

.fund-uses li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--av-gray);
    font-size: 15px;
    line-height: 1.7;
    color: var(--av-off-white);
}

.fund-uses li:last-child {
    border-bottom: none;
}

.fund-uses svg {
    width: 18px;
    height: 18px;
    stroke: var(--av-red);
    flex-shrink: 0;
    margin-top: 4px;
}

.fund-match {
    margin-top: 28px;
    padding: 24px 26px;
    background: rgba(216, 19, 19, 0.08);
    border-left: 3px solid var(--av-red);
}

.fund-match-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--av-red);
    margin-bottom: 14px;
}

.fund-match p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--av-off-white);
}

.fund-match p+p {
    margin-top: 12px;
}

.fund-match strong {
    color: var(--av-white);
}

.fund-closing {
    margin-top: 28px;
}

.fund-charity {
    font-size: 13px;
    color: var(--av-text-muted);
    margin-top: 24px;
}

.fund-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--av-red);
    color: var(--av-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 20px 52px;
    margin-top: 32px;
    transition: all 0.3s;
}

.fund-btn:hover {
    background: var(--av-white);
    color: var(--av-black);
    transform: translateY(-2px);
}

.fund-widget {
    position: relative;
}

.fund-widget-inner {
    background: var(--av-gray);
    border-top: 4px solid var(--av-red);
    padding: 8px 8px 0;
}

.fund-btn-mobile {
    display: none;
}

/* ---------- Connect ---------- */
.connect-section {
    background: var(--av-gray);
    border-top: 4px solid var(--av-red);
    border-bottom: 4px solid var(--av-red);
}

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

.connect-inner .section-text {
    margin: 0 auto 48px;
}

.connect-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--av-red);
    color: var(--av-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: all 0.3s;
}

.connect-btn:hover {
    background: var(--av-white);
    color: var(--av-black);
    transform: translateY(-2px);
}

.connect-btn.is-ghost {
    background: transparent;
    border: 2px solid var(--av-gray-light);
    padding: 14px 34px;
}

.connect-btn.is-ghost:hover {
    background: var(--av-white);
    border-color: var(--av-white);
    color: var(--av-black);
}

.connect-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ---------- What to expect ---------- */
.expect-section {
    background: var(--av-black);
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.expect-list {
    list-style: none;
}

.expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--av-gray);
    font-size: 15px;
    line-height: 1.7;
    color: var(--av-off-white);
}

.expect-list li:last-child {
    border-bottom: none;
}

.expect-check {
    width: 20px;
    height: 20px;
    stroke: var(--av-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.expect-closing {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--av-white);
}

.expect-image {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--av-white);
}

.expect-image img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

/* ---------- Briefing video ---------- */
.video-section {
    background: var(--av-dark);
}

.video-container {
    max-width: 800px;
    margin: 48px auto 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 2px solid var(--av-gray-light);
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.video-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--av-text-muted);
}

/* ---------- FAQ ---------- */
.faq-section {
    background: var(--av-black);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--av-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--av-white);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--av-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--av-red);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    /* Roomy enough for the longest multi-paragraph answer on a narrow screen. */
    max-height: 760px;
    padding-bottom: 28px;
}

.faq-answer-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--av-text-muted);
}

.faq-answer-text+.faq-answer-text {
    margin-top: 14px;
}

.faq-answer-text a {
    color: var(--av-red);
    text-decoration: none;
    font-weight: 700;
}

/* ---------- Closing CTA ---------- */
.cta-section {
    background: var(--av-black);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('perth-hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.20;
    filter: grayscale(100%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--av-text-muted);
    margin-bottom: 48px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--av-white);
    color: var(--av-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 48px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--av-white);
    color: var(--av-black);
    transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--av-black);
    border-top: 1px solid var(--av-gray);
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--av-text-muted);
    margin-top: 20px;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--av-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--av-gray-light);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--av-red);
    background: var(--av-red);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--av-white);
}

.footer-bottom {
    border-top: 1px solid var(--av-gray);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--av-text-muted);
}

.footer-bottom a {
    color: var(--av-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--av-white);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-scroll {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .map-content {
        grid-template-columns: 1fr;
    }

    #map {
        height: 380px;
        min-height: 380px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .expect-image {
        order: -1;
    }

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

    .fund-widget {
        display: flex;
        justify-content: center;
    }

    .fund-widget-inner {
        width: 100%;
        max-width: 500px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 24px;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-location {
        letter-spacing: 8px;
        text-indent: 8px;
    }

    .countdown-inner {
        flex-direction: column;
        gap: 20px;
    }

    .countdown-timer {
        gap: 20px;
    }

    .countdown-number {
        font-size: 32px;
    }

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

    .map-info {
        padding: 48px 24px;
    }

    .tour-row {
        grid-template-columns: auto 1fr auto;
        gap: 8px 20px;
        padding: 22px 16px;
    }

    .tour-city {
        letter-spacing: 5px;
    }

    /* Date, city and chevron share the first row; the status drops below. */
    .tour-chevron {
        grid-column: 3;
        grid-row: 1;
    }

    .tour-status {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }

    .tour-detail {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px 28px 16px;
    }

    .fund-widget {
        display: none;
    }

    .fund-btn-mobile {
        display: inline-flex;
    }

    .connect-buttons {
        flex-direction: column;
        align-items: center;
    }

    .connect-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -1px;
    }

    /* Long city names have to clear the date badge and the chevron. */
    .tour-city {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .tour-row {
        gap: 8px 14px;
    }

    .hero-date-badge {
        letter-spacing: 2px;
        padding: 6px 18px;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .fund-raised {
        font-size: 24px;
    }
}
