/* ═══════════════════════════════════════════════════════════════════════
   Ferienwohnungen Ana · Čiovo / Trogir
   Mediterran · modern · editorial
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Farbwelt – Adria, Terrakotta, Olive, Kalkweiß */
  --sea-deep: #0e5b66;
  --sea: #1b7a86;
  --sea-light: #3fa3ab;
  --sky: #e7f3f2;
  --cream: #fbf6ec;
  --sand: #efe4d1;
  --sand-deep: #e3d3ba;
  --terracotta: #c4623f;
  --coral: #dd7f5c;
  --olive: #6d7a4e;
  --gold: #c9a25f;
  --ink: #2a2620;
  --ink-soft: #5c554b;
  --sun: #eaa955;

  --white-90: rgba(255, 255, 255, 0.9);

  /* Typo */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 20px -12px rgba(42, 38, 32, 0.35);
  --shadow: 0 24px 60px -28px rgba(14, 91, 102, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(14, 91, 102, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset / Basis ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }

::selection { background: var(--sea-light); color: #fff; }

/* Dekorativer Kalkstein-Untergrund */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(63, 163, 171, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(196, 98, 63, 0.07), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ── Fließende Seitenübergänge (Chrome: Cross-Document View Transitions) ─ */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut 0.32s ease both; }
::view-transition-new(root) { animation: vtIn 0.5s ease both; }
@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; } }
.nav { view-transition-name: site-header; }
/* Sanftes Einblenden beim Laden (auch Fallback ohne View Transitions) */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn 0.5s ease both; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95em 1.7em;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--solid { background: var(--sea); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--sea-deep); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(42, 38, 32, 0.25); }
.btn--ghost:hover { border-color: var(--sea); color: var(--sea-deep); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--coral)); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem clamp(1rem, 4vw, 2rem);
}
.nav.is-scrolled {
  background: rgba(251, 246, 236, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(42, 38, 32, 0.06), 0 10px 30px -20px rgba(0, 0, 0, 0.4);
}
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand__mark { color: var(--sea); display: grid; place-items: center; flex: none; }
.nav:not(.is-scrolled) .brand { color: #fff; }
.nav:not(.is-scrolled) .brand__mark { color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text b { font-family: var(--display); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; white-space: nowrap; }
.brand__text em { font-style: normal; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  position: relative; font-weight: 500; font-size: 0.95rem; padding: 0.3rem 0;
  color: var(--ink); transition: color 0.3s;
}
.nav:not(.is-scrolled) .nav__links a { color: rgba(255, 255, 255, 0.92); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.lang { display: flex; gap: 2px; padding: 3px; border-radius: 100px; background: rgba(255,255,255,0.16); }
.nav.is-scrolled .lang { background: rgba(42, 38, 32, 0.07); }
.lang button {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.4em 0.7em; border-radius: 100px; color: #fff; opacity: 0.75; transition: all 0.3s;
}
.nav.is-scrolled .lang button { color: var(--ink); }
.lang button.is-active { background: var(--sea); color: #fff; opacity: 1; }
.nav.is-scrolled .lang button.is-active { background: var(--sea); color: #fff; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: 0.3s; color: #fff; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__close, .nav__backdrop { display: none; } /* nur mobil sichtbar (siehe Media Query) */

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
/* Weicher Übergang vom Hero in die Seite (keine harte Kante) */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 150px;
  background: linear-gradient(180deg, transparent, var(--cream)); z-index: -1; pointer-events: none;
}
.hero__scene { position: absolute; inset: 0; z-index: -3; }
.hero__sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #2a7f8c 0%, #3a94a0 26%, #7dbcc0 52%, #e4b988 78%, #eaa96a 100%);
}
.hero__sun {
  position: absolute; top: 30%; left: 50%; width: 190px; height: 190px; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff6e2 0%, #ffdca0 38%, #f4b96a 62%, rgba(244,185,106,0) 72%);
  filter: blur(2px); animation: sunBreath 9s ease-in-out infinite;
}
@keyframes sunBreath { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.95 } 50% { transform: translate(-50%,-52%) scale(1.06); opacity: 1 } }
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 34%, rgba(255, 230, 180, 0.5), transparent 70%);
}
.hero__town {
  position: absolute; bottom: 27%; left: 0; width: 100%; height: 210px;
  color: #14545e; opacity: 0.9;
}
.hero__town::after { content: ""; }
.hero__sea {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 30%;
  background: linear-gradient(180deg, #2c8a91 0%, #10606c 70%, #0c4f59 100%);
  overflow: hidden;
}
.hero__sea::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,240,210,0.9), transparent);
}
.hero__shimmer {
  position: absolute; top: 8%; left: -20%; width: 140%; height: 40%;
  background: repeating-linear-gradient(180deg, transparent 0 7px, rgba(255,240,210,0.10) 7px 9px);
  transform: skewY(-1deg); animation: shimmer 7s linear infinite;
}
.hero__shimmer--2 { top: 40%; opacity: 0.6; animation-duration: 11s; animation-direction: reverse; }
@keyframes shimmer { from { transform: translateX(0) skewY(-1deg) } to { transform: translateX(60px) skewY(-1deg) } }
.hero__grain {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; opacity: 0; transition: opacity 1.2s ease;
}
.hero__video.is-ready { opacity: 1; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 60%, transparent 30%, rgba(8,40,46,0.35) 100%),
    linear-gradient(180deg, rgba(8,40,46,0.5) 0%, rgba(8,40,46,0.26) 40%, rgba(8,40,46,0.55) 100%);
}

