/* Konzept A — Editorial / Bildgetrieben
   Angelehnt an die Bildsprache klassischer Golfclub-Seiten: große Fotografie,
   viel Weißraum, ruhige Erdtöne, zurückhaltende Serifen-Headlines. */

:root {
  --bg: #f6f3ec;
  --bg-alt: #efe9db;
  --ink: #24291f;
  --ink-soft: #6a6a5c;
  --green: #33482e;
  --green-soft: #6c8060;
  --sand: #cdb88e;
  --clay: #a15c39;
  --gold: #cbad67;
  --bronze: #897443;
  --line: #ddd5c0;
  --white: #ffffff;
  --off-white: #f7f4ec;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.2px; margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
body.nav-open { overflow: hidden; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand span {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
  color: var(--green);
}
.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a:hover { color: var(--clay); }
.nav-cta {
  border: 1px solid var(--green);
  padding: 9px 18px !important;
  border-radius: 2px;
  color: var(--green) !important;
}
.nav-cta:hover { background: var(--green); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ---------- Sidebar (mobile) ---------- */
.sidebar {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: var(--green);
  color: var(--white);
  z-index: 60;
  padding: 30px 28px;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
.sidebar.open { right: 0; }
.sidebar-close {
  align-self: flex-end;
  background: none; border: none; color: var(--white);
  font-size: 22px; cursor: pointer; margin-bottom: 30px;
}
.sidebar nav { display: flex; flex-direction: column; gap: 22px; }
.sidebar nav a { font-family: var(--serif); font-size: 22px; }
.sidebar-status { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.sidebar-status .pill { color: rgba(255,255,255,0.85); }
.overlay {
  position: fixed; inset: 0; background: rgba(20,20,15,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
  z-index: 50;
}
.overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 86vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: #223 center/cover;
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,16,0.08) 0%, rgba(20,24,16,0.4) 55%, rgba(20,24,16,0.84) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px 60px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow { color: var(--gold); letter-spacing: 4px; }
.hero-divider {
  width: 54px; height: 2px; background: var(--gold);
  margin: 16px 0 18px;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin: 0 0 16px;
  line-height: 1.05;
  color: var(--off-white);
  text-shadow: 0 2px 20px rgba(10,14,8,0.35);
}
.hero-content p { max-width: 520px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 26px; }

.status-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(203,173,103,0.5);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.3px;
  background: rgba(255,255,255,0.08);
}
.pill b { color: var(--gold); font-weight: 600; }
.pill.dark { border-color: var(--line); background: rgba(51,72,46,0.06); color: var(--ink); }
.pill.dark b { color: var(--bronze); }

/* ---------- Swipe menu ---------- */
.swipe-section { padding: 70px 0 20px; }
.swipe-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 26px; }
.swipe-head h2 { font-size: 28px; }
.swipe-hint { font-size: 13px; color: var(--ink-soft); }
.swipe-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 30px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
}
.swipe-track::-webkit-scrollbar { height: 6px; }
.swipe-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.swipe-card {
  position: relative;
  flex: 0 0 78%;
  scroll-snap-align: start;
  height: 340px;
  border-radius: 4px;
  overflow: hidden;
  color: var(--white);
}
.swipe-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.swipe-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,20,12,0.82) 100%); }
.swipe-card .label { position: absolute; left: 22px; bottom: 20px; right: 22px; z-index: 2; }
.swipe-card .label .eyebrow { color: var(--sand); }
.swipe-card .label h3 { font-size: 22px; color: var(--off-white); margin-top: 6px; text-shadow: 0 1px 12px rgba(10,14,8,0.4); }
@media (min-width: 720px) { .swipe-card { flex-basis: 30%; } }

