/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #2C1A0E;
  --dark2:   #1A0D05;
  --terra:   #C67B5C;
  --brown:   #8B4513;
  --sand:    #D4C4A8;
  --cream:   #F5F0E1;
  --cream2:  #EDE8D8;
  --green:   #6B7B3C;
  --ink:     #1A0D05;
  --muted:   #8C6B4A;
  --f-serif: 'Lora', Georgia, serif;
  --f-sans:  'Raleway', system-ui, sans-serif;
  --ease:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur:     0.25s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1,h2,h3,blockquote { font-family: var(--f-serif); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(30px, 5.5vw, 52px); }
h3 { font-size: 20px; }
p  { font-weight: 300; line-height: 1.75; }
a  { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease); }
strong { font-weight: 500; }

/* === TICKER BAND (between every section) === */
.ticker-band {
  background: var(--terra);
  overflow: hidden;
  padding: 10px 0;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  position: relative; z-index: 2;
}
.ticker-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--dark);
  padding: 0 32px;
}
.ticker-sep { color: var(--dark2); opacity: 0.4; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTION FADE (soft transitions between sections) === */
.section-fade {
  height: 8px;
  width: 100%;
  flex-shrink: 0;
}
.section-fade--cream-dark {
  background: linear-gradient(to bottom, var(--cream), var(--terra), var(--dark));
}
.section-fade--dark-cream2 {
  background: linear-gradient(to bottom, var(--dark), var(--terra), var(--cream2));
}
.section-fade--cream2-cream {
  background: linear-gradient(to bottom, var(--cream2), #DFD5C4, var(--cream));
}
.section-fade--dark-cream {
  background: linear-gradient(to bottom, var(--dark), var(--terra), var(--cream));
}
.section-fade--cream-darker {
  background: linear-gradient(to bottom, var(--cream), var(--terra), var(--dark2));
}
.section-fade--inner {
  height: 6px;
  background: linear-gradient(to bottom, transparent, rgba(198,123,92,0.28), transparent);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-stagger.visible > * { animation: riseup 0.55s ease both; }
.reveal-stagger.visible > *:nth-child(1) { animation-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { animation-delay: 0.2s; }
@keyframes riseup {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:none; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--terra); color: var(--dark);
  font-family: var(--f-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 13px 28px; border: 2px solid var(--terra);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-primary:hover { background: var(--dark); color: var(--terra); }
.btn-primary.full  { width: 100%; text-align: center; }

.btn-invert {
  display: inline-block;
  background: transparent; color: var(--cream);
  font-family: var(--f-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 13px 28px; border: 2px solid var(--terra);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-invert:hover { background: var(--terra); color: var(--dark); }

/* === NAV === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(26,13,5,0.82), rgba(26,13,5,0));
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 2px solid transparent;
}
.site-nav.scrolled {
  background: rgba(26,13,5,0.96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--terra);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-serif); font-size: 15px;
  color: var(--cream); letter-spacing: 0.5px;
  transition: opacity var(--dur) var(--ease);
}
.nav-brand:hover { opacity: 0.85; }
.nav-logo {
  display: block; height: 28px; width: auto;
  object-fit: contain; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 18px;
}
.nav-links a {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(213,196,168,0.65);
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--terra); }
.nav-links .nav-cta {
  color: var(--dark); background: var(--terra);
  padding: 7px 16px; letter-spacing: 1.5px;
  border: 2px solid var(--terra);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-links .nav-cta:hover { background: transparent; color: var(--terra); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--sand);
  transition: all .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO (DARK) === */
.hero {
  background: var(--dark2);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 0;
  position: relative; overflow: hidden;
}

.hero-ghost {
  position: absolute; bottom: -40px; right: -20px;
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(160px, 30vw, 320px);
  color: var(--terra); opacity: 0.06;
  line-height: 1; user-select: none; pointer-events: none;
  letter-spacing: -8px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 100px 24px 0; width: 100%;
}

.eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--terra);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--terra);
}

.hero h1 {
  font-size: clamp(52px, 11vw, 110px);
  color: var(--cream); line-height: 0.92;
  margin-bottom: 36px; letter-spacing: -1px;
}
.hero h1 em { color: var(--terra); font-style: italic; }

.hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(165,130,95,0.8);
  margin-bottom: 40px; max-width: 480px;
  border-left: 2px solid var(--terra);
  padding-left: 20px; line-height: 1.8;
}

.hero-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(107,123,60,0.18);
  border: 1px solid rgba(107,123,60,0.5);
  padding: 10px 18px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(212,196,168,0.9); font-weight: 500;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107,123,60,0.3);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(107,123,60,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(107,123,60,0.1); }
}

/* === SECTIONS === */
.s-cream  { background: var(--cream);  padding: 96px 0; }
.s-dark   { background: var(--dark);   padding: 96px 0; }
.s-cream2 { background: var(--cream2); padding: 96px 0; }
.s-darker { background: var(--dark2);  padding: 96px 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Section header */
.sh { margin-bottom: 56px; }
.sh-tag {
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 14px; display: block;
}
.sh-tag.on-dark  { color: var(--terra); }
.sh-tag.on-cream { color: var(--brown); }

.sh h2.on-cream { color: var(--ink); }
.sh h2.on-dark  { color: var(--cream); }
.sh h2 em       { color: var(--terra); font-style: italic; }

.section-rule { height: 2px; background: var(--terra); margin-top: 20px; width: 48px; }
.section-rule.full { width: 100%; }

/* Ghost number behind section */
.ghost-num {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(120px, 22vw, 240px);
  color: var(--terra); opacity: 0.05;
  line-height: 1; user-select: none; pointer-events: none;
  letter-spacing: -4px;
}
.ghost-num.light { color: var(--dark); }
.rel { position: relative; overflow: hidden; }

/* === HOF — 3 SPALTEN MIT HARTER LINIE === */
.hof-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 2px solid var(--ink);
}
.hof-cell {
  padding: 36px 28px;
  border-right: 2px solid var(--ink);
}
.hof-cell:last-child { border-right: none; }
.hof-num {
  font-family: var(--f-serif); font-size: 48px; font-style: italic;
  color: var(--terra); display: block; margin-bottom: 12px; line-height: 1;
}
.hof-cell h3 { color: var(--ink); margin-bottom: 8px; font-size: 18px; }
.hof-cell p  { font-size: 14px; color: var(--muted); }

/* === FÜTTERUNG === */
.fuet-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid rgba(92,61,32,0.3);
}
.fuet-story {
  padding: 48px 40px;
  border-right: 2px solid rgba(92,61,32,0.3);
}
.fuet-story p { color: rgba(212,196,168,0.75); margin-bottom: 18px; font-size: 15px; }
.fuet-story strong { color: var(--sand); }