.hero__content { max-width: 900px; padding: 0 1.5rem; animation: heroRise 1.2s var(--ease) both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(28px) } to { opacity: 1; transform: none } }
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.4rem; color: rgba(255,255,255,0.9);
}
.hero__title { font-size: clamp(2.8rem, 7.5vw, 5.6rem); font-weight: 400; text-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.hero__title span { display: block; }
.hero__title-accent { font-style: italic; color: #ffe9c9; }
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-weight: 400; max-width: 620px;
  margin: 1.6rem auto 0; color: rgba(255,255,255,0.95);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.hero__scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4); z-index: 2;
}
.hero__scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(6px) } }

/* ── Sektionen allgemein ─────────────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2rem); scroll-margin-top: 76px; }
.section__head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.kicker {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--terracotta); margin-bottom: 1rem;
}
.kicker::before { content: "✦"; margin-right: 0.6em; color: var(--gold); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.3rem); color: var(--ink); }
.section__lead { margin-top: 1.2rem; font-size: 1.1rem; color: var(--ink-soft); }

/* ── LAGE ────────────────────────────────────────────────────────────── */
.location { background: var(--cream); }
.location__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: stretch;
}
.location__map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 440px; }
.location__map { position: absolute; inset: 0; height: 100%; width: 100%; background: var(--sky); }
.location__maps-link {
  position: absolute; bottom: 14px; right: 14px; z-index: 500;
  background: var(--white-90); backdrop-filter: blur(6px);
  padding: 0.6em 1em; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--sea-deep);
  box-shadow: var(--shadow-sm);
}
.location__facts {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow); border: 1px solid rgba(42,38,32,0.05);
}
.location__facts h3 { font-size: 1.5rem; margin-bottom: 1.3rem; }
.facts { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
.fact {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(42,38,32,0.12);
}
.fact:last-child { border-bottom: none; }
.fact__ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sky); color: var(--sea-deep); font-size: 1.2rem; }
.fact__name { font-weight: 600; flex: 1; }
.fact__dist { font-size: 0.9rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; text-align: right; }
.fact__dist b { display: block; color: var(--terracotta); font-family: var(--display); font-size: 1.05rem; }
.location__address {
  margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(42,38,32,0.1);
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft);
}
.location__address svg { color: var(--terracotta); flex: none; }

/* ── WOHNUNGEN ───────────────────────────────────────────────────────── */
.apartments__list { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 6rem); }
.apt {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: center;
}
.apt:nth-child(even) .apt__media { order: 2; }