/* ---------- Panorama band ---------- */
.panorama-band {
  position: relative;
  height: 62vh;
  min-height: 380px;
  margin: 40px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.panorama-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panorama-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,16,0.15) 0%, rgba(20,24,16,0.4) 100%);
}
.panorama-band blockquote {
  position: relative; z-index: 2; margin: 0; max-width: 640px; padding: 0 24px;
  color: var(--off-white);
  text-shadow: 0 2px 16px rgba(10,14,8,0.35);
}
.panorama-band .gold-rule { width: 54px; height: 2px; background: var(--gold); margin: 0 auto 22px; }
.panorama-band blockquote p {
  font-family: var(--serif); font-size: clamp(22px, 3.2vw, 34px); line-height: 1.35;
  font-style: italic; margin: 0 0 16px;
}
.panorama-band blockquote cite {
  font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.mosaic-section { padding: 70px 0 20px; }
.mosaic-section .section-head { flex-direction: column; align-items: center; text-align: center; margin-bottom: 40px; }
.mosaic-section .eyebrow { display: block; margin-bottom: 8px; }
.mosaic-section h2 { font-size: clamp(26px, 3vw, 36px); }
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
}
.mosaic-item {
  position: relative; display: block; overflow: hidden; border-radius: 2px;
  grid-column: span 1; grid-row: span 1;
}
.mosaic-item.big { grid-column: span 2; grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; grid-row: span 1; }
.mosaic-item.tall { grid-column: span 1; grid-row: span 2; }
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,16,0) 55%, rgba(20,24,16,0.22) 100%);
  pointer-events: none;
}
.section-head { display:flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-size: 30px; }
.link-more { font-size: 13px; letter-spacing: 0.4px; border-bottom: 1px solid var(--clay); color: var(--clay); padding-bottom: 3px; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card figure { margin: 0 0 18px; overflow: hidden; border-radius: 2px; aspect-ratio: 16/10; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover img { transform: scale(1.04); }
.news-card .date { font-size: 12px; letter-spacing: 1px; color: var(--bronze); text-transform: uppercase; }
.news-card h3 { font-size: 20px; margin: 8px 0 10px; line-height: 1.3; }
.news-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 50px;
}
.split img { border-radius: 3px; }
.split .eyebrow { margin-bottom: 12px; display:block; }
.split h2 { font-size: 30px; margin-bottom: 16px; }
.split p { line-height: 1.7; color: var(--ink-soft); margin-bottom: 22px; }
.btn {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 12px 26px;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 2px;
}
.btn:hover { background: var(--green); color: var(--white); }
.btn.filled { background: var(--green); color: var(--white); }
.btn.filled:hover { background: var(--clay); border-color: var(--clay); }

.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.board-card { text-align: center; }
.board-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--sand); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 34px; color: var(--white);
}
.board-card h3 { font-size: 17px; }
.board-card .role { font-size: 13px; color: var(--clay); margin-top: 4px; }
.placeholder-tag { font-size: 11px; color: var(--ink-soft); background: var(--bg-alt); border-radius: 999px; padding: 3px 10px; display:inline-block; margin-top: 8px; }

table.plan { width: 100%; border-collapse: collapse; }
table.plan th, table.plan td { text-align: left; padding: 16px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
table.plan th { text-transform: uppercase; font-size: 11px; letter-spacing: 1px; color: var(--ink-soft); }
table.plan td.badge span { background: var(--green); color: var(--white); font-size: 11px; padding: 3px 10px; border-radius: 999px; }
table.plan td.badge span.done { background: var(--sand); color: var(--ink); }

.page-hero {
  padding: 150px 0 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 10px; display:block; }
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); }
.page-hero.with-image {
  position: relative; padding: 190px 0 80px; border-bottom: none; overflow: hidden;
}
.page-hero.with-image .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero.with-image::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,24,16,0.35) 0%, rgba(20,24,16,0.62) 100%);
}
.page-hero.with-image .container { position: relative; z-index: 2; }
.page-hero.with-image .eyebrow { color: var(--gold); }
.page-hero.with-image h1 { color: var(--off-white); text-shadow: 0 2px 18px rgba(10,14,8,0.5); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: rgba(255,255,255,0.85); padding: 70px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-grid h4 { color: var(--white); font-family: var(--serif); font-size: 16px; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { font-size: 14px; line-height: 1.8; display: block; color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--sand); }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.5); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.mockup-banner {
  background: var(--ink); color: var(--white); text-align: center; font-size: 12px;
  padding: 8px 16px; letter-spacing: 0.4px;
}
.mockup-banner a { color: var(--sand); text-decoration: underline; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; padding: 30px; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero { height: 92vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic-item.big { grid-column: span 2; grid-row: span 2; }
  .mosaic-item.wide { grid-column: span 2; grid-row: span 1; }
  .mosaic-item.tall { grid-column: span 1; grid-row: span 2; }
}