.fuet-stats { padding: 48px 40px; }
.fuet-stat {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(92,61,32,0.25);
}
.fuet-stat:last-of-type { border-bottom: none; }
.fuet-stat-n {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(44px,7vw,64px); color: var(--terra);
  line-height: 0.9; flex-shrink: 0; min-width: 90px;
}
.fuet-stat-l { font-size: 14px; color: var(--sand); line-height: 1.5; margin-top: 6px; }
.fuet-stat-l small { display: block; color: rgba(212,196,168,0.4); font-size: 12px; }
.fuet-note {
  font-size: 12px; color: rgba(140,107,74,0.6);
  font-style: italic; margin-top: 20px; line-height: 1.7;
}

/* === LEISTUNGEN === */
.lst-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px;
}
.lst-main {
  background: var(--dark);
  border: 2px solid var(--terra); padding: 40px 36px;
}
.price-block {
  border-bottom: 2px solid var(--terra); padding-bottom: 20px; margin-bottom: 24px;
}
.price-num {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(52px,8vw,80px); color: var(--terra); line-height: 1;
}
.price-sub { font-size: 14px; color: rgba(212,196,168,0.7); letter-spacing: 1px; margin-top: 2px; }
.lst-main h3 { color: var(--cream); margin-bottom: 20px; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--f-sans); font-weight: 500; }

