/* === base/variables.css === */
/* Design Tokens – from Kadence Theme Export */
:root {
    --global-palette1: #202732;
    --global-palette2: #aa8d70;
    --global-palette3: #ccab86;
    --global-palette4: #000000;
    --global-palette5: #cccccc;
    --global-palette6: #eeeeee;
    --global-palette7: #EDF2F7;
    --global-palette8: #F7FAFC;
    --global-palette9: #ffffff;

    --color-gold: var(--global-palette2);
    --color-gold-light: var(--global-palette3);
    --color-gold-hover: #96795e;
    --color-red: #630303;
    --color-text: var(--global-palette4);
    --color-heading: var(--global-palette1);
    --color-text-light: #666;
    --color-text-muted: var(--global-palette5);
    --color-bg: var(--global-palette9);
    --color-bg-light: #f2f2f2;
    --color-bg-dark: var(--global-palette1);
    --color-border: var(--global-palette6);
    --color-white: #fff;
    --color-black: #000;
    --color-whatsapp: #25d366;

    --font-heading: 'Roboto Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;

    --container-width: 1200px;
    --container-padding: 50px;
    --container-padding-mobile: 20px;
    --header-height: 100px;
}


/* === base/reset.css === */
/* Reset & Base Elements */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-gold); }
p { margin-bottom: 1em; }

.skip-link {
    position: absolute; top: -100%; left: 0;
    background: var(--color-gold); color: white; padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { top: 0; }


/* === base/typography.css === */
/* Typography – Headings */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 300;
}
h1 { font-size: 3.6em; text-transform: uppercase; font-weight: 300; line-height: 1.1; color: var(--color-heading); }
h2 { font-size: 2.8em; font-weight: 300; line-height: 1.2; color: var(--color-heading); margin-bottom: 0.5em; }
h3 { font-size: 1.8em; font-weight: 300; line-height: 1.3; color: var(--color-heading); }
h4 { font-size: 1.2em; font-weight: 400; line-height: 1.4; color: var(--color-text); }
h5 { font-size: 1.1em; text-transform: uppercase; font-weight: 400; line-height: 1.6; color: var(--color-text); }
h6 { font-size: 18px; font-weight: 700; line-height: 1.5; color: var(--color-text-muted); }


/* === layouts/containers.css === */
/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* === components/header.css === */
/* Site Header */
.site-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(rgb(0,0,0) 1%, rgba(32,39,50,0) 100%);
    height: var(--header-height); transition: background 0.3s;
}
.site-header.is-scrolled { position: fixed; background: rgba(0,0,0,0.5); }
.site-header__container { padding: 0 var(--container-padding); height: 100%; }
.site-header__grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; height: 100%;
}
.site-header__left { display: flex; align-items: center; }
.site-header__center { display: flex; justify-content: center; }
.site-header__right { display: flex; justify-content: flex-end; align-items: center; }
.site-logo img { width: 250px; height: 56px; display: block; }
.nav-primary__list { list-style: none; display: flex; align-items: center; }
.nav-primary__item > a {
    color: var(--global-palette9); font-family: var(--font-body);
    font-weight: 500; font-size: 15.2px; text-transform: uppercase;
    padding: 0 19px; line-height: var(--header-height);
    display: block; transition: color 0.2s; white-space: nowrap;
}
.nav-primary__item > a:hover { color: var(--color-gold-light); }


/* === components/mega-menu.css === */
/* Mega Menu */
.nav-primary__item--mega { position: static; }
.mega-menu {
    display: none; position: absolute; top: var(--header-height);
    left: 50%; transform: translateX(-50%); width: 1200px;
    background: var(--color-white); box-shadow: rgba(0,0,0,0.1) 0px 2px 13px 0px;
    padding: 40px 60px; z-index: 200; gap: 0;
}
.nav-primary__item--mega:hover .mega-menu { display: flex; }
.mega-menu__col { flex: 1; display: flex; flex-direction: column; padding: 0 30px; }
.mega-menu__heading {
    font-family: var(--font-body); font-size: 18px; font-weight: 400;
    color: var(--color-gold); border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px; margin-bottom: 10px;
}
.mega-menu__col a {
    color: var(--color-text); font-family: var(--font-body);
    font-weight: 300; font-size: 18px; line-height: 1.6;
    padding: 3px 0; display: block; text-transform: none;
}
.mega-menu__col a:hover { color: var(--color-gold); }
.mega-menu__all-link-wrap {
    display: flex; align-items: center; gap: 6px; padding-top: 30px;
}
.mega-menu__all-link-wrap a { font-size: 18px; font-weight: 300; color: var(--color-text); padding: 0; }
.mega-menu__all-link-wrap a:hover { color: var(--color-gold); }
.mega-menu__arrow-link { display: flex; align-items: center; color: var(--color-gold-light); }
.mega-menu__arrow-link svg { width: 24px; height: 24px; }
.nav-primary__item--mega > a::after {
    content: ''; display: inline-block; width: 6px; height: 6px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); margin-left: 6px; vertical-align: 2px;
}


/* === components/lang-switcher.css === */
/* Language Switcher + Mobile Menu Toggle */
.nav-lang { display: flex; align-items: center; }
.lang-switcher {
    appearance: none; -webkit-appearance: none;
    width: 173px; height: 32px;
    background: linear-gradient(#efefef 0%, #fff 70%);
    border: none; border-radius: 0; color: #666;
    font-family: Arial, sans-serif; font-size: 16px; font-weight: 300;
    padding: 3px 28px 3px 8px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"), linear-gradient(#efefef 0%, #fff 70%);
    background-repeat: no-repeat, no-repeat;
    background-position: right 10px center, 0 0;
    background-size: 12px 7px, 100% 100%;
}
.lang-switcher option { color: var(--color-text); background: var(--color-bg); }
.mobile-menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
}
.mobile-menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--color-text); transition: 0.3s;
}


