:root {
    /* Color Palette - Mediterranean Premium */
    --primary-color: #0F2C59;   /* Deep Ocean Blue */
    --primary-dark: #0a1f40;
    --secondary-color: #DAC0A3; /* Sand/Beige */
    --accent-color: #C5A059;    /* Gold for highlights */
    --text-color: #333333;
    --text-light: #5f5f5f;      /* 7:1 on white */
    --bg-light: #F8F5F2;        /* Off-white/Cream background */
    --white: #ffffff;
    --border-color: #E0E0E0;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --gutter: 20px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --fs-h1: clamp(2.75rem, 1.5rem + 5vw, 4.5rem);
    --fs-h2: clamp(2rem, 1.25rem + 2.5vw, 3rem);
    --fs-h3: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
    --fs-small: 0.875rem; /* 14px floor */

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 14px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p + p {
    margin-top: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Skip link */
.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 2000;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
    color: var(--white);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section-padding {
    padding: clamp(64px, 8vw, 110px) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.lead {
    font-size: 1.2rem;
    line-height: 1.65;
}

.eyebrow {
    font-size: var(--fs-small);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 2.25rem;
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    line-height: 1.2;
    text-align: center;
    transition: var(--transition);
    border-radius: 50px; /* Pill shape */
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

/* Solid white button for dark backgrounds */
.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

/* Outline white button for dark backgrounds */
.btn-ghost {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn-ghost:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-title {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    min-height: 44px;
}

.site-mark {
    color: var(--accent-color);
    flex-shrink: 0;
}

.site-navigation ul {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.site-navigation a {
    display: inline-block;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.35rem;
    left: 0.5rem;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.site-navigation a:hover::after {
    width: calc(100% - 1rem);
}

.site-navigation .btn {
    padding: 0.6rem 1.6rem;
    min-height: 44px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--white);
    background-color: var(--primary-color);
    margin-left: 0.5rem;
}

.site-navigation .btn::after {
    display: none;
}

/* Hero (shared by front page and Umgebung; Umgebung sets its own background-image inline) */
.hero {
    height: 100vh;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    margin-top: calc(-1 * var(--header-height)); /* Underlap header */
    padding-top: var(--header-height);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 44, 89, 0.35), rgba(15, 44, 89, 0.65));
}

/* Responsive <picture> hero (front page) */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-kicker {
    font-size: var(--fs-small);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: var(--fs-h1);
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero p,
.hero .hero-sub {
    font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.75rem;
    margin-bottom: 2.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-facts li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-facts li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Legacy hero button (Umgebung page) */
.hero .btn:not(.btn-light):not(.btn-ghost) {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn:not(.btn-light):not(.btn-ghost):hover {
    background-color: var(--white);
    color: var(--primary-color);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Section Styling */
.section-title {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title h2 {
    font-size: var(--fs-h2);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0.75rem auto 0;
}

.section-title--left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-title--left h2::after {
    left: 0;
    transform: none;
}

.section-title--light h2 {
    color: var(--white);
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.welcome-text {
    color: var(--text-light);
}

.welcome-text .lead {
    color: var(--text-color);
}

.welcome-text .btn {
    margin-top: 0.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.5rem;
    margin: 2rem 0;
    color: var(--text-color);
    font-size: 0.98rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.9rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--accent-color);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='black'/><path d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='black'/><path d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.welcome-content .signature,
.welcome-text .signature {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.35rem;
    margin: 1.5rem 0 1.75rem;
    font-style: italic;
    line-height: 1.4;
}

.welcome-media {
    position: relative;
    margin: 0;
}

.welcome-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.welcome-media::before {
    content: '';
    position: absolute;
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.welcome-media figcaption {
    margin-top: 2.25rem; /* clears the offset frame drawn by ::before */
    font-size: var(--fs-small);
    color: var(--text-light);
    text-align: right;
}

/* Legacy welcome block (kept for other templates) */
.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.home-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.home-gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius);
}

.home-gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1rem 0.9rem;
    color: var(--white);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.3px;
    background: linear-gradient(to top, rgba(15, 44, 89, 0.8), rgba(15, 44, 89, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.home-gallery-item:hover img,
.home-gallery-item:focus-visible img {
    transform: scale(1.04);
}

.home-gallery-item:hover::after,
.home-gallery-item:focus-visible::after {
    opacity: 1;
}

/* Gallery - Masonry Style Grid (Haus & Garten page) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    transition: opacity 0.3s ease;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
    cursor: pointer;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    min-height: 44px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Pricing Cards */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--white);
    padding: 2.25rem 1.75rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.pricing-card.highlight {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-card.highlight h3,
.pricing-card.highlight .price,
.pricing-card.highlight .price-unit,
.pricing-card.highlight .period {
    color: var(--white);
}

.pricing-card.highlight ul li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.pricing-card .period {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: var(--fs-small);
    color: var(--text-light);
    min-height: 2.6em; /* two date lines, keeps prices aligned across cards */
    margin-bottom: 1.25rem;
    font-variant-numeric: tabular-nums;
}

.pricing-card .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.pricing-card.highlight .price {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-amount {
    font-size: 3rem;
}

.price-unit {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-small);
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 0;
}

.pricing-card ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Additional Info Box */
.additional-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: center;
}

.additional-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.additional-info p {
    color: var(--text-light);
}

.additional-info ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.75rem;
    position: relative;
}

.additional-info ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.additional-info-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.5rem;
}

/* FAQ Accordion */
.faq-list,
.faq-more-list {
    display: grid;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-color);
}

.faq-q {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
    padding: 1.2rem 3.25rem 1.2rem 1.5rem;
    min-height: 48px;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: block;
    line-height: 1.4;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

details[open] > .faq-q::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-a {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 1.5rem 1.4rem;
    border-top: 1px solid transparent;
}

.faq-a a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

details[open] > .faq-a {
    border-top-color: rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    animation: fadeIn 0.3s ease;
}

/* "Show more" wrapper */
.faq-more {
    text-align: center;
    margin-top: 0.5rem;
}

.faq-more > summary {
    list-style: none;
    display: inline-flex;
    margin: 0 auto;
}

.faq-more > summary::-webkit-details-marker {
    display: none;
}

.faq-more[open] > summary {
    margin-bottom: 1.25rem;
}

.faq-more-close { display: none; }
.faq-more[open] .faq-more-open { display: none; }
.faq-more[open] .faq-more-close { display: inline; }

.faq-more-list {
    text-align: left;
}

/* Contact Section */
.contact-section {
    position: relative;
    color: var(--white);
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(15, 44, 89, 0.92), rgba(15, 44, 89, 0.92)), var(--contact-bg);
    background-size: cover;
    background-position: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.contact-text .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 1.1rem;
    margin-bottom: 2.25rem;
}

.steps li {
    counter-increment: step;
    position: relative;
    padding-left: 3.25rem;
    display: grid;
    gap: 0.15rem;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.steps strong {
    color: var(--white);
    font-weight: 600;
}

.steps span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
}

.contact-mail,
.footer-mail {
    display: inline-block;
    padding: 0.5rem 0;
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(218, 192, 163, 0.5);
}

.contact-mail:hover,
.footer-mail:hover {
    color: var(--white);
    text-decoration-color: var(--accent-color);
}

.contact-map {
    display: grid;
    gap: 0.75rem;
}

.map-embed {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(rgba(15, 44, 89, 0.55), rgba(15, 44, 89, 0.55)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 24px),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

.map-embed p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 380px;
}

.map-embed small {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
}

.map-embed.is-loaded {
    padding: 0;
    display: block;
    background: var(--white);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-link {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
    justify-self: end;
}

.map-link:hover {
    color: var(--accent-color);
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: #aab6c8;
    padding: 4.5rem 0 2rem;
    font-size: 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-info p {
    max-width: 380px;
}

.footer-host {
    color: var(--secondary-color);
    font-style: italic;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin: 0;
}

.footer-links a {
    display: inline-block;
    padding: 0.55rem 0;
    min-height: 44px;
    color: #d1d5db;
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: var(--fs-small);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

#lightbox-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 0 4rem;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 16px;
    color: #f1f1f1;
    font-size: 44px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 10001;
    cursor: pointer;
    line-height: 1;
    background: transparent;
    border: none;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 36px;
    transition: 0.3s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 10000;
}

.lightbox-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Hamburger Button (44px hit area, 28px visual) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: -10px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle-bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
}

.nav-toggle-bars span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Info Cards Layout (Haus & Garten, Umgebung) */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card .btn {
    margin-top: 1.5rem;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.info-card .btn i {
    font-size: 0.8em;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-color);
}

.info-card.wide {
    border-left-color: var(--primary-color);
    background: linear-gradient(to right, #fff, var(--bg-light));
    grid-column: 1 / -1;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (min-width: 768px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .info-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet: pricing 2x2, welcome/contact stack */
@media (max-width: 1100px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card.highlight {
        margin-top: 0;
    }

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

    .welcome-media {
        order: -1;
        max-width: 640px;
    }

    .welcome-media::before {
        display: none;
    }

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

    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .site-title {
        font-size: 1.35rem;
        letter-spacing: 1.5px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-navigation {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .site-navigation.is-open {
        display: block;
    }

    .site-navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1rem;
    }

    .site-navigation ul li a {
        display: block;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .site-navigation ul li a::after {
        display: none;
    }

    .site-navigation ul li:last-child a {
        border-bottom: none;
        margin: 1rem 1.5rem 0;
        text-align: center;
    }

    .hero {
        min-height: 520px;
        height: 92vh;
        height: 92svh;
    }

    .hero-facts {
        gap: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .section-title {
        margin-bottom: 2.5rem;
    }

    .additional-info {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

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

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

    .home-gallery-item::after {
        opacity: 1; /* no hover on touch devices, always show caption */
        padding: 1.5rem 0.75rem 0.65rem;
        font-size: 0.8rem;
    }

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

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 72px;
        font-size: 28px;
    }
}

/* Phone: pricing cards as a swipeable row instead of a 3,000px stack */
@media (max-width: 767px) {
    .pricing-wrapper {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem var(--gutter) 1.25rem;
        margin: 0 calc(-1 * var(--gutter));
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: center;
        padding: 2rem 1.5rem 1.75rem;
    }

    .pricing-card:hover {
        transform: none;
    }

    .price-amount {
        font-size: 2.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: auto;
    }

    .faq-q {
        padding: 1rem 3rem 1rem 1.15rem;
        font-size: 1rem;
    }

    .faq-q::after {
        right: 1.15rem;
    }

    .faq-a {
        padding: 0 1.15rem 1.2rem;
    }

    .map-embed {
        aspect-ratio: 1 / 1;
        padding: 1.5rem;
    }

    .map-link {
        justify-self: start;
    }
}

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

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