.lst-items { display: flex; flex-direction: column; gap: 0; }
.lst-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(92,61,32,0.2);
  font-size: 14px;
}
.lst-item:last-child { border-bottom: none; }
.lst-dash { color: var(--terra); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.lst-item span { color: rgba(212,196,168,0.7); line-height: 1.5; }
.lst-note { font-size: 12px; color: rgba(212,196,168,0.6); font-style: italic; margin-top: 20px; }

.lst-extras { display: flex; flex-direction: column; gap: 16px; }
.lst-extra-card {
  border: 2px solid rgba(139,69,19,0.25); padding: 24px;
}
.lst-extra-card h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px;
  font-family: var(--f-sans); font-weight: 500;
}
.extra-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(92,61,32,0.12);
  font-size: 13px;
}
.extra-row:last-child { border-bottom: none; }
.extra-row span:first-child { color: #5C3D20; }
.extra-row span:last-child  { color: var(--brown); font-weight: 500; white-space: nowrap; margin-left: 8px; }

/* === INTEGRATION === */
.int-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid rgba(139,69,19,0.15);
}
.int-col {
  padding: 40px 36px;
  border-right: 2px solid rgba(139,69,19,0.15);
}
.int-col:last-child { border-right: none; }
.int-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 28px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(139,69,19,0.2);
  font-family: var(--f-sans); font-weight: 500;
}
.int-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(139,69,19,0.1); }
.int-step:last-child { border-bottom: none; }
.int-n {
  font-family: var(--f-serif); font-style: italic;
  font-size: 28px; color: var(--terra); line-height: 1; flex-shrink: 0; width: 36px;
}
.int-t strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.int-t p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* === SHETTY === */
.sh-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.sh-left {
  padding-right: 48px; border-right: 2px solid rgba(92,61,32,0.3);
}
.sh-right { padding-left: 48px; }
.sh-left p { color: rgba(212,196,168,0.7); margin-bottom: 16px; font-size: 15px; }
.sh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--sand); margin-top: 12px;
  letter-spacing: 1px;
}
.sh-feat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(92,61,32,0.25);
  font-size: 14px; color: rgba(212,196,168,0.7);
}
.sh-feat:first-child { border-top: 1px solid rgba(92,61,32,0.25); }
.sh-feat-dot { width: 6px; height: 6px; background: var(--terra); flex-shrink: 0; }

/* === PROMO BAND === */
.promo-band {
  margin-top: 72px;
  background:
    linear-gradient(135deg, rgba(198,123,92,0.08) 0%, transparent 50%),
    var(--dark2);
  border-top: 2px solid rgba(198,123,92,0.3);
  position: relative;
  overflow: hidden;
}
.promo-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 240px) 1fr;
  align-items: center;
  gap: 32px;
  padding: 56px 24px;
  min-height: 280px;
}
.promo-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(245,240,225,0.88);
  line-height: 1.65;
  border: none;
  margin: 0;
  padding: 0;
}
.promo-photo {
  width: 100%;
  height: clamp(220px, 28vw, 300px);
  background-size: cover;
  background-position: center 20%;
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45));
}
.promo-cta { text-align: right; }
.promo-cta-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 10px;
}
.promo-cta-title {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
}
.promo-cta-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(212,196,168,0.75);
  line-height: 1.75;
  margin-bottom: 22px;
  margin-left: auto;
  max-width: 300px;
}
.btn-promo {
  display: inline-block;
  background: var(--sand);
  color: var(--dark);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid var(--sand);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-promo:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* === PONYPARTY === */
.pp-photos {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  height: 320px; overflow: hidden;
  border: 2px solid rgba(139,69,19,0.2); margin-bottom: 0;
}
.pp-photo {
  background-size: cover; background-position: center;
  border-right: 2px solid rgba(139,69,19,0.2);
  transition: filter var(--dur) var(--ease);
  filter: grayscale(5%) brightness(0.9);
}
.pp-photo:last-child { border-right: none; }
.pp-photo:hover { filter: grayscale(0) brightness(1); }

.pp-main {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid rgba(139,69,19,0.2); border-top: none;
}
.pp-intro {
  padding: 40px 36px;
  border-right: 2px solid rgba(139,69,19,0.2);
}
.pp-lead {
  font-size: 17px; color: var(--ink); font-weight: 400;
  line-height: 1.7; margin-bottom: 16px;
  font-family: var(--f-serif); font-style: italic;
}
.pp-intro p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

.pp-details { padding: 40px 36px; display: flex; flex-direction: column; gap: 32px; }

.pp-erwartet h4,
.pp-info-block h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 16px;
  font-family: var(--f-sans); font-weight: 500;
}

.pp-feat-list { display: flex; flex-direction: column; gap: 10px; }
.pp-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); }
.pp-dot { width: 5px; height: 5px; background: var(--terra); flex-shrink: 0; margin-top: 6px; }

.pp-info-list { display: flex; flex-direction: column; gap: 0; }
.pp-info-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(139,69,19,0.1);
  font-size: 13px;
}
.pp-info-item:last-child { border-bottom: none; }
.pp-info-label { color: var(--terra); font-weight: 500; }
.pp-info-item span:last-child { color: var(--muted); line-height: 1.5; }

/* Paket-Karten */
.pp-pakete { margin-top: 0; }

