/* =========================================================
   Barthelmess Schuhe — Nürnberg
   Refined editorial luxury · faithful to brand
   ========================================================= */

:root {
    /* Brand colors */
    --ink: #111111;
    --ink-soft: #2b2b2b;
    --crimson: #e30613; /* Barthelmess brand red — THE accent */
    --crimson-dk: #c20511; /* darker red for hovers */
    --leather: #896250;
    --paper: #ffffff;
    --paper-warm: #faf8f6;
    --mist: #f1f3f5;
    --muted: #6b6b6b;
    --line: #e3e7ed;

    /* Type */
    --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --body: "Roboto", system-ui, -apple-system, sans-serif;

    /* Layout */
    --maxw: 1280px;
    --gutter: clamp(1.25rem, 5vw, 4rem);
    --radius: 4px;
    --header-h: 84px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--body);
    font-weight: 400;
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}
img,
video,
iframe {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4 {
    margin: 0;
}
:focus-visible {
    outline: 2px solid var(--crimson);
    outline-offset: 3px;
}

/* ---------- Typography ---------- */
.h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: 0.01em;
    color: var(--ink);
}
.eyebrow {
    font-family: var(--body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    color: var(--crimson);
    margin: 0 0 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--crimson);
}
.eyebrow--light {
    color: #fff;
}
.eyebrow--light::before {
    background: #fff;
}
.section__head--center .eyebrow {
    justify-content: center;
}
.lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    line-height: 1.75;
}
.lead--center {
    max-width: 46ch;
    margin-inline: auto;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--narrow {
    max-width: 840px;
}
.section {
    padding-block: clamp(4rem, 3rem + 6vw, 8rem);
}
section[id] {
    scroll-margin-top: calc(var(--header-h) + 8px);
}
.section--warm {
    background: var(--paper-warm);
}
.section--mist {
    background: var(--mist);
}
.section--ink {
    background: var(--ink);
    color: #fff;
}
.section--ink .h2 {
    color: #fff;
}
.section__head {
    margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.section__head--center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    --bg: var(--ink);
    --fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-family: var(--body);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 1.05em 2.6em;
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--bg);
    border-radius: 2px;
    transition:
        background 0.4s var(--ease),
        color 0.4s var(--ease),
        border-color 0.4s var(--ease),
        transform 0.25s var(--ease);
}
.btn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: #fff;
    transform: translateY(-2px);
}
.btn--ghost {
    --bg: transparent;
    --fg: currentColor;
    border-color: currentColor;
}
.btn--ghost:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.btn--sm {
    padding: 0.7em 1.4em;
    font-size: 0.72rem;
}

/* ---------- Progress bar ---------- */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1200;
    background: transparent;
    pointer-events: none;
}
.progress-bar__fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--crimson);
    transition: width 0.1s linear;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition:
        background 0.45s var(--ease),
        box-shadow 0.45s var(--ease),
        height 0.45s var(--ease);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}
.header__logo {
    position: relative;
    display: block;
    width: 210px;
    flex: 0 0 auto;
}
.header__logo img {
    width: 100%;
    height: auto;
    transition: opacity 0.4s var(--ease);
}
.header__logo-light {
    position: absolute;
    inset: 0;
    filter: brightness(0) invert(1);
} /* red logo → white over hero */
.header__logo-dark {
    opacity: 0;
} /* brand-red logo, shown when solid */
.header__logo-light {
    opacity: 1;
}
/* solid state */
.header.is-solid {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--line);
    height: 72px;
}
.header.is-solid .header__logo-dark {
    opacity: 1;
}
.header.is-solid .header__logo-light {
    opacity: 0;
}
.header.is-solid .iconbtn {
    border-color: var(--line);
}
.header.is-solid .iconbtn img {
    filter: brightness(0);
} /* black after scroll */
.header.is-solid .burger span {
    background: var(--ink);
}

