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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;

    /* Sunset palette, sampled from WavForm's own event artwork:
       the SUN//SET sun is red and gold, recent posters add electric blue. */
    --sun-gold: #ffcc00;
    --sun-orange: #ee9000;
    --sun-red: #ec221f;
    --electric: #0092ff;

    /* Default accent — individual concepts override it locally. */
    --accent: var(--sun-gold);

    --display: 'Concert One', 'Archivo', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    --body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--body);
    background: var(--dark-bg);
    color: var(--gray-100);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Display face stays on the things that carry the brand's voice. */
.logo h1,
.hero-text h1,
.page-title,
.slash-title,
.event-title,
.video-title,
.contact-card-title,
.concept-name,
.service-name,
.manifesto,
.pull-quote,
.cta-text,
.activities h3 {
    font-family: var(--display);
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 61px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.015) 60px,
            rgba(255, 255, 255, 0.015) 61px
        );
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--gray-800);
    z-index: 1000;
}

.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--white) 50%,
        transparent
    );
    opacity: 0.15;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-svg {
    height:64px;
    width: auto;
    filter: invert(1);
    transition: opacity 0.2s ease;
}

.logo-svg:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
}

.logo .form {
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link {
    font-weight: 600;
    padding-bottom: 2px;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--white);
}

/* Active tab gets a sunset underline rather than a colour change alone,
   so it still reads as selected for anyone who cannot separate the hues. */
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--sun-red), var(--sun-gold));
}

/* Language switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: none;
    font-family: var(--body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.lang-btn {
    color: var(--gray-500);
    text-decoration: none;
    padding: 0.2rem 0.1rem;
    transition: color 0.2s ease;
}

.lang-btn:hover {
    color: var(--gray-300);
}

.lang-btn.is-active {
    color: var(--white);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--sun-gold);
    outline-offset: 2px;
}

.lang-sep {
    color: var(--sun-gold);
}

/* Page Sections
   The body is a column flexbox so the active section grows to fill the
   viewport and the footer sits directly below the content — short pages no
   longer leave a screen of empty black above it. */
.page {
    display: none;
    padding-top: 80px;
}

.page.active {
    display: block;
    flex: 1 0 auto;
}

/* Home Page */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow,
.hero-video-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.hero-eyebrow .sl,
.hero-video-label .sl {
    color: var(--sun-gold);
}

.hero-title {
    font-size: clamp(2.1rem, 5.2vw, 3.4rem);
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

/* Highlighted words carry the sunset without a gradient on the whole line. */
.hl { position: relative; white-space: nowrap; }
.hl--gold { color: var(--sun-gold); }
.hl--red  { color: var(--sun-red); }

.hero-sub {
    color: var(--gray-400);
    font-size: 1.03125rem;
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 2rem;
}

.hero-video .video-wrapper {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        padding-bottom: 0;
    }
}

/* --- What we do strip --- */
.home-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.slash-title--sm {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    margin-bottom: 1.5rem;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.strip-card {
    --accent: var(--sun-gold);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-bottom: 4px solid var(--accent);
    padding: 1.5rem;
    min-height: 200px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.strip-card--gold { --accent: var(--sun-gold); }
.strip-card--red  { --accent: var(--sun-red); }
.strip-card--blue { --accent: var(--electric); }

.strip-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.strip-title {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    align-self: flex-start;
}

/* Each card's slashes pick up its own accent. */
.strip-card .sl { color: var(--accent); }

/* Arrow sits with the description and steps right on hover. */
.strip-text::after {
    /* Non-breaking space: a plain leading space collapses in ::after. */
    content: '\00a0\00a0→';
    color: var(--accent);
    display: inline-block;
    transition: transform 0.2s ease;
}

.strip-card:hover .strip-text::after {
    transform: translateX(4px);
}

.strip-text {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: auto;
}

.strip-card:hover .strip-text { color: var(--gray-300); }

@media (prefers-reduced-motion: reduce) {
    .strip-card:hover { transform: none; }
}

.video-wrapper {
    margin-bottom: 4rem;
    background: var(--black);
    border: 1px solid var(--gray-800);
    position: relative;
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, var(--white) 50%);
    opacity: 0.1;
    z-index: 10;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 80px;
    height: 80px;
    background: linear-gradient(-45deg, transparent 50%, var(--gray-800) 50%);
    z-index: 10;
    pointer-events: none;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-text {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gray-700));
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 40px;
    height: 1px;
    background: var(--gray-800);
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--white);
}

