/* ============================================================
   SunnyStay Sub-Brand-Basis — geteiltes Fundament (Styleguide)
   Konstanten: Creme #F0EBE0 · Gold #B99A5B · Ink #1C1A17
   Akzent pro Geschäftsfeld via --accent (Group: Ink/Gold)
   ============================================================ */

:root {
  --creme: #F0EBE0;
  --paper: #F7F4EC;
  --gold: #B99A5B;
  --ink: #1C1A17;
  --ink-60: rgba(28, 26, 23, .64);
  --white: #FFFFFF;
  --accent: #1C1A17;        /* Group: Ink — Sub-Sites überschreiben */
  --accent-deep: #14120F;
  --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.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
h2 { font-size: clamp(2rem, 5.5vw, 3rem); }
h3 { font-size: 1.5rem; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 740px; text-align: center; }
.section { padding: clamp(70px, 11vw, 120px) 0; position: relative; }
.section--paper { background: var(--paper); }

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

.goldline { display: flex; justify-content: center; margin: 22px 0 26px; }
.goldline span { width: 64px; height: 2px; background: var(--gold); display: block; }
.goldline--left { justify-content: flex-start; }

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

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .92rem; font-weight: 500;
  letter-spacing: .04em; transition: transform .35s var(--ease), box-shadow .35s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--gold); }

/* ---------- header ---------- */
.header {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 44px);
}
.header__brand { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; letter-spacing: .04em; color: var(--creme); }
.header__brand b { font-weight: 600; }
.header__links { display: flex; gap: 26px; font-size: .82rem; letter-spacing: .08em; color: rgba(240, 235, 224, .85); }
.header__links a:hover { color: var(--gold); }
@media (max-width: 640px) { .header__links { display: none; } }

/* ---------- hero ---------- */
.hero {
  min-height: 72vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 22px 90px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(185, 154, 91, .18), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(185, 154, 91, .10), transparent 50%),
    linear-gradient(160deg, var(--accent), var(--accent-deep));
  color: var(--creme);
}
.hero__sun {
  position: absolute; top: -60px; right: -70px; width: 360px;
  filter: invert(1); opacity: .07; transform: rotate(14deg); pointer-events: none;
}
.hero__inner { max-width: 780px; position: relative; }
.hero h1 { color: var(--white); margin: 6px 0 4px; }
.hero__eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
}
.hero__sub { color: rgba(240, 235, 224, .82); font-size: 1.04rem; max-width: 560px; margin: 18px auto 30px; }
.hero__rule { display: flex; justify-content: center; margin: 20px 0; }
.hero__rule span { width: 56px; height: 2px; background: var(--gold); }

/* ---------- tiles (Group-Router) ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 44px; }
.tile {
  position: relative; border-radius: 18px; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-6px); }
.tile__media { height: 190px; overflow: hidden; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.05); }
.tile__bar { height: 5px; }
.tile__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile__body h3 { font-size: 1.45rem; }
.tile__body p { font-size: .92rem; color: var(--ink-60); flex: 1; }
.tile__link { font-size: .88rem; font-weight: 500; letter-spacing: .04em; }
.tile__link em { font-style: normal; transition: transform .3s var(--ease); display: inline-block; }
.tile:hover .tile__link em { transform: translateX(5px); }

/* ---------- service cards ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 42px; text-align: left; }
.service {
  background: var(--white); border-radius: 16px; padding: 26px 24px;
  box-shadow: 0 10px 34px -16px rgba(28, 26, 23, .18);
}
.service h3 { font-size: 1.28rem; margin-bottom: 8px; }
.service h3::before { content: ''; display: block; width: 34px; height: 2px; background: var(--accent); margin-bottom: 12px; }
.service p { font-size: .9rem; color: var(--ink-60); }

/* ---------- facts strip ---------- */
.factstrip { background: var(--accent); color: var(--creme); }
.factstrip .facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 30px; text-align: center; }
.fact__num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.fact__label { font-size: .84rem; color: rgba(240, 235, 224, .8); margin-top: 6px; }

/* ---------- gallery strip ---------- */
.galgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 40px; }
.galgrid figure { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.galgrid img { width: 100%; height: 230px; object-fit: cover; transition: transform .6s var(--ease); }
.galgrid figure:hover img { transform: scale(1.05); }
.galgrid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 10px;
  font-size: .74rem; color: var(--creme); letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(28, 26, 23, .72));
}

/* ---------- CTA / footer ---------- */
.cta { text-align: center; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.footer { background: var(--ink); color: rgba(240, 235, 224, .75); padding: 46px 22px; text-align: center; font-size: .84rem; }
.footer b { color: var(--creme); font-weight: 500; }
.footer__fam { margin-top: 14px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-size: .8rem; }
.footer__fam a:hover { color: var(--gold); }
.footer__note { margin-top: 18px; font-size: .74rem; opacity: .6; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- HostCare: Terracotta-Akzent (Fable-geprüft #A2532F) ---- */
:root { --accent: #A2532F; --accent-deep: #7E3F23; }

/* ---- Verdichtung (Christina 2026-07-13: zu viel negativer Raum) ---- */
.section { padding: clamp(44px, 6.5vw, 78px) 0; }
.hero { min-height: 0; padding: 92px 22px 60px; }
.tiles, .services, .galgrid { margin-top: 28px; }
.faq { margin-top: 28px; }
