/* ===== Local Fonts (matched to website_current) ===== */
/* ARVO – Fließtext, CLARENDON – Überschriften */
@font-face {
    font-family: 'Arvo';
    src: url('assets/fonts/arvo/Arvo.woff2') format('woff2'),
        url('assets/fonts/arvo/Arvo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arvo';
    src: url('assets/fonts/arvo/Arvo-Bold.woff2') format('woff2'),
        url('assets/fonts/arvo/Arvo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Only the regular Clarendon is used: the downloaded Bold variant is defective
   (umlaut glyphs Ä/ä/Ö/ö/Ü/ü are missing their dieresis dots and the mark
   itself is malformed). Bold headings are synthesized from the regular face,
   which renders umlauts correctly. Add a proper Bold @font-face here once a
   complete font file is available. */
@font-face {
    font-family: 'Clarendon';
    src: url('assets/fonts/clarendon/Clarendon.woff2') format('woff2'),
        url('assets/fonts/clarendon/Clarendon.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Custom Properties ===== */
/* Colors matched to website_current (dark theme):
   title-c #d4cba9 (tan headings), text-c #9c9c9c (grey body),
   navlink-c #d5d2c7, rustic orange accents #cc561f / #8a3a15. */
:root {
    --color-primary: #d4cba9;          /* tan – Überschriften (title-c) */
    --color-primary-light: #ad9f6c;    /* dunkleres Tan */
    --color-accent: #cc561f;           /* rustikales Orange */
    --color-accent-hover: #8a3a15;
    --color-warm: #d4cba9;
    --color-warm-light: rgba(212, 203, 169, 0.12);
    --color-bg: #161314;               /* dunkler Fallback-Hintergrund */
    --color-bg-dark: rgba(0, 0, 0, 0.7);
    --color-bg-section: rgba(0, 0, 0, 0.35);
    --color-surface: rgba(0, 0, 0, 0.6);   /* Karten/Boxen auf dunklem Grund */
    --color-text: #9c9c9c;             /* grauer Fließtext (text-c) */
    --color-text-light: #9c9c9c;
    --color-text-on-dark: #d5d2c7;     /* navlink-c */
    --color-white: #ffffff;
    --color-border: rgba(212, 203, 169, 0.2);

    /* Clarendon für Überschriften, Arvo für Fließtext. */
    --font-heading: 'Clarendon', 'Arvo', Georgia, serif;
    --font-body: 'Arvo', Georgia, 'Times New Roman', serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: url('assets/images/main_bg.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ===== Utility ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Skip to content link – visible only on focus for keyboard users */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(19, 19, 19, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav__logo-img {
    height: 74px;
    width: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-on-dark);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--color-accent);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-bg) url('assets/images/kontact_banner.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
}

.hero__subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-warm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(212, 165, 116, 0.15);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--color-warm);
}

.hero__tagline {
    font-size: 1.25rem;
    color: var(--color-text-on-dark);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero__logo {
    width: 288px;
    max-width: 72%;
    height: auto;
    margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    margin-right: 1rem;
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===== Sections ===== */
.section {
    padding: 6rem 0;
}

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

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section__centered {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.section__centered p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section__grid--reverse {
    direction: rtl;
}

.section__grid--reverse > * {
    direction: ltr;
}

.section__content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.section__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.section__image:hover img {
    transform: scale(1.03);
}

.section__image--hanging {
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.section__image--hanging img {
    object-fit: contain;
    max-height: 500px;
    margin: 0 auto;
}

/* Wide banner image cropped to a taller frame to match the column */
.section__image--banner img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

/* ===== Ingredients ===== */
.ingredients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ingredient {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ingredient__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.ingredient h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.ingredient p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ===== Products ===== */
.products {
    margin-top: 2rem;
}

/* ===== Interactive Meat Map ===== */
.products__interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.meat-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.meat-map__base {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(2.5);
    transition: filter 0.3s ease;
}

/* Section highlight images – positioned at their hotspot location */
.meat-map__section {
    position: absolute;
    width: 55%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    filter: brightness(1.3) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    z-index: 1;
    transform: translate(-50%, -50%);
}

.meat-map__section.active {
    opacity: 1;
}

/* Position each section image at its hotspot */
.meat-map__section[data-section="1"] {
    top: 54%;
    left: 65%;
    width: 52%;
}

.meat-map__section[data-section="2"] {
    top: 83.5%;
    left: 47%;
    width: 75%;
}

.meat-map__section[data-section="3"] {
    top: 61%;
    left: 22%;
    width: 35%;
}

.meat-map__section[data-section="4"] {
    top: 43.5%;
    left: 23%;
    width: 26%;
}

.meat-map__section[data-section="5"] {
    top: 32.8%;
    left: 51%;
    width: 45%;
}

/* Dim the base image when a section is active */
.meat-map.has-active .meat-map__base {
    filter: brightness(0.4);
}

/* Numbered hotspot buttons on the image */
.meat-map__hotspot {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border: 3px solid var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.meat-map__hotspot:hover,
.meat-map__hotspot:focus,
.meat-map__hotspot.active {
    transform: scale(1.2);
    background: var(--color-primary);
    outline: none;
}

/* Hotspot positions */
.meat-map__hotspot--1 {
    top: 51%;
    left: 60%;
}

.meat-map__hotspot--2 {
    top: 82%;
    left: 40%;
}

.meat-map__hotspot--3 {
    top: 60%;
    left: 20%;
}

.meat-map__hotspot--4 {
    top: 42%;
    left: 20%;
}

.meat-map__hotspot--5 {
    top: 30%;
    left: 48%;
}

/* Info panel */
.meat-info {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
}

.meat-info__hint {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 0.95rem;
    padding: 2rem;
    text-align: center;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 100%;
    align-self: center;
}

.meat-info__card {
    display: none;
    width: 100%;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meat-info__card.active {
    display: block;
}

.meat-info__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meat-info__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.95rem;
}

.meat-info__card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0;
}

.meat-info__card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* Hide hint when a card is active */
.meat-info.has-active .meat-info__hint {
    display: none;
}

@media (max-width: 768px) {
    .products__interactive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meat-map__hotspot {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .meat-info {
        min-height: auto;
    }

    .meat-info__hint {
        font-size: 0.85rem;
        padding: 1.5rem;
    }

    .meat-info__card {
        padding: 1.5rem;
    }
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline__item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline__marker {
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-6px);
}

.timeline__content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.timeline__content p {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

/* ===== Quotes ===== */
.quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.quote {
    background: var(--color-bg-section);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote cite {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: normal;
    font-weight: 500;
}

/* ===== Contact Info ===== */
.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.contact-info strong {
    color: var(--color-primary);
}

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

.contact-info__hours {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-warm-light);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ===== Form ===== */
.form {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-on-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: rgba(0, 0, 0, 0.4);
}

.form__input::placeholder {
    color: var(--color-text-light);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(204, 86, 31, 0.2);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
}

.form__checkbox label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.form__message {
    margin-top: 1rem;
    padding: 0;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity var(--transition);
}

.form__message.is-visible {
    opacity: 1;
    max-height: 200px;
    padding: 0.85rem 1rem;
}

.form__message--success {
    background: #e6f4ea;
    color: #1e6b3a;
    border: 1px solid #b7e0c4;
}

.form__message--error {
    background: #fdecea;
    color: #a8281c;
    border: 1px solid #f5c6c2;
}

/* ===== Footer ===== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-text-on-dark);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand h3,
.footer__brand-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-warm);
    margin-bottom: 1rem;
    font-weight: normal;
}

.footer__brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer h4,
.footer__heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-warm);
}

.footer__contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer__contact a {
    color: var(--color-text-on-dark);
    opacity: 0.8;
}

.footer__contact a:hover {
    opacity: 1;
    color: var(--color-warm);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: var(--color-text-on-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-warm);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .section__grid {
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__logo-img {
        height: 60px;
    }

    .nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero__content {
        padding: 6rem 0 3rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section__grid--reverse {
        direction: ltr;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }

    .btn--primary {
        margin-right: 0;
    }
}

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

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .form {
        padding: 1.5rem;
    }

    .quote {
        padding: 1.5rem;
    }
}




/* ===== Legal Pages ===== */
.legal-page {
    padding: 8rem 0 4rem;
    min-height: 60vh;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    max-width: 800px;
}

.legal-page ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--color-text-light);
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--color-accent);
    word-break: break-all;
}

/* ===== Video Lightbox / Overlay ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 34, 34, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    transform: scale(0.96);
    transition: transform var(--transition);
}

.video-modal.is-open .video-modal__dialog {
    transform: scale(1);
}

.video-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-modal__player video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-modal__close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
}

.video-modal__close:hover {
    color: var(--color-warm);
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .video-modal__close {
        top: -2.75rem;
        right: 0;
    }
}