.hero-text p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.social-links {
    display: flex;
    /* Three buttons with non-wrapping labels overflow the narrower hero
       column, so let the row itself wrap instead. */
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.social-btn {
    padding: 0.75rem 2rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid var(--white);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    background: transparent;
    color: var(--white);
}

/* Primary action on the hero — the sunset, not another white button. */
.social-btn--solid {
    background: linear-gradient(95deg, var(--sun-red), var(--sun-orange) 70%, var(--sun-gold));
    border-color: transparent;
    color: var(--black);
    font-weight: 700;
}

.social-btn--solid:hover {
    background: var(--sun-gold);
    color: var(--black);
}

/* Events Page */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
}

.page-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-red), var(--sun-orange), var(--sun-gold));
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 65px;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--gray-600), transparent);
    transform: skewX(-45deg);
    transform-origin: left;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.event-card {
    border: 1px solid var(--gray-800);
    padding: 0;
    transition: all 0.2s ease;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.event-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.08) 50%);
}

.event-card:hover::after {
    width: 100%;
}

.event-card:hover {
    border-color: var(--white);
}

.event-card.past {
    opacity: 0.4;
}

.event-card.past .event-title {
    text-decoration: line-through;
}

.event-logo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: var(--gray-900);
}

.event-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.event-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.event-detail {
    display: flex;
    color: var(--gray-500);
}

.event-detail strong {
    color: var(--gray-300);
    margin-right: 0.75rem;
    min-width: 70px;
    font-weight: 500;
}

.event-location-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-location-link:hover {
    text-decoration: none;
}

.event-fee {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, var(--sun-red), var(--sun-orange));
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.event-fee.free {
    background: var(--gray-700);
    color: var(--white);
}

/* Videos Page */
.videos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--black);
    border: 1px solid var(--gray-800);
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.01) 20px,
        rgba(255, 255, 255, 0.01) 40px
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
    border-color: var(--white);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--gray-900);
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.02);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-card:hover .video-play-overlay {
    background: rgba(255, 255, 255, 1);
}

