/* =========================================================
   FLUGHAFENTRANSFER SALAVATI
   KOMPLETTE SAUBERE CSS
   ========================================================= */


/* =========================================================
   VARIABLEN
   ========================================================= */

:root {
    --black: #101215;
    --gold: #c39a48;
    --gold-dark: #aa7f2f;
    --cream: #f6f4ef;
    --white: #ffffff;
    --text: #171a1f;
    --muted: #68737d;
    --line: #ddd8cf;
    --soft: #faf9f6;

    --max-width: 1400px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: var(--text);

    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    line-height: 1.55;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(var(--max-width), calc(100% - 56px));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */

.section-tag {
    margin: 0 0 20px;

    color: #69747e;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;

    letter-spacing: .23em;
    text-transform: uppercase;
}

.section-tag::before {
    content: "";

    display: inline-block;

    width: 32px;
    height: 2px;

    margin: 0 11px 3px 0;

    background: var(--gold);
}

.section-title {
    margin: 0;

    color: #14171b;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(50px, 5.2vw, 76px);
    line-height: 1.02;
    letter-spacing: -2px;
    font-weight: 900;
}

.section-title span {
    display: block;
    color: var(--gold);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;
    border-bottom: 1px solid #e3dfd7;
}

.header-inner {
    min-height: 96px;

    display: flex;
    align-items: center;

    gap: 24px;
}

.brand {
    min-width: 325px;
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 13px;
}

.brand-logo {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    object-fit: contain;
}

.brand-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: .95;
}

.brand-copy strong {
    display: block;

    color: #101318;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    line-height: .96;
    font-weight: 900;

    letter-spacing: .01em;

    white-space: nowrap;
}

.brand-copy span {
    display: block;

    margin-top: 7px;

    color: #8a8d90;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 7px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .19em;

    white-space: nowrap;
}

.main-nav {
    min-width: 0;
    flex: 1 1 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    white-space: nowrap;
}

.main-nav a {
    position: relative;

    padding: 7px 0;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover {
    color: var(--gold-dark);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 9px;
}

.phone-box {
    min-width: 178px;
    height: 52px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1.5px solid #17191c;
    border-radius: 11px;

    background: #ffffff;

    font-size: 14px;
    font-weight: 900;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease;
}

.phone-box:hover {
    background: var(--black);
    color: #ffffff;
}

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);
    border-radius: 11px;

    background: #ffffff;
    color: var(--text);

    font-size: 22px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(195,154,72,.15),
            transparent 28%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 45%,
            #faf8f3 72%,
            #efede7 100%
        );
}

.hero-grid {
    min-height: 720px;

    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(0, 1.12fr);

    align-items: center;

    gap: 48px;

    padding: 30px 0 44px;
}

.hero-copy {
    position: relative;
    z-index: 3;

    min-width: 0;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #69747e;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: .21em;
    text-transform: uppercase;
}

.eyebrow i {
    width: 32px;
    height: 2px;

    flex: 0 0 32px;

    background: var(--gold);
}

.hero h1 {
    max-width: 650px;

    margin: 22px 0 25px;

    color: #12151a;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(61px, 6.1vw, 90px);
    line-height: .92;
    letter-spacing: -4.5px;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-text {
    max-width: 610px;

    margin: 0;

    color: #56616c;

    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 29px;
}

.btn {
    min-height: 54px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid #d4d0c8;
    border-radius: 11px;

    background: #ffffff;
    color: #15171a;

    font-size: 14px;
    font-weight: 900;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--black);
    border-color: var(--black);
    color: #ffffff;
}

.btn.primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111111;
}

.btn.secondary:hover {
    border-color: var(--black);
}

.hero-points {
    display: flex;

    margin-top: 36px;
}

.hero-point {
    min-width: 145px;

    padding: 0 23px;

    border-right: 1px solid #d9d5cc;
}

.hero-point:first-child {
    padding-left: 0;
}