.pp-pakete-label {
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--brown); font-weight: 500;
  padding: 20px 0 16px;
  border-left: 2px solid rgba(139,69,19,0.15);
  border-right: 2px solid rgba(139,69,19,0.15);
  padding-left: 20px;
}

.pp-pakete-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid rgba(139,69,19,0.15);
}

.pp-paket-card {
  border-right: 2px solid rgba(139,69,19,0.15);
  overflow: hidden; position: relative;
  display: block; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
}
.pp-paket-card:last-child { border-right: none; }
.pp-paket-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,13,5,0.12); z-index: 1; }
.pp-paket-card img {
  display: block; width: 100%; height: auto;
  transition: filter var(--dur) var(--ease);
}
.pp-paket-card:hover img { filter: brightness(0.6); }

.pp-paket-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); opacity: 0;
  transition: opacity 0.3s;
  background: rgba(198,123,92,0.15);
}
.pp-paket-card:hover .pp-paket-overlay { opacity: 1; }

.pp-pakete-cta {
  padding: 24px 24px;
  border: 2px solid rgba(139,69,19,0.15);
  border-top: none;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pp-cta-sub {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.5px;
}

/* === KONTAKT === */
.k-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
}
.k-info-text { color: rgba(212,196,168,0.7); margin-bottom: 40px; font-size: 15px; line-height: 1.8; }
.k-details { display: flex; flex-direction: column; gap: 28px; }
.k-item { display: flex; flex-direction: column; gap: 6px; }
.k-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--terra); font-weight: 500; }
.k-item span:not(.k-label) { font-size: 14px; color: rgba(212,196,168,0.65); line-height: 1.7; }

.k-form { display: flex; flex-direction: column; gap: 20px; }
.k-row { display: flex; flex-direction: column; gap: 6px; }
.k-row label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(198,123,92,0.65); font-weight: 500; }
.k-row input,
.k-row select,
.k-row textarea {
  font-family: var(--f-sans); font-size: 14px; font-weight: 300;
  background: rgba(255,255,255,0.04);
  border: 0 none; border-bottom: 2px solid rgba(92,61,32,0.4);
  padding: 10px 0; color: var(--cream); outline: none;
  transition: border-color .2s; width: 100%;
}
.k-row input::placeholder,
.k-row textarea::placeholder { color: rgba(140,107,74,0.4); }
.k-row input:focus,
.k-row select:focus,
.k-row textarea:focus { border-bottom-color: var(--terra); }
.k-row select { appearance: none; cursor: pointer; }
.k-row select option { background: var(--dark); color: var(--cream); }
.k-row textarea { resize: vertical; min-height: 90px; }

/* === FOOTER === */
.site-footer {
  background: var(--dark2);
  border-top: 2px solid var(--terra);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { display: block; width: min(240px, 78vw); height: auto; object-fit: contain; }
.footer-sub { font-size: 11px; color: rgba(212,196,168,0.5); letter-spacing: 2px; text-transform: uppercase; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,196,168,0.55); transition: color var(--dur) var(--ease); }
.footer-nav a:hover { color: var(--terra); }
.footer-legal { font-size: 12px; color: rgba(212,196,168,0.35); }
.footer-legal a { color: rgba(212,196,168,0.45); }
.footer-legal a:hover { color: var(--terra); }

/* === HERO FOTO === */
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.22;
  filter: grayscale(40%);
}

/* === HOF FOTOS === */
.hof-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 0;
  border: 2px solid var(--ink); border-top: none;
  height: 280px; overflow: hidden;
}
.hof-photo {
  background-size: cover; background-position: center;
  border-right: 2px solid var(--ink);
  transition: transform 0.6s var(--ease), filter var(--dur) var(--ease);
  filter: brightness(0.95);
}
.hof-photo:hover { filter: brightness(1); }
.hof-photo:last-child { border-right: none; }
.hof-photos:hover .hof-photo { transform: scale(1.03); }

/* === FÜTTERUNG FOTO === */
.fuet-photo {
  width: 100%; height: 220px;
  background-size: cover; background-position: center;
  margin-bottom: 0;
  border: 2px solid rgba(92,61,32,0.3); border-bottom: none;
  filter: grayscale(10%) brightness(0.82);
  transition: filter var(--dur) var(--ease);
}
.fuet-photo:hover { filter: grayscale(0) brightness(0.95); }