.video-play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid var(--black);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.video-info {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.video-title {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-date {
    color: var(--gray-500);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ================================================================
   Concepts & Services / Who we are
   ================================================================ */

.prose-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* The slash-wrapped heading is WavForm's own notation — the concept
   names already read SUN//SET — so it becomes the section device. */
.slash-title {
    font-size: clamp(1.9rem, 5vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 0.75rem;
    text-wrap: balance;
}

.slash-title .sl {
    color: var(--accent);
}

/* The slashes that WRAP a heading need air around the word. The // inside a
   name like SUN//SET must stay tight, so only slashes that are the first or
   last child of a title element get the margin. */
.slash-title > .sl:first-child,
.strip-title > .sl:first-child,
.next-title > .sl:first-child,
.hero-eyebrow > .sl:first-child,
.hero-video-label > .sl:first-child {
    margin-right: 0.34em;
}

.slash-title > .sl:last-child,
.strip-title > .sl:last-child,
.next-title > .sl:last-child,
.hero-eyebrow > .sl:last-child,
.hero-video-label > .sl:last-child {
    margin-left: 0.34em;
}

/* Default breathing room under a section heading; tightened when an intro
   paragraph follows, since that carries its own bottom margin. */
.slash-title { margin-bottom: 2rem; }
.slash-title:has(+ .section-intro) { margin-bottom: 0.75rem; }

.slash-title + .section-intro {
    color: var(--gray-400);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    max-width: 60ch;
}

/* Slashes inside running text and concept names */
.sl {
    color: var(--accent);
    font-weight: inherit;
}

/* --- Concepts --- */
.concept-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.concept {
    --accent: var(--sun-gold);
    position: relative;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-left: 4px solid var(--accent);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 1.5rem 2.5rem;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.concept--gold   { --accent: var(--sun-gold); }
.concept--orange { --accent: var(--sun-orange); }
.concept--red    { --accent: var(--sun-red); }
.concept--blue   { --accent: var(--electric); }

/* Concentric ripples — the site is called WavForm, so the ornament is
   a waveform rather than a generic flourish. */
.concept::after {
    content: '';
    position: absolute;
    /* Sits in the lower-left, filling the space beside the name rather than
       washing out the body copy on the right. */
    left: -90px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0 12px,
        color-mix(in srgb, var(--accent) 22%, transparent) 12px 13px
    );
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.concept:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.concept:hover::after { opacity: 0.75; }

.concept-head { position: relative; z-index: 2; }

.concept-logo {
    display: block;
    width: auto;
    margin-bottom: 1.1rem;
}

.concept-logo--wide   { height: 76px; }
.concept-logo--square { height: 104px; }

/* Temporary marker on the two logos that are still placeholders. Delete this
   rule, and the is-placeholder class in the markup, once both are replaced —
   dropping in the real files needs no other change. */
.is-placeholder {
    opacity: 0.85;
}

.concept-name {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    /* Long names break only at the <wbr> after each //, never mid-word. */
    overflow-wrap: break-word;
    margin-bottom: 0.75rem;
}

.concept-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    padding: 0.3rem 0.6rem;
    transform: rotate(-1.5deg);
}

.concept-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
}

.concept-body p {
    color: var(--gray-300);
    font-size: 0.9875rem;
    line-height: 1.7;
}

/* The invitation at the end of each concept — the thing we want read. */
.concept-cta {
    color: var(--white);
    font-weight: 600;
    border-left: 3px solid var(--accent);
    padding-left: 0.85rem;
}

.concept-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border-bottom: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.concept-link::after { content: ' ↗'; }
.concept-link:hover { border-bottom-color: var(--accent); }

/* --- Ticker: the one piece of ambient motion on the page --- */
.ticker {
    overflow: hidden;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    padding: 0.85rem 0;
    margin-bottom: 3.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
}

.ticker-track span {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    white-space: nowrap;
    padding-right: 1rem;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --- Link on to the next page --- */
.next-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-left: 4px solid var(--sun-orange);
    padding: 1.5rem 1.75rem;
    margin-bottom: 3.5rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.next-link:hover {
    border-color: var(--sun-orange);
    transform: translateX(3px);
}

.next-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.next-title {
    font-family: var(--display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
}

.next-title .sl { color: var(--sun-orange); }
.next-title::after { content: ' →'; color: var(--sun-orange); }

.next-text {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

@media (prefers-reduced-motion: reduce) {
    .next-link:hover { transform: none; }
}

/* --- Services --- */
/* Two columns, so four services sit as a balanced 2x2 rather than
   leaving a single orphan card on the second row. */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 700px) {
    .service-grid { grid-template-columns: 1fr; }
}

.service {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.service::before {
    content: '';
    display: block;
    width: 34px;
    height: 3px;
    background: var(--sun-red);
    margin-bottom: 1rem;
}

.service:nth-child(2)::before { background: var(--sun-orange); }
.service:nth-child(3)::before { background: var(--sun-gold); }
.service:nth-child(4)::before { background: var(--electric); }

.service:hover {
    border-color: var(--gray-600);
    background: var(--black);
}

.service-name {
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.15;
}

.service p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* --- Call to action --- */
.cta-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem;
    background: linear-gradient(100deg, var(--sun-red), var(--sun-orange) 55%, var(--sun-gold));
    color: var(--black);
}

.cta-text {
    font-size: clamp(1.35rem, 3.5vw, 1.9rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--black);
}

.cta-btn {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 2px solid var(--black);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: transparent;
    color: var(--black);
}

/* --- Who we are --- */
.manifesto {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.75rem;
    max-width: 22ch;
    text-wrap: balance;
}

.prose {
    max-width: 62ch;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.prose p {
    color: var(--gray-300);
    font-size: 1.03125rem;
    line-height: 1.75;
}

/* Scoped to .prose so it outranks ".prose p", which would otherwise win on
   specificity and flatten this back to body copy. */
.prose .pull-quote {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    line-height: 1.25;
    color: var(--sun-gold);
    text-transform: uppercase;
    border-left: 4px solid var(--sun-gold);
    padding-left: 1.1rem;
    margin: 0.5rem 0;
}

.activities {
    list-style: none;
    counter-reset: act;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.activities li {
    counter-increment: act;
    position: relative;
    background: var(--black);
    border: 1px solid var(--gray-800);
    padding: 1.75rem 1.5rem 1.5rem;
}

.activities li::before {
    content: counter(act);
    position: absolute;
    top: -0.85rem;
    left: 1.25rem;
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1;
    color: var(--black);
    background: var(--sun-gold);
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    transform: rotate(-3deg);
}

.activities li:nth-child(2)::before { background: var(--electric); }

.activities h3 {
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.activities p {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

@media (max-width: 820px) {
    .concept {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .concept::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
    .concept:hover { transform: none; }
}

/* Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-card {
    border: 1px solid var(--gray-800);
    border-top: 4px solid var(--sun-gold);
    background: var(--black);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.contact-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.08) 50%);
}

.contact-card:hover::after {
    width: 100%;
}

.contact-card:hover {
    border-color: var(--sun-gold);
}

.contact-grid > .contact-card:nth-child(2) {
    border-top-color: var(--electric);
}

.contact-grid > .contact-card:nth-child(2):hover {
    border-color: var(--electric);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.contact-card-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.contact-email {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    border: 1px solid var(--white);
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.contact-email:hover {
    background: transparent;
    color: var(--white);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--gray-800);
    background: var(--black);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: invert(1);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-list a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-900);
    padding: 1.5rem 2rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.6rem 0.75rem;
        position: relative;
    }

    /* Sits beside the logo on the top row rather than adding a third row. */
    .lang-switch {
        position: absolute;
        top: 0.75rem;
        right: 0.9rem;
    }

    /* Must clear the stacked header on phones: logo row plus two rows of
       links. Measured at 105px, with headroom for font-loading shifts. */
    .page {
        padding-top: 122px;
    }
    
    .logo-svg {
        height: 28px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    /* Five items at the desktop size overflow a phone, and the body's
       overflow-x:hidden clips the first and last rather than scrolling.
       Tighten them so the whole row fits on one line. */
    /* Six items do not fit one phone-width row, and the Dutch labels are
       longer again (CONCEPTEN, DIENSTEN, OVER ONS). Wrap onto two centred
       rows so nothing is hidden in either language. */
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 0.9rem;
        width: 100%;
    }

    .nav-link {
        font-size: 0.6875rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .prose-container {
        padding: 2rem 1.25rem;
    }

    .concept {
        padding: 1.35rem;
    }

    .cta-band {
        padding: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-grid,
    .videos-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Wrap rather than stack: three full-width buttons pushed the video
       well below the fold on a phone. */
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.6rem;
        width: 100%;
    }

    .social-btn {
        flex: 1 1 auto;
        text-align: center;
        padding: 0.7rem 1.1rem;
        font-size: 0.8125rem;
    }

    .hero-container {
        padding: 1.5rem 1.25rem 0;
    }

    .home-strip {
        padding: 2.5rem 1.25rem 2rem;
    }

    /* Stacked cards do not need to match heights, so drop the min-height and
       the push-to-bottom that leave a gap in the middle of each one. */
    .strip-card {
        min-height: 0;
        gap: 0.75rem;
    }

    .strip-text {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        font-size: 0.8125rem;
    }
}
