﻿:root {
    --main-color: #2b1b3f;
    --accent-color: #c9a45c;
    --bg: #f7f4ed;
    --text: #5e5a63;
    --card-bg: #fffaf1;
    --muted: #5e5a63;
    --glow: rgba(226, 201, 138, 0.45);
    --ink: #1f172c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 248, 233, 0.9) 0%, rgba(247, 240, 227, 0.8) 35%, transparent 60%),
        radial-gradient(circle at 85% 18%, rgba(214, 196, 156, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, #f7f2e9 0%, #efe6d6 100%);
    color: var(--text);
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.5'/></svg>");
    mix-blend-mode: multiply;
    z-index: 0;
}

section {
    scroll-margin-top: 110px;
}

body,
body *:not(input):not(textarea) {
    caret-color: transparent;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(47, 30, 69, 0.95) 0%, rgba(43, 27, 63, 0.95) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(43, 27, 63, 0.4);
    box-shadow: 0 10px 24px rgba(43, 27, 63, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 32px;
    gap: 16px;
}

.nav-brand {
    font-weight: 600;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #f7ead5;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin-left: 24px;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.nav-contact a {
    color: #f7ead5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.nav-contact a i {
    color: #e2c98a;
}

.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    border-left: 1px solid #eadfc9;
}

.lang-btn {
    border: 1px solid #d8c39a;
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    font-weight: 600;
    font-size: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.flag-de {
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #000000 33.33%,
        #dd0000 33.33%,
        #dd0000 66.66%,
        #ffce00 66.66%,
        #ffce00 100%
    );
}

.flag-tr {
    background: #e30a17;
    position: relative;
    overflow: hidden;
}

.flag-tr::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    background: #ffffff;
}

.flag-tr::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 3px;
    left: 5px;
    background: #e30a17;
}

.lang-btn.is-active {
    border-color: #c9a45c;
    box-shadow: 0 8px 18px rgba(199, 163, 95, 0.25);
}

.menu li a {
    color: #f4e9d6;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    transition: color 0.2s ease;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #e2c98a;
    transition: width 0.2s ease;
}

.menu li a:hover {
    color: #ffffff;
}

.menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease, border-radius 0.25s ease;
}

/* Imlec duzeltme */
body, section, div, nav, p, h1, h2, h3, h4, h5, h6 {
    cursor: default;
}

/* Linklerde el isareti */
a, button, .btn {
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.lang-btn:focus-visible,
.cta-btn:focus-visible,
.contact-submit:focus-visible,
.nav-toggle:focus-visible,
.fab-toggle:focus-visible {
    outline: 2px solid rgba(201, 164, 92, 0.9);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.25);
}


/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    isolation: isolate;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: block;
    margin: -185px auto -120px;
    filter: drop-shadow(0 14px 30px rgba(201, 164, 92, 0.3)) drop-shadow(0 0 44px rgba(226, 201, 138, 0.35));
    transition: filter 0.3s ease;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(226, 201, 138, 0.24) 0%, rgba(226, 201, 138, 0.08) 35%, transparent 60%);
    filter: blur(2px);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 70%;
    background: radial-gradient(ellipse at 50% 20%, rgba(43, 27, 63, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 16px;
}

.hero-badge {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(201, 164, 92, 0.7);
    background: linear-gradient(135deg, rgba(255, 244, 221, 0.9) 0%, rgba(226, 201, 138, 0.45) 100%);
    color: var(--ink);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(201, 164, 92, 0.2);
}



.hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.hero-eyebrow::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, rgba(201, 164, 92, 0) 0%, rgba(201, 164, 92, 0.8) 50%, rgba(201, 164, 92, 0) 100%);
}

.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-color);
    opacity: 0;
    transform: translateY(-18px);
    position: relative;
    display: inline-block;
    animation: heroTitleIn 0.9s ease 0.15s forwards;
    overflow: hidden;
}

.hero h1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 247, 232, 0.85) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: heroTitleShine 2.8s ease 1.1s infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.btn.secondary {
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 26px rgba(199, 163, 95, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(199, 163, 95, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    filter: brightness(1.02);
}

.btn.primary {
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(199, 163, 95, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(199, 163, 95, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    filter: brightness(1.02);
}

/* HIZMETLER */
.services {
    width: min(1200px, 92%);
    margin: auto;
    text-align: center;
    padding: 110px 0;
}

.services h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.services h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(201, 164, 92, 0) 0%, rgba(201, 164, 92, 0.8) 50%, rgba(201, 164, 92, 0) 100%);
}

.services-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    font-size: clamp(15px, 1.4vw, 16px);
    line-height: 1.7;
    color: var(--muted);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border: 1px solid #eadfc9;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(31, 46, 40, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--main-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-question::after {
    content: "▼";
    font-size: 14px;
    color: #2b1b3f;
}

.faq-item.is-open .faq-question::after {
    content: "▲";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    transition: max-height 0.25s ease, padding 0.25s ease;
    background: transparent;
    text-align: center;
}

.faq-item.is-open .faq-answer {
    padding: 20px 22px 22px;
    background: rgba(255, 243, 218, 0.9);
    border-top: none;
    border: 1px solid rgba(43, 27, 63, 0.08);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 86%;
    margin: 14px auto 18px;
    border-radius: 12px;
}

.review-source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1e3a6d;
    background: #e6edf7;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 14px;
}

