/* ============================================================
   SunnyStay Egypt — V1 Homepage
   Palette: Creme #F0EBE0 · Petrol #2E7373/#3A8C8C · Gold #B99A5B · Ink #1C1A17
   Type: Cormorant Garamond (Display) · Inter (Body)
   ============================================================ */

:root {
  --creme: #F0EBE0;
  --paper: #F7F4EC;
  --petrol: #2E7373;
  --petrol-soft: #3A8C8C;
  --gold: #B99A5B;
  --ink: #1C1A17;
  --ink-60: rgba(28, 26, 23, .64);
  --white: #FFFFFF;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 18px 50px -18px rgba(28, 26, 23, .28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--creme);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 5.5vw, 3.1rem); }
h3 { font-size: 1.55rem; }

/* Nur fuer Screenreader/SEO sichtbar (H1 hinter Logo-Bild) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Concierge-Karten: H2 semantisch, H3-Optik (Hierarchie-Fix ohne Layoutsprung) */
.xsell__body h2 { font-size: 1.55rem; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 760px; text-align: center; }

.section { padding: clamp(72px, 12vw, 130px) 0; position: relative; }
.section--paper { background: var(--paper); }

/* ---------- shared bits ---------- */

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }

.goldline {
  display: flex;
  justify-content: center;
  margin: 22px auto 26px;
}
.wrap:not(.wrap--narrow) .goldline { justify-content: flex-start; }
.wrap--narrow .goldline { justify-content: center; }
.goldline span {
  display: block;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 1.1s var(--ease) .15s;
}
.goldline.in span { width: 72px; }

.lead {
  font-size: 1.08rem;
  color: var(--ink-60);
  max-width: 620px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  will-change: transform;
}
.btn--petrol {
  background: var(--petrol);
  color: var(--white);
  box-shadow: 0 12px 30px -12px rgba(46, 115, 115, .55);
}
.btn--petrol:hover { transform: translateY(-3px); background: var(--petrol-soft); }
.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { transform: translateY(-3px); background: var(--ink); color: var(--creme); }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  background: var(--creme);
  z-index: 200;
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader__logo, .header__logo, .hero__logo {
  filter: brightness(1.2) contrast(1.06);
}
.loader__logo {
  width: min(320px, 70vw);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: scale(.94);
  animation: loaderIn 1.1s var(--ease) .1s forwards;
}
@keyframes loaderIn {
  to { opacity: 1; transform: scale(1); }
}
.loader.is-done { opacity: 0; visibility: hidden; }

/* ---------- header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  transition: background .5s var(--ease), box-shadow .5s, padding .5s var(--ease);
}
.header.is-solid {
  background: rgba(240, 235, 224, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px -18px rgba(28, 26, 23, .35);
  padding: 8px 26px;
}
.header__logo {
  height: 54px;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .5s, height .5s var(--ease);
}
.header.is-solid .header__logo { opacity: 1; height: 46px; }
.header__nav {
  display: flex;
  gap: 30px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.header__nav a {
  position: relative;
  padding: 4px 0;
  color: var(--white);
  transition: color .4s;
}
.header.is-solid .header__nav a { color: var(--ink); }
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__right { display: flex; align-items: center; gap: 18px; }

.lang {
  font-size: .8rem;
  font-weight: 500;
  color: var(--white);
  transition: color .4s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header.is-solid .lang, .menu-open .lang { color: var(--ink); }
.lang__btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: .55;
  padding: 4px 2px;
  letter-spacing: .06em;
}
.lang__btn.is-active { opacity: 1; border-bottom: 1px solid var(--gold); }
.lang__sep { opacity: .4; }

.burger {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 26px;
  position: relative;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--white);
  transition: transform .45s var(--ease), top .45s var(--ease), background .4s;
}
.header.is-solid .burger span, .menu-open .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 6px; }
.burger span:nth-child(2) { top: 17px; }
.menu-open .burger span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 12px; transform: rotate(-45deg); }

/* ---------- mobile menu ---------- */

