/* =========================================================
   NAILS BY AMANDA – KOMPLETTE STYLE.CSS
   ========================================================= */

:root {
    color-scheme: light;

    --bg: #f5ede4;
    --bg-soft: rgba(255, 255, 255, 0.62);
    --surface: rgba(255, 255, 255, 0.88);
    --surface-solid: #fffdf9;

    --text: #302a27;
    --text-soft: #6d625b;
    --muted: #91847a;

    --accent: #a97942;
    --accent-dark: #8e6233;
    --accent-light: #ddc39d;

    --border: rgba(92, 72, 57, 0.12);
    --shadow-sm: 0 10px 28px rgba(54, 43, 35, 0.08);
    --shadow-md: 0 18px 48px rgba(54, 43, 35, 0.12);
    --shadow-lg: 0 28px 70px rgba(54, 43, 35, 0.16);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;

    --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background-color: var(--bg);
    background-image: url("Bilder/wallpaper pflanze.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--font);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    width: min(1200px, 100%);
    margin-inline: auto;
    padding-inline: 1rem;
}


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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 94px;
    padding: 0.75rem 1.5rem;
}

.brand,
.brand-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-link {
    line-height: 0;
    text-decoration: none;
}

.logo-image {
    width: 78px;
    height: auto;
    max-height: 78px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.65rem;
    margin-left: auto;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.68rem 1.05rem;

    color: #4a4039;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 7px 22px rgba(53, 42, 34, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(160, 119, 71, 0.16);
    box-shadow: 0 10px 28px rgba(53, 42, 34, 0.11);
    transform: translateY(-2px);
    outline: none;
}

.main-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #b88a51, #d2b080);
    border-color: transparent;
    box-shadow: 0 10px 26px rgba(111, 77, 41, 0.19);
}

.header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 0.5rem;
}

.whatsapp-link,
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible,
.social-link:hover,
.social-link:focus-visible {
    opacity: 0.82;
    transform: translateY(-2px);
    outline: none;
}

.whatsapp-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-link img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}


/* =========================================================
   HAMBURGER-MENÜ
   Funktion: menu.js
   Design: diese CSS-Regeln
   ========================================================= */

.nav-dropdown {
    display: none;
}

.nav-dropbtn {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;

    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(72, 57, 47, 0.1);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(45, 36, 30, 0.17);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    cursor: pointer;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.nav-dropbtn:hover,
.nav-dropbtn:focus-visible {
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(45, 36, 30, 0.21);
    transform: translateY(-2px);
    outline: none;
}

.nav-dropbtn:active {
    transform: scale(0.96);
}

.nav-hamburger {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
}

.nav-hamburger span {
    position: absolute;
    left: 0;
    display: block;
    width: 22px;
    height: 1.5px;
    background: #342e2a;
    border-radius: 999px;
    transition:
        top 0.25s ease,
        opacity 0.2s ease,
        transform 0.25s ease;
}

.nav-hamburger span:nth-child(1) {
    top: 0;
}

.nav-hamburger span:nth-child(2) {
    top: 7px;
}

.nav-hamburger span:nth-child(3) {
    top: 14px;
}

.nav-dropdown.open .nav-hamburger span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-dropdown.open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-dropdown.open .nav-hamburger span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-dropdown-menu {
    position: fixed;
    right: 1rem;
    bottom: 5.4rem;
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    width: min(232px, calc(100vw - 2rem));
    padding: 0.7rem;

    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(69, 55, 46, 0.1);
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(45, 36, 30, 0.19);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.97);
    transform-origin: bottom right;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.95rem;

    color: #3f3732;
    background: transparent;
    border-radius: 14px;

    font-family: var(--font);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--text);
    background: #f3ece4;
    transform: translateX(3px);
    outline: none;
}

.nav-dropdown-menu a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #aa7c45, #c99f6d);
}


/* =========================================================
   ALLGEMEINE SEITENABSTÄNDE
   ========================================================= */

