
:root{
 --blue:#2f6f98; --deep:#174c6a; --sand:#e9dfcf; --cream:#fbfaf7;
 --ink:#234052; --line:#d9e2e7; --soft:#eef5f7;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#f3f6f7;color:var(--ink);line-height:1.55}
a{text-decoration:none;color:inherit}
.site-header{height:78px;background:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 5vw;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:10}
.brand{display:flex;align-items:center;gap:10px;color:var(--deep)}
.brand strong{display:block;font-size:28px;font-family:Georgia,serif;font-style:italic}
.brand small{display:block;font-size:11px}
.house{font-size:40px;line-height:1}
nav{display:flex;align-items:center;gap:18px;font-size:13px}
nav a:hover{color:var(--blue)}
.nav-cta,.btn{background:var(--blue);color:#fff;padding:10px 17px;border-radius:24px;display:inline-block}
.hero{min-height:430px;padding:70px 8%;display:flex;align-items:center;background:
 linear-gradient(90deg,rgba(15,50,70,.72),rgba(15,50,70,.12)),
 linear-gradient(135deg,#7fa4b5,#d9e2d9);color:#fff}
.hero .inner{max-width:720px}
.eyebrow{text-transform:uppercase;letter-spacing:2px;font-size:12px;opacity:.85}
h1,h2,h3{line-height:1.15}
h1{font-family:Georgia,serif;font-style:italic;font-size:58px;margin:8px 0 16px}
h2{font-family:Georgia,serif;color:var(--deep);font-size:36px}
h3{color:var(--deep)}
.section{max-width:1180px;margin:0 auto;padding:60px 5%}
.grid{display:grid;gap:24px}
.grid.two{grid-template-columns:repeat(2,1fr)}
.grid.three{grid-template-columns:repeat(3,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px;box-shadow:0 8px 22px rgba(23,76,106,.06)}
.photo{min-height:220px;border-radius:14px;background:linear-gradient(135deg,#b9cbd1,#e9dfcf 55%,#8ca8a4);position:relative;overflow:hidden}
.photo:after{content:"Foto-Platzhalter";position:absolute;bottom:14px;left:14px;background:rgba(255,255,255,.86);padding:7px 11px;border-radius:20px;font-size:12px;color:var(--deep)}
.icon-row{background:#fff;display:grid;grid-template-columns:repeat(5,1fr);border-bottom:1px solid var(--line)}
.icon-row div{padding:28px 12px;text-align:center;border-right:1px solid var(--line)}
.icon{font-size:28px;color:var(--blue)}
.muted{color:#617784}
.soft{background:var(--soft)}
ul.clean{padding-left:20px}
.banner{padding:45px 8%;background:linear-gradient(90deg,#e9dfcf,#d7e8ec)}
.price{font-size:32px;color:var(--deep);font-weight:bold}
.form{background:#fff;padding:28px;border-radius:18px;border:1px solid var(--line)}
label{display:block;font-size:13px;margin:14px 0 5px}
input,select,textarea{width:100%;padding:12px;border:1px solid var(--line);border-radius:8px;font:inherit}
textarea{min-height:120px}
footer{padding:28px;text-align:center;color:var(--deep);background:#e7f0f2;margin-top:40px}
.preview-note{background:#fff4cf;color:#6b5317;padding:12px 18px;text-align:center;font-size:13px}
.mobile-preview{max-width:340px;margin:20px auto;border:10px solid #263844;border-radius:34px;padding:12px;background:#fff}
.mobile-preview .photo{min-height:150px}
@media(max-width:850px){
 .site-header{height:auto;padding:14px 5%;align-items:flex-start}
 nav{display:none}
 .grid.two,.grid.three,.grid.four{grid-template-columns:1fr}
 .icon-row{grid-template-columns:repeat(2,1fr)}
 h1{font-size:42px}
 .hero{min-height:360px}
}


.gallery-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.gallery-item{border:0;padding:0;background:#fff;border-radius:14px;overflow:hidden;cursor:pointer;text-align:left;box-shadow:0 2px 12px rgba(0,0,0,.06);transition:transform .18s ease,box-shadow .18s ease}
.gallery-item:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.12)}
.gallery-placeholder{aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#d8e4df,#aebfb7);font-size:34px;font-weight:700;color:#fff;letter-spacing:.08em}
.gallery-caption{padding:12px 13px 14px}
.gallery-caption strong{display:block;font-size:15px;line-height:1.25}
.gallery-caption small{display:block;margin-top:5px;opacity:.65}
.lightbox{display:none;position:fixed;inset:0;background:rgba(10,15,14,.92);z-index:9999;align-items:center;justify-content:center;padding:30px}
.lightbox.open{display:flex}
.lightbox-content{max-width:min(900px,80vw);text-align:center}
.lightbox-placeholder{width:min(900px,80vw);aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#d8e4df,#8fa59b);font-size:80px;font-weight:700;color:#fff}
.lightbox-title{color:#fff;font-size:20px;margin-top:18px}
.lightbox-close,.lightbox-prev,.lightbox-next{position:absolute;border:0;background:rgba(255,255,255,.14);color:#fff;width:50px;height:50px;border-radius:50%;font-size:38px;cursor:pointer;line-height:1}
.lightbox-close{top:24px;right:24px}
.lightbox-prev{left:24px;top:50%;transform:translateY(-50%)}
.lightbox-next{right:24px;top:50%;transform:translateY(-50%)}
@media(max-width:900px){.gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:650px){.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.gallery-caption{padding:10px}.gallery-caption strong{font-size:14px}.lightbox{padding:15px}.lightbox-placeholder{width:88vw;font-size:60px}.lightbox-content{max-width:88vw}.lightbox-prev{left:8px}.lightbox-next{right:8px}.lightbox-close{top:10px;right:10px}}


.calendar-legend{display:flex;gap:24px;flex-wrap:wrap;margin-bottom:20px;font-weight:600}
.calendar-legend span{display:flex;align-items:center;gap:8px}
.calendar-legend i{width:15px;height:15px;border-radius:4px;display:inline-block}
.legend-free{background:#dcebe2}.legend-booked{background:#e8b9b9}.legend-request{background:#eadca8}
.calendar-notice{padding:14px 16px;background:#fff;border-radius:10px;margin-bottom:22px}
.calendar-months{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.calendar-card{background:#fff;border-radius:14px;padding:18px;box-shadow:0 2px 12px rgba(0,0,0,.05)}
.calendar-card h3{text-align:center;margin-top:0}
.calendar-weekdays,.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:5px}
.calendar-weekdays span{text-align:center;font-size:12px;font-weight:700;opacity:.65;padding-bottom:5px}
.cal-day{min-height:38px;border-radius:7px;background:#dcebe2;display:flex;align-items:center;justify-content:center;font-size:13px}
.cal-day.empty{background:transparent}
@media(max-width:900px){.calendar-months{grid-template-columns:1fr}}


.request-form-wrap{max-width:900px;margin:0 auto}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.form-field{display:flex;flex-direction:column;gap:7px}
.form-field.full{grid-column:1/-1}
.form-field label{font-weight:700}
.form-field input,.form-field select,.form-field textarea{width:100%;box-sizing:border-box;border:1px solid #c8d0cc;border-radius:8px;padding:12px 13px;background:#fff;font:inherit}
.form-field textarea{resize:vertical}
.checkbox-field label{font-weight:400;display:flex;gap:10px;align-items:flex-start;line-height:1.45}
.checkbox-field input{width:auto;margin-top:4px}
.website-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-note{font-size:14px;opacity:.75;margin-top:18px}
@media(max-width:650px){.form-grid{grid-template-columns:1fr}.form-field.full{grid-column:auto}}


.legal-content{max-width:900px}
.legal-content h2{margin-top:42px}
.legal-content p{line-height:1.7}
.legal-links{text-align:center;margin-top:16px}
.legal-links a{text-decoration:none;font-weight:600}


.photo-section{margin:32px 0}
.content-photo{width:100%;max-width:100%;height:auto;display:block;border-radius:10px;box-shadow:0 6px 22px rgba(0,0,0,.12)}
.photo-caption{font-size:.95rem;margin-top:10px;opacity:.8}
.hero-photo{width:100%;max-height:680px;object-fit:cover;display:block}
.gallery-real-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:26px}
.gallery-real-grid figure{margin:0}
.gallery-real-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;display:block}
.gallery-real-grid figcaption{padding-top:8px;font-size:.95rem}


/* Neue bildstarke Startseite */
.home-hero{position:relative;min-height:680px;overflow:hidden}
.home-hero>img{width:100%;height:680px;object-fit:cover;display:block}
.home-hero-overlay{position:absolute;inset:0;display:flex;align-items:center;padding:clamp(20px,6vw,90px);background:linear-gradient(90deg,rgba(0,0,0,.32),rgba(0,0,0,.03))}
.hero-card{max-width:680px;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.25)}
.hero-card h1{font-size:clamp(40px,6vw,72px);line-height:1.05;margin:10px 0 20px}
.hero-card p{font-size:clamp(18px,2vw,24px);line-height:1.5}
.hero-card h1,.hero-card p,.image-band-text p,.closing-overlay p{color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.42)}
.intro-section,.split-section{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,70px);align-items:center}
.intro-text h2,.split-copy h2{font-size:clamp(30px,4vw,48px)}
.highlights-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:30px}
.highlights-grid>div{background:#fff;border-radius:14px;padding:22px;box-shadow:0 3px 15px rgba(0,0,0,.06)}
.highlights-grid span{font-size:30px;display:block;margin-bottom:10px}
.highlights-grid strong{display:block;font-size:18px}
.highlights-grid p{margin:7px 0 0;font-size:15px}
.image-band,.closing-cta{position:relative;min-height:520px;overflow:hidden}
.image-band>img,.closing-cta>img{width:100%;height:100%;min-height:520px;object-fit:cover;display:block}
.image-band-text{position:absolute;inset:0 auto 0 0;max-width:620px;padding:clamp(30px,6vw,90px);display:flex;flex-direction:column;justify-content:center;color:#fff;background:linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.03))}
.image-band-text h2{font-size:clamp(34px,5vw,58px);line-height:1.08;margin:10px 0;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.35)}
.image-band-text p{font-size:18px;line-height:1.6}
.closing-overlay{position:absolute;inset:0;display:grid;place-items:center;text-align:center;padding:40px;background:linear-gradient(rgba(0,0,0,.32),rgba(0,0,0,.5));color:#fff}
.closing-overlay>div{max-width:800px}
.closing-overlay h2{font-size:clamp(34px,5vw,62px);line-height:1.1;margin:10px 0 20px;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.35)}
.closing-overlay p{font-size:18px;line-height:1.6}
.btn-light{background:#fff;color:#234}
.text-link{font-weight:700;text-decoration:none}
@media(max-width:760px){
 .home-hero,.home-hero>img{min-height:560px;height:560px}
 .intro-section,.split-section{grid-template-columns:1fr}
 .highlights-grid{grid-template-columns:1fr 1fr}
 .image-band,.closing-cta,.image-band>img,.closing-cta>img{min-height:600px}
 .image-band-text{max-width:none;background:linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,.1));justify-content:flex-end}
}
@media(max-width:480px){.highlights-grid{grid-template-columns:1fr}}


/* Finaler erster Bereich der Startseite */
.home-hero{position:relative;min-height:760px;overflow:hidden;isolation:isolate}
.home-hero>img{width:100%;height:760px;object-fit:cover;object-position:center;display:block}
.hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,25,29,.72) 0%,rgba(8,25,29,.47) 42%,rgba(8,25,29,.08) 75%,rgba(8,25,29,.02) 100%),linear-gradient(0deg,rgba(0,0,0,.28),transparent 42%);z-index:1}
.hero-content{position:absolute;z-index:2;left:clamp(24px,7vw,120px);top:50%;transform:translateY(-48%);max-width:720px;color:#fff}
.hero-kicker{display:inline-block;margin:0 0 18px;padding:8px 13px;border:1px solid rgba(255,255,255,.6);border-radius:999px;color:#fff;font-size:12px;letter-spacing:.15em;font-weight:700}
.hero-content h1{margin:0 0 20px;font-size:clamp(48px,6.6vw,82px);line-height:1.02;letter-spacing:-.035em;color:#fff;text-shadow:0 3px 14px rgba(0,0,0,.42)}
.hero-content h1 span{color:#fff}
.hero-lead{max-width:650px;margin:0;color:#fff;font-size:clamp(19px,2vw,26px);line-height:1.48;font-weight:500;text-shadow:0 2px 10px rgba(0,0,0,.45)}
.hero-facts{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.hero-facts span{display:inline-flex;align-items:center;gap:6px;padding:10px 14px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.32);backdrop-filter:blur(7px);border-radius:999px;color:#fff;font-size:15px;font-weight:600}
.hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:22px;margin-top:32px}
.hero-btn{padding:16px 24px;font-size:17px;box-shadow:0 10px 28px rgba(0,0,0,.2)}
.hero-secondary{color:#fff;font-weight:700;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.75);padding-bottom:4px;text-shadow:0 1px 5px rgba(0,0,0,.4)}
.hero-scroll{position:absolute;z-index:2;bottom:26px;left:50%;transform:translateX(-50%);color:#fff;display:flex;flex-direction:column;align-items:center;gap:5px;font-size:22px;text-shadow:0 2px 7px rgba(0,0,0,.45)}
.hero-scroll span{font-size:12px;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:760px){
.home-hero,.home-hero>img{min-height:680px;height:680px}
.hero-shade{background:linear-gradient(90deg,rgba(8,25,29,.68),rgba(8,25,29,.18)),linear-gradient(0deg,rgba(0,0,0,.5),rgba(0,0,0,.05))}
.hero-content{left:24px;right:24px;top:50%;transform:translateY(-46%)}
.hero-content h1{font-size:clamp(44px,12vw,64px)}
.hero-facts span{font-size:13px;padding:8px 11px}
.hero-actions{gap:16px}
.hero-scroll{bottom:18px}
}


/* Finaler zweiter Bereich der Startseite */
.friesje-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(44px,7vw,110px);align-items:center;padding-top:clamp(76px,10vw,140px);padding-bottom:clamp(76px,10vw,140px)}
.friesje-intro-copy{max-width:650px}
.friesje-intro-copy .eyebrow{margin-bottom:16px}
.friesje-intro-copy h2{margin:0 0 10px;font-size:clamp(40px,5vw,68px);line-height:1.03;letter-spacing:-.04em;color:#18343a;font-weight:800}
.friesje-intro-copy .intro-subtitle{margin:0 0 24px;font-size:clamp(20px,2vw,27px);line-height:1.35;color:#52656a;font-weight:500}
.friesje-intro-copy p{font-size:17px;line-height:1.75;color:#52656a}
.friesje-intro-copy .intro-lead{font-size:clamp(20px,2vw,25px);line-height:1.52;color:#27434a;margin-bottom:18px;font-weight:500}
.intro-mini-facts{display:flex;flex-wrap:wrap;gap:12px;margin:34px 0 32px}
.intro-mini-facts>div{min-width:122px;padding:15px 17px 14px;background:#f4f6f3;border:1px solid #e4e9e5;border-radius:14px}
.intro-mini-facts strong{display:block;color:#18343a;font-size:22px;line-height:1.1}
.intro-mini-facts span{display:block;margin-top:5px;color:#718087;font-size:13px;font-weight:600}
.intro-cta{display:inline-flex;align-items:center;gap:12px;padding:14px 0;border-bottom:2px solid #24474d;color:#18343a;text-decoration:none;font-weight:800;font-size:16px;transition:gap .2s ease,color .2s ease}
.intro-cta:hover{gap:18px;color:#426f67}
.intro-cta span{font-size:21px;line-height:1}
.friesje-intro-visual{position:relative;padding:0 0 34px 28px}
.intro-photo-frame{position:relative;overflow:hidden;border-radius:4px 34px 4px 34px;box-shadow:0 24px 60px rgba(20,47,51,.16);background:#edf0ec}
.intro-photo-frame:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 45%);pointer-events:none}
.intro-photo-frame img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .6s ease}
.friesje-intro-visual:hover .intro-photo-frame img{transform:scale(1.025)}
.intro-photo-note{position:absolute;left:0;bottom:0;max-width:315px;padding:18px 22px 18px 18px;background:#fff;border-left:4px solid #9bbcaf;box-shadow:0 14px 35px rgba(20,47,51,.12);display:flex;gap:12px;align-items:flex-start}
.intro-photo-note p{margin:0;color:#52656a;font-size:14px;line-height:1.5}
.intro-photo-note strong{color:#18343a;font-size:15px}
.intro-note-icon{display:grid;place-items:center;width:32px;height:32px;flex:0 0 32px;border-radius:50%;background:#edf5ef;color:#426f67;font-size:18px}
@media(max-width:760px){
  .friesje-intro{grid-template-columns:1fr;gap:46px;padding-top:74px;padding-bottom:86px}
  .friesje-intro-copy h2{font-size:clamp(38px,11vw,58px)}
  .friesje-intro-visual{padding-left:14px;padding-bottom:38px}
  .intro-photo-note{max-width:calc(100% - 14px)}
  .intro-mini-facts{gap:9px}
  .intro-mini-facts>div{flex:1 1 100px;min-width:100px}
}
@media(max-width:430px){
  .intro-mini-facts{display:grid;grid-template-columns:1fr 1fr}
  .intro-mini-facts>div:last-child{grid-column:1 / -1}
}


/* Dritter Bereich: Friesje auf einen Blick */
.overview-section{padding-top:95px;padding-bottom:95px}
.overview-heading{display:grid;grid-template-columns:1.25fr .75fr;gap:50px;align-items:end;margin-bottom:42px}
.overview-heading h2{font-size:clamp(38px,5vw,64px);line-height:1.04;margin:8px 0 0}
.overview-intro{margin:0 0 8px;font-size:18px;line-height:1.65;color:rgba(20,38,45,.75)}
.overview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.overview-card{position:relative;padding:30px 28px 28px;border:1px solid rgba(26,57,66,.10);border-radius:18px;background:#fff;box-shadow:0 8px 28px rgba(18,47,54,.06);transition:transform .2s ease,box-shadow .2s ease}
.overview-card:hover{transform:translateY(-4px);box-shadow:0 15px 38px rgba(18,47,54,.11)}
.overview-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:rgba(52,116,103,.10);font-size:27px;margin-bottom:20px}
.overview-card h3{font-size:21px;margin:0 0 10px;color:#183a43}
.overview-card p{margin:0;line-height:1.62;color:rgba(20,38,45,.76)}
.overview-footer{margin-top:28px;padding:26px 30px;border-radius:18px;background:#183a43;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:28px}
.overview-footer strong{display:block;font-size:19px;margin-bottom:5px}
.overview-footer span{display:block;opacity:.82;line-height:1.5}
.overview-btn{white-space:nowrap;background:#fff;color:#183a43}
@media(max-width:900px){
 .overview-heading{grid-template-columns:1fr;gap:18px}
 .overview-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
 .overview-section{padding-top:65px;padding-bottom:65px}
 .overview-grid{grid-template-columns:1fr}
 .overview-footer{align-items:flex-start;flex-direction:column;padding:24px}
 .overview-btn{width:100%;text-align:center}
}


/* Bereich Wohnen und Wohlfühlen */
.living-section{padding-top:105px;padding-bottom:95px}
.living-heading{display:grid;grid-template-columns:1.2fr .8fr;gap:55px;align-items:end;margin-bottom:48px}
.living-heading h2{font-size:clamp(40px,5vw,66px);line-height:1.03;margin:8px 0 0}
.living-heading>p{margin:0 0 8px;font-size:18px;line-height:1.65;color:rgba(20,38,45,.76)}
.living-layout{display:grid;grid-template-columns:1.12fr .88fr;gap:clamp(32px,6vw,88px);align-items:center}
.living-photo-main{position:relative}
.living-photo-main img{width:100%;display:block;border-radius:20px;box-shadow:0 18px 45px rgba(18,47,54,.13)}
.living-photo-label{position:absolute;left:22px;bottom:22px;display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);padding:13px 16px;border-radius:14px;box-shadow:0 8px 24px rgba(0,0,0,.12)}
.living-photo-label>span{font-size:25px}
.living-photo-label strong,.living-photo-label small{display:block}
.living-photo-label small{margin-top:2px;color:rgba(20,38,45,.68)}
.living-copy{padding:10px 0}
.living-number{font-size:14px;font-weight:800;letter-spacing:.15em;color:#4b8b7d;margin-bottom:15px}
.living-copy h3,.living-dining-copy h3{font-size:clamp(29px,3.3vw,46px);line-height:1.12;margin:0 0 18px;color:#183a43}
.living-copy>p,.living-dining-copy p{line-height:1.7;color:rgba(20,38,45,.78);font-size:17px}
.living-features{display:grid;gap:10px;margin:25px 0 28px}
.living-features div{font-weight:600}
.living-features span{display:inline-grid;place-items:center;width:24px;height:24px;border-radius:50%;background:rgba(52,116,103,.13);color:#2d7567;margin-right:9px}
.living-link{font-size:16px}
.living-second-row{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(32px,6vw,88px);align-items:center;margin-top:75px;padding-top:72px;border-top:1px solid rgba(24,58,67,.12)}
.living-dining img{width:100%;display:block;border-radius:20px;box-shadow:0 14px 38px rgba(18,47,54,.10)}
.living-dining-copy{max-width:650px}
.living-bottom-cta{margin-top:70px;padding:34px 38px;border-radius:20px;background:#183a43;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:28px}
.living-bottom-cta .eyebrow{color:rgba(255,255,255,.68)}
.living-bottom-cta h3{font-size:clamp(24px,3vw,38px);line-height:1.18;margin:6px 0 0;max-width:650px}
.living-btn{background:#fff;color:#183a43;white-space:nowrap}
@media(max-width:900px){
 .living-heading,.living-layout,.living-second-row{grid-template-columns:1fr;gap:28px}
 .living-second-row{margin-top:55px;padding-top:55px}
 .living-dining-copy{max-width:none}
}
@media(max-width:620px){
 .living-section{padding-top:70px;padding-bottom:65px}
 .living-photo-label{left:12px;right:12px;bottom:12px;padding:11px 13px}
 .living-bottom-cta{padding:27px 24px;align-items:flex-start;flex-direction:column}
 .living-btn{width:100%;text-align:center}
}

/* Bessere Lesbarkeit im Abschlussbereich von "Wohnen und Wohlfühlen" */
.living-bottom-cta,
.living-bottom-cta h3,
.living-bottom-cta .eyebrow,
.living-bottom-cta .btn,
.living-bottom-cta div,
.living-bottom-cta span {
  color:#fff;
}
.living-bottom-cta .eyebrow{color:rgba(255,255,255,.78)}
.living-bottom-cta .living-btn{color:#183a43;background:#fff}

/* Garten & Terrasse – großzügiger, bildorientierter Bereich */
.garden-section{padding-top:105px;padding-bottom:100px}
.garden-heading{display:grid;grid-template-columns:1.1fr .9fr;gap:55px;align-items:end;margin-bottom:46px}
.garden-heading h2{font-size:clamp(40px,5vw,66px);line-height:1.03;margin:8px 0 0}
.garden-heading>p{margin:0 0 8px;font-size:18px;line-height:1.65;color:rgba(20,38,45,.76)}
.garden-grid{display:grid;grid-template-columns:1.25fr .75fr;grid-template-rows:270px 270px;gap:18px}
.garden-photo{margin:0;overflow:hidden;border-radius:20px;min-height:0;background:#e9eeee}
.garden-photo img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .35s ease}
.garden-photo:hover img{transform:scale(1.02)}
.garden-photo-main{grid-row:1 / span 2}
.garden-photo-wide{grid-column:1 / span 2;height:330px;margin-top:0}
.garden-copy{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:42px}
.garden-copy p{margin:0;line-height:1.7;color:rgba(20,38,45,.78);font-size:17px}
@media(max-width:900px){
 .garden-heading{grid-template-columns:1fr;gap:18px}
 .garden-grid{grid-template-columns:1fr 1fr;grid-template-rows:300px 240px}
 .garden-photo-main{grid-column:1 / span 2;grid-row:auto}
 .garden-photo-wide{grid-column:1 / span 2;height:300px}
 .garden-copy{grid-template-columns:1fr;gap:18px}
}
@media(max-width:620px){
 .garden-section{padding-top:70px;padding-bottom:70px}
 .garden-grid{display:grid;grid-template-columns:1fr;grid-template-rows:none;gap:14px}
 .garden-photo,.garden-photo-main,.garden-photo-wide{grid-column:auto;grid-row:auto;height:300px}
 .garden-photo-main{height:360px}
}

/* Fotogalerie – reale Fotos */
.gallery-photo-grid { align-items: stretch; }
.gallery-photo { padding: 0; overflow: hidden; }
.gallery-photo > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.gallery-photo .gallery-caption { position: static; background: #fff; }
.lightbox-content img { max-width: min(86vw, 1100px); max-height: 78vh; width: auto; height: auto; object-fit: contain; display: block; margin: auto; }

.photo.photo-filled:after{display:none}

/* Bildgrößen der zuletzt abgestimmten Seiten */
.anfrage-foto{min-height:0;display:flex;align-items:center;justify-content:center;background:transparent}
.anfrage-foto img{display:block;width:100%;height:300px;object-fit:contain;border-radius:14px}
.gaense-foto{min-height:0}
.gaense-foto img{display:block;width:100%;height:260px;object-fit:cover;border-radius:14px}
.preise-foto{min-height:0}
.preise-foto img{display:block;width:100%;height:260px;object-fit:cover;border-radius:14px}
.radfahren-foto{min-height:0}
.radfahren-foto img{display:block;width:100%;height:300px;object-fit:contain;border-radius:14px}
@media(max-width:850px){
 .anfrage-foto img,.gaense-foto img,.preise-foto img,.radfahren-foto img{height:auto;max-height:none;object-fit:contain}
}
