/* ==========================================================
   fliegende KÖCHE — Kampagnen-Teaser
   Design: Editorial Mix (Hell-Basis + Dark-Sections)
   ========================================================== */

:root {
    /* Palette */
    --ink: #0f0f0e;
    --ink-soft: #1c1b19;
    --bg: #faf8f4;
    --cream: #f0ede4;
    --cream-deep: #e6e1d4;
    --dark: #131210;
    --dark-deep: #0a0907;
    --accent: #b8895a;      /* Kupfer-Bronze */
    --accent-deep: #8f6841;
    --accent-soft: #d8b892;
    --muted: #8a847a;
    --line: rgba(15, 15, 14, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);

    /* Typo */
    --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --font-sans: "Inter", "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;

    /* Rhythm */
    --section-pad: clamp(80px, 12vw, 160px);
    --container: 1360px;
    --radius: 4px;
    --radius-lg: 14px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

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

/* ==========================================================
   Typography
   ========================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h1 {
    font-size: clamp(40px, 6.4vw, 92px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
}

h2 {
    font-size: clamp(32px, 4.8vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h3 {
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
}

h4 {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.3;
}

p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.lead {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 400;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.no-line::before { display: none; }

/* ==========================================================
   Layout
   ========================================================== */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

section {
    position: relative;
}

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

section.dark {
    background: var(--dark);
    color: #ede9df;
}

section.dark h1,
section.dark h2,
section.dark h3,
section.dark h4 {
    color: #faf8f4;
}

section.dark p {
    color: #c3bdb0;
}

section.cream { background: var(--cream); }

/* ==========================================================
   Header / Navigation
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px clamp(20px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    background: rgba(250, 248, 244, 0.94);
    backdrop-filter: saturate(1.1) blur(12px);
    -webkit-backdrop-filter: saturate(1.1) blur(12px);
    padding: 14px clamp(20px, 4vw, 56px);
    box-shadow: 0 1px 0 var(--line);
}

.site-header .logo img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
}

.site-header .logo .logo-dark { display: none; }
.site-header.scrolled .logo .logo-light { display: none; }
.site-header.scrolled .logo .logo-dark { display: block; }

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

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #faf8f4;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.site-header.scrolled .nav-links a { color: var(--ink); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #faf8f4;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.site-header.scrolled .nav-cta {
    border-color: var(--ink);
    color: var(--ink);
}

.site-header.scrolled .nav-cta:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 19px; }

.site-header.scrolled .nav-toggle span { background: var(--ink); }

body.nav-open .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span:nth-child(1) { top: 15px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* ==========================================================
   Buttons
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 34px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(143, 104, 65, 0.28);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--ink);
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: #fff;
}

.btn-ghost {
    padding: 12px 0;
    background: transparent;
    color: var(--ink);
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
}

.btn-ghost::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-ghost:hover::after { transform: translateX(6px); }

/* ==========================================================
   Hero (Home)
   ========================================================== */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 9, 7, 0.55) 0%,
        rgba(10, 9, 7, 0.35) 40%,
        rgba(10, 9, 7, 0.7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
}

.hero .eyebrow {
    color: var(--accent-soft);
    margin-bottom: 28px;
}

.hero .eyebrow::before { background: var(--accent-soft); }

.hero h1 {
    color: #fff;
    margin-bottom: 28px;
    font-weight: 400;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 400;
}

.hero-subline {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.3vw, 18px);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 48px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding-bottom: 80px;
}

.hero-scroll::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 2.2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Page Hero (sub-pages) */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 180px 0 100px;
    overflow: hidden;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,9,7,0.7) 0%, rgba(10,9,7,0.4) 100%);
}

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

.page-hero h1 {
    color: #fff;
    max-width: 900px;
    margin-bottom: 24px;
}

.page-hero .lead {
    color: rgba(255,255,255,0.9);
    max-width: 640px;
}

.page-hero .eyebrow {
    color: var(--accent-soft);
    margin-bottom: 24px;
}

.page-hero .eyebrow::before { background: var(--accent-soft); }

/* ==========================================================
   Trust Bar
   ========================================================== */

.trust-bar {
    background: var(--dark);
    color: #ede9df;
    padding: 56px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-stat .num {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.6vw, 56px);
    font-weight: 500;
    color: var(--accent-soft);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.trust-stat .label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* Logo Marquee */
.logo-marquee {
    padding: 48px 0;
    background: var(--dark);
    color: #fff;
    border-top: 1px solid var(--line-dark);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

.marquee-track {
    display: flex;
    gap: 80px;
    animation: marquee 38s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-track span:hover { color: var(--accent-soft); }

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

/* ==========================================================
   Section Heading Block
   ========================================================== */

.section-head {
    max-width: 760px;
    margin: 0 0 80px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 24px;
}

.section-head h2 {
    margin-bottom: 24px;
}

/* ==========================================================
   3 Säulen (Pillar Cards)
   ========================================================== */

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

.pillar {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ink);
    cursor: pointer;
    isolation: isolate;
}

.pillar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(0.75);
}

.pillar:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

.pillar-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    z-index: 2;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}

.pillar-num {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.32em;
    color: var(--accent-soft);
    margin-bottom: 12px;
}

