:root {
  --cp-green: #31431f;
  --cp-green-deep: #1f2d15;
  --cp-green-soft: #516138;
  --cp-yellow: #f0bd10;
  --cp-red: #b51d16;
  --cp-ink: #11110f;
  --cp-paper: #f7f1e6;
  --cp-paper-2: #fffaf0;
  --cp-muted: #6f6a5f;
  --cp-line: rgba(49, 67, 31, 0.16);

  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;
  --pill: 999px;

  --shadow-soft: 0 18px 45px -22px rgba(17, 17, 15, 0.45);
  --shadow-card: 0 34px 70px -34px rgba(17, 17, 15, 0.55);
  --shadow-photo: 0 40px 80px -30px rgba(17, 17, 15, 0.6);

  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Cabin", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Anton", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --wrap: min(1200px, calc(100% - 48px));

  font-family: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cp-ink);
  background: var(--cp-paper);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p { margin-top: 0; }
h2, h3 { font-family: var(--font-heading); font-weight: 700; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--cp-yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--cp-green-soft); }

.script {
  font-family: var(--font-script);
  font-weight: 700;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--cp-ink);
  background: var(--cp-yellow);
  box-shadow: 0 14px 30px -12px rgba(240, 189, 16, 0.9);
}
.button-primary:hover { box-shadow: 0 20px 38px -12px rgba(240, 189, 16, 0.95); }

.button-green { color: #fff; background: var(--cp-green); box-shadow: 0 14px 30px -14px rgba(49, 67, 31, 0.9); }
.button-glass { color: #fff; border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(6px); }
.button-outline { color: #fff; border-color: #fff; }
.dark-outline { color: var(--cp-green-deep); border-color: var(--cp-green-deep); }
.button-whatsapp { color: #fff; background: #25d366; }
.button-whatsapp:hover { color: #fff; }
.button-small { min-height: 44px; padding: 11px 20px; font-size: 0.92rem; }

.button-link {
  min-height: auto;
  padding: 12px 6px;
  border: 0;
  border-radius: 0;
  color: var(--cp-green-deep);
  background: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button-calendar {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 4px;
  border: 0;
  background: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.button-calendar .cal-label { text-decoration: underline; text-underline-offset: 5px; }
.button-calendar:hover { color: var(--cp-yellow); transform: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.5) 0%, rgba(17, 17, 15, 0.12) 26%, rgba(17, 17, 15, 0.18) 55%, rgba(17, 17, 15, 0.82) 100%),
    linear-gradient(75deg, rgba(17, 17, 15, 0.72) 0%, rgba(17, 17, 15, 0.28) 42%, transparent 70%);
}

.nav {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo {
  width: 232px;
  height: auto;
  /* Logo freigestellt: schwarzes Artwork wird weiß eingefärbt, keine Box */
  filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.55));
}
.nav-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.nav-link:hover { color: var(--cp-yellow); }

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 40px 0 132px;
}
.hero-copy { max-width: 680px; }

.stamp {
  position: absolute;
  top: 8px;
  right: 0;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  color: #fff;
  background: rgba(49, 67, 31, 0.92);
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.4);
}
.hero h1 span { display: block; }
.hero .script {
  margin: 6px 0 20px;
  color: var(--cp-yellow);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero .lead {
  max-width: 560px;
  color: #f4efe4;
  font-size: 1.14rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.countdown { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.cd-unit {
  min-width: 76px;
  padding: 12px 16px;
  text-align: center;
  background: rgba(17, 17, 15, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
}
.cd-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--cp-yellow);
  font-variant-numeric: tabular-nums;
}
.cd-unit span {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.countdown.is-open { align-items: center; }
.countdown-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cp-ink);
  background: var(--cp-yellow);
  border-radius: var(--pill);
}

.hero-ticker {
  position: relative;
  z-index: 5;
  width: var(--wrap);
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}
.hero-ticker > div {
  padding: 18px 22px;
  background: rgba(31, 45, 21, 0.86);
  color: #fff;
}
.hero-ticker span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.hero-ticker strong { font-family: var(--font-heading); font-size: 1.16rem; }
.hero-ticker .ticker-gift { background: var(--cp-yellow); color: var(--cp-ink); }
.hero-ticker .ticker-gift span { color: rgba(17, 17, 15, 0.62); }
.hero-ticker .ticker-gift strong { color: var(--cp-red); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-inner { width: var(--wrap); margin: 0 auto; }
.section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}
.section p { color: var(--cp-muted); font-size: 1.08rem; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-intro { padding-top: 128px; background: var(--cp-paper-2); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.intro-grid h2 { margin-bottom: 0; }

/* ---------- Paths ---------- */
.section-paths { background: var(--cp-paper); }
.paths-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.path-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--cp-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.path-card.path-buy { border-top: 6px solid var(--cp-green); }
.path-card.path-rent { border-top: 6px solid var(--cp-yellow); }
.path-tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cp-green);
  border-radius: var(--pill);
}
.path-tag.alt { color: var(--cp-ink); background: var(--cp-yellow); }
.path-card h3 { margin-bottom: 12px; font-size: 1.6rem; line-height: 1.1; }
.path-card p { color: var(--cp-muted); }

.check-list { padding: 0; margin: 20px 0 6px; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 32px; font-weight: 600; color: var(--cp-ink); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: #fff; background: var(--cp-green);
  border-radius: 50%;
  font-size: 0.75rem; font-weight: 900;
}
.path-highlight {
  margin: 20px 0 0;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--cp-green-deep) !important;
  background: rgba(240, 189, 16, 0.22);
  border-radius: var(--r-sm);
}
.path-card .cta-row { margin-top: auto; padding-top: 26px; }

/* ---------- Gallery ---------- */
.section-gallery { background: var(--cp-green-deep); color: #fff; }
.section-gallery .eyebrow.dark { color: var(--cp-yellow); }
.section-gallery h2 { color: #fff; }
.gallery-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r);
  box-shadow: var(--shadow-photo);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 15, 0.82));
}
.g-tall { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--cp-line);
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: #fff; background: var(--cp-green);
  border-radius: var(--r-sm);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 10px; font-size: 1.24rem; line-height: 1.18; }
