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

  :root {
    --green: #1a3d1a;
    --green-mid: #2d6b2d;
    --green-light: #4a9e4a;
    --green-pale: #e8f3e8;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5ecd4;
    --steel: #8a9ba8;
    --steel-dark: #3a4a54;
    --dark: #0e0e0e;
    --dark-mid: #1a1a1a;
    --dark-surface: #161616;
    --text: #e8e0d0;
    --text-muted: #a09880;
    --border: rgba(201,168,76,0.25);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--dark);
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13, 20, 16, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }

  .nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    font-weight: 600;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('schlacht.jpeg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35) saturate(0.6);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(13,20,16,0.3) 0%,
      rgba(13,20,16,0.1) 40%,
      rgba(13,20,16,0.7) 80%,
      rgba(13,20,16,1) 100%
    );
  }

  .hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
  }

  .hero-wappen {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
    animation: fadeInDown 1s ease both;
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.2s both;
  }

  .hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
  }

  .hero-slogan {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold-light);
    opacity: 0.85;
    animation: fadeInUp 1s ease 0.6s both;
    margin-bottom: 2.5rem;
  }

  .hero-cta {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    animation: fadeInUp 1s ease 0.8s both;
  }

  .hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  /* ─── SECTION COMMONS ─── */
  section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .section-divider {
    width: 60px;
    height: 2px;
    background: var(--green-mid);
    margin-bottom: 3rem;
  }

  /* ─── ÜBER UNS ─── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .about-text p { margin-bottom: 1.2rem; color: var(--text); }

  .about-highlight {
    background: var(--dark-surface);
    border-left: 3px solid var(--green-mid);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-light);
  }

  .about-image-stack {
    position: relative;
    height: 500px;
    overflow: hidden;
  }

  .about-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 80%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
  }

  .about-img-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%;
    height: 250px;
    object-fit: cover;
    border: 3px solid var(--dark);
  }

  /* ─── WAS WIR MACHEN ─── */
  .activities-section {
    background: var(--dark-surface);
    max-width: 100%;
    padding: 6rem 2rem;
  }

  .activities-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .activity-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
  }

  .activity-card:hover {
    border-color: var(--green-mid);
    transform: translateY(-3px);
  }

  .activity-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .activity-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
  }

  .activity-text {
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  /* ─── DISZIPLINEN ─── */
  .disziplinen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .disziplin-item {
    border: 1px solid var(--border);
    padding: 1rem 1.2rem;
    background: var(--dark-surface);
    transition: border-color 0.2s;
  }

  .disziplin-item:hover { border-color: var(--green-light); }

  .disziplin-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
  }

  .disziplin-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ─── TRAINING & PREISE ─── */
  .training-section {
    background: var(--dark-surface);
    max-width: 100%;
    padding: 6rem 2rem;
  }

  .training-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .info-block { margin-bottom: 2rem; }

  .info-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 0.3rem;
  }

  .info-value {
    font-size: 1.1rem;
    color: var(--text);
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }

  .price-table tr {
    border-bottom: 1px solid var(--border);
  }

  .price-table td {
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .price-table td:last-child {
    text-align: right;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
  }

  .price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
  }

  /* ─── GALERIE ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 2rem;
  }

  .gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: filter 0.3s;
    filter: saturate(0.7) brightness(0.85);
  }

  .gallery-img:hover { filter: saturate(1) brightness(1); }

  .gallery-img.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  /* ─── NEWS ─── */
  .news-section {
    background: var(--dark-surface);
    max-width: 100%;
    padding: 6rem 2rem;
  }

  .news-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .news-item {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    transition: border-color 0.2s;
  }

  .news-item:hover { border-color: var(--green-mid); }

  .news-date {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--green-light);
    margin-bottom: 0.4rem;
  }

  .news-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .news-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .news-text a {
    color: var(--green-light);
    text-decoration: underline;
  }

  .news-paging {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  .paging-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    transition: border-color 0.2s, color 0.2s;
  }

  .paging-btn:hover { border-color: var(--green-mid); color: var(--gold); }

  .paging-info {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
  }

  .news-empty {
    color: var(--text-muted);
    font-style: italic;
    font-family: 'IM Fell English', serif;
    font-size: 1.1rem;
  }

  /* ─── KONTAKT ─── */
  .kontakt-section {
    background: var(--dark);
    max-width: 100%;
    padding: 6rem 2rem;
  }

  .kontakt-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .kontakt-inner .section-divider { margin: 0 auto 3rem; }

  .kontakt-form {
    text-align: left;
    margin-top: 3rem;
  }

  .form-group { margin-bottom: 1.5rem; }

  .form-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input:focus,
  .form-textarea:focus { border-color: var(--green-mid); }

  .form-textarea { height: 140px; resize: vertical; }

  .honeypot { display: none !important; }

  .form-submit {
    width: 100%;
    background: var(--green);
    border: 1px solid var(--green-mid);
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--green-mid); }
  .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

  .form-message {
    padding: 1rem;
    margin-top: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-align: center;
    display: none;
  }

  .form-message.success {
    background: rgba(45,107,45,0.2);
    border: 1px solid var(--green-mid);
    color: var(--green-light);
    display: block;
  }

  .form-message.error {
    background: rgba(150,30,30,0.2);
    border: 1px solid #7a2020;
    color: #e08080;
    display: block;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 300;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .about-grid, .training-inner { grid-template-columns: 1fr; }
    .about-image-stack { height: 420px; }
    .about-img-main { height: 280px; }
    .about-img-accent { height: 190px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-img.wide { grid-column: span 2; }

    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--dark);
      border-top: 1px solid var(--green-mid);
      padding: 0.5rem 0;
      gap: 0;
      z-index: 200;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a {
      display: block;
      padding: 0.85rem 1.5rem;
    }
  }


/* ─── UTILITY KLASSEN ─── */
.text-gold { color: var(--gold-light); }
.text-green { color: var(--green-light); }
.text-muted { color: var(--text-muted); }
.text-muted-sm { color: var(--text-muted); font-size: 0.95rem; }
.mt-2 { margin-top: 2rem; }
.disziplinen-intro { color: var(--text-muted); max-width: 600px; margin-bottom: 2rem; }
.footer-slogan { margin-top: 0.5rem; font-style: italic; font-family: 'IM Fell English', serif; }