.page-section,
.content-start {
    padding: 9rem 0 4rem;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   STARTSEITE
   ========================================================= */

.home-hero {
    padding: 8rem 0 1rem;
    overflow: hidden;
}

.home-hero-inner {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-big-logo {
    width: min(380px, 88vw);
    margin: 0 auto;
    object-fit: contain;
}

.home-hero-image {
    width: 100vw;
    max-width: none;
    height: auto;
    margin-left: calc(50% - 50vw);
    object-fit: contain;
}

.home-hero-copy {
    max-width: 720px;
    margin: 0 auto;
    padding: 0.5rem 1.2rem 1.5rem;
    text-align: center;
}

.home-hero-copy p {
    margin: 0;
    color: #50463f;
    font-size: 1rem;
    line-height: 1.85;
}

.home-hero-copy strong {
    display: inline-block;
    margin-bottom: 0.25rem;
    color: var(--text);
    font-size: 1.08rem;
}

.flyer-section {
    padding: 2rem 0 4rem;
}

.flyer-card {
    width: min(420px, 82vw);
    margin: 0 auto;
    text-align: center;
}

.flyer-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.home-studio {
    padding: 1rem 0 4rem;
    text-align: center;
}

.home-studio-frame {
    width: min(820px, 100%);
    margin: 0 auto;
}

.home-studio-image {
    width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}


/* Moderner Bereich unten auf der Startseite */

.home-explore {
    padding: 6rem 0;
}

.home-explore-heading {
    max-width: 680px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.home-section-label {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-explore-heading h2,
.home-contact-banner h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.home-explore-heading > p:last-child {
    margin: 1.2rem auto 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.home-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.home-link-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 1.2rem;
    min-height: 230px;
    padding: 1.8rem;

    color: var(--text);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.home-link-card:hover,
.home-link-card:focus-visible {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    outline: none;
}

.home-link-number {
    color: #b18a5b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.home-link-label {
    margin: 0 0 0.5rem;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-link-card h3 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.home-link-card div > p:last-child {
    margin: 0.9rem 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-link-arrow {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    color: #ffffff;
    background: var(--accent);
    border-radius: 50%;
    font-size: 1.15rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-link-card:hover .home-link-arrow {
    background: var(--accent-dark);
    transform: translateX(4px);
}

.home-contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 5rem auto 0;
    padding: clamp(2rem, 5vw, 3.5rem);

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.94),
        rgba(229, 211, 188, 0.9)
    );
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.home-contact-banner h2 {
    max-width: 600px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.home-contact-banner div > p:last-child {
    max-width: 580px;
    margin: 1rem 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.home-contact-button,
.offers-booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.9rem 1.4rem;

    color: #ffffff;
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 11px 28px rgba(91, 62, 32, 0.2);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.home-contact-button:hover,
.home-contact-button:focus-visible,
.offers-booking-button:hover,
.offers-booking-button:focus-visible {
    background: var(--accent-dark);
    box-shadow: 0 15px 34px rgba(91, 62, 32, 0.25);
    transform: translateY(-2px);
    outline: none;
}


/* =========================================================
   GALERIE
   ========================================================= */

.gallery {
    padding: 1rem 0 4rem;
}

.gallery-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.gallery-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    transition: filter 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover img {
    filter: brightness(1.02);
    transform: scale(1.025);
}


/* =========================================================
   ANGEBOTE
   ========================================================= */

.offers-page {
    padding: 10rem 0 5rem;
    color: var(--text);
}

.offers-label {
    margin: 0 0 0.9rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.offers-hero-inner {
    max-width: 960px;
    text-align: center;
}

.offers-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.offers-intro {
    max-width: 680px;
    margin: 2rem auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.85;
}

.offers-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 3.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.offers-highlight {
    display: grid;
    gap: 0.35rem;
    padding: 0.5rem;
}

.offers-highlight span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offers-highlight strong {
    font-size: 1rem;
    font-weight: 600;
}

.offers-section {
    margin-top: 6rem;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offers-heading {
    max-width: 650px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.offers-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.offer-card--featured {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(229, 211, 187, 0.9)
    );
}

.offer-card--wide {
    grid-column: 1 / -1;
}

.offer-card-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.offer-card-heading > span {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    color: #9e7546;
    background: #f2e8dc;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.offer-card-heading p {
    margin: 0 0 0.35rem;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offer-card-heading h3 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.offer-price-list {
    display: grid;
}

.offer-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(100, 78, 60, 0.1);
}

.offer-price-row:last-child {
    border-bottom: 0;
}

.offer-price-row span {
    color: #554b44;
    font-size: 0.97rem;
}

.offer-price-row strong {
    color: #966b38;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.offer-price-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
}

.offer-price-list--columns .offer-price-row {
    border-bottom: 0;
}

.offers-information {
    padding: 6rem 0 1rem;
}

.offers-information-inner {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
}

.offers-note {
    max-width: 760px;
    padding-left: 1.5rem;
    border-left: 3px solid #bd8d53;
}

.offers-note h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.offers-note > p:last-child {
    margin: 1rem 0 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.offers-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: clamp(2rem, 5vw, 3.5rem);

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.94),
        rgba(224, 204, 178, 0.9)
    );
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.offers-booking h2 {
    max-width: 600px;
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.offers-booking div > p:last-child {
    max-width: 580px;
    margin: 1rem 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact-page {
    padding-top: 10rem;
    padding-bottom: 5rem;
    color: #443a34;
    text-align: center;
}

.contact-page .container {
    max-width: 800px;
}

.contact-page p {
    margin: 0 auto 1.4rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.contact-link {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--accent-dark);
    outline: none;
}

.contact-link--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    display: inline-flex;
}

.contact-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


/* =========================================================
   MODERNE ÜBER-MICH-SEITE
   ========================================================= */

.about-modern-page {
    padding: 10.5rem 0 5rem;
    color: var(--text);
}

.about-modern-container {
    max-width: 960px;
    text-align: center;
}

.about-modern-label {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-modern-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(2.35rem, 6vw, 4.4rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.about-modern-lead {
    max-width: 680px;
    margin: 2rem auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-modern-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 850px;
    margin: 3.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-modern-fact {
    display: grid;
    gap: 0.35rem;
    padding: 0.5rem;
}

.about-modern-fact span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-modern-fact strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.about-modern-story {
    margin-top: 7rem;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-modern-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    max-width: 1000px;
}

.about-modern-story-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-modern-story-text {
    display: grid;
    gap: 1.4rem;
}

.about-modern-story-text p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.about-modern-qualifications {
    padding: 6rem 0 2rem;
}

.about-modern-section-heading {
    max-width: 650px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-modern-section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.about-modern-section-heading > p:last-child {
    margin: 1.2rem auto 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.qualification-modern-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: clamp(2.5rem, 7vw, 6rem);
    max-width: 920px;
    margin: 0 auto;
}

.qualification-modern-item {
    margin: 0;
}

.qualification-modern-item:nth-child(2) {
    padding-top: 5rem;
}

.qualification-modern-document {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 1.5rem;
    overflow: hidden;

    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.95),
        rgba(230, 220, 207, 0.7)
    );
    border-radius: 28px;
}

.qualification-modern-document::before {
    content: "";
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 14rem;
    height: 14rem;
    background: rgba(198, 153, 91, 0.12);
    border-radius: 50%;
}

.qualification-modern-document img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(53, 42, 34, 0.14));
}

.qualification-modern-item figcaption {
    padding: 1.35rem 0.2rem 0;
}

.qualification-modern-item figcaption span {
    display: block;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.qualification-modern-item figcaption h3 {
    margin: 0.4rem 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.qualification-modern-item figcaption p {
    margin: 0.35rem 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}


/* =========================================================
   KOMPATIBILITÄT MIT DER ÄLTEREN PREISSEITE
   ========================================================= */

.pricing-page {
    padding-top: 9rem;
}

.pricing-list {
    max-width: 860px;
    margin: 0 auto;
}

.pricing-list-inner {
    display: grid;
    gap: 1.5rem;
}

.pricing-section {
    padding: 1.75rem 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pricing-section-header {
    margin-bottom: 1rem;
}

.pricing-section-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-table {
    display: grid;
}

.pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(auto, 145px);
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(113, 87, 65, 0.11);
}

.pricing-row:last-child {
    border-bottom: 0;
}

.pricing-row span {
    color: #514740;
    font-size: 0.98rem;
}

.pricing-row strong {
    color: #956b37;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.pricing-note {
    max-width: 860px;
    margin: 2rem auto 0;
    padding: 1.4rem 1.6rem;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.78);
    border-left: 4px solid #c69a5f;
    border-radius: 0 16px 16px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-note p {
    margin: 0;
}


/* =========================================================
   KOMPATIBILITÄT MIT DER ÄLTEREN ÜBER-MICH-SEITE
   ========================================================= */

.about-page {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
}

.about-page p {
    max-width: 760px;
    margin: 0 auto 1.25rem;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.85;
}

.document-section {
    margin-top: 3rem;
}

.documents-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.document-card {
    text-align: left;
}

.document-image,
.document-image--gold-frame {
    width: 100%;
    height: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    object-fit: contain;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    body {
        background-attachment: scroll;
    }

    .header-top {
        gap: 0.6rem;
        min-height: 78px;
        padding: 0.55rem 0.75rem 0.55rem 0.35rem;
    }

    .logo-image {
        width: 68px;
        max-height: 68px;
    }

    .main-nav {
        display: none;
    }

    .header-action {
        gap: 0.35rem;
        margin-left: auto;
    }

    .whatsapp-link img {
        width: 37px;
        height: 37px;
    }

    .social-link img {
        width: 39px;
        height: 39px;
    }

    .nav-dropdown {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        z-index: 1000;
        display: block;
    }

    .home-hero {
        padding-top: 7rem;
    }

    .page-section,
    .content-start,
    .pricing-page {
        padding-top: 8rem;
    }

    .contact-page {
        padding-top: 8.5rem;
    }

    .offers-page,
    .about-modern-page {
        padding-top: 8.5rem;
    }

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

    .offers-section {
        margin-top: 4.5rem;
    }
}


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

@media (max-width: 700px) {
    .home-hero-copy {
        padding-inline: 1rem;
    }

    .home-hero-copy p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .flyer-section {
        padding-top: 1.25rem;
    }

    .home-explore {
        padding: 4rem 0;
    }

    .home-link-grid {
        grid-template-columns: 1fr;
    }

    .home-link-card {
        min-height: 0;
        padding: 1.5rem;
    }

    .home-contact-banner,
    .offers-booking {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 3.5rem;
    }

    .home-contact-button,
    .offers-booking-button {
        width: 100%;
    }

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

    .offers-page {
        padding-bottom: 3rem;
    }

    .offers-hero h1 {
        font-size: 2.4rem;
    }

    .offers-intro {
        font-size: 1rem;
    }

    .offers-highlights {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .offers-section {
        padding: 3.5rem 0;
    }

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

    .offer-card,
    .offer-card--wide {
        grid-column: auto;
        padding: 1.5rem;
        border-radius: 21px;
    }

    .offer-price-list--columns {
        grid-template-columns: 1fr;
    }

    .offer-price-list--columns .offer-price-row {
        border-bottom: 1px solid rgba(100, 78, 60, 0.1);
    }

    .offer-price-list--columns .offer-price-row:last-child {
        border-bottom: 0;
    }

    .offers-information {
        padding-top: 4rem;
    }

    .about-modern-hero h1 {
        font-size: 2.3rem;
    }

    .about-modern-lead {
        font-size: 1rem;
    }

    .about-modern-facts {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .about-modern-story {
        margin-top: 4.5rem;
        padding: 3.5rem 0;
    }

    .about-modern-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-modern-qualifications {
        padding-top: 4rem;
    }

    .about-modern-section-heading {
        margin-bottom: 3rem;
    }

    .qualification-modern-grid,
    .documents-stack {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .qualification-modern-item:nth-child(2) {
        padding-top: 0;
    }

    .qualification-modern-document {
        min-height: 0;
        padding: 1rem;
        border-radius: 20px;
    }

    .qualification-modern-document img {
        max-height: none;
    }

    .pricing-section {
        padding: 1.4rem 1.25rem;
        border-radius: 18px;
    }

    .pricing-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.6rem;
    }

    .pricing-row span,
    .pricing-row strong {
        font-size: 0.92rem;
    }
}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 430px) {
    .home-link-card {
        grid-template-columns: 1fr auto;
    }

    .home-link-number {
        display: none;
    }
}

@media (max-width: 390px) {
    .header-top {
        padding-right: 0.55rem;
    }

    .logo-image {
        width: 60px;
        max-height: 60px;
    }

    .whatsapp-link img {
        width: 34px;
        height: 34px;
    }

    .social-link img {
        width: 36px;
        height: 36px;
    }

    .nav-dropbtn {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }

    .nav-dropdown-menu {
        bottom: 5.2rem;
    }

    .offer-card {
        padding: 1.3rem;
    }

    .offer-card-heading {
        gap: 0.8rem;
    }

    .offer-card-heading > span {
        width: 2.4rem;
        height: 2.4rem;
    }

    .offer-price-row {
        gap: 0.6rem;
    }

    .offer-price-row span,
    .offer-price-row strong {
        font-size: 0.9rem;
    }
}


/* =========================================================
   WENIGER ANIMATIONEN
   ========================================================= */

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

/* ========================================
   Moderne Galerie
======================================== */

.gallery-modern-page {
    padding: 10rem 0 5rem;
    color: #312b28;
    font-family: Arial, Helvetica, sans-serif;
}

.gallery-modern-hero-inner {
    max-width: 900px;
    text-align: center;
}

.gallery-modern-label {
    margin: 0 0 1rem;
    color: #a17645;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gallery-modern-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    color: #302a27;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.gallery-modern-intro {
    max-width: 650px;
    margin: 2rem auto 0;
    color: #685d56;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* Bilderbereich */

.gallery-modern-section {
    margin-top: 5rem;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-modern-item {
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(111, 85, 64, 0.1);
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(52, 41, 33, 0.09);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gallery-modern-item:hover {
    box-shadow: 0 22px 50px rgba(52, 41, 33, 0.14);
    transform: translateY(-4px);
}

.gallery-modern-item img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gallery-modern-item:hover img {
    filter: brightness(1.025);
    transform: scale(1.025);
}

.gallery-modern-item figcaption {
    min-height: 64px;
    padding: 1.15rem 1.25rem;

    color: #3b332f;
    background: rgba(255, 255, 255, 0.94);

    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.gallery-modern-item--without-text {
    background: transparent;
}

.gallery-modern-item--without-text img {
    border-radius: 22px;
}


/* Kontaktbereich */

.gallery-modern-contact {
    padding: 6rem 0 1rem;
}

.gallery-modern-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1000px;
    padding: clamp(2rem, 5vw, 3.5rem);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.94),
            rgba(225, 205, 180, 0.9)
        );

    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(53, 42, 34, 0.11);
}

.gallery-modern-contact h2 {
    max-width: 600px;
    margin: 0;
    color: #302a27;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.gallery-modern-contact div > p:last-child {
    max-width: 590px;
    margin: 1rem 0 0;
    color: #685e57;
    line-height: 1.75;
}

.gallery-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 0.75rem;

    min-height: 52px;
    padding: 0.9rem 1.4rem;

    color: #ffffff;
    background: #a87941;
    border-radius: 999px;
    box-shadow: 0 11px 28px rgba(91, 62, 32, 0.2);

    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.gallery-modern-button:hover,
.gallery-modern-button:focus-visible {
    background: #916332;
    box-shadow: 0 15px 34px rgba(91, 62, 32, 0.25);
    transform: translateY(-2px);
    outline: none;
}


/* Tablet */

@media (max-width: 860px) {
    .gallery-modern-page {
        padding-top: 8.5rem;
    }

    .gallery-modern-section {
        margin-top: 4rem;
        padding: 3.5rem 0;
    }

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


/* Handy */

@media (max-width: 600px) {
    .gallery-modern-page {
        padding-bottom: 3rem;
    }

    .gallery-modern-hero h1 {
        font-size: 2.4rem;
    }

    .gallery-modern-intro {
        font-size: 1rem;
    }

    .gallery-modern-section {
        margin-top: 3.5rem;
        padding: 2.5rem 0;
    }

    .gallery-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-modern-item {
        border-radius: 18px;
    }

    .gallery-modern-item img,
    .gallery-modern-item--without-text img {
        aspect-ratio: 5 / 4;
        border-radius: 18px 18px 0 0;
    }

    .gallery-modern-item--without-text img {
        border-radius: 18px;
    }

    .gallery-modern-item figcaption {
        min-height: 0;
        padding: 1rem 1.1rem;
    }

    .gallery-modern-contact {
        padding-top: 4rem;
    }

    .gallery-modern-contact-inner {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 24px;
    }

    .gallery-modern-button {
        width: 100%;
    }
}

/* ========================================
   Logo und Header neu positionieren
======================================== */

.site-header .header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;

    min-height: 120px;
    padding: 1rem 2rem;
}

.site-header .brand {
    justify-self: start;
    min-width: 0;
    margin: 0;
}

.site-header .brand-link {
    display: block;
    line-height: 0;
}

.site-header .logo-image {
    display: block;
    width: 130px;
    height: auto;
    max-height: 110px;
    margin: 0;
    object-fit: contain;
}

.site-header .main-nav {
    justify-self: center;
    margin: 0;
}

.site-header .header-action {
    justify-self: end;
}


/* Tablet und Handy */

@media (max-width: 860px) {
    .site-header .header-top {
        grid-template-columns: auto 1fr auto;
        gap: 0.75rem;

        min-height: 90px;
        padding: 0.6rem 0.8rem;
    }

    .site-header .logo-image {
        width: 95px;
        max-height: 80px;
    }

    .site-header .header-action {
        grid-column: 3;
    }
}


/* Kleine Smartphones */

@media (max-width: 390px) {
    .site-header .logo-image {
        width: 82px;
        max-height: 72px;
    }

    .site-header .header-top {
        padding-left: 0.45rem;
        padding-right: 0.6rem;
    }
}

/* ========================================
   Moderne Startseite – Mobile First
======================================== */

.home-modern-page {
    padding: 7.5rem 0 3rem;
    color: #312b28;
    font-family: Arial, Helvetica, sans-serif;
}

.home-modern-label {
    margin: 0 0 0.8rem;
    color: #a17645;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* Titelbild */

.home-cover-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: #cfc4b9;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(48, 38, 31, 0.16);
}

.home-cover-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-cover-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(23, 18, 16, 0.04) 25%,
            rgba(23, 18, 16, 0.76) 100%
        );
}

.home-cover-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 2rem 1.5rem;
    color: #ffffff;
}

.home-cover-content .home-modern-label {
    color: #f1d6b1;
}

.home-cover-content h1 {
    max-width: 680px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 11vw, 4.6rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.home-cover-text {
    max-width: 570px;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.7;
}

.home-cover-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.6rem;
}


/* Buttons */

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.home-button--primary {
    color: #322b27;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(28, 21, 18, 0.22);
}

.home-button--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(10px);
}

.home-button--gold {
    color: #ffffff;
    background: #a87941;
    box-shadow: 0 10px 26px rgba(91, 62, 32, 0.2);
}

.home-button--gold:hover,
.home-button--gold:focus-visible {
    background: #916332;
}


/* Vorstellung */

.home-introduction {
    padding: 4.5rem 0;
}

.home-introduction-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
}

.home-introduction-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 9vw, 3.3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.home-introduction-content > p {
    margin: 0 0 1.2rem;
    color: #655b54;
    font-size: 1rem;
    line-height: 1.8;
}

.home-studio-facts {
    display: grid;
    gap: 1rem;
    margin-top: 2.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(77, 60, 49, 0.14);
}

.home-studio-facts div {
    display: grid;
    gap: 0.25rem;
}

.home-studio-facts span {
    color: #9b8d84;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-studio-facts strong {
    color: #39322e;
    font-size: 0.95rem;
    font-weight: 600;
}


/* Aktion */

.home-promotion {
    padding: 1rem 0 4.5rem;
}

.home-promotion-card {
    display: grid;
    gap: 2rem;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(228, 211, 190, 0.88)
        );
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(53, 42, 34, 0.11);
}

.home-promotion-content {
    padding: 2rem 1.5rem 0;
}

.home-promotion-content h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 9vw, 3.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.home-promotion-content > p:last-of-type {
    margin: 1.2rem 0 1.6rem;
    color: #675c55;
    line-height: 1.75;
}

.home-promotion-image-wrap {
    padding: 0 1rem 1rem;
}

.home-promotion-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 38px rgba(48, 38, 31, 0.12);
}


/* Links zu den Seiten */

.home-discover {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-discover-heading {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.home-discover-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 9vw, 3.3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.home-discover-heading > p:last-child {
    margin: 1.1rem auto 0;
    color: #6d625b;
    line-height: 1.75;
}

.home-discover-grid {
    display: grid;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.home-discover-card {
    position: relative;
    display: block;
    min-height: 190px;
    padding: 1.5rem 4.2rem 1.5rem 1.5rem;
    color: #342e2a;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(115, 87, 66, 0.1);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(53, 42, 34, 0.07);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.home-discover-card:hover,
.home-discover-card:focus-visible {
    background: #ffffff;
    box-shadow: 0 19px 44px rgba(53, 42, 34, 0.12);
    transform: translateY(-4px);
    outline: none;
}

.home-discover-category {
    display: block;
    margin-bottom: 0.5rem;
    color: #a17645;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-discover-card h3 {
    margin: 0;
    color: #302a27;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.home-discover-card p {
    margin: 0.8rem 0 0;
    color: #70655e;
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-discover-arrow {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
    background: #aa7c45;
    border-radius: 50%;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.home-discover-card:hover .home-discover-arrow {
    background: #906332;
    transform: translateX(3px);
}


/* Abschluss */

.home-final {
    padding: 4.5rem 0 1rem;
}

.home-final-card {
    display: grid;
    gap: 1.8rem;
    padding: 2rem 1.5rem;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.95),
            rgba(224, 204, 178, 0.9)
        );
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(53, 42, 34, 0.11);
}

.home-final-card h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(1.9rem, 8vw, 2.9rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.home-final-card div > p:last-child {
    margin: 1rem 0 0;
    color: #685e57;
    line-height: 1.75;
}


/* ========================================
   Tablet und Desktop
======================================== */

@media (min-width: 640px) {
    .home-cover-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .home-button {
        width: auto;
    }

    .home-studio-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (min-width: 860px) {
    .home-modern-page {
        padding-top: 9rem;
    }

    .home-cover-card {
        min-height: 680px;
        border-radius: 32px;
    }

    .home-cover-content {
        padding: 4rem;
    }

    .home-cover-text {
        font-size: 1.05rem;
    }

    .home-introduction {
        padding: 7rem 0;
    }

    .home-introduction-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 6rem;
        align-items: start;
    }

    .home-promotion {
        padding-bottom: 7rem;
    }

    .home-promotion-card {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 3rem;
        padding: 1.5rem;
        border-radius: 32px;
    }

    .home-promotion-image-wrap {
        padding: 0;
    }

    .home-discover {
        padding: 6rem 0;
    }

    .home-final {
        padding: 6rem 0 2rem;
    }

    .home-final-card {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 3rem;
        padding: 3.5rem;
        border-radius: 32px;
    }
}

/* Titelbild ohne Text */
.home-cover {
    padding: 1rem 0 0;
}

.home-cover-card {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(48, 38, 31, 0.14);
    background: rgba(255, 255, 255, 0.7);
}

.home-cover-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Diese alten Overlays werden nicht mehr gebraucht */
.home-cover-shade,
.home-cover-content,
.home-cover-actions {
    display: none;
}

@media (max-width: 700px) {
    .home-cover {
        padding-top: 0.5rem;
    }

    .home-cover-card {
        border-radius: 20px;
    }
}

/* Startbild: gleicher Abstand wie auf der Angebotsseite */
.home-modern-page {
    padding-top: 0 !important;
}

/* Mehr Abstand zwischen Header und Startbild */
.home-showcase {
    padding: 12rem 0 0;
}

@media (min-width: 860px) {
    .home-showcase {
        padding-top: 12rem;
    }
}

@media (max-width: 700px) {
    .home-showcase {
        padding-top: 10rem;
    }
}

.home-showcase-frame {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: transparent;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(48, 38, 31, 0.14);
}

.home-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}


/* Eröffnungsaktion ohne Lücke des entfernten Buttons */
.home-promotion-content {
    padding: 2rem 1.5rem;
}

.home-promotion-content > p:last-of-type {
    margin: 1.2rem 0 0;
}


/* Desktop */
@media (min-width: 860px) {
    .home-showcase {
        padding-top: 10rem;
    }

    .home-promotion-content {
        padding: 2rem;
    }
}


/* Handy */
@media (max-width: 700px) {
    .home-showcase {
        padding-top: 8.5rem;
    }

    .home-showcase-frame {
        border-radius: 20px;
    }

    .home-welcome {
        padding: 3.5rem 0 4rem;
    }
}


/* ========================================
   Moderne Kontaktseite
======================================== */

.contact-modern-page {
    padding: 10rem 0 4rem;
    color: #312b28;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-modern-label {
    margin: 0 0 0.9rem;
    color: #a17645;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* Einleitung */

.contact-modern-hero-inner {
    max-width: 900px;
    text-align: center;
}

.contact-modern-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    color: #302a27;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.contact-modern-intro {
    max-width: 640px;
    margin: 2rem auto 0;
    color: #685d56;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* Kontaktmöglichkeiten */

.contact-modern-options {
    padding: 5rem 0 6rem;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-modern-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 180px;
    padding: 1.75rem;

    color: #342e2a;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(108, 82, 62, 0.1);
    border-radius: 26px;
    box-shadow: 0 15px 42px rgba(53, 42, 34, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-modern-card:hover,
.contact-modern-card:focus-visible {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(53, 42, 34, 0.13);
    transform: translateY(-5px);
    outline: none;
}

.contact-modern-icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    background: #f2e8dc;
    border-radius: 18px;
}

.contact-modern-icon img {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.contact-modern-card-content {
    display: grid;
    min-width: 0;
    gap: 0.25rem;
}

.contact-modern-card-label {
    color: #a17645;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-modern-card-content strong {
    overflow-wrap: anywhere;
    color: #332d29;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-modern-card-text {
    margin-top: 0.3rem;
    color: #71665f;
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-modern-arrow {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    color: #ffffff;
    background: #aa7c45;
    border-radius: 50%;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-modern-card:hover .contact-modern-arrow {
    background: #906332;
    transform: translateX(3px);
}


/* Informationen vor dem Termin */

.contact-modern-information {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-modern-information-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    max-width: 1000px;
}

.contact-modern-information-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.contact-modern-information-text {
    display: grid;
    gap: 1.3rem;
}

.contact-modern-information-text p {
    margin: 0;
    color: #655b54;
    font-size: 1rem;
    line-height: 1.85;
}


/* Studioinformationen */

.contact-modern-studio {
    padding: 6rem 0 1rem;
}

.contact-modern-studio-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.95),
            rgba(225, 205, 180, 0.9)
        );

    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(53, 42, 34, 0.11);
}

.contact-modern-studio-heading {
    max-width: 650px;
}

.contact-modern-studio-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-modern-studio-heading > p:last-child {
    margin: 1rem 0 0;
    color: #685e57;
    line-height: 1.75;
}

.contact-modern-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-modern-fact {
    display: grid;
    gap: 0.3rem;
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.57);
    border: 1px solid rgba(108, 82, 62, 0.08);
    border-radius: 18px;
}

.contact-modern-fact span {
    color: #9c7a55;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-modern-fact strong {
    color: #3b332f;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-modern-privacy {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    color: #70645c;
    border-top: 1px solid rgba(95, 71, 53, 0.13);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* Tablet */

@media (max-width: 860px) {
    .contact-modern-page {
        padding-top: 8.5rem;
    }

    .contact-modern-information-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Handy */

@media (max-width: 700px) {
    .contact-modern-page {
        padding-bottom: 3rem;
    }

    .contact-modern-hero h1 {
        font-size: 2.4rem;
    }

    .contact-modern-intro {
        font-size: 1rem;
    }

    .contact-modern-options {
        padding: 3.5rem 0 4rem;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-modern-card {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 0;
        gap: 1rem;
        padding: 1.35rem;
        border-radius: 21px;
    }

    .contact-modern-icon {
        width: 3.4rem;
        height: 3.4rem;
        border-radius: 15px;
    }

    .contact-modern-icon img {
        width: 1.9rem;
        height: 1.9rem;
    }

    .contact-modern-card-content strong {
        font-size: 1.08rem;
    }

    .contact-modern-arrow {
        display: none;
    }

    .contact-modern-information {
        padding: 3.5rem 0;
    }

    .contact-modern-studio {
        padding-top: 4rem;
    }

    .contact-modern-studio-card {
        border-radius: 24px;
    }

    .contact-modern-facts {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Moderne Kontaktseite
======================================== */

.contact-modern-page {
    padding: 10rem 0 4rem;
    color: #312b28;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-modern-label {
    margin: 0 0 0.9rem;
    color: #a17645;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* Einleitung */

.contact-modern-hero-inner {
    max-width: 900px;
    text-align: center;
}

.contact-modern-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    color: #302a27;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.contact-modern-intro {
    max-width: 640px;
    margin: 2rem auto 0;
    color: #685d56;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* Kontaktmöglichkeiten */

.contact-modern-options {
    padding: 5rem 0 6rem;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-modern-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 180px;
    padding: 1.75rem;

    color: #342e2a;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(108, 82, 62, 0.1);
    border-radius: 26px;
    box-shadow: 0 15px 42px rgba(53, 42, 34, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-modern-card:hover,
.contact-modern-card:focus-visible {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(53, 42, 34, 0.13);
    transform: translateY(-5px);
    outline: none;
}

.contact-modern-icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    background: #f2e8dc;
    border-radius: 18px;
}

.contact-modern-icon img {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.contact-modern-card-content {
    display: grid;
    min-width: 0;
    gap: 0.25rem;
}

.contact-modern-card-label {
    color: #a17645;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-modern-card-content strong {
    overflow-wrap: anywhere;
    color: #332d29;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-modern-card-text {
    margin-top: 0.3rem;
    color: #71665f;
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-modern-arrow {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    color: #ffffff;
    background: #aa7c45;
    border-radius: 50%;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-modern-card:hover .contact-modern-arrow {
    background: #906332;
    transform: translateX(3px);
}


/* Informationen vor dem Termin */

.contact-modern-information {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-modern-information-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    max-width: 1000px;
}

.contact-modern-information-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.contact-modern-information-text {
    display: grid;
    gap: 1.3rem;
}

.contact-modern-information-text p {
    margin: 0;
    color: #655b54;
    font-size: 1rem;
    line-height: 1.85;
}


/* Studioinformationen */

.contact-modern-studio {
    padding: 6rem 0 1rem;
}

.contact-modern-studio-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.95),
            rgba(225, 205, 180, 0.9)
        );

    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(53, 42, 34, 0.11);
}

.contact-modern-studio-heading {
    max-width: 650px;
}

.contact-modern-studio-heading h2 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-modern-studio-heading > p:last-child {
    margin: 1rem 0 0;
    color: #685e57;
    line-height: 1.75;
}

.contact-modern-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-modern-fact {
    display: grid;
    gap: 0.3rem;
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.57);
    border: 1px solid rgba(108, 82, 62, 0.08);
    border-radius: 18px;
}

.contact-modern-fact span {
    color: #9c7a55;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-modern-fact strong {
    color: #3b332f;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-modern-privacy {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    color: #70645c;
    border-top: 1px solid rgba(95, 71, 53, 0.13);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* Tablet */

@media (max-width: 860px) {
    .contact-modern-page {
        padding-top: 8.5rem;
    }

    .contact-modern-information-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Handy */

@media (max-width: 700px) {
    .contact-modern-page {
        padding-bottom: 3rem;
    }

    .contact-modern-hero h1 {
        font-size: 2.4rem;
    }

    .contact-modern-intro {
        font-size: 1rem;
    }

    .contact-modern-options {
        padding: 3.5rem 0 4rem;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-modern-card {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 0;
        gap: 1rem;
        padding: 1.35rem;
        border-radius: 21px;
    }

    .contact-modern-icon {
        width: 3.4rem;
        height: 3.4rem;
        border-radius: 15px;
    }

    .contact-modern-icon img {
        width: 1.9rem;
        height: 1.9rem;
    }

    .contact-modern-card-content strong {
        font-size: 1.08rem;
    }

    .contact-modern-arrow {
        display: none;
    }

    .contact-modern-information {
        padding: 3.5rem 0;
    }

    .contact-modern-studio {
        padding-top: 4rem;
    }

    .contact-modern-studio-card {
        border-radius: 24px;
    }

    .contact-modern-facts {
        grid-template-columns: 1fr;
    }
}

/* Einheitliche Schriftart auf der gesamten Webseite */
body,
button,
input,
textarea,
select {
    font-family: Arial, Helvetica, sans-serif !important;
}

body * {
    font-family: inherit !important;
}


/* Einheitliche dünne Schrift für alle Überschriften */
h1,
h2,
h3,
h4,
.home-introduction-heading h2,
.home-discover-heading h2,
.home-discover-card h3,
.home-explore-heading h2,
.home-link-card h3,
.offer-card-heading h3,
.pricing-section-header h2,
.gallery-modern-hero h1,
.about-modern-hero h1,
.about-modern-story-heading h2,
.contact-modern-hero h1 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-style: normal;
    font-weight: 500 !important;
    letter-spacing: -0.03em;
}

/* Kleine Boxentitel wie Neuset und Auffüllen */
.offer-card-heading h3,
.pricing-section-header h2,
.home-discover-card h3,
.home-link-card h3 {
    font-weight: 500 !important;
    text-transform: none;
    letter-spacing: -0.02em;
}

/* Diplome auf Laptop vollständig nebeneinander */
@media (min-width: 701px) {
    .qualification-modern-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
        gap: 2rem;
    }

    .qualification-modern-item:nth-child(2) {
        padding-top: 0;
    }

    .qualification-modern-document {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 520px;
        height: auto;
        overflow: visible;
        padding: 1.5rem;
    }

    .qualification-modern-document img {
        width: 100%;
        height: auto;
        max-height: 520px;
        object-fit: contain;
    }
}

/* Modernes Startbild auf Laptop und Desktop */
@media (min-width: 860px) {
    .home-showcase {
        padding: 12rem 0 5rem;
    }

    .home-showcase-frame {
        width: min(1000px, 100%);
        margin: 0 auto;
        padding: 0.5rem;

        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 32px;
        box-shadow: 0 18px 45px rgba(48, 38, 31, 0.12);
    }

    .home-showcase-image {
        width: 100%;
        height: auto;
        border-radius: 24px;
    }

    .home-welcome {
        padding-top: 0;
    }
}

/* Mehr Abstand zwischen Instagram und WhatsApp im Header */
.header-action {
    gap: 0.9rem;
}

@media (max-width: 900px) {
    .header-action {
        gap: 0.65rem;
    }
}


/* ========================================
   Startbild und Begrüssung
======================================== */

.home-showcase {
    padding: 10rem 0 4.5rem;
}

.home-showcase-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.home-showcase-frame {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: transparent;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(48, 38, 31, 0.14);
}

.home-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-welcome {
    padding: 0;
}

.home-welcome h1 {
    margin: 0;
    color: #302a27;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.home-welcome > p:not(.home-modern-label) {
    margin: 1.4rem 0 0;
    color: #655b54;
    line-height: 1.8;
}


/* Laptop und Desktop */

@media (min-width: 860px) {
    .home-showcase-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
        gap: clamp(3rem, 6vw, 6rem);
    }

    .home-showcase-frame {
        max-height: 560px;
    }

    .home-showcase-image {
        width: 100%;
        height: 560px;
        object-fit: cover;
    }
}


/* Handy */

@media (max-width: 700px) {
    .home-showcase {
        padding: 8.5rem 0 3.5rem;
    }

    .home-showcase-grid {
        gap: 3rem;
    }

    .home-showcase-frame {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        border-radius: 0;
        box-shadow: none;
    }

    .home-showcase-image {
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
    }

    .home-welcome {
        padding-inline: 0;
    }
}


/* Dünne, moderne Schrift für alle Titel */
h1,
h2,
h3,
h4 {
    font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif !important;
    font-weight: 300 !important;
    font-style: normal;
    letter-spacing: -0.035em;
}

/* Kleinere Titel in Karten und Angebotsboxen */
.home-discover-card h3,
.offer-card-heading h3,
.pricing-section-header h2 {
    font-weight: 400 !important;
    letter-spacing: -0.02em;
}


/* Einheitliche dünne, moderne Schrift für alle Titel */
h1,
h2,
h3,
h4,
.home-welcome h1,
.home-promotion h2,
.home-discover-heading h2,
.home-discover-card h3,
.gallery-modern-hero h1,
.gallery-modern-contact h2,
.contact-modern-hero h1,
.contact-modern-information-heading h2,
.contact-modern-studio-heading h2,
.offers-hero h1,
.offers-heading h2,
.offer-card-heading h3,
.offers-note h2,
.offers-booking h2,
.about-modern-hero h1,
.about-modern-story-heading h2,
.about-modern-section-heading h2,
.qualification-modern-item h3,
.pricing-section-header h2 {
    font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 300 !important;
    letter-spacing: -0.035em !important;
    text-transform: none;
}

/* Kleine Titel etwas stärker für bessere Lesbarkeit */
.home-discover-card h3,
.offer-card-heading h3,
.qualification-modern-item h3,
.pricing-section-header h2 {
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
}

/* Startbild und Text auf Laptop */
.home-showcase {
    padding: 12rem 0 5rem;
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: stretch;
    gap: 4rem;
}

.home-showcase-frame {
    width: 100%;
    min-height: 540px;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-showcase-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 540px;

    object-fit: cover;
    object-position: center;

    border-radius: 0;
}

.home-welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}


/* Handy: Bild über die gesamte Bildschirmbreite */
@media (max-width: 700px) {
    .home-showcase {
        padding: 8.5rem 0 3.5rem;
    }

    .home-showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-showcase-frame {
        width: 100vw;
        min-height: 0;
        margin-left: calc(50% - 50vw);
    }

    .home-showcase-image {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

    .home-welcome {
        padding: 0;
    }
}

.offer-card-note {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(80, 65, 55, 0.12);
    color: #6f655f;
    font-size: 0.88rem;
    line-height: 1.65;
}

.contact-modern-map {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 1.5rem;
}

.contact-modern-map iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width: 600px) {
    .contact-modern-map iframe {
        height: 320px;
    }
}