.pillar h3 {
    color: #fff;
    margin-bottom: 14px;
    font-weight: 400;
}

.pillar p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.pillar-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pillar-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-link::after { transform: translateX(6px); }

/* ==========================================================
   Content Split (Image + Text)
   ========================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.split.reverse .split-media { order: 2; }

.split-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content .eyebrow { margin-bottom: 20px; }
.split-content h2 { margin-bottom: 24px; }
.split-content p { margin-bottom: 20px; }
.split-content .btn-ghost { margin-top: 16px; }

/* ==========================================================
   Feature Grid (Leistungen)
   ========================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 48px;
}

.feature-item {
    padding: 0;
}

.feature-num {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.feature-item h3 {
    margin-bottom: 14px;
    font-weight: 500;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.65;
}

/* ==========================================================
   Locations (Cards)
   ========================================================== */

.locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.location-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--ink);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.location-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.82);
}

.location-card-content {
    position: absolute;
    inset: 0;
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.78) 100%);
}

.location-card h3 {
    color: #fff;
    font-size: clamp(24px, 2.4vw, 32px);
    margin-bottom: 6px;
}

.location-card .meta {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 14px;
}

.location-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.55;
    max-width: 420px;
}

/* ==========================================================
   Event Type Selector (Qualifier Teaser)
   ========================================================== */

.event-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-type {
    padding: 48px 32px;
    background: var(--bg);
    border: 1px solid var(--line);
    text-align: left;
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.event-type:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,15,14,0.08);
}

.event-type .num {
    font-family: var(--font-serif);
    font-size: 13px;
    letter-spacing: 0.28em;
    color: var(--accent);
    margin-bottom: 20px;
}

.event-type h3 {
    margin-bottom: 14px;
    font-size: 28px;
}

.event-type p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 24px;
    flex: 1;
}

.event-type .link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.event-type .link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.event-type:hover .link::after { transform: translateX(6px); }

/* ==========================================================
   Kochkurse / Shop Cards
   ========================================================== */

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15,15,14,0.08);
}

.course-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.course-card:hover .course-image img { transform: scale(1.04); }

.course-image .date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.1;
}

.course-image .date-badge strong {
    display: block;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-family: var(--font-serif);
    font-weight: 500;
    margin-bottom: 2px;
}

.course-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.course-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
    flex: 1;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.course-price {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
}

.course-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Voucher Banner */
.voucher-banner {
    margin-top: 80px;
    padding: 64px clamp(32px, 5vw, 72px);
    background: var(--ink);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.voucher-banner h3 {
    color: #fff;
    margin-bottom: 10px;
}

.voucher-banner p {
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0;
}

/* ==========================================================
   CTA Section
   ========================================================== */

.cta-block {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--dark);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-lutherturm.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(0.4);
}

.cta-block .container {
    position: relative;
    z-index: 2;
}

.cta-block h2 {
    color: #fff;
    margin-bottom: 28px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block .lead {
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin: 0 auto 48px;
}

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

/* ==========================================================
   Philosophie (Quote Block)
   ========================================================== */

.quote-block {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.quote-block blockquote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 32px;
    position: relative;
}

.quote-block blockquote::before {
    content: "„";
    font-size: 2em;
    line-height: 0.4;
    color: var(--accent);
    vertical-align: top;
    margin-right: 4px;
}

.quote-cite {
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ==========================================================
   Contact
   ========================================================== */

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--ink);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-block a {
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    transition: color 0.25s ease;
}

.contact-block a:hover { color: var(--accent); }

.contact-cta {
    background: var(--cream);
    padding: 48px;
    text-align: left;
}

.contact-cta h3 {
    margin-bottom: 16px;
}

.contact-cta p {
    margin-bottom: 28px;
}

/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    background: var(--dark-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    max-width: 320px;
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}

.footer-col a:hover { color: var(--accent-soft); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* ==========================================================
   Scroll Reveal
   ========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }

.reveal-stagger.in > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 900px) {
    body { font-size: 16px; }

    .nav-toggle { display: block; }

    .nav-links,
    .nav-cta {
        display: none;
    }

    body.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 28px;
        position: fixed;
        inset: 0;
        padding: 120px 32px 40px;
        background: var(--dark);
        z-index: 99;
        align-items: flex-start;
    }

    body.nav-open .nav-cta {
        display: inline-flex;
        position: fixed;
        bottom: 40px;
        left: 32px;
        right: 32px;
        z-index: 99;
    }

    body.nav-open .nav-links a {
        font-family: var(--font-serif);
        font-size: 32px;
        color: #fff;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 400;
    }

    .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }

    .pillars { grid-template-columns: 1fr; gap: 16px; }

    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-media { order: 0; }

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

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

    .event-types { grid-template-columns: 1fr; }

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

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

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

    .voucher-banner { grid-template-columns: 1fr; text-align: left; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .hero-scroll { display: none; }

    .marquee-track { gap: 48px; }

    .section-head { margin-bottom: 48px; }
}

@media (max-width: 540px) {
    :root { --section-pad: 72px; }
    .hero { padding: 100px 20px 60px; }
    .page-hero { padding: 140px 0 80px; min-height: 56vh; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
