   :root {
      --ink: #161814;
      --muted: #666b61;
      --paper: #f7f5ee;
      --panel: #ffffff;
      --line: #ded8cb;
      --olive: #4f6338;
      --red: #b92e25;
      --gold: #d69b2d;
      --shadow: 0 18px 45px rgba(24, 24, 18, 0.16);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      width: 100%;
    }

    .page {
      min-height: 100vh;
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 82vh;
      display: grid;
      align-items: end;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.72) 100%),
        url("/img/main-slide-1.jpg") center / cover;
      color: #fff;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 12px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--olive));
    }

    .hero-inner,
    .section-inner {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 48px 0 72px;
    }

    .club-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      background: rgba(0, 0, 0, 0.22);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .club-mark span {
      width: 9px;
      height: 9px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 14px 0 0 var(--red), 28px 0 0 var(--olive);
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      max-width: 980px;
      font-size: clamp(12px, 12vw, 44px);
      line-height: 0.98;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
      text-wrap: balance;
    }

    .hero-text {
      max-width: 650px;
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(18px, 2.2vw, 25px);
    }

    .cta-band {
      background: var(--ink);
      color: #fff;
    }

    .cta-inner {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 112px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 0;
    }

    .cta-title {
      font-size: clamp(12px, 3vw, 20px);
      font-weight: 800;
      text-transform: uppercase;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 2px solid transparent;
      border-radius: 6px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
      transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
    }

    .button-primary {
      background: var(--gold);
      color: #1b1508;
    }

    .button-outline {
      border-color: var(--line);
      background: transparent;
    }

    .button-whatsapp {
      background: #1fae58;
      color: #fff;
    }

    .button-instagram {
      background: #d33b73;
      color: #fff;
    }

    section {
      padding: 74px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    h2 {
      font-size: clamp(34px, 5vw, 62px);
      line-height: 0.98;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section-kicker {
      max-width: 420px;
      color: var(--muted);
      font-size: 18px;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .event-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      box-shadow: 0 8px 24px rgba(22, 24, 20, 0.08);
    }

    .event-photo {
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: #d9d1c1;
    }

    .event-body {
      display: grid;
      gap: 14px;
      min-height: 210px;
      padding: 22px;
    }

    .event-date {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 32px;
      padding: 0 10px;
      border-radius: 4px;
      background: rgba(236, 213, 3, 0.32);
      color: var(--olive);
      font-size: 14px;
      line-height: 1;
      font-weight: 800;
      text-transform: uppercase;
    }

    h3 {
      font-size: clamp(22px, 3vw, 29px);
      line-height: 1.05;
      font-weight: 900;
      text-transform: uppercase;
    }

    .event-note {
      color: var(--muted);
      font-size: 16px;
    }

    .about {
      background: #fff;
    }

    .about-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .about-photo {
      min-height: 430px;
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(22, 24, 20, 0.05), rgba(22, 24, 20, 0.24)),
        url("/img/about.png") center / cover;
      box-shadow: var(--shadow);
    }

    .about-copy {
      display: grid;
      gap: 18px;
      font-size: clamp(18px, 2vw, 22px);
      color: #383b34;
    }

    .about-copy strong {
      color: var(--red);
    }

    .contacts {
      background: var(--ink);
      color: #fff;
    }

    .contacts .section-kicker {
      color: rgba(255, 255, 255, 0.72);
    }

    .contact-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
    }

    .phone-label {
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .phone-number {
      margin-top: 4px;
      font-size: clamp(28px, 5vw, 52px);
      line-height: 1;
      font-weight: 900;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    footer {
      padding: 24px 0;
      background: #0e100d;
      color: rgba(255, 255, 255, 0.68);
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
    }

    @media (max-width: 820px) {
      .hero {
        min-height: 76vh;
      }

      .cta-inner,
      .section-head,
      .contact-box {
        align-items: stretch;
        flex-direction: column;
      }

      .cta-inner {
        display: grid;
      }

      .section-head {
        display: grid;
      }

      .events-grid,
      .about-layout,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .about-photo {
        min-height: 310px;
      }

      .contact-actions {
        justify-content: flex-start;
      }

      .button {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .hero-inner {
        padding-bottom: 54px;
      }

      /*h1 {
        font-size: clamp(46px, 17vw, 76px);
      }*/

      section {
        padding: 56px 0;
      }

      .event-body,
      .contact-box {
        padding: 18px;
      }

      .phone-number {
        overflow-wrap: anywhere;
      }
    }