.menu {
  position: fixed;
  inset: 0;
  background: var(--creme);
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s var(--ease), visibility .55s;
}
.menu-open .menu { opacity: 1; visibility: visible; }
.menu__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}
.menu__nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.menu-open .menu__nav a { opacity: 1; transform: none; }
.menu-open .menu__nav a:nth-child(1) { transition-delay: .1s; }
.menu-open .menu__nav a:nth-child(2) { transition-delay: .17s; }
.menu-open .menu__nav a:nth-child(3) { transition-delay: .24s; }
.menu-open .menu__nav a:nth-child(4) { transition-delay: .31s; }
.menu-open .menu__nav a:nth-child(5) { transition-delay: .38s; }
.menu__sun {
  position: absolute;
  bottom: 40px;
  width: 90px;
  opacity: .5;
  mix-blend-mode: multiply;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 13s var(--ease) forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,.25) 0%, rgba(28,26,23,.12) 45%, rgba(28,26,23,.5) 100%);
}
.hero__card {
  position: relative;
  z-index: 2;
  background: rgba(243, 239, 229, .97);
  backdrop-filter: blur(6px);
  padding: clamp(30px, 6vw, 54px) clamp(26px, 6vw, 60px);
  text-align: center;
  max-width: min(560px, calc(100vw - 44px));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(34px);
  animation: heroCard 1.1s var(--ease) 1.5s forwards;
}
@keyframes heroCard {
  to { opacity: 1; transform: none; }
}
.hero__logo {
  width: min(360px, 72vw);
  margin: 0 auto;
  mix-blend-mode: multiply;
}
.hero__rule {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.hero__rule span {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: growline 1.2s var(--ease) 2.2s forwards;
}
@keyframes growline { to { width: 88px; } }
.hero__tagline {
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 2.4s forwards;
}
.hero__sub {
  margin-top: 10px;
  font-size: .92rem;
  color: var(--ink-60);
  opacity: 0;
  animation: fadeUp .9s var(--ease) 2.6s forwards;
}
.hero__card .btn {
  margin-top: 26px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 2.8s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 3.4s forwards;
}
.hero__mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 14px;
  position: relative;
}
.hero__mouse::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: rgba(255,255,255,.9);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
}

/* ---------- apartments ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.card {
  background: var(--white);
  box-shadow: 0 14px 44px -22px rgba(28,26,23,.25);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { overflow: hidden; aspect-ratio: 4 / 3.4; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 24px 28px; }
.card__tag {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--petrol);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  transform: translateY(-3px);
}
.card__tag--gold { background: var(--gold); }
.card__specs {
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--petrol);
  font-weight: 500;
  margin: 8px 0 10px;
}
.card__desc { font-size: .92rem; color: var(--ink-60); }
.card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.card__link em {
  font-style: normal;
  display: inline-block;
  transition: transform .4s var(--ease);
}
.card__link:hover em { transform: translateX(6px); }

/* staggered card reveals */
.cards .card:nth-child(1) { transition-delay: .05s; }
.cards .card:nth-child(2) { transition-delay: .15s; }
.cards .card:nth-child(3) { transition-delay: .25s; }
.cards .card:nth-child(4) { transition-delay: .35s; }
.cards .card:nth-child(5) { transition-delay: .45s; }

.soon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 30px;
  margin-top: 34px;
}
.soon__item {
  border: 1px solid rgba(46, 115, 115, .35);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s;
}
.soon__item:hover { border-color: var(--petrol); }
.soon__label {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.soon__item h4 { font-size: 1.35rem; }
.soon__item h4 span { color: var(--ink-60); font-size: 1.05rem; }
.soon__item p { font-size: .85rem; color: var(--ink-60); margin-top: 6px; }
.soon__link {
  display: inline-block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.soon__link em { font-style: normal; display: inline-block; transition: transform .4s var(--ease); }
.soon__link:hover em { transform: translateX(6px); }

/* ---------- location ---------- */

.location .goldline { justify-content: flex-start !important; }
.location__grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(280px, 7fr);
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}
.location__list { display: grid; gap: 18px; align-content: start; }
.location__item {
  display: block;
  border: 1px solid rgba(46, 115, 115, .3);
  padding: 22px 24px;
  transition: border-color .4s, transform .4s var(--ease), box-shadow .4s;
  background: var(--paper);
}
.location__item:hover {
  border-color: var(--petrol);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -22px rgba(28,26,23,.35);
}
.location__item h4 { font-size: 1.3rem; }
.location__item h4 span { color: var(--ink-60); font-size: 1rem; }
.location__item p { font-size: .85rem; color: var(--ink-60); margin: 6px 0 10px; }
.location__open {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--petrol);
}
.location__open em { font-style: normal; display: inline-block; transition: transform .4s var(--ease); }
.location__item:hover .location__open em { transform: translateX(6px); }
.location__map {
  min-height: 380px;
  box-shadow: var(--shadow);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(.85);
}
@media (max-width: 860px) {
  .location__grid { grid-template-columns: 1fr; }
}