/* === components/hero.css === */
/* Hero Section */
.project-hero { position: relative; width: 100%; overflow: hidden; height: 100vh; }
.project-hero__image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: block; object-fit: cover;
}
.project-title-overlay {
    background: rgba(255,255,255,0.7); position: absolute;
    bottom: 0; left: 0; right: 0; z-index: 10;
    text-align: center; padding: 50px 40px 40px;
}
.project-title-overlay h1 {
    font-size: 64.8px; font-weight: 300; font-family: var(--font-heading);
    text-transform: uppercase; color: #202732; margin: 0 0 8px; line-height: 1.1;
}
.project-title-overlay__location { font-size: 21.6px; font-weight: 400; color: #000; margin: 0 0 4px; }
.project-title-overlay__meta { font-size: 18px; font-weight: 300; color: #000; line-height: 1.4; margin: 0; }


/* === components/brochure.css === */
/* Brochure Circle Button */
.project-brochure { padding: 0; }
.brochure-link {
    position: fixed; right: 52px; top: 147px; z-index: 1000;
    width: 200px; height: 200px;
    background-color: var(--color-red);
    border: 2px solid var(--color-white); border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.69);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 28px;
    color: var(--color-white); transition: background-color 0.2s;
}
.brochure-link:hover { background-color: #333; color: var(--color-white); }
.brochure-link__label {
    font-family: 'Roboto', sans-serif; font-size: 25.2px;
    text-transform: uppercase; font-weight: 700;
    line-height: 28.8px; color: var(--color-white);
}
.brochure-link__cta {
    font-family: 'Roboto', sans-serif; font-size: 18px;
    font-weight: 300; margin-top: 5px; line-height: 23.4px;
    color: var(--color-white);
}

/* Brochure request modal — measured against the WordPress popup:
   white box 800px wide, padding 60px 60px 50px, heading 64.8px/300 uppercase,
   labels 16px/700 with a red asterisk, inputs 38px with a 1px #ccc border. */
.brochure-modal[hidden] { display: none; }
.brochure-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 20px; overflow-y: auto;
}
.brochure-modal__overlay {
    position: fixed; inset: 0;
    background: rgba(32, 39, 50, 0.6);
}
.brochure-modal__box {
    position: relative;
    background: var(--color-white);
    width: 100%; max-width: 800px;
    /* auto margins keep it centred and, unlike flex centring alone, do not
       clip the top once the form is taller than the window */
    margin: auto;
    padding: 60px 60px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.brochure-modal__close {
    position: absolute; top: 18px; right: 22px;
    background: none; border: 0; cursor: pointer;
    font-size: 34px; line-height: 1; color: #999;
}
.brochure-modal__close:hover { color: #202732; }

.brochure-form__title {
    font-family: var(--font-heading);
    font-size: 64.8px; font-weight: 300; line-height: 1.1;
    text-transform: uppercase; color: #000;
    margin: 0;
}
.brochure-form__intro {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 300; line-height: 1.6; color: #000;
    margin: 8px 0 32px;
}

.brochure-form__row { display: grid; gap: 20px; margin-bottom: 20px; }
.brochure-form__row--3 { grid-template-columns: repeat(3, 1fr); }
.brochure-form__row--2 { grid-template-columns: repeat(2, 1fr); }

.brochure-form__field label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px; font-weight: 700; color: #000;
    margin-bottom: 4px;
}
.brochure-form__field .req { color: #f00; }

.brochure-form__field input,
.brochure-form__field select,
.brochure-form__field textarea {
    width: 100%;
    font-family: var(--font-body); font-size: 16px; color: #333;
    background: var(--color-white);
    border: 1px solid #ccc; border-radius: 2px;
    padding: 6px 10px;
}
.brochure-form__field input,
.brochure-form__field select { height: 38px; }
.brochure-form__field textarea { height: 120px; resize: vertical; }
.brochure-form__field input:focus,
.brochure-form__field select:focus,
.brochure-form__field textarea:focus {
    outline: none; border-color: var(--color-gold);
}

/* The phone field carries the same country dropdown as the contact form */
.brochure-form__field .iti { width: 100%; }
.brochure-form__field .iti input { padding-left: 52px; }

.brochure-form__submit {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 400; color: #333;
    background: #eee; border: 1px solid #ddd; border-radius: 2px;
    padding: 10px 15px; cursor: pointer;
}
.brochure-form__submit:hover { background: #e2e2e2; }
.brochure-form__submit:disabled { opacity: 0.6; cursor: default; }

.brochure-form .form-feedback { margin-bottom: 16px; }

@media (max-width: 1024px) {
    /* The badge would sit on top of the hero title on narrow screens */
    .brochure-link { width: 140px; height: 140px; right: 16px; top: 120px; padding: 18px; }
    .brochure-link__label { font-size: 18px; line-height: 21px; }
    .brochure-link__cta { font-size: 14px; line-height: 18px; }
}
@media (max-width: 768px) {
    .brochure-modal { padding: 20px 12px; }
    .brochure-modal__box { padding: 40px 24px 32px; }
    .brochure-form__title { font-size: 40px; }
    .brochure-form__row--3,
    .brochure-form__row--2 { grid-template-columns: 1fr; }
}


/* === components/gallery.css === */
/* Gallery Slider */
.project-gallery { padding: 0; width: 100%; position: relative; overflow: visible \!important; }
.gallery {
    display: flex; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery__slide { flex: 0 0 50%; overflow: hidden; }
.gallery__slide picture { display: block; width: 100%; }
.gallery__slide img { width: 100%; height: auto; display: block; aspect-ratio: 1024 / 640; object-fit: cover; }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 50; background: #111; color: white;
    border: none; width: 50px; height: 50px;
    cursor: pointer; font-size: 30px; line-height: 50px;
    text-align: center; padding: 0;
    transition: background 0.2s; display: flex;
    align-items: center; justify-content: center;
}
.gallery-nav:hover { background: #333; }
.gallery-nav__prev { left: 20px; }
.gallery-nav__next { right: 20px; }

/* Gallery slide cursor */
.gallery__slide img { cursor: pointer; }
.gallery__slide img[src=""] { display: none; }


/* === components/lightbox.css === */
/* Gallery Lightbox */
.lightbox {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.lightbox__close {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 36px; cursor: pointer;
    background: none; border: none; line-height: 1; z-index: 10000;
}
.lightbox__close:hover { color: var(--color-gold); }
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; z-index: 10000;
    color: #fff; font-size: 64px; line-height: 1; padding: 0 24px;
}
.lightbox__nav:hover { color: var(--color-gold); }
.lightbox__nav[hidden] { display: none; }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }
@media (max-width: 600px) {
    .lightbox__nav { font-size: 44px; padding: 0 10px; }
}


/* === components/investment.css === */
/* Investment Reasons */
.project-investment { padding: 100px var(--container-padding); text-align: center; }
.project-investment h2 {
    font-size: 50.4px; font-weight: 300; font-family: var(--font-heading);
    color: #202732; margin: 0 0 12px;
}
.investment-subtitle { font-size: 18px; font-weight: 300; color: #000; margin: 0 0 50px; }
.reasons-grid {
    display: grid; grid-template-columns: repeat(4, 270px);
    gap: 32px 40px; justify-content: center;
    max-width: 1200px; margin: 0 auto;
}
.reason { text-align: center; }
.reason__icon { width: 72px; height: 72px; margin: 0 auto 20px; }
.reason__icon img { width: 72px; height: 72px; display: block; object-fit: contain; }
.reason__title {
    font-family: var(--font-heading); font-size: 19.8px;
    font-weight: 400; text-transform: uppercase; margin: 0 0 12px; color: #000;
}
.reason__text { font-size: 16.2px; font-weight: 300; color: #000; line-height: 1.6; margin: 0; }


/* === layouts/project-page.css === */
/* Project Description + Location */
.project-description {
    padding: 100px 0; max-width: 800px; margin: 0 auto; text-align: center;
}
.project-description h2 {
    font-size: 50.4px; font-weight: 300; font-family: var(--font-heading);
    text-align: center; color: #202732; margin: 0 0 30px;
}
.project-description__image { margin: 0 0 50px; }
.project-description__image img { width: 100%; height: auto; display: block; }
.project-description__text { text-align: center; }
.project-description__text p {
    font-size: 18px; font-weight: 300; line-height: 28.8px;
    text-align: center; margin: 0 0 18px; color: #000;
}
.project-location { padding: 100px var(--container-padding); background: #eeeeee; }
.project-location__inner { max-width: 1200px; margin: 0 auto; }
.project-location h2 {
    font-size: 50.4px; font-weight: 300; font-family: var(--font-heading);
    color: #202732; margin: 0 0 40px; text-align: center;
}
/* Tighten the gap when the map subtitle sits right underneath the heading */
.project-location h2:has(+ .project-location__subtitle) { margin-bottom: 12px; }
.project-location__subtitle {
    font-size: 18px; font-weight: 300; color: #202732;
    margin: 0 0 40px; text-align: center;
}
.project-location__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.project-location__left { display: flex; flex-direction: column; gap: 30px; }
.project-location__text { font-size: 18px; font-weight: 300; line-height: 1.7; color: #000; }
.project-location__text p { margin: 0 0 18px; }
.project-location__map iframe { display: block; width: 100%; height: 300px; border: 0; }
/* Statt der eingebetteten Karte liegt hier der Kartenausschnitt als Bild. */
.project-location__map img { display: block; width: 100%; height: auto; }
.project-location__images { display: flex; flex-direction: column; gap: 20px; }
.project-location__images img { width: 100%; height: auto; display: block; }


/* === components/faq.css === */
/* FAQ Accordion */
.project-faqs { padding: 100px var(--container-padding); max-width: 1200px; margin: 0 auto; }
.project-faqs h2 {
    font-size: 50.4px; font-weight: 300; font-family: var(--font-heading);
    color: #202732; margin: 0 0 40px; text-align: center;
}
.faqs { margin: 0; }
.faq__item { border-bottom: 1px solid var(--color-border); padding: 20px 0; }
.faq__question {
    font-size: 17.6px; font-weight: 600; color: #1a1a1a;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; width: 100%; text-align: left; padding: 0;
    font-family: var(--font-body); list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: '+'; font-size: 24px; color: var(--color-gold);
    flex-shrink: 0; margin-left: 20px; font-weight: 300;
}
details[open] .faq__question::after { content: '\2212'; }
.faq__answer { padding-top: 16px; color: #444; line-height: 1.7; font-size: 16px; font-weight: 300; }


/* === components/equipment-distances.css === */
/* Equipment + Distances */
.equipment-distances-section { padding: 100px var(--container-padding); background: #202732; color: var(--color-white); }
.equipment-distances-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.equipment-column h3, .distances-column h3 {
    font-family: var(--font-heading); font-size: 19.8px;
    font-weight: 400; text-transform: uppercase;
    color: var(--color-white); margin: 0 0 30px;
}
.equipment-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 30px; }
.equipment__item {
    font-size: 16.2px; font-weight: 300; color: var(--color-white);
    padding-left: 24px; position: relative; line-height: 28.8px;
    font-family: 'Roboto', sans-serif;
}
.equipment__item::before { content: '\2713'; position: absolute; left: 0; color: var(--color-gold); font-weight: 700; }
.distances-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }
.distance__item { display: flex; justify-content: space-between; align-items: baseline; }
.distance__label {
    font-size: 15px; font-weight: 300; text-transform: uppercase;
    color: var(--color-white); font-family: 'Roboto', sans-serif; line-height: 28.8px;
}
.distance__value { font-size: 16.2px; font-weight: 300; color: #CCAB86; font-family: 'Roboto', sans-serif; line-height: 28.8px; }


/* === components/contact-form.css === */
/* Contact Section + Form */
/* scroll-margin-top haelt den Sprung ueber #contact unter dem fixierten
   Header, sonst verdeckt der die ersten 100px des Bereichs. */
.contact-section {
    padding: 100px 0 0; max-width: 1200px; margin: 0 auto; position: relative;
    scroll-margin-top: var(--header-height);
}
.contact-section::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: 100vw; border-top: 1px solid #ccc;
}
.contact-section__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0 32px; align-items: stretch;
}
.contact-section__left { position: relative; background: var(--color-white); }
.contact-section__left-bg {
    padding: 0; min-height: 100%;
    background-image: url('../images/Christiane-Tiebel-2.webp');
    background-size: auto; background-position: 100% 100%; background-repeat: no-repeat;
}
.contact-section__about { margin-bottom: 0; }
.contact-section__about h4 {
    font-family: var(--font-heading); font-size: 21.6px;
    font-weight: 400; color: #000; margin: 0 0 10.8px;
}
.contact-section__questions h4 {
    font-family: var(--font-heading); font-size: 21.6px;
    font-weight: 400; color: #000; margin: 30px 0 10.8px;
}
.contact-section__about p, .contact-section__questions p {
    font-size: 16.2px; font-weight: 300; line-height: 1.6;
    color: #000; margin: 0 0 16.2px; font-family: 'Roboto', sans-serif;
}
.contact-section__subtitle { font-size: 16.2px !important; color: #000 !important; }
.contact-person {
    margin: 0 0 16.2px; line-height: 25.92px; font-size: 16.2px;
    font-weight: 300; color: #000; font-family: 'Roboto', sans-serif;
}
.contact-person strong { font-weight: 700; }
.contact-person a { color: #000; text-decoration: none; }
.contact-person a:hover { color: var(--color-gold); }

/* Right column: dark form */
.contact-section__right { background: #202732; padding: 40px; color: var(--color-white); }
.contact-section__right h4 {
    font-family: var(--font-heading); font-size: 21.6px;
    font-weight: 400; color: var(--color-white); margin: 0 0 10.8px; text-align: center;
}
.service-tags {
    margin-bottom: 24px; text-align: center;
    font-size: 16.2px; font-weight: 300; color: var(--color-white);
    font-family: 'Roboto', sans-serif;
}
.service-tags__label { margin-right: 6px; }
.service-tags__tag { display: inline-block; margin-left: 4px; font-size: 16.2px; font-weight: 300; color: var(--color-white); }
.service-tags__tag::before { content: '\2714'; color: #55FF55; font-weight: 700; margin-right: 6px; }

/* Form fields */
.contact-form { margin-top: 10px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
    display: block; font-size: 16px; font-weight: 700;
    color: var(--color-white); margin-bottom: 6px; font-family: 'Roboto', sans-serif;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; height: 38px; padding: 6px 10px; border: 1px solid #ccc;
    background: #fff; font-family: 'Roboto', sans-serif;
    font-size: 16px; line-height: 20.8px; color: #333; border-radius: 2px;
    box-sizing: border-box; transition: border-color 0.2s;
}
.contact-form textarea { height: auto; }
.contact-form select { appearance: auto; background: #fff; color: #333; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #999; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--color-gold);
}
.form-row { margin-bottom: 14px; }
.form-row--3col { display: grid; grid-template-columns: auto 1fr 1fr; gap: 14px; }
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* intl-tel-input overrides */
.contact-form .iti { width: 100%; height: 38px; }
.contact-form .iti__dropdown-content { background: #fff !important; border: 1px solid #ccc !important; max-height: 200px; z-index: 100; }
.contact-form .iti__country-list { background: #fff !important; color: #333 !important; }
.contact-form .iti__country-list .iti__country { color: #333 !important; background: #fff !important; }
.contact-form .iti__country-list .iti__country-name { color: #333 !important; }
.contact-form .iti__country-list .iti__dial-code { color: #666 !important; }
.contact-form .iti__country-list .iti__country:hover,
.contact-form .iti__country-list .iti__highlight { background: #f0f0f0 !important; }
.contact-form .iti__search-input { background: #fff !important; color: #333 !important; border: 1px solid #ccc !important; }
.contact-form .iti__selected-dial-code { color: #333; }

.btn--submit {
    display: inline-block; width: 150px;
    background: #AA8D70; color: var(--color-white);
    border: none; padding: 8px 15px 7px;
    font-family: 'Roboto', sans-serif; font-size: 16.2px; font-weight: 300;
    text-transform: uppercase; cursor: pointer; transition: background 0.2s;
    margin-top: 8px; border-radius: 0;
}
.btn--submit:hover { background: #8a7058; }
.btn--submit:disabled { opacity: 0.6; cursor: wait; }

/* Form feedback */
.form-feedback { margin-top: 10px; padding: 0; font-size: 14px; font-family: 'Roboto', sans-serif; line-height: 1.5; border-radius: 3px; }
.form-feedback:empty { display: none; }
.form-feedback--success { display: block; padding: 10px 14px; background: #1a3a1a; color: #55FF55; border: 1px solid #2a5a2a; }
.form-feedback--error { display: block; padding: 10px 14px; background: #3a1a1a; color: #ff6b6b; border: 1px solid #5a2a2a; }


/* === components/buttons.css === */
/* Buttons */
.btn {
    display: inline-block; padding: 12px 35px;
    font-size: 16px; font-weight: 400;
    text-transform: uppercase; text-align: center;
    cursor: pointer; transition: all 0.2s;
    border: 1px solid transparent; border-radius: 0;
}
.btn--primary { background: var(--color-gold); color: var(--color-white); border-color: var(--color-gold); }
.btn--primary:hover { background: var(--color-heading); border-color: var(--color-heading); color: var(--color-white); }
.btn--whatsapp {
    background: #00C666; color: var(--color-white);
    border-radius: 5px; font-size: 15px; font-weight: 300;
    padding: 5px 15px; display: inline-flex; align-items: center; gap: 8px;
}
.btn--whatsapp:hover { opacity: 0.9; color: var(--color-white); }


/* === components/footer.css === */
/* Footer */
.site-footer {
    padding: 0 var(--container-padding);
    background: transparent;
    border-top: 1px solid #ccc;
}
.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.footer-imprint {
    color: var(--color-gold); font-size: 12px;
    font-family: var(--font-body); font-weight: 400; text-decoration: none;
}
.footer-imprint:hover { color: #a88a3e; }


/* === components/project-card.css === */
/* Project Cards (Listings) */
.project-card {
    display: block; background: var(--color-white);
    overflow: hidden; box-shadow: 0 0 5px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-3px); }
.project-card__image {
    display: flex; width: 100%; min-height: 364px; max-height: 364px;
    overflow: hidden; justify-content: center; align-items: center;
}
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.project-card:hover .project-card__image img { transform: scale(1.05); }
.project-card__info { padding: 20px; }
.project-card__location { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-muted); }
.project-card__title { font-size: 21.6px; font-weight: 400; margin: 8px 0; color: var(--color-heading); font-family: var(--font-heading); }
.project-card__meta { font-size: 14.4px; color: var(--color-text-light); }


/* === components/homepage-hero.css === */
/* Homepage Hero */
.homepage-hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
.homepage-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.homepage-hero__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.85);
    text-align: center;
    padding: 60px 0;
    z-index: 10;
    box-shadow: 0px -4px 8px -3px rgba(0, 0, 0, 0.25);
}
.homepage-hero__overlay h2 {
    font-size: 72px;
    font-weight: 300;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: #202732;
    margin: 0;
    line-height: 1.1;
}
.homepage-hero__overlay p {
    font-size: 21.6px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 34.56px;
}


/* === components/category-cards.css === */
/* Category Cards */
.category-cards-section {
    padding: 15px 0 0;
}
.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
}
.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s;
}
.category-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.category-card__image {
    width: 100%;
    overflow: hidden;
}
.category-card__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.category-card:hover .category-card__image img {
    transform: scale(1.05);
}
.category-card__text {
    padding: 18px 0 17px;
    text-align: center;
}
.category-card__title {
    font-size: 19.8px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    line-height: 28.8px;
    font-family: var(--font-heading);
}
.category-card__desc {
    font-size: 16.2px;
    font-weight: 300;
    color: #000;
    margin: -3px 0 0;
    line-height: 25.92px;
}


/* === components/search-section.css === */
/* Search Section + Project Grid */
.search-section {
    padding: 100px 0 100px;
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}
.search-section h2 {
    font-size: 50.4px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 0 0 12px;
}
.search-section__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    margin: 0 0 40px;
}

/* Project Grid */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
}

/* Project Card */
.project-grid-card {
    width: 33.333%;
    padding: 10px;
    display: block;
}
.project-grid-card__inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
}
.project-grid-card:hover .project-grid-card__inner {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Card Image */
.project-grid-card__image {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.project-grid-card__image img {
    width: 100%;
    height: 236px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.project-grid-card:hover .project-grid-card__image img {
    transform: scale(1.05);
}

/* Location Badge */
.project-grid-card__badge {
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
    background: #AA8D70;
    color: #fff;
    font-size: 11.7px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid #fff;
    box-shadow: 0 0 4px rgba(0,0,0,0.39);
    white-space: nowrap;
    z-index: 5;
}

/* Card Text Area */
.project-grid-card__info {
    padding: 18px 15px 17px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.project-grid-card__title {
    font-size: 19.8px;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: #000;
    line-height: 28.8px;
    margin: 0;
}
.project-grid-card__meta {
    font-size: 16.2px;
    font-weight: 300;
    color: #000;
    line-height: 25.92px;
    margin: -3px 0 0;
}

/* Project Card Ribbon/Banderole */
.project-grid-card__ribbon {
    position: absolute;
    top: 30px;
    right: -50px;
    width: 202px;
    height: 32px;
    background: #AA8D70;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14.4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 28.8px;
    padding: 2px 60px 1px;
    transform: rotate(40deg);
    z-index: 4;
}

/* Load More Button */
.project-grid__load-more {
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.project-grid__load-more button {
    background: var(--color-gold);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.project-grid__load-more button:hover {
    background: var(--color-heading);
}

/* 2-column grid variant (for resales, fewer items) */
.project-grid.grid-2col .project-grid-card {
    width: 50%;
}
.project-grid.grid-2col .project-grid-card__image img {
    height: 360px;
}
.project-grid.grid-2col .project-grid-card__badge {
    top: 337px;
}

/* === components/listing-hero.css === */
/* Listing Page Hero (with background image) */
.listing-hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
/* Als CSS-Hintergrund kann der Browser keine Groesse waehlen — deshalb liegt
   hier ein echtes <img> mit srcset und wird per object-fit beschnitten. */
.listing-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}
.listing-hero__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.85);
    text-align: center;
    padding: 60px 0;
    z-index: 10;
    box-shadow: 0px -4px 8px -3px rgba(0, 0, 0, 0.25);
}
.listing-hero__overlay h1 {
    font-size: 64.8px;
    font-weight: 300;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: #202732;
    margin: 0;
    line-height: 1.1;
}
.listing-hero__overlay p {
    font-size: 21.6px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

/* Listing Intro — element inside search-section, not a frame */
.search-section > h2 {
    font-size: 50.4px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 0 0 16px;
}
.search-section__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.7;
    margin: 0 auto 40px;
}

/* Listing Page Content (below grid) */
.listing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding) 100px;
}
.listing-content h2 {
    font-size: 36px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 40px 0 16px;
    line-height: 1.2;
}
.listing-content h2:first-child {
    margin-top: 0;
}
.listing-content h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: #202732;
    margin: 30px 0 12px;
}
.listing-content p {
    font-size: 16.2px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    margin: 0 0 16px;
}
.listing-content ul, .listing-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.listing-content li {
    font-size: 16.2px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    margin: 0 0 8px;
}
.listing-content a { color: var(--color-gold); }
.listing-content a:hover { color: var(--color-gold-hover); }
.listing-content strong { font-weight: 600; }

/* Listing FAQ spacing — reuses .project-faqs styles */
.listing-content .project-faqs {
    margin-top: 100px;
    border-top: 1px solid var(--color-border);
    padding: 100px 0 0;
    max-width: none;
}
.listing-content .project-faqs h2 {
    font-size: 36px;
    text-align: left;
}


/* === components/filter-bar.css === */
/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto 30px;
    padding: 0 10px;
}
.filter-bar__filters {
    display: flex;
    gap: 18px;
}
.filter-bar__sort {
    display: flex;
    align-items: center;
}
.filter-bar select {
    appearance: none;
    -webkit-appearance: none;
    width: 150px;
    height: 38px;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    padding: 4px 35px 3px 15px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
}
.filter-bar select:focus {
    outline: none;
    border-color: var(--color-gold);
}
.filter-bar__sort select {
    width: 248px;
}


/* === components/info-text.css === */
/* Info Text (collapsible content in footer) */
.info-text__toggle {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: var(--color-gold);
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
    text-align: left;
}
.info-text__toggle:hover {
    color: var(--color-gold);
}
.info-text__content {
    display: none;
    background: #fff;
}
.info-text__content.is-open {
    display: block;
}
.info-text__content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px var(--container-padding);
}
.info-text__content h1 {
    font-size: 28.8px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.info-text__content h2 {
    font-size: 21.6px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: #202732;
    margin: 24px 0 10px;
}
.info-text__content h3 {
    font-size: 19.8px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: #202732;
    margin: 20px 0 8px;
}
.info-text__content p {
    font-size: 16.2px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    margin: 0 0 14px;
}
.info-text__content a { color: var(--color-gold); }
.info-text__content a:hover { color: var(--color-gold-hover); }


/* === components/blog.css === */
/* Blog Index */
.blog-grid-section { max-width: 1200px; margin: 0 auto; padding: 100px var(--container-padding); }
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: var(--color-white); overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-3px); }
.blog-card a { text-decoration: none; color: inherit; display: block; }

.blog-card__image { width: 100%; height: 220px; overflow: hidden; background: #e8e8e8; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__image--placeholder { background: linear-gradient(135deg, #202732 0%, #3a4555 100%); }

.blog-card__body { padding: 30px; }
.blog-card__title {
    font-family: var(--font-heading); font-size: 21.6px; font-weight: 400;
    color: #202732; margin: 0 0 12px; line-height: 1.25;
}
.blog-card__excerpt {
    font-family: var(--font-body); font-size: 16px; font-weight: 300;
    line-height: 1.6; color: #333; margin: 0 0 12px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__more {
    display: block; font-family: var(--font-body); font-size: 16px;
    font-weight: 300; color: var(--color-gold); margin-bottom: 14px;
}
.blog-card:hover .blog-card__more { color: var(--color-gold-hover); }
.blog-card__date {
    display: block; font-family: var(--font-body); font-size: 14px;
    font-weight: 300; color: var(--color-text-light);
}

/* Blog Post */
.blog-post-page { margin: 0 auto; }

/* Volle Breite wie im Original, Text in einer 1265px-Spalte */
.blog-post__hero {
    width: 100%; aspect-ratio: 1425 / 579;
    position: relative; overflow: hidden;
}
.blog-post__hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 50%;
}
/* Satzspiegel wie im Original: 900px. Begrenzt werden die Textbloecke,
   nicht der Artikel — so kann die Galerie voll ausbrechen. */
.blog-post { margin: 0 auto; }
.blog-post__header,
.blog-post__block { max-width: 940px; margin: 0 auto; padding: 0 20px; }

.blog-post__header { padding: 50px 0 20px; }
.blog-post__meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; font-size: 14px; color: var(--color-text-muted);
    font-family: 'Roboto', sans-serif;
}
.blog-post__back {
    color: var(--color-gold); text-decoration: none; font-weight: 400;
    transition: color 0.2s;
}
.blog-post__back:hover { color: #8a7058; }
.blog-post__header h1 {
    font-family: var(--font-heading); font-size: 48px; font-weight: 300;
    text-transform: none;
    color: #202732; margin: 0 0 20px; line-height: 1.2;
}

.blog-post__note {
    background: #f7f3ee; border-left: 4px solid var(--color-gold);
    padding: 16px 20px; margin-bottom: 30px; border-radius: 0 4px 4px 0;
}
.blog-post__note p {
    margin: 0; font-size: 15px; font-style: italic; color: #555;
    font-family: 'Roboto', sans-serif; line-height: 1.5;
}

.blog-post__content {
    font-family: var(--font-body); font-size: 18px;
    line-height: 1.6; color: #000; font-weight: 300;
}
.blog-post__content h2 {
    font-family: var(--font-heading); font-size: 36px; font-weight: 300;
    color: var(--color-gold); margin: 30px 0 18px; line-height: 1.2;
}
.blog-post__content h3 {
    font-family: var(--font-heading); font-size: 22px; font-weight: 400;
    color: #202732; margin: 20px 0 11px; line-height: 1.2;
}
.blog-post__content p { margin: 0 0 18px; }
.blog-post__content a:not(.sell-btn) { color: var(--color-gold); text-decoration: none; }
.blog-post__content a:not(.sell-btn):hover { color: #8a7058; }
.blog-post__content ul, .blog-post__content ol { margin: 0 0 16px; padding-left: 24px; }
.blog-post__content li { margin-bottom: 6px; }
.blog-post__content img { max-width: 100%; height: auto; margin: 20px 0; }
.blog-post__content blockquote {
    border-left: 3px solid var(--color-gold); margin: 20px 0;
    padding: 10px 20px; font-style: italic; color: #555;
}

/* Exposé-Schaltflaeche nach jedem Textblock — nutzt den dunklen Button
   der Verkaufsseite (.sell-btn) */
.blog-post__expose { padding: 12px 0 40px; }

.blog-post__gallery { margin: 10px 0 50px; }

/* Responsive */
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-hero { padding: 60px 20px 40px; }
    .blog-hero h1 { font-size: 28px; }
    .blog-post__header h1 { font-size: 30px; }
    .blog-post__content { font-size: 16px; }
    .blog-post__content h2 { font-size: 26px; }
    .blog-post__hero { height: 240px; }
}

/* Verwandte Beitraege am Fuss des Artikels */
.blog-related { border-top: 1px solid var(--color-border); margin-top: 20px; }
.blog-related__inner {
    /* volle Bildschirmbreite, nicht auf den Satzspiegel begrenzt */
    max-width: none; margin: 0; padding: 100px var(--container-padding);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.blog-related__item { text-decoration: none; display: block; }
.blog-related__image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 18px; }
.blog-related__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-related__item:hover .blog-related__image img { transform: scale(1.05); }
.blog-related__title {
    font-family: var(--font-heading); font-size: 27px; font-weight: 300;
    color: var(--color-gold); margin: 0 0 8px; line-height: 1.2;
}
.blog-related__item:hover .blog-related__title { color: var(--color-gold-hover); }
.blog-related__date {
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    color: var(--color-text-light); margin: 0 0 10px;
}
.blog-related__excerpt {
    font-family: var(--font-body); font-size: 16px; font-weight: 300;
    line-height: 1.6; color: #000; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 900px) { .blog-related__inner { grid-template-columns: 1fr; gap: 30px; } }

/* Standortbild des Projekts als Trenner zwischen den letzten beiden Bloecken.
   Linksbuendig auf der Textkante, wie im Original. */
.blog-post__divider {
    max-width: 940px; margin: 0 auto 50px; padding: 0 20px;
    text-align: left;
}
.blog-post__divider img { max-width: 100%; height: auto; display: inline-block; }


/* === layouts/static-page.css === */
/* Static Page (Contact, Blog, Resales, Imprint) */
.static-hero {
    padding: 160px var(--container-padding) 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.static-hero h1 {
    font-size: 50.4px;
    font-weight: 300;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: #202732;
    margin: 0;
    line-height: 1.1;
}
.static-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding) 60px;
}
.static-content h2 {
    font-size: 36px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 40px 0 16px;
}
.static-content p {
    font-size: 16.2px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    margin: 0 0 16px;
}

/* listing-content nested inside static-content: no double horizontal padding */
.static-content .listing-content {
    padding: 100px 0;
}
/* About Estepona */
.about-video { margin: 60px 0; }
.about-video__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.about-video__frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: 0;
}
.about-video figcaption {
    margin-top: 14px;
    font-size: 16.2px; font-weight: 300; color: var(--color-text-light);
    text-align: center;
}
.static-content h5 {
    font-size: 27px; font-weight: 300; font-family: var(--font-heading);
    color: #202732; margin: 60px 0 24px;
}
.about-advantages {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px;
}
.about-advantages li {
    font-size: 16.2px; font-weight: 300; color: #333;
    padding-left: 26px; position: relative;
}
.about-advantages li::before {
    content: "✓"; position: absolute; left: 0; color: var(--color-gold);
}
.about-facts {
    margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px;
}
.about-facts > div {
    display: flex; justify-content: space-between; gap: 20px;
    border-bottom: 1px solid var(--color-border); padding-bottom: 8px;
}
.about-facts dt { font-size: 16.2px; font-weight: 400; color: #202732; }
.about-facts dd { margin: 0; font-size: 16.2px; font-weight: 300; color: #333; }

@media (max-width: 768px) {
    .about-advantages, .about-facts { grid-template-columns: 1fr; }
}


/* === layouts/sell-property.css === */
/* Sell your Property Page */
.sell-stats {
    padding: 60px var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
}
.sell-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.sell-stats__number {
    display: block;
    font-size: 90px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    color: #000;
    line-height: 1;
}
.sell-stats__label {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    margin-top: 8px;
}

/* Service sections */
.sell-service {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #000;
}
/* Als CSS-Hintergrund kann der Browser keine Groesse waehlen — deshalb liegt
   hier ein echtes <img> mit srcset hinter dem Text. */
.sell-service__image,
.sell-packages__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.sell-service__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    align-items: center;
}
.sell-service__text {
    padding: 0;
}
.sell-service__spacer {}
.sell-service__text h2 {
    font-size: 50.4px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #202732;
    margin: 0 0 30px;
    line-height: 60.48px;
}
.sell-service__text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28.8px;
    color: #000;
    margin: 0 0 18px;
}
.sell-service__text .btn {
    display: inline-flex;
    align-items: center;
    background: #202732;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 7.2px 18px;
    border-radius: 3px;
    border: none;
    margin-top: 10px;
    width: auto;
}
.sell-service__text .btn:hover {
    background: var(--color-gold);
}

/* Packages section */
.sell-packages {
    position: relative;
    overflow: hidden;
    padding: 80px var(--container-padding);
    border-bottom: 1px solid #000;
}


/* Full-width breakout from static-content container */
.static-content .sell-stats,
.static-content .sell-service,
.static-content .sell-packages {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.static-content .sell-stats {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
    width: auto;
}

.sell-packages__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}
.sell-packages__inner h2 {
    font-size: 50.4px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #fff;
    margin: 0 0 10px;
}
.sell-packages__subtitle {
    font-size: 21.6px;
    font-weight: 300;
    color: var(--color-gold);
    margin: 0 0 10px;
}
.sell-packages__inner h5 {
    font-size: 19.8px;
    font-weight: 400;
    color: var(--color-gold);
    margin: 0 0 20px;
    text-transform: uppercase;
}
.sell-packages__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}
.sell-packages__card {
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 40px 30px;
    text-align: center;
}
.sell-packages__pct {
    display: block;
    font-size: 70px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 15px;
}
.sell-packages__card h4 {
    font-size: 21.6px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: #000;
    margin: 0 0 15px;
}
.sell-packages__card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28.8px;
    color: #000;
    margin: 0;
}
.sell-packages__note {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin: 30px 0 20px;
}
.sell-packages .sell-btn {
    margin-top: 10px;
    background: var(--color-gold);
}

@media (max-width: 768px) {
    .sell-stats__grid { grid-template-columns: 1fr; }
    .sell-stats__number { font-size: 60px; }
    .sell-service__inner { grid-template-columns: 1fr; padding: 40px 20px; }
    .sell-service__spacer { display: none; }
    .sell-packages__row { grid-template-columns: 1fr; }
    .sell-packages__inner { padding: 30px 20px; }
}
/* Sell page CTA button */
.sell-btn {
    display: inline-flex;
    align-items: center;
    background: #202732;
    color: #fff !important;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 7.2px 18px;
    border-radius: 3px;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.sell-btn:hover {
    background: var(--color-gold);
    color: #fff !important;
}

/* === responsive/responsive.css === */
/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .equipment-distances-inner { grid-template-columns: 1fr; gap: 40px; }
    .distances-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-header__grid { grid-template-columns: 1fr 1fr; }
    .site-header__center { display: none; }
    .project-title-overlay { padding: 30px 20px; }
    .project-title-overlay h1 { font-size: 36px; }
    .gallery__slide { flex: 0 0 100%; }
    .reasons-grid { grid-template-columns: 1fr; }
    .project-location__grid { grid-template-columns: 1fr; }
    .contact-section__inner { grid-template-columns: 1fr; }
    .equipment-list { grid-template-columns: 1fr; }
    .form-row--3col { grid-template-columns: 1fr; }
    .project-investment, .project-faqs, .project-location,
    .equipment-distances-section, .contact-section { padding: 60px 20px; }
    .project-description { padding: 60px 20px; }
    /* Homepage */
    .homepage-hero { height: 500px; }
    .homepage-hero__overlay h2 { font-size: 42px; }
    .category-cards-grid { grid-template-columns: 1fr; }
    /* .project-grid ist ein Flexbox, kein Grid — grid-template-columns lief hier
       ins Leere und die Karten blieben bei 33.333%, also 87px auf einem 375er
       Display. Die Breite muss auf der Karte selbst zurueckgenommen werden. */
    .project-grid-card,
    .project-grid.grid-2col .project-grid-card { width: 50%; }
    .search-section { padding: 40px 20px; }
}
@media (max-width: 480px) {
    :root { --container-padding: var(--container-padding-mobile); }
    /* Die 2col-Variante der Resales-Seite ist spezifischer als .project-grid-card
       allein — ohne sie hier stehen auf dem Handy zwei 140px-Kacheln nebeneinander. */
    .project-grid-card,
    .project-grid.grid-2col .project-grid-card { width: 100%; }
    .project-hero { height: 70vh; }
    .project-title-overlay h1 { font-size: 28px; }
    .brochure-link { width: 140px; height: 140px; right: 20px; top: 100px; }
    .brochure-link__label { font-size: 14px; }
    .brochure-link__cta { font-size: 11px; }
}

/* Listing hero responsive */
@media (max-width: 768px) {
    .listing-hero { height: 500px; }
    .listing-hero__overlay h1 { font-size: 42px; }
}
@media (max-width: 480px) {
    .listing-hero { height: 400px; }
    .listing-hero__overlay h1 { font-size: 32px; }
}