/* Nav — slide-in panel at ALL screen sizes (burger menu) */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 380px);
    z-index: 950;
    background: var(--paper);
    box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    /* hidden while off-canvas so links aren't keyboard/screen-reader reachable when closed */
    visibility: hidden;
    transition:
        transform 0.45s var(--ease),
        visibility 0.45s var(--ease);
    display: flex;
    align-items: center;
    padding: 5.5rem 2.4rem 2rem;
}
.nav.is-open {
    transform: none;
    visibility: visible;
}
.nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}
.nav__link {
    position: relative;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--crimson);
    transition: width 0.35s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after {
    width: 100%;
}
.nav__link:hover,
.nav__link.is-active {
    color: var(--crimson);
}
.nav__link--cta {
    border: 1px solid currentColor;
    border-radius: 2px;
    padding: 0.55rem 1.2rem;
}
.nav__link--cta::after {
    display: none;
}
.nav__link--cta:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: #fff;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.iconbtn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
}
.iconbtn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
} /* white over hero */
.header.is-solid .iconbtn img {
    filter: brightness(0);
} /* black after scroll */
.iconbtn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
}
.iconbtn:hover img {
    filter: brightness(0) invert(1);
}

/* Burger */
.burger {
    display: flex;
    width: 42px;
    height: 42px;
    background: none;
    border: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
}
.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition:
        transform 0.35s var(--ease),
        opacity 0.25s var(--ease);
}
.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
    opacity: 0;
}
.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.nav-overlay.is-show {
    opacity: 1;
}

/* =========================================================
   HERO (autoplay video background)
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.15) 35%, rgba(17, 17, 17, 0.6) 100%), linear-gradient(90deg, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0) 60%);
}
.hero__content {
    position: relative;
    padding-top: var(--header-h);
    max-width: 760px;
}
.hero__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.6rem, 1.6rem + 5.2vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: 0.005em;
    margin: 0.2em 0 0.6em;
    text-wrap: balance;
}
.hero__hours {
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 2rem;
    border-left: 2px solid var(--crimson);
    padding-left: 1.1rem;
}
.hero__hours span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
}
.hero__scroll span {
    width: 3px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 0;
    }
}

/* =========================================================
   WELCOME / FEATURES
   ========================================================= */
.welcome__intro {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 2rem + 3vw, 4rem);
}
.welcome__intro .h2 {
    margin: 0 0 1.2rem;
}
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.feature {
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    text-align: center;
    padding: 2.6rem 1.5rem;
    transition:
        background 0.4s var(--ease),
        transform 0.4s var(--ease);
}
.feature:hover {
    background: var(--paper-warm);
}
.feature__art {
    height: 120px;
    display: grid;
    place-items: center;
}
.feature__art img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.feature:hover .feature__art img {
    transform: scale(1.07);
}
.feature__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--ink);
    position: relative;
    padding-bottom: 0.7rem;
}
.feature__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--crimson);
    transition: width 0.35s var(--ease);
}
.feature:hover .feature__title::after {
    width: 48px;
}

/* =========================================================
   MEET / APPOINTMENT (text + video)
   ========================================================= */
.meet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1rem + 5vw, 5rem);
    align-items: center;
}
.meet__text .h2 {
    margin: 0 0 1.3rem;
}
.meet__text p {
    margin: 0 0 1.1rem;
    color: var(--ink-soft);
}
.meet__text .btn {
    margin-top: 0.8rem;
}
.meet__media video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -30px rgba(17, 17, 17, 0.45);
    background: #000;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
.advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
}
.advantage {
    text-align: center;
    padding: 1rem;
}
.advantage__icon {
    height: 104px;
    display: grid;
    place-items: center;
    margin-bottom: 1.4rem;
}
.advantage__icon img,
.advantage__icon svg {
    height: 84px;
    width: auto;
    object-fit: contain;
}
.advantage__icon svg {
    color: var(--ink); /* #111 — icon paths use fill: currentColor */
}
.advantage__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}
.advantage p {
    color: var(--muted);
    margin: 0;
    max-width: 28ch;
    margin-inline: auto;
}

/* =========================================================
   BRANDS
   ========================================================= */
