/* Ferienparadies am Steinhuder Meer
   Design tokens recovered from the Divi build: navy #02376a, slate #879db2,
   peach #fac7a9, League Spartan headings, Noto Sans body, square buttons. */

@font-face { font-family: 'League Spartan'; font-weight: 100 900; font-display: swap;
  src: url(../fonts/league-spartan-var.woff2) format('woff2'); }
@font-face { font-family: 'Noto Sans'; font-weight: 100 900; font-display: swap;
  src: url(../fonts/noto-sans-var.woff2) format('woff2'); }

:root {
  --navy: #02376a;
  --navy-dark: #012549;
  --slate: #879db2;
  --slate-deep: #6a8298;
  --peach: #fac7a9;
  --peach-soft: #fde6d8;
  --text: #4b5563;
  --muted: #6b7280;
  --white: #fff;
  --line: #e5e9ee;
  --shadow: 0 2px 18px rgba(135, 157, 178, .3);
  --shadow-lg: 0 18px 50px -12px rgba(2, 55, 106, .25);
  --radius: 6px;
  --wrap: clamp(1180px, 82vw, 1680px); /* grows with the screen like the Divi rows (≈80 % wide) */
  --head: 'League Spartan', Helvetica, Arial, sans-serif;
  --body: 'Noto Sans', Helvetica, Arial, sans-serif;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font: 400 1rem/1.75 var(--body); color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--slate-deep); }
:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; }