.hero-point:last-child {
    border-right: 0;
}

.hero-point strong {
    display: block;

    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
}

.hero-point span {
    display: block;

    margin-top: 6px;

    color: #747e86;

    font-size: 11px;
}

.hero-visual {
    position: relative;

    min-width: 0;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-glow {
    position: absolute;

    inset: 4% -4% 4% -20%;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.93) 14%,
            rgba(255,255,255,.45) 35%,
            transparent 60%
        );

    filter: blur(8px);

    pointer-events: none;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;

    width: min(700px, 100%);
    height: 490px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 28px 75px rgba(0,0,0,.13);
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-image-fade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.95) 0%,
            rgba(255,255,255,.68) 9%,
            rgba(255,255,255,.18) 22%,
            transparent 40%
        );

    pointer-events: none;
}

.hero-image-caption {
    position: absolute;

    right: 23px;
    bottom: 23px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;

    color: #ffffff;

    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hero-image-caption span {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-image-caption strong {
    margin-top: 3px;

    color: #d5ae58;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 1.3px;
}


/* =========================================================
   PROMISE
   ========================================================= */

.promise {
    background: var(--black);
    color: #ffffff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.promise-item {
    min-height: 90px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.1);
}

.promise-item:last-child {
    border-right: 0;
}

.promise-item strong {
    font-size: 17px;
    font-weight: 900;
}

.promise-item span {
    margin-top: 4px;

    color: #a7adb2;

    font-size: 11px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 120px 0;
}

.about-section,
.why-section,
.booking-section {
    background: #ffffff;
}

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


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 82px;
}

.about-photo {
    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 25px;
}

.about-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.50),
            transparent 48%
        );
}

.about-photo-overlay {
    position: absolute;
    z-index: 2;

    left: 31px;
    bottom: 28px;

    display: flex;
    flex-direction: column;

    color: #ffffff;
}

.about-photo-overlay span {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 3px;
}

.about-photo-overlay strong {
    color: #d0a54d;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 70px;
    line-height: .87;
}

.about-copy p {
    max-width: 650px;

    margin: 26px 0 0;

    color: #59646e;

    font-size: 17px;
    line-height: 1.75;
}

.about-copy p strong {
    color: var(--text);
    font-weight: 800;
}

.about-callout {
    margin-top: 28px;

    padding: 18px 21px;

    border-left: 3px solid var(--gold);

    background:
        linear-gradient(
            90deg,
            rgba(195,154,72,.11),
            transparent
        );

    font-weight: 800;
}


/* =========================================================
   AIRPORTS
   ========================================================= */

.airport-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .78fr);

    align-items: end;

    gap: 75px;

    margin-bottom: 48px;
}

.airport-intro > p {
    max-width: 570px;

    margin: 0 0 4px auto;

    color: #66717b;

    font-size: 15px;
    line-height: 1.8;
}

.airport-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}

.airport-card {
    position: relative;

    min-height: 250px;

    overflow: hidden;

    padding: 27px;

    display: flex;
    flex-direction: column;

    border: 1px solid #ddd9d1;
    border-radius: 21px;

    background: #ffffff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.airport-card::after {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 105px;
    height: 105px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    opacity: .22;
}

.airport-card:hover {
    transform: translateY(-4px);

    border-color: #caa34f;

    box-shadow: 0 18px 40px rgba(0,0,0,.07);
}

.airport-card.featured {
    background: #0b0c0d;

    border-color: #0b0c0d;

    color: #ffffff;
}

.airport-card.airport-more {
    background: #f0ede5;
}

/* KEINE Gold-Umrandung bei Stuttgart */
.airport-card.airport-highlight {
    border-color: #ddd9d1;
    box-shadow: none;
}

.airport-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #7b8288;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.airport-top strong {
    color: var(--gold);
}

.airport-icon {
    margin-top: 24px;

    color: var(--gold);

    font-size: 25px;
    line-height: 1;
}