.brands__slider {
    margin-top: 1rem;
    padding-inline: var(--gutter);
    position: relative;
}
/* Let slides stretch to the tallest in the row so card bottoms align */
.brands__slider .swiper-slide {
    height: auto;
}
.brand {
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition:
        box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease),
        transform 0.4s var(--ease);
}
.brand:hover {
    box-shadow: 0 24px 50px -28px rgba(17, 17, 17, 0.35);
    border-color: transparent;
    transform: translateY(-4px);
}
.brand__logo {
    height: 84px;
    display: grid;
    place-items: center;
    width: 100%;
}
.brand__logo img {
    max-height: 72px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
    transition:
        filter 0.45s var(--ease),
        opacity 0.45s var(--ease);
}
/* Grayscale-until-hover reveal only on pointer devices — touch has no hover,
   so those users would otherwise be stuck with permanently faded logos. */
@media (hover: hover) {
    .brand__logo img {
        filter: grayscale(1);
        opacity: 0.6;
    }
    .brand:hover .brand__logo img {
        filter: grayscale(0);
        opacity: 1;
    }
}
.brand__desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
}
.brand__desc p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.brands__nav {
    color: var(--ink);
}
.brands__nav::after {
    font-size: 1.4rem;
    font-weight: 700;
}
.brands__nav:hover {
    color: var(--crimson);
}

/* Swiper button base color overrides */
.swiper-button-prev,
.swiper-button-next {
    --swiper-navigation-color: currentColor;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__row {
    margin-bottom: 8px;
    overflow: hidden;
}
.gallery .swiper-slide {
    width: auto;
    height: 300px;
}
.gallery__item {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
}
.gallery__item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    filter: saturate(0.92);
}
.gallery__item:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}
@media (max-width: 768px) {
    .gallery .swiper-slide {
        height: 200px;
    }
}

/* =========================================================
   FAQ
   ========================================================= */
.accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
    max-width: 1060px;
    margin-inline: auto;
}
@media (min-width: 992px) {
    .accordion {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem 1.25rem;
    }
}
.faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
        border-color 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.faq__item[open] {
    border-color: var(--crimson);
    box-shadow: 0 14px 30px -22px rgba(17, 17, 17, 0.4);
}
.faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.6rem;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.28rem;
    line-height: 1.3;
    color: var(--ink);
}
.faq__item summary::-webkit-details-marker {
    display: none;
}
.faq__item summary::after {
    content: "";
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--crimson);
    border-bottom: 2px solid var(--crimson);
    transform: rotate(45deg);
    transition: transform 0.35s var(--ease);
    margin-top: -4px;
}
.faq__item[open] summary::after {
    transform: rotate(225deg);
    margin-top: 4px;
}
.faq__body {
    padding: 0 1.6rem 1.4rem;
    color: var(--muted);
}
.faq__body p {
    margin: 0;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__slider {
    padding-bottom: 3.5rem;
}
.review {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.4rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    height: auto;
}
.review__stars {
    display: flex;
    gap: 0;
    font-size: 1.1rem;
    line-height: 1;
}
/* Filled (crimson) stars + muted remainder so the rating always reads out of 5 */
.review__stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    color: var(--crimson);
}
.review__stars::after {
    content: "";
    letter-spacing: 3px;
    color: rgba(17, 17, 17, 0.18);
}
.review__stars[data-stars="4"]::before {
    content: "★★★★";
}
.review__stars[data-stars="4"]::after {
    content: "★";
}
.review__stars[data-stars="3"]::before {
    content: "★★★";
}
.review__stars[data-stars="3"]::after {
    content: "★★";
}
.review__text {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
}
.review__name {
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--muted);
}
.review__name::before {
    content: "— ";
}
.reviews__pagination {
    position: absolute;
    bottom: 0;
}
.swiper-pagination-bullet {
    background: var(--ink);
    opacity: 0.25;
}
.swiper-pagination-bullet-active {
    background: var(--crimson);
    opacity: 1;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
    align-items: stretch;
}
.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #dfe5ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 6a9 9 0 0 0-9 9c0 6.5 9 19 9 19s9-12.5 9-19a9 9 0 0 0-9-9zm0 12a3 3 0 1 1 0-6 3 3 0 0 1 0 6z' fill='%23b9c4cd'/%3E%3C/svg%3E") center/40px no-repeat;
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}
.contact__form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.cform__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 1.6rem;
}
.field {
    position: relative;
    margin-bottom: 1.1rem;
}
.field input,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-family: var(--body);
    font-size: 1rem;
    padding: 0.9rem 0 0.6rem;
    transition: border-color 0.3s var(--ease);
}
.field textarea {
    resize: vertical;
    min-height: 90px;
}
.field input:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--crimson);
}
.field label {
    position: absolute;
    left: 0;
    top: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    pointer-events: none;
    transition:
        transform 0.25s var(--ease),
        color 0.25s var(--ease),
        font-size 0.25s var(--ease);
    transform-origin: left;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.4rem);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
}
.cform__submit {
    margin-top: 1rem;
    width: 100%;
}
.contact .field input[style*="border"],
.contact .field input.is-error {
    border-color: var(--crimson) !important;
}