h1, h2, h3, .h3 { font-family: var(--head); font-weight: 500; color: var(--navy); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 1.4rem + 4.2vw, 4.7rem); }
h2 { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); }
p { margin: 0 0 1em; }
.on-dark { color: var(--white); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }
.small { font-size: .875rem; color: var(--muted); }
.mt-md { margin-top: 32px; }
.lead { font-size: 1.125rem; margin-bottom: 40px; }
.eyebrow { font-family: var(--head); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; }
.skip-link:focus { top: 12px; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
@media (max-width: 600px) { .wrap { padding-inline: 16px; } }

.icon { width: 28px; height: 28px; flex: none; }

/* ---- buttons ---------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--navy); color: var(--white); text-decoration: none; text-transform: uppercase;
  font: 500 .9375rem/1.2 var(--body); letter-spacing: .06em; padding: 18px 34px; border: 2px solid var(--navy);
  box-shadow: var(--shadow); transition: background-color .2s, color .2s, border-color .2s; }
.btn:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--navy); box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--small { padding: 13px 22px; font-size: .875rem; }
.btn--block { width: 100%; }
.link-arrow { font-weight: 600; }

/* ---- header ----------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; padding: 12px 16px 0; }
.site-header__bar { max-width: var(--wrap); margin-inline: auto; background: var(--white);
  display: flex; align-items: center; gap: 24px; padding: 10px 12px 10px 24px; min-height: 76px;
  box-shadow: var(--shadow); transition: box-shadow .2s; }
.site-header.is-scrolled .site-header__bar { box-shadow: var(--shadow-lg); }
.brand img { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; display: flex; align-items: center; }
.nav__list a { display: block; padding: 10px 10px; text-decoration: none; text-transform: uppercase;
  letter-spacing: .08em; font-size: .875rem; font-weight: 500; color: var(--navy); }
.nav__list > li.is-active > a, .nav__list a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--peach); }
.sub-toggle { background: none; border: 0; padding: 6px 2px; margin-left: -6px; color: var(--navy); cursor: pointer; }
.chev { width: 16px; height: 16px; display: block; transition: transform .2s; }
.sub { list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--white); box-shadow: var(--shadow-lg); border-top: 3px solid var(--peach);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s; }
.sub a { text-transform: none; letter-spacing: 0; font-size: .95rem; padding: 8px 12px; }
.sub a:hover, .sub a[aria-current="page"] { background: var(--peach-soft); box-shadow: none; }
@media (hover: hover) and (min-width: 961px) {
  .has-sub:hover > .sub { opacity: 1; visibility: visible; transform: none; }
}
.has-sub:focus-within > .sub, .sub-toggle[aria-expanded="true"] + .sub { opacity: 1; visibility: visible; transform: none; }
.sub-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 10px; color: var(--navy); cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close, .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .site-header { padding: 8px 8px 0; }
  .site-header__bar { padding: 8px 8px 8px 16px; min-height: 64px; flex-wrap: wrap; gap: 0; }
  .brand img { height: 46px; }
  .nav-toggle { display: block; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 16px; padding: 12px 8px 16px; margin: 0;
    max-height: calc(100vh - 90px); overflow-y: auto; }
  .nav[data-open="true"] { display: flex; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
  .nav__list > li > a { flex: 1; padding: 14px 8px; }
  .sub-toggle { padding: 14px; margin: 0; }
  .sub { position: static; width: 100%; box-shadow: none; border: 0; padding: 0 0 8px 12px;
    display: none; opacity: 1; visibility: visible; transform: none; }
  .sub-toggle[aria-expanded="true"] + .sub { display: block; }
  .has-sub:focus-within > .sub { display: block; }
  .nav .btn { width: 100%; }
}

/* ---- sections --------------------------------------------------------- */
.section { position: relative; display: flow-root; padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding-top: clamp(40px, 5vw, 64px); }
.section--slate { background: var(--slate); color: var(--white); }
.section--slate a:not(.btn) { color: var(--white); }
.section--peach { background: var(--peach); color: var(--navy); }
.section--peach + .section--peach { padding-top: 0; }
.section--peach + .section--peach > .wave { display: none; }
.wave { position: absolute; left: 0; bottom: 100%; width: 100%; height: clamp(28px, 5vw, 72px); margin-bottom: -1px; display: block; }
.wave--slate { fill: var(--slate); }
.wave--peach { fill: var(--peach); }

/* ---- hero ------------------------------------------------------------- */
.hero { position: relative; margin-top: calc(-1 * var(--header-h) - 12px); padding: calc(var(--header-h) + 90px) 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 45%, rgba(255,255,255,.35) 100%); }
.hero__inner { position: relative; padding-bottom: 72px; }
.hero__inner h1 { max-width: 11ch; }
.hero__lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); max-width: 34ch; color: var(--navy); }
.hero__award { position: absolute; right: 24px; bottom: 72px; width: 150px; box-shadow: var(--shadow-lg); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.usp-bar { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.usp-bar li { display: flex; align-items: center; gap: 14px; padding: 26px 28px; color: var(--navy);
  font-family: var(--head); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; line-height: 1.35; }
.usp-bar li + li { border-left: 1px solid var(--line); }
.usp-bar .icon { color: var(--slate-deep); }
.usp-bar--inline { margin-top: 36px; box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero::before { background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.8)); }
  .hero__award { position: static; width: 120px; margin-top: 28px; }
  .usp-bar { grid-template-columns: 1fr; }
  .usp-bar li { padding: 16px 20px; }
  .usp-bar li + li { border-left: 0; border-top: 1px solid var(--line); }
}

.page-hero { background: linear-gradient(180deg, var(--peach-soft), var(--white)); padding: clamp(56px, 7vw, 96px) 0 clamp(16px, 3vw, 32px); }
.page-hero h1 { max-width: 20ch; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem); }
.page-hero--plain { padding-bottom: 0; }
.page-hero--plain h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }

/* ---- layout blocks ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--intro { grid-template-columns: 1fr auto; margin-bottom: 48px; }
.split--intro img { width: 220px; aspect-ratio: 3 / 4; object-fit: cover; }
.rounded { border-radius: var(--radius); }
.prose h2 { margin-bottom: .6em; }
.photo-stack { position: relative; padding-bottom: 80px; }
.photo-stack img:first-child { box-shadow: var(--shadow-lg); }
.photo-stack img:last-child { position: absolute; right: -8px; bottom: 0; width: 55%; border: 8px solid var(--white); box-shadow: var(--shadow-lg); }
@media (max-width: 800px) {
  .split, .split--intro { grid-template-columns: 1fr; }
  .split--intro img { display: none; }
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--white); color: var(--text); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.card img { aspect-ratio: 3 / 2; object-fit: cover; }
.card__body { padding: 28px; }
.card h3 { font-size: 1.3rem; }
.ticks { list-style: none; margin: 0 0 1rem; padding: 0; }
.ticks li { display: flex; gap: 10px; padding: 5px 0; line-height: 1.5; }
.ticks .icon { width: 20px; height: 20px; color: var(--slate-deep); margin-top: 2px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.location { display: grid; gap: 4px; padding: 24px 28px; border: 2px solid rgba(255,255,255,.7); text-decoration: none; transition: background-color .2s; }
.section--slate .location { color: var(--white); }
.location:hover { background: rgba(255,255,255,.12); }
.location strong { font-family: var(--head); font-weight: 500; font-size: 1.4rem; }
.location__label { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; opacity: .85; }
@media (max-width: 700px) { .locations { grid-template-columns: 1fr; } }

.amenities { padding-top: clamp(56px, 7vw, 96px); }
.amenity-grid { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 24px; }
.amenity-grid li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  font-family: var(--head); font-size: 1.05rem; font-weight: 500; line-height: 1.3; color: var(--navy); }
.amenity-grid .icon { width: 56px; height: 56px; padding: 14px; background: var(--white); border-radius: 50%; box-shadow: var(--shadow); }
@media (max-width: 800px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }

.reviews h2 { margin-bottom: 40px; }

.cta-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.cta-band__media { position: relative; }
.cta-band__media > img:first-child { box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; }
.award { position: absolute; left: -16px; bottom: -24px; width: 140px; box-shadow: var(--shadow-lg); }
.cta-band__deal { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.big-number { font-family: var(--head); font-size: 4.5rem; line-height: 1; color: var(--navy); margin: 0; display: flex; align-items: center; gap: 16px; }
.big-number span { font-size: 1.05rem; line-height: 1.3; max-width: 14ch; }
@media (max-width: 800px) {
  .cta-band__grid { grid-template-columns: 1fr; }
  .award { left: auto; right: 12px; width: 110px; }
}

/* ---- apartments ------------------------------------------------------- */
.apt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.apt-card { background: var(--white); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.apt-card img { aspect-ratio: 4 / 3; object-fit: cover; transition: opacity .2s; }
.apt-card a:hover img { opacity: .88; }
.apt-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.apt-card__body .ticks { flex: 1; }
@media (max-width: 1100px) { .apt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .apt-grid { grid-template-columns: 1fr; } }

.feature-apt { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.feature-apt__media img { box-shadow: var(--shadow-lg); }
@media (max-width: 800px) { .feature-apt { grid-template-columns: 1fr; } }

.apartment { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.apartment__facts { position: sticky; top: calc(var(--header-h) + 24px); background: var(--peach-soft); padding: 28px; }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li { display: flex; gap: 12px; padding: 9px 0; line-height: 1.45; color: var(--navy); border-bottom: 1px solid rgba(2,55,106,.1); }
.facts li:last-child { border-bottom: 0; }
.facts .icon { width: 22px; height: 22px; color: var(--slate-deep); }
.house-info { margin-top: 24px; padding-top: 20px; border-top: 2px solid var(--peach); }
.house-info h3 { font-size: 1.15rem; }
.house-info ul { list-style: none; margin: 0 0 12px; padding: 0; }
.house-info li { display: flex; gap: 10px; padding: 5px 0; font-size: .925rem; line-height: 1.45; }
.house-info .icon { width: 20px; height: 20px; color: var(--slate-deep); }
@media (max-width: 960px) {
  .apartment { grid-template-columns: 1fr; }
  .apartment__facts { position: static; order: -1; }
}

.booking-frame { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px; }
.booking-frame iframe { display: block; width: 100%; min-height: 640px; border: 0; }
.booking-note { font-size: .9rem; color: var(--muted); margin-top: 12px; }
.booking-page { max-width: 1060px; }

.gallery { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery li:first-child { grid-column: span 2; grid-row: span 2; }
.gallery a { display: block; height: 100%; overflow: hidden; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .35s; }
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(1, 20, 40, .92); }
.lightbox figure { margin: 0; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 56px 64px; }
.lightbox img { max-height: calc(100vh - 150px); width: auto; object-fit: contain; }
.lightbox figcaption { color: #fff; margin-top: 12px; text-align: center; }
.lightbox button { position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 0; font-size: 2rem; line-height: 1; width: 52px; height: 52px; cursor: pointer; }
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox figure { padding: 64px 8px; } .lightbox__prev, .lightbox__next { top: auto; bottom: 12px; transform: none; } }

/* ---- contact ---------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-card { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; align-items: center; padding: 24px 28px;
  background: var(--white); box-shadow: var(--shadow-lg); text-decoration: none; border-left: 4px solid var(--peach); transition: border-color .2s; }
.contact-card:hover { border-color: var(--navy); }
.contact-card .icon { grid-row: span 2; width: 36px; height: 36px; color: var(--navy); }
.contact-card__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact-card strong { font-family: var(--head); font-weight: 500; font-size: 1.3rem; color: var(--navy); word-break: break-word; }
.contact-address { background: var(--peach-soft); padding: 32px; }
.contact-address address { font-style: normal; font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
.map-links { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .contact { grid-template-columns: 1fr; } }

/* ---- legal pages ------------------------------------------------------ */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.6rem; margin-top: 1.6em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin-top: 1.6em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }

/* ---- footer ----------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.82); padding: 64px 0 24px; font-size: .95rem; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: var(--white); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer__grid img { height: 56px; width: auto; background: var(--white); padding: 6px 10px; margin-bottom: 16px; box-sizing: content-box; }
.site-footer h2 { font-family: var(--body); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--peach); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .85rem; }
.site-footer__bottom p { margin: 0; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__grid > div:first-child { grid-column: 1 / -1; } }
.gallery li.wide-2 { grid-column: span 2; }
.gallery li.wide-4 { grid-column: 1 / -1; }
.gallery li.wide-2 img { aspect-ratio: 3 / 1; }
.gallery li.wide-4 img { aspect-ratio: 6 / 1; }
@media (max-width: 700px) { .gallery li.wide-2, .gallery li.wide-4 { grid-column: auto; } .gallery li.wide-2 img, .gallery li.wide-4 img { aspect-ratio: 3 / 2; } .gallery li:last-child:nth-child(even) { grid-column: 1 / -1; } }

/* ---- guest ratings (Booking.com) ------------------------------------- */
.reviews__lead { font-size: 1.1rem; margin: -24px 0 32px; }
.rating-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rating { display: flex; align-items: center; gap: 16px; padding: 22px; background: var(--white); color: var(--text); text-decoration: none; box-shadow: var(--shadow-lg); transition: transform .2s; }
.section--slate a.rating { color: var(--text); }
.rating:hover { transform: translateY(-2px); color: var(--text); }
.rating__score { flex: none; display: grid; place-items: center; width: 60px; height: 60px; background: var(--navy); color: var(--white); font-family: var(--head); font-size: 1.5rem; border-radius: 10px 10px 10px 0; }
.rating__label { display: grid; line-height: 1.35; font-size: .925rem; }
.rating__label strong { font-family: var(--head); font-weight: 500; font-size: 1.15rem; color: var(--navy); }
.rating--light { box-shadow: none; padding: 0 0 20px; margin-bottom: 12px; background: transparent; border-bottom: 2px solid var(--peach); }
.rating-cats { list-style: none; margin: 32px 0 24px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rating-cats li { display: grid; text-align: center; padding: 16px; border: 1px solid rgba(255,255,255,.5); }
.rating-cats strong { font-family: var(--head); font-weight: 500; font-size: 1.6rem; color: var(--white); }
@media (max-width: 960px) { .rating-grid, .rating-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rating-grid { grid-template-columns: 1fr; } }
.reviews .small { color: rgba(255,255,255,.88); }

/* =======================================================================
   Modern layer (2026 refresh): immersive hero, motion, interactive blocks.
   Everything here degrades to a static layout without JS; motion respects
   prefers-reduced-motion.
   ======================================================================= */
:root { --ease: cubic-bezier(.2, .7, .2, 1); --peach-deep: #f4a67c; }

/* header: frosted glass */
.site-header__bar { background: rgba(255,255,255,.86); -webkit-backdrop-filter: saturate(1.6) blur(14px); backdrop-filter: saturate(1.6) blur(14px); border-radius: 4px; }
.site-header.is-scrolled .site-header__bar { background: rgba(255,255,255,.95); }

/* buttons */
.btn { transition: background-color .25s, color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(2,55,106,.45); }
.btn--arrow::after { content: '→'; display: inline-block; transition: transform .25s var(--ease); }
.btn--arrow:hover::after { transform: translateX(4px); }
.btn--light { background: var(--peach); border-color: var(--peach); color: var(--navy); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.8); color: var(--white); box-shadow: none; }
.btn--outline-light:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--peach-deep); }
.eyebrow--light { color: var(--peach); }
.eyebrow--light::before { background: var(--peach); }
.center .eyebrow, .eyebrow.center { justify-content: center; }
.link-arrow { text-decoration: none; border-bottom: 2px solid var(--peach); padding-bottom: 2px; }
.link-arrow.on-dark { color: var(--white); }

/* hero: full-bleed photo, navy veil, white type */
.hero { min-height: min(94vh, 920px); display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); isolation: isolate; }
.hero::before { background: linear-gradient(95deg, rgba(1,30,60,.86) 0%, rgba(2,55,106,.62) 42%, rgba(2,55,106,.12) 78%), linear-gradient(0deg, rgba(1,30,60,.45), transparent 40%); }
.hero__bg { animation: kenburns 22s var(--ease) both; transform-origin: 70% 40%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__inner h1 { color: var(--white); max-width: 12ch; text-shadow: 0 2px 30px rgba(0,0,0,.18); }
.hero__lead { color: rgba(255,255,255,.92); }
.hero__inner > * { animation: rise .9s var(--ease) both; }
.hero__inner > :nth-child(2) { animation-delay: .08s; } .hero__inner > :nth-child(3) { animation-delay: .16s; }
.hero__inner > :nth-child(4) { animation-delay: .24s; } .hero__inner > :nth-child(5) { animation-delay: .4s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__award { transform: rotate(3deg); transition: transform .3s var(--ease); }
.hero__award:hover { transform: rotate(0) scale(1.04); }
.usp-bar { background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
@media (max-width: 860px) {
  .hero { min-height: 0; }
  .hero::before { background: linear-gradient(180deg, rgba(1,30,60,.82), rgba(2,55,106,.7)); }
}

/* section heads */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.section-head h2 { max-width: 22ch; margin-bottom: 0; }

/* stats with count-up */
.stats { list-style: none; margin: 32px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats strong { display: block; font-family: var(--head); font-weight: 500; font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.3rem); color: var(--navy); line-height: 1.1; }
.stats span { font-size: .85rem; color: var(--muted); }
.stats strong span { font-size: inherit; color: inherit; }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* photo stack: gentle hover */
.photo-stack img { transition: transform .5s var(--ease); }
.photo-stack:hover img:last-child { transform: translate(-8px, -8px); }

/* tabs */
.tabs__list { display: inline-flex; gap: 4px; padding: 4px; background: rgba(255,255,255,.18); border-radius: 999px; margin-bottom: 28px; }
.tabs__list button { border: 0; background: transparent; color: var(--white); font: 500 .95rem var(--body); letter-spacing: .02em; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: background-color .25s, color .25s; }
.tabs__list button span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 6px; border-radius: 999px; background: rgba(255,255,255,.25); font-size: .75rem; }
.tabs__list button[aria-selected="true"] { background: var(--white); color: var(--navy); }
.tabs__list button[aria-selected="true"] span { background: var(--peach); }
.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: fadein .45s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.apt-grid--single { grid-template-columns: 1fr 1fr; align-items: stretch; }
.apt-note { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.apt-note h3 { color: var(--white); }
@media (max-width: 700px) { .apt-grid--single { grid-template-columns: 1fr; } }

/* apartment cards */
.apt-card { transition: transform .35s var(--ease), box-shadow .35s; }
.apt-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -18px rgba(2,55,106,.45); }
.apt-card__media { position: relative; display: block; overflow: hidden; }
.apt-card__media img { transition: transform .8s var(--ease); }
.apt-card:hover .apt-card__media img { transform: scale(1.06); opacity: 1; }
.apt-card__score { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-family: var(--head); padding: 6px 10px; border-radius: 8px 8px 8px 0; font-size: 1rem; box-shadow: var(--shadow); }
.apt-card__score::before { content: '★ '; color: var(--peach); }
.apt-card h3 { margin-bottom: .25em; }
.apt-card__meta { color: var(--muted); font-size: .92rem; flex: 1; }
.section--slate .apt-card h3 { color: var(--navy); }

/* filter chips */
.filter { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; }
.filter__label { font-size: .9rem; color: var(--muted); margin-right: 4px; }
.filter button { border: 1.5px solid var(--line); background: var(--white); color: var(--navy); padding: 8px 18px; border-radius: 999px; font: 500 .9rem var(--body); cursor: pointer; transition: all .2s; }
.filter button:hover { border-color: var(--navy); }
.filter button[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.apt-card.is-hidden { display: none; }

/* amenities: interactive tiles */
.amenity-grid li { padding: 20px 12px; border-radius: 6px; transition: background-color .3s, transform .3s var(--ease); }
.amenity-grid li:hover { background: rgba(255,255,255,.45); transform: translateY(-4px); }
.amenity-grid .icon { transition: transform .4s var(--ease), background-color .3s, color .3s; }
.amenity-grid li:hover .icon { transform: scale(1.1) rotate(-6deg); background: var(--navy); color: var(--white); }

/* location */
.lage__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.lage__media { position: relative; }
.lage__media img { aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-lg); }
.lage__badge { position: absolute; right: -16px; bottom: 32px; background: var(--navy); color: rgba(255,255,255,.85); padding: 18px 24px; font-size: .9rem; box-shadow: var(--shadow-lg); }
.lage__badge strong { display: block; font-family: var(--head); font-weight: 500; font-size: 1.6rem; color: var(--white); }
.distances { list-style: none; margin: 28px 0 12px; padding: 0; border-top: 1px solid var(--line); }
.distances li { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 12px 4px; border-bottom: 1px solid var(--line); transition: background-color .2s, padding .2s; }
.distances li:hover { background: var(--peach-soft); padding-inline: 12px; }
.distances .icon { width: 22px; height: 22px; color: var(--slate-deep); }
.distances strong { font-family: var(--head); font-weight: 500; color: var(--navy); white-space: nowrap; }
@media (max-width: 900px) { .lage__grid { grid-template-columns: 1fr; } .lage__media img { aspect-ratio: 16 / 10; } .lage__badge { right: 12px; } }

/* ratings */
.rating { border-radius: 4px; }
.rating__ext { display: block; font-size: .78rem; color: var(--slate-deep); margin-top: 2px; opacity: 0; transform: translateY(-2px); transition: opacity .2s, transform .2s; }
.rating:hover .rating__ext, .rating:focus-visible .rating__ext { opacity: 1; transform: none; }
.reviews__lead strong { font-family: var(--head); font-weight: 500; font-size: 1.4rem; color: var(--white); }

/* FAQ accordion */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq-layout > div:first-child { position: sticky; top: calc(var(--header-h) + 32px); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px;
  font-family: var(--head); font-weight: 500; font-size: 1.15rem; color: var(--navy); transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--peach-soft); font-size: 1.3rem; transition: transform .3s var(--ease), background-color .3s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--peach); }