/* Galerie */
.apt__media { position: relative; }
.apt__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.05;
}
.apt__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: grid; place-items: center; text-align: center; color: #fff;
  transition: opacity 0.6s var(--ease), transform 8s var(--ease);
}
.apt__photo.is-hidden { opacity: 0; pointer-events: none; }
.apt__photo-label {
  position: relative; z-index: 2; font-family: var(--display); font-style: italic;
  font-size: 1.05rem; letter-spacing: 0.04em; background: rgba(0,0,0,0.28);
  backdrop-filter: blur(3px); padding: 0.5em 1.1em; border-radius: 100px;
}
.apt__photo svg.motif { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.apt__play {
  position: absolute; bottom: 14px; left: 14px; z-index: 6;
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--white-90); color: var(--sea-deep); font-weight: 600; font-size: 0.85rem;
  padding: 0.55em 1em; border-radius: 100px; box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease);
}
.apt__play:hover { transform: scale(1.05); }
.apt__play svg { fill: var(--terracotta); }
.apt__thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.apt__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.apt__rating {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  background: var(--white-90); backdrop-filter: blur(6px); color: var(--sea-deep);
  font-weight: 700; font-size: 0.8rem; padding: 0.35em 0.8em; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.apt__thumb {
  flex: 1; height: 60px; border-radius: 12px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); opacity: 0.85; transition: opacity 0.3s, transform 0.3s;
  position: relative; background-size: cover; background-position: center;
}
.apt__thumb:hover, .apt__thumb.is-active { opacity: 1; transform: translateY(-2px); }
.apt__thumb.is-active { outline: 2px solid var(--sea); outline-offset: 2px; }

/* Foto-Galerie (Lightbox) */
.gallery { position: relative; background: #0c282e; line-height: 0; }
.gallery__img { width: 100%; max-height: 82vh; object-fit: contain; background: #0c282e; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--white-90); color: var(--sea-deep);
  font-size: 1.9rem; line-height: 1; display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.gallery__nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__bar {
  position: absolute; left: 0; right: 0; bottom: 0; line-height: 1.4;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 1.3rem 1rem; color: #fff; font-weight: 600; font-size: 0.9rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
}
.gallery__count { font-variant-numeric: tabular-nums; opacity: 0.9; flex: none; }

/* Text */
.apt__body { }
.apt__name, .detail__name {
  font-family: "Quicksand", var(--display);
  font-weight: 600; letter-spacing: -0.005em;
  color: var(--sea);
}
.apt__name { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.apt__tag { font-size: 1.05rem; color: var(--sea-deep); font-weight: 600; margin-top: 0.3rem; }
.apt__specs { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin: 1.3rem 0; }
.apt__spec { display: flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.apt__spec svg { color: var(--sea); }
.apt__desc { color: var(--ink-soft); margin-bottom: 1.3rem; }
.apt__amen { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.7rem; }
.chip {
  font-size: 0.82rem; font-weight: 500; padding: 0.4em 0.95em; border-radius: 100px;
  background: var(--sand); color: var(--ink); border: 1px solid rgba(42,38,32,0.06);
}
.apt__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.apt__airbnb {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: #fff; border: 1.5px solid var(--sand-deep); color: var(--ink);
  padding: 0.85em 1.4em; border-radius: 100px; font-weight: 600; transition: all 0.3s var(--ease);
}
.apt__airbnb:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.apt__airbnb svg { color: #ff5a5f; }
.apt__badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 0.6rem; }

/* ── UMGEBUNG / REISEFÜHRER ──────────────────────────────────────────── */
.guide { background: var(--cream); }
.guide__filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; max-width: 800px; margin: 0 auto 2.6rem; }
.filter {
  font-size: 0.85rem; font-weight: 600; padding: 0.55em 1.1em; border-radius: 100px;
  background: #fff; color: var(--ink-soft); border: 1.5px solid rgba(42,38,32,0.1); transition: all 0.3s;
}
.filter:hover { border-color: var(--sea); color: var(--sea-deep); }
.filter.is-active { background: var(--sea); color: #fff; border-color: var(--sea); }
.guide__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem;
}
.poi {
  position: relative; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(42,38,32,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.poi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.poi__top { height: 130px; position: relative; overflow: hidden; display: grid; place-items: center; }
.poi__emoji { font-size: 2.6rem; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2)); z-index: 2; }
.poi__cat { position: absolute; top: 10px; left: 10px; z-index: 3; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; background: var(--white-90); color: var(--sea-deep);
  padding: 0.3em 0.7em; border-radius: 100px; }
.poi__body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.poi__name { font-size: 1.25rem; font-family: var(--display); }
.poi__desc { font-size: 0.9rem; color: var(--ink-soft); margin: 0.4rem 0 0.9rem; flex: 1; }
.poi__meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--terracotta); }
.poi__meta svg { width: 15px; height: 15px; }
.guide__cta { text-align: center; margin: 3.5rem auto 0; max-width: 560px; }
.guide__cta p { font-family: var(--display); font-style: italic; font-size: 1.35rem; color: var(--ink); margin-bottom: 1.2rem; }

/* ── LANGZEITMIETE / WORKATION ───────────────────────────────────────── */
.longstay { background: linear-gradient(180deg, var(--cream) 0%, #6d7a4e 9%, #5c6944 60%, #55613f 100%); color: #fff; overflow: hidden; }
.longstay::before {
  content: ""; position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M24 6l4 12h-8zM0 24h48M24 30v18'/%3E%3C/g%3E%3C/svg%3E");
}
.longstay__inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.longstay .kicker, .longstay .kicker::before { color: var(--sun); }
.longstay .section__title { color: #fff; }
.longstay .section__lead { color: rgba(255, 255, 255, 0.9); }
.longstay__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.longstay .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.longstay .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }
.longstay__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.lsb {
  display: flex; align-items: center; gap: 0.7rem; font-weight: 500; font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px; padding: 0.9rem 1rem; backdrop-filter: blur(6px);
}
.lsb__ico { font-size: 1.4rem; flex: none; }
@media (max-width: 860px) {
  .longstay__inner { grid-template-columns: 1fr; }
  .longstay__benefits { grid-template-columns: 1fr; }
}

/* ── KONTAKT ─────────────────────────────────────────────────────────── */
.contact { background: linear-gradient(180deg, #55613f 0%, var(--sea-deep) 12%, var(--sea-deep) 85%, #0c464f 100%); color: #fff; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0; opacity: 0.14; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3C/g%3E%3C/svg%3E");
}
.contact__inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.contact .kicker { color: var(--sun); }
.contact .kicker::before { color: var(--sun); }
.contact .section__title { color: #fff; }
.contact .section__lead { color: rgba(255,255,255,0.85); }
.contact__methods { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.8rem; }
.cmethod { display: flex; align-items: center; gap: 0.9rem; font-size: 1rem; }
.cmethod__ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.12); display: grid; place-items: center; flex: none; }
.cmethod a, .cmethod span { color: #fff; font-weight: 500; }
.cmethod a:hover { color: var(--sun); }
.contact__card {
  position: relative; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); backdrop-filter: blur(8px); overflow: hidden;
}
.contact__card-glow { position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,169,85,0.5), transparent 70%); pointer-events: none; }
.contact__card h3 { font-size: 1.7rem; margin-bottom: 0.7rem; position: relative; }
.contact__card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 1.5rem; position: relative; }
.contact__card .btn { position: relative; margin-bottom: 0.7rem; }
.contact__card .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.contact__card .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer { background: #0c464f; color: rgba(255,255,255,0.75); padding: 3rem 1.5rem; text-align: center; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.brand--footer { color: #fff; }
.brand--footer .brand__mark { color: var(--sun); }
.footer__addr { font-size: 0.9rem; }
.footer__note { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--sun); }

