* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f4843;
    --primary-dark: #3a3531;
    --secondary-color: #f7f3ef;
    --section-alt: #f0eae4;
    --accent-color: #b8878f;
    --pink-subtle: #e8c9ce;
    --pink-soft: #f9f0f2;
    --text-color: #3f3a37;
    --light-text: #7a726c;
    --border-color: #e5ddd6;
    --white: #fffcfa;
    --shadow-soft: 0 8px 30px rgba(63, 58, 55, 0.08);
    --shadow-hover: 0 16px 40px rgba(63, 58, 55, 0.12);
    --radius: 12px;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 252, 250, 0.92);
    color: var(--text-color);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--pink-subtle);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(63, 58, 55, 0.18);
}

.language-switcher {
    font-size: 0.85rem;
    margin-left: 0.25rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
    white-space: nowrap;
}

.language-switcher a {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.language-switcher a:hover {
    color: var(--primary-color);
}

.lang-active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.hamburger span {
    position: absolute;
    left: 1.5px;
    top: 50%;
    width: 25px;
    height: 2.5px;
    margin-top: -1.25px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Hero Section – Desktop (Standard) */
section.hero {
    position: relative;
    min-height: 92svh;
    min-height: 92dvh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 0;
    border-bottom: none;
    background: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.02);
    transform-origin: center 40%;
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(47, 42, 39, 0.72) 0%,
        rgba(47, 42, 39, 0.28) 22%,
        rgba(47, 42, 39, 0.12) 48%,
        rgba(47, 42, 39, 0.18) 62%,
        rgba(47, 42, 39, 0.68) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--nav-height) + 0.25rem) 24px 2.5rem;
}

.hero-top {
    animation: fadeUp 0.8s ease both;
    margin-top: -0.25rem;
    width: 100%;
}

.hero-bottom {
    animation: fadeUp 0.8s ease 0.2s both;
    width: 100%;
}

.hero-eyebrow,
.hero-top .section-eyebrow {
    color: #ffffff;
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    color: white;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    animation: fadeUp 0.8s ease 0.15s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    background-color: var(--white);
}

.hero .cta-button-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.hero .cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 769px) {
    section.hero {
        min-height: 92svh;
        min-height: 92dvh;
    }

    .hero-media {
        display: block !important;
    }

    .hero-content {
        justify-content: flex-start;
        max-width: 900px;
        gap: 0;
        padding-bottom: 0;
    }

    .hero-bottom {
        margin-top: auto;
        margin-bottom: clamp(3rem, 11vh, 6.5rem);
        display: flex;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-eyebrow,
    .hero-top .section-eyebrow {
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    }

    .hero-title {
        color: white;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    }
}

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

.cta-button,
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 88px 0;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.15;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: var(--light-text);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-subtle);
}

/* Center last row when 7 cards in 3-column grid */
.service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pink-soft);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    background: #f3e3e6;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
}

/* Team Section */
.intro-text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.team-lead {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.team-member-lead {
    max-width: 320px;
    width: 100%;
}

.team-member-lead .team-photo {
    width: 220px;
    height: 220px;
    border-color: var(--pink-subtle);
}

.team-member-lead h3 {
    font-size: 1.45rem;
}

.team-divider {
    width: min(120px, 40%);
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--pink-subtle) 20%,
        var(--pink-subtle) 80%,
        transparent
    );
    margin: 2rem auto 2.25rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.team-grid-assistants {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
}

.team-member {
    background: var(--white);
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    border-bottom: 2px solid var(--pink-subtle);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.1rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--section-alt);
    border: 2px solid var(--border-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-subtle);
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

/* Contact Section */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink-subtle);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--pink-soft);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--light-text);
    font-size: 0.94rem;
    line-height: 1.6;
}