.airport-card h3 {
    margin: 17px 0 6px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 23px;
    line-height: 1.1;
}

.airport-card p {
    margin: 0;

    color: #757e87;

    font-size: 12px;
}

.airport-card.featured p {
    color: #a9b0b5;
}

.airport-card b {
    margin-top: auto;

    font-size: 11px;
}


/* =========================================================
   WARUM SALAVATI
   ========================================================= */

.why-section {
    padding-top: 140px;
    padding-bottom: 140px;
}

.why-section .section-tag {
    margin-bottom: 24px;
}

.why-section .section-title {
    max-width: 760px;

    font-size: 78px;
    line-height: .98;
    letter-spacing: -1.7px;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    margin-top: 66px;
}

.why-card {
    min-height: 275px;

    padding: 37px 35px;

    border: 1px solid var(--line);
    border-radius: 22px;

    background: #ffffff;
}

.why-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f2ead9;
    color: #9a742a;

    font-size: 12px;
    font-weight: 900;
}

.why-card h3 {
    margin: 27px 0 12px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 21px;
    line-height: 1.25;
}

.why-card p {
    margin: 0;

    color: #68737d;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BEWERTUNGEN – DESKTOP
   ========================================================= */

.reviews-section {
    padding-top: 140px;
    padding-bottom: 135px;
}

.reviews-heading {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 53px;
}

.reviews-heading .section-title {
    width: 760px;
    max-width: 760px;

    margin: 0;

    font-size: 78px;
    line-height: .96;
    letter-spacing: -1.6px;
}

.reviews-subtitle {
    margin: 18px 0 0;

    color: #6c7780;

    font-size: 15px;
}

.rating-box {
    flex: 0 0 220px;

    margin-top: 7px;

    padding: 22px 24px;

    border: 1px solid #ddd8cf;
    border-radius: 18px;

    background: #ffffff;

    text-align: center;
}

.rating-box strong {
    font-family: "Montserrat", Arial, sans-serif;

    font-size: 38px;
    line-height: 1;
}

.rating-box strong span {
    color: var(--gold);
}

.rating-box > div {
    display: inline;

    margin-left: 4px;

    color: #858b90;

    font-size: 13px;
}

.rating-box small {
    display: block;

    margin-top: 8px;

    color: #757d84;

    font-size: 10px;
}

.review-slider {
    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr)
        50px;

    gap: 18px;

    align-items: center;
}

.review-window {
    min-width: 0;
    overflow: hidden;
}

.review-track {
    display: flex;

    gap: 20px;

    transition: transform .4s ease;
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);

    min-width: 0;
    min-height: 310px;

    padding: 29px;

    display: flex;
    flex-direction: column;

    border: 1px solid #ddd9d1;
    border-radius: 20px;

    background: #ffffff;
}

.review-user {
    display: flex;
    align-items: center;

    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    font-weight: 900;
}

.avatar-orange {
    background: #ed7900;
}

.avatar-blue {
    background: #176daf;
}

.avatar-purple {
    background: #5634ae;
}

.avatar-violet {
    background: #9849bd;
}

.avatar-slate {
    background: #5e6d78;
}

.review-user strong {
    display: block;

    color: #1769d2;

    font-size: 14px;
    font-weight: 800;
}

.review-user small {
    display: block;

    margin-top: 3px;

    color: #858d93;

    font-size: 11px;
}

.stars {
    margin: 21px 0 14px;

    color: #f2a800;

    font-size: 14px;

    letter-spacing: 2px;
}

.review-card p {
    margin: 0;

    color: #4f5961;

    font-size: 14px;
    line-height: 1.76;
}

.review-answer {
    margin-top: auto;

    padding-top: 20px;

    color: #1769d2;

    font-size: 12px;
    font-weight: 800;
}

.review-arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d5d0c8;
    border-radius: 50%;

    background: #ffffff;
    color: #171a1f;

    font-size: 18px;

    transition: transform .2s ease;
}

.review-arrow:hover {
    transform: scale(1.05);
}