/* ---------- gallery slider ---------- */

.gallery .wrap { text-align: center; }
.gallery .goldline { justify-content: center !important; }

.slider {
  position: relative;
  margin-top: 50px;
}
.slider__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6vw 26px;
  scrollbar-width: none;
  cursor: grab;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider__track figure {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: center;
}
.slider__track img {
  width: 100%;
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  box-shadow: 0 16px 40px -20px rgba(28,26,23,.35);
  transition: transform .6s var(--ease);
}
.slider__track figure:hover img { transform: scale(1.02); }
.slider__track figcaption {
  margin-top: 12px;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--ink-60);
}
.slider__arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--creme);
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 10px 26px -12px rgba(28,26,23,.45);
  transition: transform .35s var(--ease), background .35s;
}
.slider__arrow:hover { transform: scale(1.1); background: var(--white); }
.slider__arrow--prev { left: 18px; }
.slider__arrow--next { right: 18px; }

/* ---------- map consent (Zwei-Klick-Karte) ---------- */

.map-consent {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(46, 115, 115, .12), transparent 60%),
    radial-gradient(ellipse at 70% 75%, rgba(185, 154, 91, .14), transparent 55%),
    var(--paper);
}
.map-consent__text {
  font-size: .88rem;
  color: var(--ink-60);
  max-width: 380px;
}

/* ---------- live weather bar ---------- */

.wxbar {
  background: var(--petrol);
  color: var(--creme);
  border-bottom: 1px solid rgba(185, 154, 91, .35);
}
.wxbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 16px;
  padding: 13px 22px;
  font-size: .84rem;
  letter-spacing: .03em;
}
.wxbar__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 8px;
}
.wxbar__item { white-space: nowrap; font-weight: 300; }
.wxbar__item b { font-weight: 600; }
.wxbar__glyph { font-style: normal; color: var(--gold); }
.wxbar__sep { color: var(--gold); opacity: .7; }

@media (max-width: 560px) {
  .wxbar__row { gap: 2px 12px; font-size: .78rem; padding: 11px 16px; }
  .wxbar__label { flex-basis: 100%; text-align: center; margin: 0 0 2px; }
}

/* ---------- hurghada ---------- */

.hurghada {
  background: var(--petrol);
  color: var(--creme);
  overflow: hidden;
}
.hurghada__sun {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 380px;
  filter: invert(1);
  opacity: .08;
  transform: rotate(12deg);
  pointer-events: none;
}
.hurghada .wrap { position: relative; text-align: center; }
.hurghada .goldline { justify-content: center !important; }
.hurghada h2 { color: var(--white); }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 38px 26px;
  margin: 56px 0 40px;
}
.fact__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.fact__label {
  margin-top: 10px;
  font-size: .85rem;
  color: rgba(240,235,224,.75);
  letter-spacing: .04em;
}
.fact:nth-child(2) { transition-delay: .12s; }
.fact:nth-child(3) { transition-delay: .24s; }
.fact:nth-child(4) { transition-delay: .36s; }

.hurghada__note {
  font-size: .95rem;
  color: rgba(240,235,224,.8);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- reviews ---------- */

.reviews__badge {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 34px;
}
.reviews__badge span { color: var(--ink-60); font-weight: 400; }

.quote {
  position: relative;
  min-height: 210px;
}
.quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 0;
  color: var(--gold);
  opacity: .4;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 3.4vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  padding-top: 46px;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.quote__author {
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--petrol);
  transition: opacity .45s var(--ease) .05s;
}
.quote.is-switching .quote__text,
.quote.is-switching .quote__author { opacity: 0; transform: translateY(10px); }

.quote__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}
.quote__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(28,26,23,.25);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  transition: background .35s, transform .35s var(--ease), border-color .35s;
}
.quote__arrow:hover { background: var(--ink); color: var(--creme); transform: scale(1.08); border-color: var(--ink); }
.quote__dots { display: flex; gap: 10px; }
.quote__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(28,26,23,.22);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.quote__dot.is-active { background: var(--gold); transform: scale(1.35); }

/* ---------- contact ---------- */