/* ── CHAT-WIDGET ─────────────────────────────────────────────────────── */
.chat-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep)); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.chat-fab:hover { transform: scale(1.08) rotate(-4deg); }
.chat-fab__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--sea-light);
  animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7 } 100% { transform: scale(1.5); opacity: 0 } }
.chat-fab.is-open { transform: scale(0.9); opacity: 0; pointer-events: none; }

.chat {
  position: fixed; bottom: 22px; right: 22px; z-index: 210;
  width: min(400px, calc(100vw - 24px)); height: min(620px, calc(100svh - 44px));
  background: var(--cream); border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96); opacity: 0; pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  border: 1px solid rgba(42,38,32,0.08);
}
.chat.is-open { transform: none; opacity: 1; pointer-events: auto; }
.chat__head {
  background: linear-gradient(135deg, var(--sea), var(--sea-deep)); color: #fff;
  padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between;
}
.chat__id { display: flex; align-items: center; gap: 0.7rem; }
.chat__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sun); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-size: 1.3rem; font-weight: 600; flex: none; }
.chat__id b { font-size: 1.05rem; display: block; }
.chat__status { font-style: normal; font-size: 0.75rem; opacity: 0.85; display: flex; align-items: center; gap: 0.4rem; }
.chat__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7ee0a0; box-shadow: 0 0 0 0 rgba(126,224,160,0.6); animation: dot 2s infinite; }
@keyframes dot { 0% { box-shadow: 0 0 0 0 rgba(126,224,160,0.6) } 70% { box-shadow: 0 0 0 6px rgba(126,224,160,0) } }
.chat__close { color: #fff; opacity: 0.85; transition: opacity 0.3s; }
.chat__close:hover { opacity: 1; }
.chat__body { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.8rem; }
.chat__notice { align-self: stretch; font-size: 0.76rem; line-height: 1.45; color: var(--ink-soft); background: var(--sky); border: 1px solid var(--sand-deep); border-radius: 10px; padding: 0.5rem 0.7rem; }
.msg { max-width: 84%; padding: 0.7rem 1rem; border-radius: 18px; font-size: 0.92rem; line-height: 1.55; white-space: pre-wrap; animation: msgIn 0.35s var(--ease) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }
.msg--ana { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.msg--user { align-self: flex-end; background: var(--sea); color: #fff; border-bottom-right-radius: 5px; }
.msg--typing { display: flex; gap: 4px; align-items: center; }
.msg--typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--sea-light); animation: typing 1.2s infinite; }
.msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: 0.5 } 30% { transform: translateY(-5px); opacity: 1 } }
.chat__suggest { display: flex; gap: 0.5rem; padding: 0 1.1rem 0.6rem; flex-wrap: wrap; }
.suggest {
  font-size: 0.78rem; font-weight: 600; padding: 0.4em 0.85em; border-radius: 100px;
  background: var(--sand); color: var(--sea-deep); border: 1px solid rgba(42,38,32,0.06);
  transition: all 0.25s; white-space: nowrap;
}
.suggest:hover { background: var(--sea); color: #fff; }
.chat__form { display: flex; gap: 0.5rem; padding: 0.8rem 1rem; background: #fff; border-top: 1px solid rgba(42,38,32,0.08); }
.chat__form input { flex: 1; border: none; background: var(--sand); border-radius: 100px; padding: 0.75em 1.1em; font-size: 0.92rem; color: var(--ink); outline: none; }
.chat__form input:focus { box-shadow: 0 0 0 2px var(--sea-light); }
.chat__form button { width: 44px; height: 44px; border-radius: 50%; background: var(--sea); color: #fff; display: grid; place-items: center; flex: none; transition: background 0.3s, transform 0.3s; }
.chat__form button:hover { background: var(--sea-deep); transform: scale(1.06); }

/* ── MODAL / LIGHTBOX ────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 300; background: rgba(12, 40, 46, 0.9);
  display: grid; place-items: center; padding: 4vw;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); backdrop-filter: blur(6px);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__close { position: absolute; top: 20px; right: 24px; color: #fff; opacity: 0.85; z-index: 2; }
.modal__close:hover { opacity: 1; }
.modal__stage { max-width: 1000px; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: scale(0.96); transition: transform 0.4s var(--ease); }
.modal.is-open .modal__stage { transform: none; }
.modal__stage video, .modal__stage .modal__img { width: 100%; height: auto; display: block; }
.modal__img { aspect-ratio: 16/10; display: grid; place-items: center; color: #fff; text-align: center; }
.modal__placeholder { padding: 4rem 2rem; text-align: center; color: #fff; background: linear-gradient(135deg, var(--sea), var(--sea-deep)); border-radius: var(--radius-lg); }
.modal__placeholder h3 { font-size: 1.8rem; margin-bottom: 0.6rem; }
.modal__placeholder p { opacity: 0.85; max-width: 400px; margin: 0 auto; }
.modal__placeholder .emoji { font-size: 3rem; margin-bottom: 1rem; }

/* ── Reveal-Animation ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.apt.reveal:nth-child(even) { transform: translateY(34px); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 360px; }
  .apt { grid-template-columns: 1fr; gap: 1.6rem; }
  .apt:nth-child(even) .apt__media { order: 0; }
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 960px) and (min-width: 721px) {
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: 0.9rem; }
  .brand__text b { font-size: 1.35rem; }
  .nav__inner { padding: 1.15rem 1rem; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column;
    background: var(--cream); border-left: 1px solid var(--sand-deep); padding: 6rem 2rem 2rem; gap: 1.5rem;
    opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease); box-shadow: var(--shadow-lg); z-index: 130; will-change: opacity;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { color: var(--ink) !important; font-size: 1.15rem; }
  .nav__burger { display: flex; }
  .brand__text em { display: none; }

  /* Schließen-Button (X) im geöffneten Menü */
  .nav__close {
    display: grid; place-items: center; position: absolute; top: 1rem; right: 1.1rem;
    width: 42px; height: 42px; border-radius: 50%; color: var(--ink); background: var(--sand);
    box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), background 0.3s;
  }
  .nav__close:hover { background: var(--sand-deep); transform: rotate(90deg); }

  /* Abdunkelnder Hintergrund – Tippen schließt das Menü */
  .nav__backdrop {
    display: block; position: fixed; inset: 0; z-index: 120;
    background: rgba(18, 30, 31, 0.28); opacity: 0; pointer-events: none;
    transition: opacity 0.2s var(--ease); will-change: opacity;
  }
  body.nav-open .nav__backdrop { opacity: 1; pointer-events: auto; }
  /* Header (mit der Menü-Schublade) MUSS über dem Overlay liegen, sonst fängt das
     Overlay die Tipps auf den Menü-Links ab (Menü schließt, aber springt nicht). */
  body.nav-open .nav { z-index: 130; }
  /* Header-Blur bei offenem Menü aufheben, damit das fixe Menü nicht „eingefangen“ wird */
  body.nav-open .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (max-width: 560px) {
  .brand__text b { font-size: 1.3rem; }
  .nav__inner { padding: 0.9rem 1rem; }
  .nav__right { gap: 0.5rem; }
  .lang button { padding: 0.35em 0.55em; }

  .hero__title { font-size: clamp(2rem, 9.5vw, 2.9rem); }
  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; }
  .hero__sub { font-size: 1rem; }
  .hero__cta { flex-direction: column; align-items: center; width: 100%; }
  .hero__cta .btn { width: 100%; max-width: 300px; }

  .section { padding: 3.6rem 1.1rem; }
  .section__title { font-size: clamp(1.7rem, 7.6vw, 2.2rem); }
  .section__lead { font-size: 1rem; }
  .apt__name, .detail__name { font-size: clamp(1.7rem, 8vw, 2.1rem); }

  .location__address { font-size: 0.8rem; flex-wrap: wrap; }
  .location__address span { min-width: 0; }
  .fact__name { font-size: 0.95rem; }
  .lsb { font-size: 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ── „Alle Fotos"-Hinweis auf der Wohnungs-Karte ─────────────────────── */
.apt__more {
  position: absolute; bottom: 14px; left: 14px; z-index: 6;
  background: var(--white-90); color: var(--sea-deep); font-weight: 600; font-size: 0.82rem;
  padding: 0.45em 0.9em; border-radius: 100px; box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease);
}
.apt__more:hover { transform: translateX(3px); }

/* ── DETAILSEITE (apartment.html) ────────────────────────────────────── */
.detail { max-width: var(--container); margin: 0 auto; padding: 96px clamp(1rem, 4vw, 2rem) 3rem; position: relative; z-index: 1; }
.detail__back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--sea-deep); font-weight: 600; margin-bottom: 1.5rem; }
.detail__back:hover { color: var(--terracotta); }
.detail__back svg { transition: transform 0.3s var(--ease); }
.detail__back:hover svg { transform: translateX(-3px); }