.review-dots {
    margin-top: 23px;

    text-align: center;
}

.review-dots span {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin: 0 4px;

    border-radius: 50%;

    background: #d3cec5;

    cursor: pointer;
}

.review-dots span.active {
    background: var(--gold);

    transform: scale(1.15);
}

.google-review-cta {
    min-height: 140px;

    margin-top: 48px;

    padding: 29px 31px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border: 1px solid #ddd8cf;
    border-radius: 20px;

    background: #ffffff;
}

.google-stars {
    color: var(--gold);

    letter-spacing: 3px;
}

.google-review-cta h3 {
    margin: 8px 0 4px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 21px;
}

.google-review-cta p {
    margin: 0;

    color: #707980;

    font-size: 14px;
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .7fr)
        minmax(0, 1.3fr);

    align-items: start;

    gap: 65px;
}

.booking-copy {
    padding-top: 28px;
}

.booking-copy > p {
    max-width: 450px;

    margin: 27px 0 0;

    color: #68737c;

    font-size: 16px;
    line-height: 1.75;
}

.big-phone {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 31px;

    font-size: 28px;
    font-weight: 900;

    transition: color .2s ease;
}

.big-phone:hover {
    color: var(--gold-dark);
}

.big-phone span {
    color: var(--gold);
}

.form {
    width: 100%;
    min-width: 0;

    padding: 37px 39px 40px;

    border: 1px solid #ddd8cf;
    border-radius: 23px;

    background: #ffffff;

    box-shadow: 0 22px 60px rgba(0,0,0,.065);
}

.form-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #69747d;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .24em;
}

.form-eyebrow span {
    width: 32px;
    height: 2px;

    flex: 0 0 32px;

    background: var(--gold);
}

.form h3 {
    margin: 0 0 8px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 29px;
    line-height: 1.2;
}

.form-intro {
    margin: 0 0 26px;

    color: #737d86;

    font-size: 14px;
    line-height: 1.65;
}

.form-grid,
.route-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 17px 18px;
}

.trip-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 17px 18px;
}

.field {
    width: 100%;
    min-width: 0;
}

.field label {
    display: block;

    margin-bottom: 7px;

    color: #17191c;

    font-size: 11px;
    line-height: 1.15;
    font-weight: 900;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-width: 0;

    border: 1px solid #d7d2c9;
    border-radius: 10px;

    background: #ffffff;
    color: #17191c;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.field input,
.field select {
    height: 51px;

    padding: 0 14px;
}

.field textarea {
    min-height: 125px;

    padding: 14px;

    resize: vertical;

    line-height: 1.55;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #8a9299;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(195,154,72,.10);
}

.form-divider {
    height: 1px;

    margin: 24px 0;

    background: #e6e2da;
}

.return-field {
    min-width: 0;
}

.check-row {
    min-height: 51px;

    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 12px;
    font-weight: 800;
}

.check-row input,
.consent input {
    accent-color: var(--gold);
}

.return-details {
    margin-top: 18px;
}

.return-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;

    padding: 18px;

    border: 1px solid #e5e0d7;
    border-radius: 14px;

    background: #faf9f5;
}

.message-field {
    margin-top: 19px;
}

.consent {
    margin-top: 20px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #69737c;

    font-size: 12px;
    line-height: 1.65;
}

.consent input {
    width: 18px;
    height: 18px;

    margin: 2px 0 0;

    flex: 0 0 18px;
}

.consent a {
    color: #1769d2;
    text-decoration: underline;
}

.note {
    margin-top: 12px;

    color: #8a9197;

    font-size: 11px;
}

.submit {
    width: 100%;

    margin-top: 17px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #0b0c0d;

    color: #ffffff;

    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    gap: 60px;
}

.footer-column h3 {
    margin: 0 0 15px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 17px;
    font-weight: 900;
}

.footer-column p {
    margin: 8px 0;

    color: #aeb4ba;

    font-size: 13px;
}