.contact__sun {
  width: 84px;
  margin: 0 auto 8px;
  mix-blend-mode: multiply;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.contact__note {
  margin-top: 30px;
  font-size: .85rem;
  color: var(--ink-60);
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(240,235,224,.82);
  padding: 64px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}
.footer__sun { width: 64px; filter: invert(1); opacity: .8; }
.footer__word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--creme);
  margin-top: 12px;
}
.footer__word span { color: var(--gold); }
.footer__tag {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(240,235,224,.55);
}
.footer__nav { display: grid; gap: 12px; font-size: .9rem; }
.footer__nav a:hover, .footer__meta a:hover { color: var(--gold); }
.footer__meta { display: grid; gap: 12px; font-size: .9rem; }
.footer__copy {
  text-align: center;
  font-size: .75rem;
  color: rgba(240,235,224,.4);
  margin-top: 54px;
}

/* ---------- subpage (apartment.html) ---------- */

.subpage .header { position: sticky; }

.subhero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.subhero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 16s var(--ease) forwards;
}
.subhero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,.12) 30%, rgba(28,26,23,.6) 100%);
}
.subhero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 26px 44px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.subhero__back {
  display: inline-block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .85;
  margin-bottom: 18px;
  transition: opacity .3s;
}
.subhero__back:hover { opacity: 1; }
.subhero__loc {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.subhero__title {
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--white);
  font-weight: 500;
}
.subhero__tag {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  margin-left: 14px;
  transform: translateY(-8px);
}
.subhero__rating {
  margin-top: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.subintro__grid {
  display: grid;
  grid-template-columns: minmax(300px, 7fr) minmax(260px, 4fr);
  gap: 50px;
  align-items: start;
}
.subintro__text h2 { margin-top: 6px; }
.subintro .goldline { justify-content: flex-start !important; margin-left: 0; }
.subintro__text .lead { margin: 0; max-width: none; }

.facts-panel {
  background: var(--paper);
  border: 1px solid rgba(185, 154, 91, .35);
  padding: 30px 32px;
  position: sticky;
  top: 96px;
}
.facts-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.facts-panel ul {
  list-style: none;
  margin-bottom: 22px;
}
.facts-panel li {
  font-size: .9rem;
  color: var(--ink-60);
  padding: 8px 0;
  border-bottom: 1px solid rgba(28,26,23,.08);
}
.facts-panel li:last-child { border-bottom: none; }
.facts-panel .btn { width: 100%; justify-content: center; }
.facts-panel__air, .facts-panel__maps {
  display: block;
  margin-top: 14px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--petrol);
}
.facts-panel__air em, .facts-panel__maps em { font-style: normal; display: inline-block; transition: transform .4s var(--ease); }
.facts-panel__air:hover em, .facts-panel__maps:hover em { transform: translateX(6px); }

.subgallery .wrap { text-align: center; }
.subgallery .goldline { justify-content: center !important; }

.beachclub { background: var(--petrol); }
.beachclub h2, .beachclub .lead { color: var(--white); }
.beachclub .lead { color: rgba(240,235,224,.85); }
.beachclub .contact__sun { filter: invert(1); mix-blend-mode: normal; opacity: .9; }
.beachclub__ig { margin-top: 20px; }
.beachclub__ig a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.amenities .goldline { justify-content: flex-start !important; }
.amenities__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px 30px;
  margin-top: 40px;
}
.amenities__grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink-60);
  padding: 10px 0;
  border-bottom: 1px solid rgba(28,26,23,.08);
}
.amenities__dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 860px) {
  .subintro__grid { grid-template-columns: 1fr; gap: 34px; }
  .facts-panel { position: static; }
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .header__nav { display: none; }
  .burger { display: block; }
  .slider__arrow { display: none; }
  .slider__track { padding-inline: 22px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__card, .hero__tagline, .hero__sub, .hero__card .btn, .hero__scroll { opacity: 1; }
  .goldline span { width: 72px; }
}

/* ---------- footer: Marken-Familie ---------- */
.footer__family {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; align-items: baseline;
  padding: 18px 22px 0; margin-top: 26px;
  border-top: 1px solid rgba(240, 235, 224, .14);
  font-size: .8rem;
}
.footer__family-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); flex-basis: 100%; text-align: center; margin-bottom: 2px;
}
.footer__family a { color: rgba(240, 235, 224, .78); transition: color .3s; }
.footer__family a:hover { color: var(--gold); }
.footer__family a span { opacity: .65; }