/* Locations */
.locations {
    display: flex;
    justify-content: center;
    margin-top: clamp(3rem, 2rem + 3vw, 5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.location {
    text-align: center;
    max-width: 460px;
}
.location__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.location__name span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--crimson);
    font-family: var(--body);
    font-weight: 500;
    margin-top: 0.6rem;
}
.location p {
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
.location a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}
.location a:hover {
    color: var(--crimson);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #0e0e0e;
    color: rgba(255, 255, 255, 0.75);
    padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
}
.footer__logo {
    width: 210px;
}
.footer__logo img {
    filter: brightness(0) invert(1);
} /* brand-red logo → white on dark footer */
.footer__tag {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 2rem;
    justify-content: center;
}
.footer__link {
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: color 0.3s var(--ease);
    position: relative;
    padding: 0.3rem 0;
}
.footer__link:hover {
    color: #fff;
}
.footer__credit {
    margin-top: 0.6rem;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease);
}
.footer__credit:hover {
    opacity: 1;
}
.footer__credit img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
} /* render logo white on dark footer */

/* =========================================================
   MODALS
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}
.modal[hidden] {
    display: none;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(3px);
    animation: fade 0.3s var(--ease);
}
.modal__dialog {
    position: relative;
    background: var(--paper);
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius);
    padding: clamp(1.8rem, 1rem + 3vw, 3.2rem);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
    animation: rise 0.35s var(--ease);
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--muted);
    transition: color 0.3s;
}
.modal__close:hover {
    color: var(--crimson);
}
.modal__title {
    margin: 0 0 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.prose h3 {
    font-family: var(--body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    color: var(--crimson);
    margin: 1.8rem 0 0.5rem;
}
.prose p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.7;
}
.prose a {
    color: var(--crimson);
    word-break: break-word;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1400;
    max-width: 760px;
    margin-inline: auto;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.5);
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    animation: rise 0.4s var(--ease);
}
.cookie[hidden] {
    display: none;
}
.cookie__text {
    margin: 0;
    font-size: 0.88rem;
    flex: 1 1 280px;
    line-height: 1.6;
}
.cookie__more {
    background: none;
    border: 0;
    color: var(--crimson);
    text-decoration: underline;
    font-size: inherit;
    padding: 0;
}
.cookie__actions {
    display: flex;
    gap: 0.6rem;
    flex: 0 0 auto;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .header__logo {
        width: 185px;
    }
}
@media (max-width: 980px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .meet__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .advantages__list {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact__map {
        min-height: 300px;
    }
    .contact__map iframe {
        min-height: 300px;
    }
}
@media (max-width: 560px) {
    :root {
        --header-h: 72px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .header__logo {
        width: 158px;
    }
    .header__actions {
        gap: 0.35rem;
    }
    .iconbtn {
        width: 38px;
        height: 38px;
    }
    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__cta .btn {
        width: 100%;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* AOS fallback: ensure content visible if JS/AOS fails */
.no-js [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