.footer-column a {
    color: #aeb4ba;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;

    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #292c30;

    color: #70767c;

    font-size: 11px;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1200px) and (min-width: 1151px) {

    .container {
        width: calc(100% - 48px);
    }

    .header-inner {
        gap: 18px;
    }

    .brand {
        min-width: 285px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy span {
        font-size: 6px;
    }

    .main-nav {
        gap: 17px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .phone-box {
        min-width: 165px;
        font-size: 13px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(55px, 6vw, 76px);
    }

    .hero-image-wrap {
        height: 450px;
    }

    .about-grid {
        gap: 50px;
    }

    .booking-grid {
        gap: 45px;
    }
}


/* =========================================================
   IPAD
   ========================================================= */

@media (max-width: 1150px) and (min-width: 801px) {

    .container {
        width: calc(100% - 44px);
    }

    .header-inner {
        min-height: 86px;
    }

    .brand {
        min-width: 0;

        flex: 1 1 auto;
    }

    .brand-logo {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy span {
        font-size: 6px;
    }

    /* Desktop-Navigation AUS */
    .main-nav {
        display: none;
    }

    /* Hamburger EIN */
    .menu-toggle {
        display: flex;
    }

    /* Telefonnummer bleibt auf dem iPad */
    .phone-box {
        min-width: 168px;
        height: 48px;

        font-size: 13px;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        padding: 0 22px;

        opacity: 0;

        pointer-events: none;

        background: #ffffff;

        border-top: 1px solid transparent;

        box-shadow: 0 16px 35px rgba(0,0,0,.06);

        transition:
            max-height .25s ease,
            opacity .2s ease,
            padding .25s ease;
    }

    body.menu-open .mobile-nav {
        max-height: 430px;

        padding: 8px 22px 18px;

        opacity: 1;

        pointer-events: auto;

        border-top-color: #e7e2da;
    }

    .mobile-nav a {
        padding: 13px 2px;

        border-bottom: 1px solid #ece8e1;

        font-size: 14px;
        font-weight: 800;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }


    /* HERO */

    .hero-grid {
        min-height: 650px;

        grid-template-columns:
            minmax(0, .95fr)
            minmax(0, 1.05fr);

        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(53px, 6.1vw, 72px);
        letter-spacing: -3.3px;
    }

    .hero-image-wrap {
        height: 445px;
    }


    /* AIRPORTS */

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


    /* WARUM */

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

    .why-section .section-title {
        max-width: 700px;

        font-size: 61px;

        line-height: .99;

        letter-spacing: -1.1px;
    }


    /* BEWERTUNGEN */

    .reviews-heading {
        display: block;

        margin-bottom: 38px;
    }

    .reviews-heading .section-title {
        width: 100%;
        max-width: 760px;

        font-size: 59px;

        line-height: .98;

        letter-spacing: -1px;
    }

    .rating-box {
        width: 100%;
        max-width: 100%;

        margin-top: 30px;

        text-align: left;
    }

    .review-card {
        flex-basis: calc((100% - 20px) / 2);
    }


    /* FOOTER
       Auf dem iPad drei Spalten, damit es nicht unnötig
       untereinander fällt.
    */

    .footer-grid {
        grid-template-columns:
            1.3fr 1fr 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }


    /* BOOKING */

    .booking-grid {
        gap: 42px;
    }
}


/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 800px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HEADER */

    .header-inner {
        width: calc(100% - 28px);

        min-height: 78px;
        height: 78px;

        gap: 10px;
    }

    .brand {
        min-width: 0;

        flex: 1 1 auto;

        gap: 10px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .brand-copy strong {
        font-size: 12px;
    }

    .brand-copy span {
        margin-top: 6px;

        font-size: 5px;

        letter-spacing: .13em;
    }

    .main-nav,
    .phone-box {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        padding: 0 14px;

        opacity: 0;

        pointer-events: none;

        background: #ffffff;

        border-top: 1px solid transparent;

        box-shadow: 0 16px 35px rgba(0,0,0,.06);

        transition:
            max-height .25s ease,
            opacity .2s ease,
            padding .25s ease;
    }

    body.menu-open .mobile-nav {
        max-height: 430px;

        padding: 7px 14px 16px;

        opacity: 1;

        pointer-events: auto;

        border-top-color: #e7e2da;
    }

    .mobile-nav a {
        padding: 12px 3px;

        border-bottom: 1px solid #ece8e1;

        font-size: 14px;
        font-weight: 800;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }


    /* HERO */

    .hero {
        min-height: 0;
        padding: 0;
    }

    .hero-grid {
        width: calc(100% - 28px);

        min-height: 0;

        padding: 28px 0 50px;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .eyebrow {
        font-size: 8px;

        letter-spacing: .17em;

        gap: 8px;
    }

    .eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .hero h1 {
        margin: 17px 0 21px;

        font-size: 47px;

        line-height: .95;

        letter-spacing: -2.4px;
    }

    .hero-text {
        font-size: 15px;

        line-height: 1.68;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        width: 100%;

        margin-top: 28px;
    }

    .hero-point {
        min-width: 0;

        flex: 1;

        padding: 0 7px;
    }

    .hero-point:first-child {
        padding-left: 0;
    }

    .hero-point strong {
        font-size: 17px;
    }

    .hero-point span {
        font-size: 9px;
    }

    .hero-visual {
        width: 100%;

        height: 285px;

        min-height: 285px;
    }

    .hero-image-glow {
        display: none;
    }

    .hero-image-wrap {
        width: 100%;

        height: 285px;

        border-radius: 20px;
    }

    .hero-image-fade {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.22),
                transparent 34%
            );
    }

    .hero-image-caption {
        right: 13px;
        bottom: 13px;
    }

    .hero-image-caption span {
        font-size: 8px;

        letter-spacing: 1.5px;
    }

    .hero-image-caption strong {
        font-size: 9px;
    }


    /* PROMISE */

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

    .promise-item {
        min-height: 72px;

        padding: 16px 12px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.1);
    }

    .promise-item:last-child {
        border-bottom: 0;
    }


    /* GENERAL */

    .section {
        padding: 74px 0;
    }

    .section-tag {
        font-size: 8px;

        letter-spacing: .16em;
    }

    .section-title {
        font-size: 42px;

        line-height: 1.02;

        letter-spacing: -1px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .about-photo {
        height: 300px;

        border-radius: 20px;
    }

    .about-photo-overlay {
        left: 20px;
        bottom: 18px;
    }

    .about-photo-overlay strong {
        font-size: 58px;
    }

    .about-copy p {
        font-size: 15px;

        line-height: 1.72;
    }


    /* AIRPORTS */

    .airport-intro {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .airport-intro > p {
        margin: 0;

        font-size: 14px;
    }

    .airport-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .airport-card {
        min-height: 215px;

        padding: 22px;

        border-radius: 18px;
    }

    .airport-card h3 {
        font-size: 21px;
    }


    /* WARUM */

    .why-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .why-section .section-title {
        max-width: 100%;

        font-size: 42px;

        line-height: 1.01;

        letter-spacing: -.7px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 40px;
    }

    .why-card {
        min-height: 215px;

        padding: 27px 24px;

        border-radius: 19px;
    }

    .why-card h3 {
        margin-top: 22px;
        margin-bottom: 11px;

        font-size: 19px;
    }

    .why-card p {
        font-size: 14px;

        line-height: 1.75;
    }


    /* BEWERTUNGEN */

    .reviews-section {
        padding-top: 78px;
        padding-bottom: 75px;
    }

    .reviews-heading {
        display: block;

        margin-bottom: 34px;
    }

    .reviews-heading .section-title {
        width: 100%;
        max-width: 100%;

        font-size: 42px;

        line-height: 1;

        letter-spacing: -.6px;
    }

    .reviews-heading .section-title span {
        white-space: normal;
    }

    .reviews-subtitle {
        margin-top: 18px;

        font-size: 15px;
    }


    /* Bewertung kompakt und sauber */

    .rating-box {
        width: 100%;

        min-height: 132px;

        margin-top: 28px;

        padding: 25px 28px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 12px;

        text-align: left;

        overflow: hidden;
    }

    .rating-box strong {
        display: flex;
        align-items: center;

        font-size: 44px;

        line-height: 1;

        font-weight: 600;

        white-space: nowrap;

        flex-shrink: 0;
    }

    .rating-box strong span {
        display: inline-block;

        margin-left: 9px;

        color: var(--gold);

        font-size: 38px;

        line-height: 1;

        font-weight: 400;
    }

    .rating-box > div {
        margin: 0;

        color: #66707a;

        font-size: 21px;

        line-height: 1;

        white-space: nowrap;

        flex-shrink: 0;
    }

    .rating-box small {
        display: block;

        margin: 0 0 0 5px;

        color: #66707a;

        font-size: 14px;

        line-height: 1.3;

        white-space: nowrap;

        flex-shrink: 0;
    }


    /* Bewertungs-Slider */

    .review-slider {
        display: block;

        width: 100%;

        margin-top: 28px;
    }

    .review-window {
        width: 100%;

        overflow: hidden;
    }

    .review-track {
        gap: 14px;
    }

    .review-card {
        flex: 0 0 100%;

        width: 100%;
        min-width: 100%;

        min-height: 315px;

        padding: 26px 22px;

        border-radius: 19px;
    }

    .review-user {
        gap: 14px;
    }

    .review-avatar {
        width: 54px;
        height: 54px;

        flex-basis: 54px;

        font-size: 22px;
    }

    .review-user strong {
        font-size: 17px;
    }

    .review-user small {
        font-size: 11px;
    }

    .stars {
        margin: 20px 0 14px;

        font-size: 16px;
    }

    .review-card p {
        font-size: 15px;

        line-height: 1.7;
    }

    .review-answer {
        padding-top: 20px;

        font-size: 12px;
    }

    .review-arrow {
        display: none;
    }

    .review-dots {
        margin-top: 19px;
    }

    .google-review-cta {
        margin-top: 40px;

        min-height: 0;

        padding: 24px 21px;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        border-radius: 18px;
    }

    .google-review-cta h3 {
        font-size: 20px;
    }

    .google-review-cta p {
        font-size: 13px;

        line-height: 1.6;
    }

    .google-button {
        width: 100%;
    }


    /* BOOKING */

    .booking-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .booking-copy {
        padding-top: 0;
    }

    .booking-copy > p {
        font-size: 15px;

        line-height: 1.72;
    }

    .big-phone {
        font-size: 23px;
    }

    .form {
        padding: 25px 16px 27px;

        border-radius: 18px;
    }

    .form h3 {
        font-size: 22px;
    }

    .form-intro {
        font-size: 13px;
    }

    .form-grid,
    .route-grid,
    .trip-grid,
    .return-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .return-grid {
        padding: 16px;
    }

    .field input,
    .field select {
        height: 51px;
    }

    .field textarea {
        min-height: 125px;
    }

    .consent {
        font-size: 11px;
    }


    /* FOOTER */

    .site-footer {
        padding: 50px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 31px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================================
   SEHR KLEINE HANDYS
   ========================================================= */

@media (max-width: 390px) {

    .brand-logo {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .brand-copy strong {
        font-size: 10.5px;
    }

    .brand-copy span {
        font-size: 4.4px;
    }

    .hero-grid {
        padding-top: 22px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .hero-visual,
    .hero-image-wrap {
        height: 255px;

        min-height: 255px;
    }

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

    .why-section .section-title {
        font-size: 39px;
    }

    .reviews-heading .section-title {
        font-size: 39px;
    }

    .rating-box {
        min-height: 124px;

        padding: 22px 22px;

        gap: 9px;
    }

    .rating-box strong {
        font-size: 40px;
    }

    .rating-box strong span {
        font-size: 35px;

        margin-left: 7px;
    }

    .rating-box > div {
        font-size: 19px;
    }

    .rating-box small {
        font-size: 12px;

        margin-left: 2px;
    }

    .hero-point strong {
        font-size: 15px;
    }

    .hero-point span {
        font-size: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================================
   IPAD – GOOGLE BEWERTUNG OBEN RECHTS
========================================================= */

@media (min-width: 801px) and (max-width: 1150px) {

    .reviews-heading {
        display: flex !important;

        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;

        gap: 25px !important;
    }

    .reviews-heading > div:first-child {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .reviews-heading .section-title {
        width: 100% !important;
        max-width: 650px !important;

        font-size: 59px !important;
        line-height: .98 !important;
        letter-spacing: -1px !important;
    }

    /* Kleine Box oben rechts */
    .rating-box {
        flex: 0 0 180px !important;

        width: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;

        margin-top: 0 !important;

        padding: 20px 16px !important;

        border-radius: 17px !important;

        text-align: center !important;
    }

    .rating-box strong {
        font-size: 34px !important;
        line-height: 1 !important;
    }

    .rating-box strong span {
        color: var(--gold) !important;
        font-size: 30px !important;

        display: inline-block !important;
        margin-left: 5px !important;
    }

    .rating-box > div {
        font-size: 12px !important;
        margin-left: 3px !important;
    }

    .rating-box small {
        margin-top: 7px !important;
        font-size: 9px !important;
    }
}
/* =========================================================
   BEWERTUNGEN – DESKTOP + IPAD FINAL
========================================================= */

@media (min-width: 801px) {

    .reviews-heading {
        display: grid !important;

        grid-template-columns: minmax(0, 1fr) 220px !important;

        align-items: start !important;

        column-gap: 40px !important;

        margin-bottom: 53px !important;
    }

    .reviews-heading > div:first-child {
        min-width: 0 !important;
    }

    .reviews-heading .section-title {
        width: 100% !important;

        max-width: 900px !important;

        margin: 0 !important;

        font-size: 72px !important;

        line-height: .98 !important;

        letter-spacing: -1.5px !important;

        white-space: normal !important;
    }

    .reviews-heading .section-title span {
        display: block !important;

        white-space: nowrap !important;
    }

    .reviews-subtitle {
        margin-top: 18px !important;
    }

    /* Kleine Google-Box oben rechts */
    .rating-box {
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;

        margin: 0 !important;

        padding: 22px 24px !important;

        text-align: center !important;
    }

    .rating-box strong {
        font-size: 38px !important;
        line-height: 1 !important;
    }

    .rating-box strong span {
        display: inline-block !important;

        color: var(--gold) !important;

        font-size: 36px !important;

        margin-left: 5px !important;
    }

    .rating-box > div {
        display: inline !important;

        margin-left: 4px !important;

        font-size: 13px !important;
    }

    .rating-box small {
        display: block !important;

        margin-top: 8px !important;

        font-size: 10px !important;
    }
}


/* =========================================================
   IPAD – GLEICHE ANORDNUNG WIE PC
========================================================= */

@media (min-width: 801px) and (max-width: 1150px) {

    .reviews-heading {
        grid-template-columns: minmax(0, 1fr) 190px !important;

        column-gap: 25px !important;
    }

    .reviews-heading .section-title {
        max-width: 680px !important;

        font-size: 58px !important;

        line-height: .98 !important;

        letter-spacing: -1px !important;
    }

    .rating-box {
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;

        padding: 19px 15px !important;
    }

    .rating-box strong {
        font-size: 34px !important;
    }

    .rating-box strong span {
        font-size: 31px !important;
    }

    .rating-box > div {
        font-size: 12px !important;
    }

    .rating-box small {
        font-size: 9px !important;
    }
}