/* === SHETTY FOTOS === */
.shetty-photos {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 0; height: 240px; overflow: hidden;
  border: 2px solid rgba(92,61,32,0.3); border-bottom: none;
}
.shetty-photo {
  background-size: cover; background-position: center;
  border-right: 2px solid rgba(92,61,32,0.3);
  filter: grayscale(10%) brightness(0.85);
  transition: filter var(--dur) var(--ease);
}
.shetty-photo:last-child { border-right: none; }
.shetty-photo:hover { filter: grayscale(0) brightness(0.9); }

@media (max-width: 1024px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 9px; letter-spacing: 2px; }
  .nav-links .nav-cta { padding: 6px 12px; }
}

/* === MOBILE === */
@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.65; }
  .container { padding: 0 20px; }

  .nav-inner { height: 58px; padding: 0 20px; }
  .nav-brand { font-size: 14px; gap: 8px; }
  .nav-logo { height: 24px; }
  .nav-brand span { max-width: 160px; line-height: 1.2; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 58px; left: 0; right: 0;
    background: rgba(22,10,3,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 16px 20px 20px;
    gap: 0; border-bottom: 2px solid var(--terra);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(92,61,32,0.2); font-size: 12px; letter-spacing: 2px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta { background: none; padding: 14px 0; margin-top: 4px; }

  .hero-content { padding: 88px 20px 0; }
  .hero h1 { font-size: clamp(40px, 12vw, 68px); line-height: 0.95; margin-bottom: 28px; }
  .hero-sub { font-size: 15px; line-height: 1.75; margin-bottom: 32px; max-width: 100%; }
  .hero-ghost { display: none; }

  .sh { margin-bottom: 40px; }
  .sh h2.on-cream, .sh h2.on-dark { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }

  .hof-grid,
  .fuet-layout,
  .lst-grid,
  .int-grid,
  .sh-layout,
  .pp-layout,
  .k-layout { grid-template-columns: 1fr; }

  .hof-cell { padding: 28px 22px; border-right: none; border-bottom: 2px solid var(--ink); }
  .hof-cell:last-child { border-bottom: none; }
  .fuet-story { padding: 32px 24px; border-right: none; border-bottom: 2px solid rgba(92,61,32,0.3); }
  .fuet-stats { padding: 32px 24px; }
  .fuet-story p { font-size: 15px; line-height: 1.8; }
  .int-col { padding: 32px 24px; border-right: none; border-bottom: 2px solid rgba(139,69,19,0.15); }
  .int-col:last-child { border-bottom: none; }
  .sh-left { border-right: none; padding-right: 0; border-bottom: 2px solid rgba(92,61,32,0.3); padding-bottom: 32px; }
  .sh-right { padding-left: 0; padding-top: 32px; }

  .promo-band { margin-top: 48px; }
  .promo-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
    min-height: 0;
    text-align: center;
  }
  .promo-photo {
    order: -1;
    max-width: 220px;
    height: 260px;
    margin: 0 auto;
  }
  .promo-cta { text-align: center; }
  .promo-cta-text { margin-left: auto; margin-right: auto; }

  .s-cream, .s-dark, .s-cream2, .s-darker { padding: 64px 0; }

  .hero-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-row .btn-primary,
  .hero-row .btn-invert { text-align: center; width: 100%; }
  .hero-badge { margin-top: 4px; }

  .ghost-num { display: none; }
  .pp-pakete-grid { grid-template-columns: 1fr; }
  .pp-paket-card { border-right: none; border-bottom: 2px solid rgba(139,69,19,0.15); }
  .pp-photos { grid-template-columns: 1fr 1fr; height: 220px; }
  .pp-photo--wide { grid-column: 1 / -1; border-right: none; border-bottom: 2px solid rgba(139,69,19,0.2); }
  .pp-main { grid-template-columns: 1fr; }
  .pp-intro { padding: 32px 24px; border-right: none; border-bottom: 2px solid rgba(139,69,19,0.2); }
  .pp-details { padding: 32px 24px; }
  .pp-lead { font-size: 16px; }
  .hof-photos { height: 220px; grid-template-columns: 1fr; }
  .hof-photo { border-right: none; border-bottom: 2px solid var(--ink); }
  .shetty-photos { grid-template-columns: 1fr 1fr; height: 180px; }
  .shetty-photo:last-child { display: none; }
  .fuet-photo { height: 180px; }
  .k-layout { gap: 40px; }
  .lst-main, .lst-extra-card { padding: 28px 24px; }

  .ticker-item { font-size: 10px; letter-spacing: 2.5px; padding: 0 24px; }

  .section-fade { height: 6px; }
  .section-fade--inner { height: 4px; }
}