.review-meta {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

#ausmacht .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-box {
    background: linear-gradient(180deg, #fff3da 0%, #f7e4c0 100%);
    border-radius: 12px;
    padding: 26px 24px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid #d9e0ea;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(201, 164, 92, 0) 0%, rgba(201, 164, 92, 0.9) 50%, rgba(201, 164, 92, 0) 100%);
    opacity: 0.7;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    border-color: #c9d3e4;
}

.service-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(43, 27, 63, 0.15) 0%, rgba(201, 164, 92, 0.2) 100%);
    color: #2b1b3f;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.service-box p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* CONTACT */
.contact {
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-color);
}

.contact-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border: 1px solid #eadfc9;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 12px 26px rgba(31, 46, 40, 0.08);
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.contact-name {
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 4px;
}

.contact-company {
    color: var(--muted);
    margin-bottom: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(201, 164, 92, 0.16);
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a6f63;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--main-color);
}

.contact-card--muted {
    margin-top: 20px;
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border-color: #eadfc9;
}

.contact-card--muted p {
    margin-bottom: 6px;
    color: #6f665b;
}

.contact-form {
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border: 1px solid #eadfc9;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 12px 26px rgba(31, 46, 40, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--main-color);
    gap: 6px;
}

.label-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid #e3d7c4;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--main-color);
    background: #f7f1e6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.22);
}

.review-form {
    max-width: 760px;
    margin: 0 auto;
}

.review-feed {
    max-width: 900px;
    margin: 24px auto 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.review-card {
    background: linear-gradient(180deg, #fff3da 0%, #f7e4c0 100%);
    border: 1px solid #eadfc9;
    border-radius: 12px;
    padding: 18px 18px 16px;
    text-align: left;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.review-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 6px;
}

.review-card .review-rating {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f665b;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.review-empty,
.review-status {
    font-size: 14px;
    color: #6f665b;
    text-align: center;
}

.review-status {
    margin-top: 8px;
}

.admin-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.admin-tab.is-active {
    box-shadow: 0 10px 20px rgba(199, 163, 95, 0.35);
    transform: translateY(-1px);
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(43, 27, 63, 0.12);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f665b;
    background: rgba(255, 243, 218, 0.6);
}

.admin-table td p {
    margin: 0 0 6px;
}

.admin-actions {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-check {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #6f665b;
}

.contact-check input {
    margin-top: 2px;
}

.required {
    color: #c83a3a;
    font-weight: 600;
}

.contact-submit {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    font-weight: 600;
    cursor: pointer;
}

.contact-submit:hover {
    filter: brightness(0.98);
}

.contact-footnote {
    font-size: 12px;
    color: #7a6f63;
    text-align: center;
}

/* FRAMED SECTION */
.framed-section {
    width: min(1100px, 92%);
    margin: 0 auto 90px;
}

.framed-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-color);
}

.framed-content {
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border: 1px solid #d9e0ea;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.framed-content::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(226, 201, 138, 0.35) 0%, transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

.framed-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.framed-content p:last-child {
    margin-bottom: 0;
}

.cta-section {
    width: 100%;
    margin: 0 auto 110px;
    padding: 90px 0;
    background: linear-gradient(180deg, #241730 0%, #3a2455 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -120px;
    width: 480px;
    height: 480px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201, 164, 92, 0.4) 0%, transparent 60%);
    opacity: 0.7;
}

.cta-content {
    width: min(1100px, 92%);
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.75;
}

.cta-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn--light {
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    box-shadow: 0 10px 24px rgba(43, 27, 63, 0.25);
}

.cta-btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.26);
}

.cta-btn--outline {
    background: transparent;
    color: #e2c98a;
    border: 1px solid rgba(226, 201, 138, 0.8);
}

.cta-btn--outline:hover {
    transform: translateY(-2px);
    border-color: #e2c98a;
    color: #e2c98a;
}

/* LEGAL PAGE */
.legal-page {
    width: min(1000px, 92%);
    margin: 0 auto 80px;
    padding: 140px 0 40px;
}

.legal-title {
    text-align: center;
    font-size: clamp(28px, 3.2vw, 36px);
    margin-bottom: 26px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-color);
}

.legal-content {
    background: linear-gradient(180deg, #fff1d6 0%, #f2dbb5 100%);
    border: 1px solid #d9e0ea;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.legal-content h2 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-color);
    margin: 24px 0 10px;
}

.legal-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #f4eee2 0%, #efe3d2 100%);
    color: #4d3b60;
    padding: 50px 20px 24px;
}