.faq summary:hover { color: var(--slate-deep); }
.faq__answer { padding: 0 48px 20px 4px; }
.faq details[open] .faq__answer { animation: fadein .35s var(--ease); }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } .faq-layout > div:first-child { position: static; } }

/* CTA benefits */
.benefits { list-style: none; margin: 8px 0 0; padding: 0; }
.benefits li { display: flex; gap: 12px; padding: 8px 0; line-height: 1.5; }
.benefits .icon { width: 22px; height: 22px; color: var(--peach-deep); margin-top: 2px; }
.benefits strong { color: var(--navy); }
.award { transform: rotate(-4deg); transition: transform .3s var(--ease); }
.cta-band__media:hover .award { transform: rotate(0) scale(1.05); }

/* apartment hero + mosaic */
.apt-hero { padding: 24px 0 8px; background: linear-gradient(180deg, var(--peach-soft), var(--white) 70%); }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.apt-hero__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.apt-hero__head h1 { margin-bottom: .1em; }
.apt-hero__meta { color: var(--navy); margin: 0; font-size: 1.05rem; }
.mosaic-wrap { position: relative; }
.mosaic { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, clamp(150px, 16vw, 250px)); gap: 8px; border-radius: 6px; overflow: hidden; }
.mosaic li:first-child { grid-row: span 2; }
.mosaic li.mosaic__more { display: none; }
.mosaic a { display: block; height: 100%; overflow: hidden; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.mosaic a:hover img { transform: scale(1.05); filter: brightness(1.05); }
.mosaic__all { position: absolute; right: 16px; bottom: 16px; background: var(--white); color: var(--navy); border: 0; padding: 10px 16px; font: 600 .9rem var(--body); box-shadow: var(--shadow-lg); cursor: pointer; border-radius: 4px; transition: transform .2s var(--ease); }
.mosaic__all:hover { transform: translateY(-2px); }
.apartment__facts h2 { font-size: 1.15rem; margin: 4px 0 12px; }
@media (max-width: 800px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 56vw 28vw; }
  .mosaic li:first-child { grid-column: span 2; grid-row: auto; }
  .mosaic li:nth-child(n+4) { display: none; }
}

/* sticky mobile booking bar */
.sticky-book { display: none; }
@media (max-width: 960px) {
  .sticky-book { position: fixed; left: 8px; right: 8px; bottom: 8px; z-index: 40; display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 10px 10px 10px 16px; background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
    transform: translateY(0); transition: transform .35s var(--ease), opacity .35s; }
  .sticky-book span { font-size: .9rem; color: var(--navy); }
  .sticky-book.is-hidden { transform: translateY(140%); opacity: 0; }
}

/* scroll reveal (only applied by JS to elements below the fold) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* lightbox polish */
.lightbox[open] { animation: fadein .3s var(--ease); }
.lightbox img { touch-action: pan-y; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.big-number [data-count] { font-size: inherit; max-width: none; line-height: inherit; }
.apt-card .btn { white-space: nowrap; }
.section--peach:has(+ .section--peach) { padding-bottom: 8px; }
.amenities .amenity-grid { margin-top: 16px; }
.big-number b { font-weight: inherit; white-space: nowrap; }
.sticky-book .btn { white-space: nowrap; flex: none; }
