/* ============================================================
   Landpartie Gut Horn — statischer Onepager
   ============================================================ */

:root {
  --cream: #F9F7F3;
  --cream-alt: #EAE3D9;
  --ink: #333333;
  --ink-soft: #333333;
  --near-black: #201C18;
  --olive-dark: #4D5749;
  --gold: #E49E48;
  --gold-light: #EFC48B;
  --accent: #F17F00;
  --teal: #305369;
  --white: #FFFFFF;
  --line: rgba(51, 51, 51, 0.12);

  --font-display: 'Josefin Sans', sans-serif;
  --font-eyebrow: 'EB Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1280px;
  --gap: clamp(60px, 9vw, 130px);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 18px;
}

h1, h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}

h1 { font-size: clamp(34px, 5.2vw, 64px); }
h2 { font-size: clamp(26px, 3.2vw, 40px); }

h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 10px;
}

h4 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}

p { margin: 0 0 16px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn.btn-solid:hover { background: var(--ink); border-color: var(--ink); }

section { padding: var(--gap) 0; }
.section-alt { background: var(--cream-alt); }
.section-dark {
  background: var(--near-black);
  color: var(--cream);
}
.section-dark p { color: rgba(249,247,243,0.72); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }

.statement-section { padding: var(--gap) 0; }
.highlight-section-outer, .info-section-outer { padding: var(--gap) 0; }
.highlight-section, .info-section { padding: 0; }
.text-center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-scrolled {
  background: rgba(249,247,243,0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.brand img { height: 44px; width: auto; }
.brand .logo-dark { display: block; }
.brand .logo-light { display: none; }
.site-header.is-scrolled .brand .logo-dark,
.no-hero .brand .logo-dark { display: block; }
.no-hero .brand .logo-light,
.site-header.is-scrolled .brand .logo-light { display: none; }
body:not(.is-scrolled-body):not(.no-hero) .brand .logo-dark { display: none; }
body:not(.is-scrolled-body):not(.no-hero) .brand .logo-light { display: block; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: 600;
}
body:not(.is-scrolled-body):not(.no-hero) .main-nav a,
body:not(.is-scrolled-body):not(.no-hero) .site-header .btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.site-header .btn { padding: 12px 26px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
}
body:not(.is-scrolled-body):not(.no-hero) .nav-toggle { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.35) 0%, rgba(20,17,14,0.15) 40%, rgba(20,17,14,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero-content .eyebrow { color: #ffffff; }
.hero-content h1 { color: var(--white); max-width: 820px; text-transform: none; }

.hero-dots {
  position: absolute;
  bottom: 34px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.dots button {
  width: 26px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(51,51,51,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, border-color .25s ease;
}
.dots button.is-active { background: var(--ink); border-color: var(--ink); }
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active { background: var(--white); }
.scroll-cue {
  position: absolute;
  bottom: 32px; right: 40px;
  z-index: 3;
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: .8;
}

/* ---------- Welcome ---------- */
.welcome {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.welcome-text { text-align: center; }
.welcome-signature { margin: 28px auto 0; max-width: 260px; }
.welcome-photo { position: relative; }
.welcome-photo img { border-radius: 0; width: 100%; }

/* ---------- Testimonials ---------- */
.testimonials { padding-top: 0; }
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; min-height: 160px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  text-align: center;
}
.testimonial-slide.is-active { opacity: 1; position: relative; }
.testimonial-slide p {
  font-family: var(--font-eyebrow);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.2em;
  color: var(--ink);
}
.testimonial-slide h4 { color: var(--ink-soft); font-size: 15px; text-transform: none; letter-spacing: normal; font-family: var(--font-body); font-weight: 500; margin-top: 6px; }

/* ---------- Landpartie feature carousel ---------- */
.feature-heading { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.feature-carousel { position: relative; overflow: hidden; }
.feature-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.feature-track::-webkit-scrollbar { display: none; }
.feature-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.feature-card img { aspect-ratio: 7/8; object-fit: cover; width: 100%; }
.feature-card .feature-body { padding: 20px 0 0; text-align: left; }
.feature-card h3 { font-size: 24px; }
@media (max-width: 1024px) {
  .feature-card { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 640px) {
  .feature-card { flex: 0 0 85%; }
}

/* ---------- Statement / image + heading ---------- */
.statement-section {
  text-align: center;
  padding: var(--gap) 0;
}
.statement-visual {
  position: relative;
  display: inline-block;
  max-width: 640px;
}
.statement-visual img { width: 100%; display: block; }
.statement-text {
  max-width: 760px;
  margin: 40px auto 0;
}
.statement-text h2 {
  font-family: var(--font-eyebrow);
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Glanzlichter ---------- */
.highlight-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.highlight-visual { overflow: hidden; }
.highlight-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.highlight-text {
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}
.highlight-text-inner { max-width: 420px; }
.highlight-text p { margin-top: 20px; }

/* ---------- Partner marquee ---------- */
.partners { overflow: hidden; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track img { height: 46px; width: auto; opacity: .85; filter: grayscale(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Info section ---------- */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}
.info-panel {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-panel h2 { color: var(--cream); margin-bottom: 30px; }
.info-panel p { color: rgba(249,247,243,0.85); }
.info-panel h4 { color: var(--cream); font-weight: 700; margin: 0; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 40px;
}
.info-grid .btn { margin-top: 14px; }
.info-visual { position: relative; overflow: hidden; }
.info-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Landpartien cards ---------- */
.locations-carousel { position: relative; overflow: hidden; }
.locations-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-top: 50px;
}
.locations-track::-webkit-scrollbar { display: none; }
.location-card {
  flex: 0 0 calc((100% - 40px) / 2);
  scroll-snap-align: start;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.location-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.location-body { padding: 30px 0 0; }
.location-body h2 { font-size: 30px; margin-bottom: 6px; }
.location-body .date { font-size: 18px; color: var(--gold); margin-bottom: 14px; }
.location-body a.link {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* ---------- Team ---------- */
.team-carousel { position: relative; overflow: hidden; }
.team-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-top: 50px;
}
.team-track::-webkit-scrollbar { display: none; }
.team-card {
  flex: 0 0 calc(100% / 3);
  scroll-snap-align: start;
  padding: 0 36px;
  text-align: center;
}
.team-card img { border-radius: 0; aspect-ratio: 7/8; object-fit: cover; width: 100%; }
.team-card .team-body { padding-top: 24px; }
.team-card .team-role { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }
.team-card h3 { font-family: var(--font-eyebrow); font-style: normal; font-size: 28px; font-weight: 400; margin-bottom: 14px; }
.team-card p { font-size: 14px; }
@media (max-width: 1024px) {
  .team-card { flex: 0 0 50%; }
}
@media (max-width: 640px) {
  .team-card { flex: 0 0 100%; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-alt); color: var(--ink); padding: 70px 0 40px; }
.footer-partners {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(51,51,51,0.12);
}
.footer-brands { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-partners img { height: 48px; width: auto; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--cream);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  font-size: 15px;
  color: var(--ink);
}
.footer-bottom a { text-decoration: none; }
.footer-legal { display: flex; gap: 26px; list-style: none; padding: 0; margin: 0; }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: calc(var(--gap) + 60px); }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 42px; }
.legal-page h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 15px; letter-spacing: .05em; color: var(--teal); margin-top: 40px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 16px; }
.legal-page ul { padding-left: 20px; }
.legal-page a.inline-link { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .welcome, .highlight-section, .info-section { grid-template-columns: 1fr; }
  .statement-visual { max-width: 85%; }
  .statement-text, .info-panel { padding: 50px 32px; }
}

@media (max-width: 767px) {
  :root { --gap: 70px; }
  .main-nav ul, .site-header .btn.desktop-only { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    position: fixed;
    inset: 0;
    background: var(--near-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 400;
  }
  .main-nav.is-open ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .main-nav.is-open a { color: var(--cream); font-size: 20px; }
  .location-card { flex: 0 0 100%; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