.footer-content {
    width: min(1100px, 92%);
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--main-color);
}

.footer-brand p {
    color: #6f665b;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-col li {
    color: #6f665b;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #e1d7c7;
    padding-top: 18px;
    text-align: center;
    color: #6f665b;
    font-size: 13px;
}

.fab {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 2400;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.fab-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
    box-shadow: 0 12px 26px rgba(43, 27, 63, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(43, 27, 63, 0.32);
}

.fab-toggle i {
    font-size: 20px;
}

.fab-menu {
    position: absolute;
    right: 0;
    bottom: 62px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab.is-open .fab-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-action {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(43, 27, 63, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(43, 27, 63, 0.28);
}

.fab-action.whatsapp {
    background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
    color: #2b1b3f;
}

.fab-action.phone {
    background: linear-gradient(135deg, #2b1b3f 0%, #3a2455 100%);
    color: #f7ead5;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.from-left {
    transform: translateX(-56px);
}

.fade-in.from-right {
    transform: translateX(56px);
}

.fade-in.from-center {
    transform: none;
}

.fade-in.from-left.show,
.fade-in.from-right.show,
.fade-in.from-center.show {
    transform: translateX(0);
}

#ausmacht .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

#ausmacht .service-box {
    animation: ausmachtLift 520ms ease-out both;
}

#ausmacht .service-box:nth-child(2) {
    animation-delay: 80ms;
}

#ausmacht .service-box:nth-child(3) {
    animation-delay: 160ms;
}

#ausmacht .service-box:nth-child(4) {
    animation-delay: 240ms;
}

@keyframes ausmachtLift {
    from {
        transform: translateY(10px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleShine {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translate3d(0, 0, 0);
    }
    50% {
        transform: translate(-50%, -50%) translate3d(40px, -25px, 0);
    }
}

/* GLOBAL PARALLAX LIGHT */
.global-light {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(43, 27, 63, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(70px);
    z-index: -1;
    transform: translate(-50%, -50%);
    animation: glowFloat 14s ease-in-out infinite;
}

/* Mouse Shadow */
.mouse-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(43, 27, 63, 0.24), transparent 70%);
    filter: blur(28px);
    opacity: 0.75;
    z-index: 2;
    transform: translate3d(-9999px, -9999px, 0);
    will-change: transform;
}


/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .menu {
        flex-wrap: wrap;
        gap: 12px 16px;
        margin-left: 0;
        width: 100%;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .hero {
        text-align: center;
    }

    body {
        transform-style: flat;
        perspective: none;
        transform: none;
    }
}

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

    .global-light,
    .mouse-shadow {
        display: none;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 12px 16px;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 12px;
    }

    .nav-brand {
        font-size: 16px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #c9a45c 0%, #e2c98a 100%);
        border: none;
        flex-direction: column;
        gap: 6px;
    }

    .nav-toggle span {
        background: var(--main-color);
        height: 4px;
        width: 28px;
        border-radius: 999px;
        margin: 0;
        transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease, border-radius 0.25s ease, height 0.2s ease;
    }

    .menu li a {
        font-size: 14px;
        color: #f7ead5;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(180deg, rgba(43, 27, 63, 0.98) 0%, rgba(58, 36, 85, 0.98) 100%);
        border: 1px solid rgba(226, 201, 138, 0.5);
        border-radius: 12px;
        padding: 10px 12px;
        gap: 6px;
        width: 100%;
        transform: translateY(-8px);
        opacity: 0;
        box-shadow: 0 16px 32px rgba(43, 27, 63, 0.35);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu.is-open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-contact {
        display: none;
    }

    .nav-lang {
        border-left: none;
        padding-left: 0;
    }

    .nav-toggle.is-open span {
        height: 2px;
    }

    .hero {
        height: auto;
        padding: 120px 16px 60px;
    }

    .hero-logo {
        width: 100%;
        border-radius: 14px;
        margin-bottom: -60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        width: 100%;
    }


    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn.primary {
        padding: 12px 22px;
    }

    .services {
        width: 92%;
        padding: 60px 0;
    }

    .services h2 {
        font-size: 26px;
    }

    .services-intro {
        margin-bottom: 36px;
        font-size: 15px;
    }

    .service-box {
        padding: 22px;
        margin: 8px;
    }

    #ausmacht .service-box h3 {
        font-size: 18px;
        line-height: 1.3;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    #ausmacht .service-box p {
        font-size: 14px;
        word-break: break-word;
        hyphens: auto;
    }

    .contact {
        padding: 70px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-start;
        order: 3;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .framed-content {
        padding: 26px 22px;
    }

    .framed-title {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .legal-page {
        padding: 120px 0 32px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-content {
        padding: 26px 22px;
    }

    body {
        padding-bottom: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand {
        align-items: center;
    }

    .faq-question {
        font-size: 18px;
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.is-open .faq-answer {
        padding: 0 18px 16px;
    }
}