.contact-card-info {
    cursor: default;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Opening Hours */
.opening-hours {
    margin-top: 0.25rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.94rem;
}

.hour-row.weekend {
    background-color: var(--secondary-color);
}

.hour-row.today {
    background-color: var(--pink-soft);
    border-radius: 8px;
}

.hour-row.today .day {
    font-weight: 700;
    color: var(--primary-color);
}

.hour-row .day {
    min-width: 100px;
    font-weight: 500;
    color: var(--text-color);
}

.hour-row .time {
    color: var(--light-text);
}

/* Map Container */
.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.map-container iframe {
    display: block;
    max-width: 100%;
    border-radius: 10px;
}

.map-placeholder {
    background-color: var(--secondary-color);
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.map-placeholder p {
    margin: 0 0 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-enable-btn {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.map-enable-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.map-external-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.map-external-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

/* Mobile call button */
.mobile-call-btn {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(63, 58, 55, 0.28);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.mobile-call-btn svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.mobile-call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

body.cookie-banner-visible .mobile-call-btn {
    bottom: 120px;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px;
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-page h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-page h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.legal-page p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-page ul {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-back-link {
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.legal-back-link::after {
    display: none;
}

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

.legal-page em {
    color: var(--light-text);
    font-style: italic;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 252, 250, 0.98);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -8px 30px rgba(63, 58, 55, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: slideUp 0.3s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-banner p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-details {
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.cookie-details.hidden {
    display: none;
}

.cookie-details h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.cookie-detail-item {
    margin-bottom: 1rem;
}

.cookie-detail-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.cookie-detail-item p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-details-footer {
    margin: 0;
    font-size: 0.85rem;
}

.cookie-details-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    transition: all 0.25s ease;
    background: none;
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
}

.cookie-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--pink-subtle);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-btn:hover {
    background-color: var(--primary-dark);
}

.cookie-btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    background-color: var(--secondary-color);
}

.cookie-consequences {
    background-color: var(--pink-soft);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--pink-subtle);
}

.cookie-banner.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: rgba(255, 252, 250, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        list-style: none;
        backdrop-filter: blur(12px);
    }

    .nav-menu.active {
        max-height: 560px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-link {
        font-size: 1rem;
        white-space: normal;
        display: block;
        padding: 1rem 24px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        padding: 1rem 24px;
    }

    .nav-phone-btn {
        width: 100%;
    }

    .language-switcher {
        border-left: none;
        padding: 1rem 24px;
        margin-left: 0;
        white-space: normal;
        border-bottom: none;
    }

    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .service-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    section {
        padding: 64px 0;
    }

    .cookie-main {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .cookie-banner {
        padding: 1rem 1.25rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Hero – Mobile: kein Bild */
@media (max-width: 768px) {
    section.hero {
        min-height: 85svh;
        min-height: 85dvh;
        background-color: var(--secondary-color);
        border-bottom: 2px solid var(--pink-subtle);
        color: var(--text-color);
        padding: 0;
    }

    .hero-media {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        min-height: 85svh;
        min-height: 85dvh;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: calc(var(--nav-height) + 2rem) 28px 2rem;
    }

    .hero-top {
        margin-top: 0;
        flex: 0 0 auto;
        text-align: center;
        width: 100%;
    }

    .hero-bottom {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: auto;
        margin-bottom: clamp(3rem, 10vh, 5.5rem);
    }

    .hero-eyebrow,
    .hero-top .section-eyebrow {
        color: var(--accent-color);
        text-shadow: none;
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .hero-title {
        font-size: clamp(2.6rem, 11vw, 3.5rem);
        color: var(--primary-color);
        text-shadow: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero .cta-button,
    .hero .cta-button-secondary {
        width: auto;
        min-width: min(280px, 100%);
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: center;
    }

    .hero .cta-button {
        background-color: var(--primary-color);
        color: white;
        box-shadow: var(--shadow-soft);
    }

    .hero .cta-button:hover {
        background-color: var(--primary-dark);
    }

    .hero .cta-button-secondary {
        background: var(--white);
        color: var(--primary-color);
        border: 1.5px solid var(--border-color);
    }

    .hero .cta-button-secondary:hover {
        background: var(--white);
        border-color: var(--pink-subtle);
    }

    .nav-menu:not(.active) {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        max-height: none;
        overflow: visible;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.active li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active .language-switcher {
        border-bottom: none;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 600px) {
    .logo {
        font-size: 1.15rem;
    }

    h2 {
        font-size: 1.9rem;
    }

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

    .service-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    .service-card,
    .team-member {
        padding: 1.5rem;
    }

    .hour-row {
        flex-direction: column;
        gap: 0.35rem;
    }

    .map-container {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 250px !important;
    }

    .legal-page {
        padding: 80px 20px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.2rem;
    }

    .team-member-lead .team-photo {
        width: 200px;
        height: 200px;
    }

    .team-grid-assistants {
        grid-template-columns: 1fr;
    }

    .team-photo {
        width: 160px;
        height: 160px;
    }

    .cookie-banner {
        padding: 0.75rem 1rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    }

    .cookie-content {
        gap: 0.625rem;
    }

    .cookie-main {
        gap: 0.5rem;
    }

    .cookie-banner p {
        font-size: 0.8125rem;
        line-height: 1.45;
    }

    .cookie-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .cookie-link {
        grid-column: 1 / -1;
        justify-self: start;
        padding: 0.15rem 0;
        border: none;
        font-size: 0.8125rem;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .cookie-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        width: 100%;
    }

    .cookie-details {
        padding-top: 0.625rem;
        max-height: 38vh;
        overflow-y: auto;
    }

    .cookie-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }

    .cookie-detail-item {
        margin-bottom: 0.625rem;
    }

    .cookie-detail-item strong {
        font-size: 0.8125rem;
    }

    .cookie-detail-item p,
    .cookie-details-footer {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .cookie-consequences {
        padding: 0.625rem;
        border-radius: 8px;
    }

    body.cookie-banner-visible .mobile-call-btn {
        bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }

    body.cookie-banner-visible:has(.cookie-banner.expanded) .mobile-call-btn {
        bottom: calc(130px + env(safe-area-inset-bottom, 0px));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-image {
        transform: none;
        animation: none;
    }
}
