/* ==========================================================
       Design Tokens
       ========================================================== */
    :root {
      --green-deep:    #1f4d2c;   /* Hauptgrün — passt zum Logo */
      --green-darker:  #143420;
      --green-soft:    #f0f4ee;
      --gold:          #b8893f;   /* Goldakzent vom Logo */
      --gold-soft:     #d4a85a;
      --cream:         #faf7f1;
      --paper:         #ffffff;
      --ink:           #1a1a1a;
      --ink-soft:      #4a4a4a;
      --ink-muted:     #8a8a8a;
      --line:          #e8e4dc;

      --serif:  'Cormorant Garamond', 'Times New Roman', serif;
      --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ==========================================================
       Reset / Base
       ========================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--green-deep); text-decoration: none; }

    /* ==========================================================
       Helpers
       ========================================================== */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
    .narrow    { max-width: 840px; margin: 0 auto; padding: 0 32px; }

    .eyebrow {
      font-family: var(--sans);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .section-title {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(38px, 5vw, 60px);
      color: var(--green-deep);
      line-height: 1.1;
      letter-spacing: -0.01em;
    }
    .section-title .ampersand,
    .section-title em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }

    .gold-rule {
      width: 60px;
      height: 1px;
      background: var(--gold);
      border: 0;
      margin: 24px 0;
    }
    .gold-rule.center { margin: 24px auto; }

    /* ==========================================================
       Navigation
       ========================================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease;
    }
    .nav.scrolled { border-bottom-color: var(--line); }
    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      font-family: var(--serif);
      font-weight: 500;
      font-size: 19px;
      color: var(--green-deep);
      letter-spacing: 0.02em;
    }
    .nav-brand .small { font-size: 13px; color: var(--gold); margin-left: 6px; letter-spacing: 0.15em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-weight: 500;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--green-deep); }
    .nav-links a.active {
      color: var(--green-deep);
      position: relative;
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 1px;
      background: var(--gold);
    }
    .nav-toggle { display: none; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-inner { padding: 14px 24px; }
    }

    /* ==========================================================
       Hero
       ========================================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 100px 32px 80px;
      position: relative;
      background: var(--paper);
      overflow: hidden;
    }
    /* Banner-Foto */
    .hero-banner {
      position: absolute;
      inset: 0;
      background-image: url('images/hero-banner.jpg');
      background-size: cover;
      background-position: center 60%;
      background-repeat: no-repeat;
      z-index: 0;
    }
    /* Weiß-Schleier für Lesbarkeit (oben/unten klarer, Mitte weicher) */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg,
          rgba(255, 255, 255, 0.35) 0%,
          rgba(255, 255, 255, 0.55) 30%,
          rgba(255, 255, 255, 0.65) 55%,
          rgba(255, 255, 255, 0.92) 100%),
        radial-gradient(ellipse 50% 40% at 50% 45%,
          rgba(255, 255, 255, 0.55) 0%,
          rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
      z-index: 1;
    }
    /* Goldener Trennstrich unten */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.6;
      z-index: 2;
    }
    /* Inhalt vor Banner und Schleier */
    .hero > *:not(.hero-banner) {
      position: relative;
      z-index: 2;
    }
    .hero-logo {
      width: min(420px, 80vw);
      margin-bottom: 28px;
      animation: fade-up 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .hero-tagline {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(20px, 2.4vw, 28px);
      color: var(--ink-soft);
      max-width: 560px;
      margin-bottom: 40px;
      animation: fade-up 1.2s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .hero-meta {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 24px;
      padding: 24px 40px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(184, 137, 63, 0.25);
      animation: fade-up 1.2s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .hero-meta-item {
      text-align: center;
      padding: 0 16px;
    }
    .hero-meta-item + .hero-meta-item {
      border-left: 1px solid rgba(184, 137, 63, 0.2);
    }
    @media (max-width: 640px) {
      .hero-meta { padding: 20px 24px; gap: 20px; }
      .hero-meta-item + .hero-meta-item { border-left: 0; border-top: 1px solid rgba(184, 137, 63, 0.2); padding-top: 16px; }
    }
    .hero-meta-label {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 8px;
    }
    .hero-meta-value {
      font-family: var(--serif);
      font-weight: 500;
      font-size: 28px;
      color: var(--green-deep);
    }
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-muted);
      animation: bounce 2s ease-in-out infinite;
      z-index: 3;
    }
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(-6px); }
    }

    /* ==========================================================
       Section Layout
       ========================================================== */
    section { padding: 120px 0; position: relative; }
    section.alt { background: var(--cream); }
    section.dark { background: var(--green-deep); color: var(--paper); }
    section.dark .section-title { color: var(--paper); }
    section.dark .eyebrow { color: var(--gold-soft); }

    .section-header { text-align: center; margin-bottom: 80px; }
    .section-header .eyebrow { display: block; margin-bottom: 16px; }

    @media (max-width: 768px) {
      section { padding: 80px 0; }
      .section-header { margin-bottom: 56px; }
    }

    /* ==========================================================
       About
       ========================================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .about-lead {
      font-family: var(--serif);
      font-size: clamp(22px, 2.2vw, 28px);
      line-height: 1.4;
      color: var(--green-deep);
      font-weight: 400;
    }
    .about-lead .accent { color: var(--gold); font-style: italic; }
    .about-body p {
      color: var(--ink-soft);
      margin-bottom: 18px;
      font-size: 16px;
    }
    .about-body p:last-child { margin-bottom: 0; }
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ==========================================================
       Champions / Hall of Champions
       ========================================================== */
    .champions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      max-width: 980px;
      margin: 0 auto;
    }
    .champion-card {
      background: var(--paper);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 40px 32px 48px;
      text-align: center;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    section.dark .champion-card {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(216, 168, 90, 0.25);
    }
    .champion-card:hover { transform: translateY(-4px); }

    /* Champion Logo Disc */
    .champion-disc {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .champion-disc.mulligans {
      background: var(--paper);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    .champion-disc.birdie-boys {
      background: var(--cream);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    .champion-disc img {
      width: 76%;
      height: 76%;
      object-fit: contain;
    }
    .champion-disc.birdie-boys img {
      width: 92%;
      height: 92%;
    }

    .champion-year {
      font-family: var(--serif);
      font-size: 56px;
      font-weight: 500;
      color: var(--gold-soft);
      line-height: 1;
      margin-bottom: 8px;
    }
    .champion-location {
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 24px;
    }
    .champion-team {
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 500;
      color: var(--paper);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .champion-score {
      font-family: var(--serif);
      font-style: italic;
      font-size: 17px;
      color: var(--gold-soft);
    }
    .champion-trophy {
      width: 36px;
      height: 1px;
      background: var(--gold-soft);
      margin: 18px auto;
    }

    /* ==========================================================
       CTA Button (für Verweise zu Unterseiten)
       ========================================================== */
    .editions-cta {
      text-align: center;
      margin-top: 56px;
    }
    .cta-btn {
      display: inline-block;
      background: var(--green-deep);
      color: var(--paper);
      font-family: var(--sans);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 18px 36px;
      transition: background 0.3s ease, transform 0.3s ease;
      text-decoration: none;
    }
    .cta-btn:hover {
      background: var(--green-darker);
      transform: translateY(-2px);
    }
    .cta-btn.outline {
      background: transparent;
      color: var(--green-deep);
      border: 1px solid var(--green-deep);
    }
    .cta-btn.outline:hover {
      background: var(--green-deep);
      color: var(--paper);
    }

    /* ==========================================================
       Page Header (für Unterseiten ohne Hero-Banner)
       ========================================================== */
    .page-header {
      padding: 160px 32px 80px;
      text-align: center;
      background: var(--cream);
      position: relative;
      border-bottom: 1px solid var(--line);
    }
    .page-header .eyebrow {
      display: block;
      margin-bottom: 16px;
    }
    .page-header h1 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(48px, 7vw, 88px);
      color: var(--green-deep);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .page-header h1 em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }
    .page-header .lede {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(18px, 2vw, 22px);
      color: var(--ink-soft);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.5;
    }
    .page-header .gold-rule {
      margin: 32px auto 24px;
    }
    .edition + .edition {
      border-top: 1px solid var(--line);
      margin-top: 96px;
      padding-top: 96px;
    }

    @media (max-width: 768px) {
      .edition + .edition {
        margin-top: 64px;
        padding-top: 64px;
      }
    }

    .edition-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 56px;
    }
    .edition-year {
      font-family: var(--serif);
      font-size: clamp(80px, 12vw, 160px);
      font-weight: 500;
      color: var(--green-deep);
      line-height: 0.85;
      letter-spacing: -0.02em;
    }
    .edition-year .em { font-style: italic; color: var(--gold); }
    .edition-meta {
      padding-bottom: 16px;
    }
    .edition-meta .eyebrow { display: block; margin-bottom: 12px; }
    .edition-meta-place {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 500;
      color: var(--green-deep);
      margin-bottom: 8px;
      line-height: 1.15;
    }
    .edition-meta-detail {
      font-size: 14px;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }
    .edition-meta-courses {
      margin-top: 16px;
      font-family: var(--serif);
      font-style: italic;
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .edition-result {
      background: var(--green-soft);
      border-left: 3px solid var(--gold);
      padding: 36px 40px;
      margin-bottom: 56px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: center;
    }
    .result-score {
      font-family: var(--serif);
      font-weight: 500;
      font-size: 56px;
      color: var(--green-deep);
      line-height: 1;
      white-space: nowrap;
    }
    .result-score .vs { color: var(--gold); font-style: italic; margin: 0 12px; font-weight: 400; }
    .result-text {
      font-family: var(--serif);
      font-style: italic;
      font-size: 19px;
      color: var(--ink-soft);
      line-height: 1.4;
    }
    .result-text strong { color: var(--green-deep); font-style: normal; font-weight: 600; }

    /* Teams */
    .teams {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .team {
      padding: 32px;
      border: 1px solid var(--line);
      background: var(--paper);
      position: relative;
      text-align: center;
    }
    .team.winner { border-color: var(--gold); border-width: 2px; }
    .team.winner::before {
      content: 'CHAMPION';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--paper);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      padding: 4px 14px;
    }

    /* Team Logo Disc */
    .team-logo-disc {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      margin: 8px auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .team-logo-disc.mulligans {
      background: var(--green-deep);
      box-shadow: 0 8px 28px rgba(31, 77, 44, 0.18);
    }
    .team-logo-disc.birdie-boys {
      background: var(--cream);
      border: 1px solid rgba(184, 137, 63, 0.25);
      box-shadow: 0 8px 28px rgba(184, 137, 63, 0.12);
    }
    .team-logo-disc img {
      width: 78%;
      height: 78%;
      object-fit: contain;
    }
    .team-logo-disc.birdie-boys img {
      width: 92%;
      height: 92%;
    }

    .team-name {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 500;
      color: var(--green-deep);
      margin-bottom: 6px;
      line-height: 1.15;
    }
    .team-captain {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .team-players {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
    }
    .team-players li {
      font-family: var(--serif);
      font-size: 19px;
      color: var(--ink);
      padding: 8px 0;
      border-bottom: 1px solid var(--line);
    }
    .team-players li:last-child { border-bottom: 0; }
    .team-players li.captain::after {
      content: '· C';
      color: var(--gold);
      font-style: italic;
      margin-left: 8px;
      font-size: 14px;
    }

    /* Edition Report */
    .edition-report {
      max-width: 720px;
      margin: 0 auto 56px;
      text-align: center;
    }
    .edition-report p {
      font-family: var(--serif);
      font-size: clamp(18px, 1.8vw, 22px);
      line-height: 1.55;
      color: var(--ink-soft);
      font-style: italic;
    }

    /* Match Details */
    .matchdays-toggle {
      text-align: center;
      margin-bottom: 32px;
    }
    .toggle-btn {
      background: transparent;
      border: 1px solid var(--green-deep);
      color: var(--green-deep);
      font-family: var(--sans);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 14px 32px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .toggle-btn:hover {
      background: var(--green-deep);
      color: var(--paper);
    }
    .matchdays { display: none; }
    .matchdays.open { display: block; animation: fade-up 0.6s ease; }

    .matchday {
      margin-bottom: 56px;
    }
    .matchday-title {
      font-family: var(--serif);
      font-style: italic;
      font-size: 26px;
      color: var(--green-deep);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .match {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
      transition: background 0.2s ease;
    }
    .match:last-child { border-bottom: 0; }
    .match-side {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--ink-muted);
      line-height: 1.3;
      transition: all 0.2s ease;
    }
    .match-side.left  { text-align: right; }
    .match-side.right { text-align: left; }
    .match-side.won {
      color: var(--green-deep);
      font-weight: 600;
      font-size: 22px;
      position: relative;
    }
    /* Goldener Akzent für Gewinner */
    .match-side.won.left::after,
    .match-side.won.right::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      vertical-align: middle;
    }
    .match-side.won.left::after  { margin-left: 12px; }
    .match-side.won.right::before { margin-right: 12px; }

    .match-format {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-muted);
      text-align: center;
      padding: 8px 16px;
      border: 1px solid var(--line);
      white-space: nowrap;
      font-weight: 500;
      background: var(--paper);
    }
    .match-format.halved {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(184, 137, 63, 0.06);
    }

    @media (max-width: 768px) {
      .edition-head { grid-template-columns: 1fr; gap: 24px; }
      .edition-result { grid-template-columns: 1fr; padding: 24px; gap: 16px; text-align: center; }
      .teams { grid-template-columns: 1fr; gap: 32px; }
      .match { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 20px 0; }
      .match-side.left, .match-side.right { text-align: center; }
      .match-side.won.left::after, .match-side.won.right::before { display: none; }
    }

    /* ==========================================================
       All-Time Leaderboard
       ========================================================== */
    .leaderboard-wrap {
      max-width: 760px;
      margin: 0 auto;
    }
    .leaderboard {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--serif);
    }
    .leaderboard th {
      font-family: var(--sans);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      padding: 16px 12px;
      text-align: left;
      border-bottom: 2px solid var(--green-deep);
    }
    .leaderboard th.num { text-align: center; width: 90px; }
    .leaderboard td {
      padding: 18px 12px;
      border-bottom: 1px solid var(--line);
      font-size: 19px;
      color: var(--ink);
    }
    .leaderboard td.num { text-align: center; font-variant-numeric: tabular-nums; }
    .leaderboard tr:hover td { background: var(--cream); }
    .leaderboard td.title-wins {
      color: var(--gold);
      font-weight: 600;
      font-style: italic;
    }
    .leaderboard td.title-wins.zero { color: var(--ink-muted); font-weight: 400; font-style: normal; }

    /* ==========================================================
       Next Edition
       ========================================================== */
    .next-edition {
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }
    .next-year {
      font-family: var(--serif);
      font-size: clamp(96px, 14vw, 180px);
      font-weight: 500;
      color: var(--green-deep);
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .next-status {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 8px 16px;
      border: 1px solid var(--gold);
      margin-bottom: 32px;
    }
    .next-teaser {
      font-family: var(--serif);
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--green-deep);
      line-height: 1.3;
      font-weight: 500;
      margin-bottom: 56px;
    }

    .next-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 56px;
      text-align: left;
    }
    .next-card {
      padding: 32px 28px;
      border: 1px solid var(--line);
      background: var(--paper);
      position: relative;
    }
    .next-card-label {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 16px;
    }
    .next-card-value {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
      color: var(--green-deep);
      line-height: 1.3;
    }
    .next-card-value .muted {
      color: var(--ink-soft);
      font-style: italic;
      font-size: 16px;
      font-weight: 400;
      display: block;
      margin-top: 6px;
    }
    .next-dates {
      list-style: none;
    }
    .next-dates li {
      font-family: var(--serif);
      font-size: 18px;
      color: var(--green-deep);
      padding: 6px 0;
      font-weight: 500;
    }
    .next-dates li + li { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 10px; }
    .next-dates li::before {
      content: '◇';
      color: var(--gold);
      margin-right: 10px;
      font-size: 12px;
    }

    .next-pitch {
      max-width: 680px;
      margin: 0 auto;
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(17px, 1.8vw, 20px);
      color: var(--ink-soft);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .next-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* ==========================================================
       Footer
       ========================================================== */
    footer {
      background: var(--green-darker);
      color: rgba(255,255,255,0.7);
      padding: 56px 32px 40px;
      text-align: center;
    }
    .footer-mark {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--paper);
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }
    .footer-rule {
      width: 40px;
      height: 1px;
      background: var(--gold-soft);
      margin: 24px auto;
    }
    .footer-meta {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    /* ==========================================================
       History-Seite — Schnellnavigation
       ========================================================== */
    .history-nav-section {
      padding: 64px 0 0;
    }
    .history-nav {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      max-width: 980px;
      margin: 0 auto;
    }
    .history-nav-item {
      display: block;
      padding: 24px 36px;
      background: var(--paper);
      border: 1px solid var(--line);
      text-align: center;
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      min-width: 200px;
    }
    .history-nav-item:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(31, 77, 44, 0.08);
    }
    .history-nav-year {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 500;
      color: var(--green-deep);
      line-height: 1;
      margin-bottom: 6px;
    }
    .history-nav-place {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .matchdays-section {
      margin-top: 56px;
      padding-top: 56px;
      border-top: 1px solid var(--line);
    }
    .matchdays-heading {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 500;
      color: var(--green-deep);
      text-align: center;
      margin-bottom: 40px;
    }

    /* ==========================================================
       Cup-2027 — Matchplan
       ========================================================== */
    .matchplan-info {
      max-width: 720px;
      margin: 0 auto 56px;
      text-align: center;
    }
    .matchplan-info p {
      font-family: var(--serif);
      font-style: italic;
      font-size: 19px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* Planungs-Hinweis (Sticker) */
    .planning-note {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      background: rgba(184, 137, 63, 0.08);
      border: 1px solid rgba(184, 137, 63, 0.3);
      margin-bottom: 24px;
      max-width: 100%;
      flex-wrap: wrap;
      justify-content: center;
    }
    .planning-note:empty { display: none; }
    .planning-note-tag {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      padding: 4px 10px;
      background: var(--gold);
      color: var(--paper);
    }
    .planning-note-text {
      font-family: var(--serif);
      font-style: italic;
      font-size: 16px;
      color: var(--ink-soft);
      line-height: 1.4;
    }

    .matchplan {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
    }
    .matchplan-day {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 32px;
      align-items: center;
      padding: 28px 32px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-left: 3px solid var(--gold);
    }
    .matchplan-day-num {
      font-family: var(--serif);
      font-style: italic;
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .matchplan-day-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
      color: var(--green-deep);
      margin-bottom: 4px;
    }
    .matchplan-day-format {
      font-size: 14px;
      color: var(--ink-soft);
    }
    .matchplan-day-note {
      margin-top: 8px;
      font-family: var(--serif);
      font-style: italic;
      font-size: 14px;
      color: var(--gold);
    }
    @media (max-width: 640px) {
      .matchplan-day { grid-template-columns: 1fr; gap: 8px; }
    }

    /* ==========================================================
       Cup-2027 — Scoreboard
       ========================================================== */
    .scoreboard-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }
    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold-soft);
      box-shadow: 0 0 0 4px rgba(216, 168, 90, 0.2);
    }
    .status-text {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-soft);
      font-weight: 500;
    }

    .scoreboard-frame {
      max-width: 980px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(216, 168, 90, 0.25);
      padding: 48px;
    }
    .scoreboard-header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 32px;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(216, 168, 90, 0.2);
    }
    .sb-team {
      text-align: center;
    }
    .sb-team.mulligans     { text-align: right; }
    .sb-team.birdie-boys   { text-align: left; }
    .sb-disc-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 16px;
    }
    .sb-team.mulligans   .sb-disc-wrap { justify-content: flex-end; }
    .sb-team.birdie-boys .sb-disc-wrap { justify-content: flex-start; }
    .sb-disc {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sb-disc.mulligans {
      background: var(--paper);
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    .sb-disc.birdie-boys {
      background: var(--cream);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    .sb-disc img {
      width: 78%;
      height: 78%;
      object-fit: contain;
    }
    .sb-disc.birdie-boys img {
      width: 92%;
      height: 92%;
    }
    .sb-team-name {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--paper);
      font-weight: 500;
    }
    .sb-score {
      font-family: var(--serif);
      font-size: clamp(56px, 8vw, 88px);
      font-weight: 500;
      color: var(--gold-soft);
      display: flex;
      align-items: baseline;
      gap: 16px;
      line-height: 1;
    }
    .sb-score-sep {
      color: rgba(216, 168, 90, 0.5);
      font-style: italic;
    }

    .sb-day + .sb-day {
      margin-top: 32px;
      padding-top: 32px;
      border-top: 1px solid rgba(216, 168, 90, 0.15);
    }
    .sb-day-title {
      font-family: var(--serif);
      font-style: italic;
      font-size: 18px;
      color: var(--gold-soft);
      margin-bottom: 16px;
    }
    .sb-day-matches {
      display: grid;
      gap: 8px;
    }
    .sb-match {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 24px;
      align-items: center;
      padding: 14px 0;
    }
    .sb-match-format {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
    }
    .sb-match-vs {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
    }
    .sb-match-team {
      font-family: var(--serif);
      font-size: 17px;
      color: rgba(255,255,255,0.85);
    }
    .sb-match-vs .sb-match-team:first-child  { text-align: right; }
    .sb-match-vs .sb-match-team:last-child   { text-align: left; }
    .sb-match-result {
      font-family: var(--serif);
      font-style: italic;
      font-size: 14px;
      color: rgba(216, 168, 90, 0.7);
      padding: 4px 14px;
      border: 1px solid rgba(216, 168, 90, 0.3);
    }
    .sb-match.pending .sb-match-team { color: rgba(255,255,255,0.4); }
    .sb-match.pending .sb-match-result { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.15); }

    @media (max-width: 768px) {
      .scoreboard-frame { padding: 24px; }
      .scoreboard-header { grid-template-columns: 1fr; gap: 24px; text-align: center; }
      .sb-team.mulligans, .sb-team.birdie-boys { text-align: center; }
      .sb-team.mulligans .sb-disc-wrap, .sb-team.birdie-boys .sb-disc-wrap { justify-content: center; }
      .sb-score { justify-content: center; }
      .sb-match { grid-template-columns: 1fr; gap: 6px; text-align: center; }
      .sb-match-vs .sb-match-team:first-child, .sb-match-vs .sb-match-team:last-child { text-align: center; }
    }