.feature p { margin-bottom: 0; font-size: 1rem; color: var(--cp-muted); }

/* ---------- Deal ---------- */
.section-deal { background: var(--cp-paper-2); }
.deal-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 48px 52px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(240, 189, 16, 0.3), transparent 45%),
    linear-gradient(135deg, var(--cp-green) 0%, var(--cp-green-deep) 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.deal-badge {
  display: grid;
  place-content: center;
  text-align: center;
  width: 168px; height: 168px;
  color: var(--cp-ink);
  background: var(--cp-yellow);
  border-radius: 50%;
  transform: rotate(-6deg);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
}
.deal-badge span { font-family: var(--font-display); font-size: 3rem; line-height: 0.9; }
.deal-badge small {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cp-red);
}
.deal-copy .eyebrow { color: var(--cp-yellow); }
.deal-copy h2 { color: #fff; }
.deal-copy p { color: rgba(255, 255, 255, 0.86); }
.deal-copy .cta-row { margin-top: 24px; }

/* ---------- Visit ---------- */
.section-visit { background: var(--cp-paper); }
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}
.visit-photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-photo); }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-copy address { margin: 18px 0 4px; font-style: normal; font-size: 1.14rem; font-weight: 600; }
.visit-script { margin: 18px 0 0; color: var(--cp-green-soft); font-size: 2.2rem; }

/* ---------- Partner ---------- */
.partner-strip { padding: 56px 0; background: var(--cp-green); color: #fff; text-align: center; }
.partner-title {
  margin: 0 0 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.partner-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 16px; padding: 0; margin: 0; list-style: none;
}
.partner-logos li {
  display: flex; align-items: center; justify-content: center;
  min-width: 148px; height: 78px; padding: 14px 26px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}
.partner-logos li:hover { transform: translateY(-3px); }
.partner-logos img { max-height: 46px; max-width: 150px; width: auto; object-fit: contain; }
.partner-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--cp-ink);
}

/* ---------- Footer ---------- */
.footer { padding: 44px 0 26px; color: #fff; background: var(--cp-ink); }
.footer-inner { width: var(--wrap); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-logo { width: 188px; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-links a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--cp-yellow); }
.fineprint { width: var(--wrap); margin: 22px auto 0; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

/* ---------- Sticky Bar ---------- */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  background: rgba(17, 17, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 8px 0;
}
.sticky-brand { display: inline-flex; }
.sticky-brand img { width: 150px; height: auto; filter: brightness(0) invert(1); }
.sticky-meta { display: flex; flex-direction: column; line-height: 1.18; margin-right: auto; }
.sticky-meta strong { font-family: var(--font-heading); color: #fff; font-size: 1rem; }
.sticky-meta span { color: rgba(255, 255, 255, 0.7); font-size: 0.82rem; }
.sticky-actions { display: flex; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .intro-grid, .paths-grid, .visit-grid, .deal-panel { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-tall, .g-wide { grid-column: span 2; grid-row: span 1; }
  .deal-panel { text-align: center; justify-items: center; }
  .deal-copy .cta-row, .visit-copy .cta-row { justify-content: center; }
  .visit-photo { order: -1; }
}

@media (max-width: 720px) {
  :root { --wrap: calc(100% - 32px); }
  .nav { min-height: 76px; }
  .nav-link { display: none; }
  .brand-logo { width: 150px; padding: 8px 12px; }
  .hero-inner { padding: 24px 0 118px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .stamp { width: 84px; height: 84px; font-size: 0.78rem; top: 0; }
  .hero .eyebrow { padding-right: 94px; }
  .cd-unit { flex: 1; min-width: 62px; padding: 10px 6px; }
  .cd-unit strong { font-size: 1.7rem; }
  .cta-row .button { width: 100%; }
  .hero-ticker { grid-template-columns: 1fr 1fr; transform: translateY(40px); }
  .section { padding: 64px 0; }
  .section-intro { padding-top: 96px; }
  .path-card { padding: 28px; }
  .deal-panel { padding: 34px 26px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall, .g-wide { grid-column: span 1; grid-row: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .brand-logo { width: 172px; }
  .sticky-meta { display: none; }
  .sticky-brand img { width: 122px; }
  .sticky-actions .button-glass { display: none; }
  .partner-logos li { min-width: 0; flex: 1 1 40%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