.detail__hero { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.gallery-main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: var(--sand);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-main__count {
  position: absolute; bottom: 12px; right: 12px; z-index: 2; background: var(--white-90); color: var(--sea-deep);
  font-weight: 600; font-size: 0.8rem; padding: 0.3em 0.75em; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.gallery-main .gallery__nav { width: 44px; height: 44px; font-size: 1.6rem; }
.gallery-main__ctrl { position: absolute; bottom: 12px; left: 12px; z-index: 3; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gm-btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  background: var(--white-90); color: var(--sea-deep); font-weight: 600; font-size: 0.82rem;
  padding: 0.5em 0.9em; border-radius: 100px; box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.gm-btn:hover { transform: translateY(-2px); }
.gm-btn.is-active { background: var(--terracotta); color: #fff; }
.gm-btn--video { background: var(--sea); color: #fff; }
.gm-btn--video:hover { background: var(--sea-deep); }
@keyframes kbTour { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.gallery-main img.is-touring { animation: kbTour 9s ease-in-out infinite alternate; }
.gallery-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); gap: 0.5rem; margin-top: 0.6rem; }
.gstrip__thumb {
  aspect-ratio: 1; border-radius: 10px; background-size: cover; background-position: center; cursor: pointer;
  opacity: 0.8; transition: opacity 0.25s, transform 0.25s; box-shadow: var(--shadow-sm);
}
.gstrip__thumb:hover, .gstrip__thumb.is-active { opacity: 1; transform: translateY(-2px); }
.gstrip__thumb.is-active { outline: 2px solid var(--sea); outline-offset: 2px; }

.detail__side { position: sticky; top: 92px; }
.detail__side .apt__badge { color: var(--olive); }
.detail__name { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0.3rem 0; }
.detail__rating { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.detail__rating span { color: var(--ink-soft); font-weight: 500; font-size: 0.85rem; }
.detail__tag { color: var(--sea-deep); font-weight: 600; margin: 0.9rem 0; font-size: 1.08rem; }
.detail__side .apt__specs { margin: 1.2rem 0 1.6rem; }

.detail__info { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.detail__h2 { font-size: 1.55rem; margin-bottom: 1rem; }
.detail__about p { color: var(--ink-soft); font-size: 1.05rem; }

.other-apts { margin-top: clamp(2.5rem, 5vw, 4rem); }
.other-apts__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.other-card {
  display: flex; align-items: center; gap: 0.8rem; background: #fff; border: 1px solid rgba(42,38,32,0.06);
  border-radius: var(--radius); padding: 0.7rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.other-card__img { width: 64px; height: 64px; border-radius: 12px; background-size: cover; background-position: center; flex: none; }
.other-card__body b { font-family: var(--display); font-size: 1.05rem; display: block; line-height: 1.2; }
.other-card__body em { font-style: normal; font-size: 0.82rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .detail__hero { grid-template-columns: 1fr; }
  .detail__side { position: static; }
  .detail__info { grid-template-columns: 1fr; }
}

/* ── One-Pager Overlay ("Sheet") ─────────────────────────────────────── */
.sheet {
  position: fixed; inset: 0; z-index: 250; display: grid; padding: clamp(0.5rem, 2vw, 2rem);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.sheet.is-open { opacity: 1; pointer-events: auto; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(12, 40, 46, 0.55); backdrop-filter: blur(5px); cursor: zoom-out; }
.sheet__panel {
  position: relative; margin: auto; width: min(1120px, 100%); max-height: 94vh; overflow: hidden;
  background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; transform: translateY(28px) scale(0.985);
  transition: transform 0.42s var(--ease);
}
.sheet.is-open .sheet__panel { transform: none; }
.sheet__close {
  position: absolute; top: 14px; right: 14px; z-index: 6; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white-90); color: var(--ink); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); transition: transform 0.3s var(--ease), background 0.3s;
}
.sheet__close:hover { transform: rotate(90deg); background: #fff; }
.sheet__scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: clamp(1.3rem, 3vw, 2.4rem); }
.sheet .detail__side { position: static; }

/* ═══════════════════════════════════════════════════════════════════════
   RECHTLICHES (Impressum · Datenschutz)
   ═══════════════════════════════════════════════════════════════════════ */
.legal { max-width: 820px; margin: 0 auto; padding: 120px clamp(1rem, 4vw, 2rem) 4rem; position: relative; z-index: 1; }
.legal h1 { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 0.4rem; }
.legal__updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 2.2rem; }
.legal h2 { font-family: var(--display); font-size: 1.45rem; margin: 2.2rem 0 0.7rem; }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.legal p, .legal li, .legal address { color: var(--ink-soft); line-height: 1.7; font-size: 0.98rem; }
.legal ul { padding-left: 1.2rem; margin: 0.5rem 0 1rem; }
.legal li { margin-bottom: 0.35rem; }
.legal address { font-style: normal; }
.legal a { color: var(--sea-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--terracotta); }
.legal .todo { background: #fdeec9; border: 1px dashed var(--gold); border-radius: 6px; padding: 0.05em 0.4em; font-weight: 600; color: #7a5b1e; }
.legal__note { background: var(--sky); border-radius: 12px; padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: 0.92rem; }
.legal__revoke { margin-top: 0.6rem; }

.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.6rem; margin-top: 0.4rem; }
.footer__legal a, .footer__legal button { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; background: none; border: 0; cursor: pointer; font-family: inherit; padding: 0; }
.footer__legal a:hover, .footer__legal button:hover { color: #fff; text-decoration: underline; }

.footer__top {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem; margin-bottom: 0.4rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9);
  font-weight: 600; font-size: 0.92rem;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
}
.footer__top:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; transform: translateY(-2px); }
.footer__top svg { transition: transform 0.3s var(--ease); }
.footer__top:hover svg { transform: translateY(-2px); }
