/* Kartoflanie - shared styles
   Used by index.html, pyrki.html, donate.html */

    :root {
      --crimson: #B8242A;
      --crimson-dark: #8C1B1F;
      --gold: #D4A843;
      --gold-light: #F0D78C;
      --forest: #1A5C38;
      --forest-light: #2A7A4E;
      --cream: #FDF6EC;
      --cream-dark: #F5E6CC;
      --charcoal: #1C1917;
      --warm-gray: #44403C;
      --warm-gray-light: #78716C;
      --white: #FFFDF9;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--charcoal);
      background: var(--cream);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ═══════════════════════════════════════
       WYCINANKI SVG PATTERNS
       Folk paper-cut inspired decorative elements
    ═══════════════════════════════════════ */
    .wycinanki-border {
      width: 100%;
      height: 60px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0,30 Q25,5 50,30 Q75,55 100,30 Q125,5 150,30 Q175,55 200,30' fill='none' stroke='%23B8242A' stroke-width='2' opacity='0.3'/%3E%3Ccircle cx='50' cy='30' r='4' fill='%23D4A843' opacity='0.5'/%3E%3Ccircle cx='150' cy='30' r='4' fill='%23D4A843' opacity='0.5'/%3E%3Cpath d='M95,20 L100,10 L105,20 L100,15Z' fill='%23B8242A' opacity='0.2'/%3E%3C/svg%3E");
      background-repeat: repeat-x;
      background-size: 200px 60px;
    }

    /* ═══════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s ease;
      backdrop-filter: blur(0px);
    }

    nav.scrolled {
      background: rgba(253, 246, 236, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      padding: 0.7rem 2rem;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
      transition: color 0.4s;
    }

    nav.scrolled .nav-logo {
      color: var(--crimson);
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--cream);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.3s;
      position: relative;
    }

    nav.scrolled .nav-links a {
      color: var(--warm-gray);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--crimson) !important;
      color: var(--white) !important;
      padding: 0.55rem 1.3rem;
      border-radius: 100px;
      font-weight: 600 !important;
      transition: transform 0.3s, box-shadow 0.3s !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(184, 36, 42, 0.4);
    }

    .nav-cta::after {
      display: none !important;
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .mobile-toggle span {
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: background 0.3s;
    }

    nav.scrolled .mobile-toggle span {
      background: var(--charcoal);
    }

    /* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background:
        linear-gradient(135deg, rgba(28, 25, 23, 0.7) 0%, rgba(140, 27, 31, 0.6) 50%, rgba(26, 92, 56, 0.5) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--crimson-dark) 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 25%, rgba(212, 168, 67, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(184, 36, 42, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(26, 92, 56, 0.1) 0%, transparent 60%);
      animation: heroShimmer 8s ease-in-out infinite alternate;
    }

    @keyframes heroShimmer {
      0% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    /* Floating folk art elements */
    .hero-folk-element {
      position: absolute;
      opacity: 0.08;
      animation: floatGentle 12s ease-in-out infinite;
    }

    .hero-folk-element:nth-child(1) {
      top: 10%;
      left: 8%;
      width: 120px;
      height: 120px;
      border: 3px solid var(--gold);
      border-radius: 50%;
      animation-delay: 0s;
    }

    .hero-folk-element:nth-child(2) {
      top: 20%;
      right: 12%;
      width: 80px;
      height: 80px;
      background: var(--crimson);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      animation-delay: -3s;
    }

    .hero-folk-element:nth-child(3) {
      bottom: 20%;
      left: 15%;
      width: 60px;
      height: 60px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
      animation-delay: -6s;
    }

    .hero-folk-element:nth-child(4) {
      bottom: 15%;
      right: 8%;
      width: 100px;
      height: 100px;
      border: 3px solid var(--crimson);
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      animation-delay: -2s;
    }

    @keyframes floatGentle {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 2rem;
    }

    .hero-badge {
      display: inline-block;
      font-family: 'Caveat', cursive;
      font-size: 1.3rem;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.3s forwards;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(3rem, 8vw, 6.5rem);
      color: var(--white);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.5s forwards;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: rgba(253, 246, 236, 0.85);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.9s forwards;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--crimson);
      color: var(--white);
      padding: 1rem 2.2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
      border: 2px solid var(--crimson);
    }

    .btn-primary:hover {
      background: var(--crimson-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(184, 36, 42, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--cream);
      padding: 1rem 2.2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      border: 2px solid rgba(253, 246, 236, 0.4);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-3px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
    }

    .hero-scroll svg {
      width: 28px;
      height: 28px;
      stroke: rgba(253, 246, 236, 0.5);
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    /* ═══════════════════════════════════════
       SECTION UTILITIES
    ═══════════════════════════════════════ */
    section {
      padding: 6rem 2rem;
    }

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

    .section-label {
      font-family: 'Caveat', cursive;
      font-size: 1.2rem;
      color: var(--crimson);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--charcoal);
    }

    /* ═══════════════════════════════════════
       ABOUT / INTRO
    ═══════════════════════════════════════ */
    .about {
      background: var(--white);
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 20px;
      overflow: hidden;
      background:
        linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    }

    .about-visual-inner {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      text-align: center;
    }

    .about-visual .folk-rooster {
      font-size: 8rem;
      line-height: 1;
      margin-bottom: 1rem;
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
      animation: gentlePulse 3s ease-in-out infinite;
    }

    @keyframes gentlePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .about-visual .est {
      font-family: 'Caveat', cursive;
      font-size: 1.5rem;
      color: var(--gold-light);
    }

    .about-visual .city {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--warm-gray);
      margin-bottom: 1.5rem;
    }

    .about-text p:first-of-type {
      font-size: 1.25rem;
      color: var(--charcoal);
      font-weight: 500;
    }

    .about-highlight {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--cream-dark);
    }

    .about-stat {
      text-align: center;
    }

    .about-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--crimson);
      line-height: 1;
    }

    .about-stat-label {
      font-size: 0.85rem;
      color: var(--warm-gray-light);
      margin-top: 0.3rem;
    }

    /* ═══════════════════════════════════════
       WHY DANCE — SELLING POINTS
    ═══════════════════════════════════════ */
    .why-dance {
      background: var(--charcoal);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .why-dance::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 90%, rgba(184, 36, 42, 0.15), transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(212, 168, 67, 0.1), transparent 50%);
    }

    .why-dance .section-label {
      color: var(--gold);
    }

    .why-dance .section-title {
      color: var(--cream);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      position: relative;
      z-index: 1;
    }

    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      opacity: 0;
      transition: opacity 0.4s;
    }

    .why-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .why-card:hover::before {
      opacity: 1;
    }

    .why-card-icon {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .why-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      color: var(--cream);
    }

    .why-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(253, 246, 236, 0.65);
    }

    /* ═══════════════════════════════════════
       REHEARSAL INFO
    ═══════════════════════════════════════ */
    .rehearsal {
      background: var(--cream);
      position: relative;
    }

    .rehearsal-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .rehearsal-info {
      padding: 3.5rem;
    }

    .rehearsal-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .rehearsal-detail-icon {
      width: 48px;
      height: 48px;
      background: var(--cream);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.3rem;
    }

    .rehearsal-detail h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
      color: var(--charcoal);
    }

    .rehearsal-detail p {
      font-size: 0.95rem;
      color: var(--warm-gray-light);
      line-height: 1.5;
    }

    .rehearsal-map {
      position: relative;
      min-height: 400px;
      overflow: hidden;
      border-radius: 0 24px 24px 0;
    }

    .rehearsal-map #map {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .rehearsal-map .map-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.4) 60%, transparent 100%);
      padding: 1.5rem 2rem 1.25rem;
      pointer-events: none;
    }

    .rehearsal-map .map-overlay-content {
      pointer-events: auto;
    }

    .rehearsal-map .map-overlay h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--cream);
      margin-bottom: 0.25rem;
    }

    .rehearsal-map .map-overlay p {
      color: rgba(253, 246, 236, 0.7);
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }

    .rehearsal-map .btn-map {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--crimson);
      color: var(--cream);
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.82rem;
      border: none;
      transition: all 0.3s;
    }

    .rehearsal-map .btn-map:hover {
      background: var(--crimson-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(184, 36, 42, 0.4);
    }

    /* ═══════════════════════════════════════
       FAQ / WHAT TO EXPECT
    ═══════════════════════════════════════ */
    .faq {
      background: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .faq-item {
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }

    .faq-item:hover {
      border-color: var(--cream-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }

    .faq-item h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--charcoal);
    }

    .faq-item p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--warm-gray);
    }

    .faq-item .faq-emoji {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 0.8rem;
    }

    /* ═══════════════════════════════════════
       DIRECTOR BIO
    ═══════════════════════════════════════ */
    .director {
      background: var(--cream);
    }

    .director-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3rem;
      align-items: center;
      background: var(--white);
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    }

    .director-avatar {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 4px 20px rgba(184, 36, 42, 0.25);
      border: 4px solid var(--white);
      outline: 2px dashed var(--gold);
      outline-offset: 4px;
    }

    .director-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .director-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      margin-bottom: 0.3rem;
    }

    .director-info .director-role {
      font-family: 'Caveat', cursive;
      font-size: 1.2rem;
      color: var(--crimson);
      margin-bottom: 1rem;
    }

    .director-info p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--warm-gray);
      max-width: 550px;
    }

    .director-credentials {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

    .credential-tag {
      background: var(--cream);
      color: var(--warm-gray);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* ═══════════════════════════════════════
       CTA / JOIN
    ═══════════════════════════════════════ */
    .join {
      background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--forest) 100%);
      text-align: center;
      color: var(--cream);
      padding: 8rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .join::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 50%, rgba(212, 168, 67, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    }

    .join-content {
      position: relative;
      z-index: 1;
    }

    .join .section-label {
      color: var(--gold-light);
    }

    .join .section-title {
      color: var(--white);
      font-size: clamp(2.5rem, 6vw, 4rem);
      max-width: 700px;
      margin: 0 auto 1rem;
    }

    .join-subtitle {
      font-size: 1.2rem;
      color: rgba(253, 246, 236, 0.8);
      margin-bottom: 3rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .join-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-join {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--white);
      color: var(--crimson);
      padding: 1.1rem 2.5rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .btn-join:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .btn-join-alt {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--cream);
      padding: 1.1rem 2.5rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      border: 2px solid rgba(253, 246, 236, 0.3);
      transition: all 0.3s ease;
    }

    .btn-join-alt:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
      transform: translateY(-3px);
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--charcoal);
      color: rgba(253, 246, 236, 0.5);
      padding: 3rem 2rem;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }

    footer p {
      font-size: 0.85rem;
      line-height: 1.8;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 2rem;
      justify-content: center;
      margin-top: 1.5rem;
    }

    .footer-links a {
      color: rgba(253, 246, 236, 0.5);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }

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

    /* ═══════════════════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about-visual {
        aspect-ratio: 3/2;
        max-width: 400px;
        margin: 0 auto;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .rehearsal-card {
        grid-template-columns: 1fr;
      }

      .rehearsal-map {
        border-radius: 0 0 24px 24px;
        min-height: 300px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .director-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
      }

      .director-avatar {
        margin: 0 auto;
      }

      .director-info p {
        margin: 0 auto;
      }

      .director-credentials {
        justify-content: center;
      }
    }

    /* The link row needs ~880px on its own, so hand off to the
       mobile menu well before the logo and links start colliding. */
    @media (max-width: 950px) {
      nav {
        padding: 0.8rem 1.2rem;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(253, 246, 236, 0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        color: var(--charcoal) !important;
        font-size: 1rem;
      }

      .mobile-toggle {
        display: flex;
      }
    }

    @media (max-width: 700px) {
      section {
        padding: 4rem 1.5rem;
      }

      .rehearsal-info {
        padding: 2rem;
      }

      .director-card {
        padding: 2rem;
      }

      .about-highlight {
        flex-direction: column;
        align-items: center;
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
      }
    }
    /* ═══════════════════════════════════════
       REPERTOIRE
    ═══════════════════════════════════════ */
    .repertoire {
      background: var(--cream);
      position: relative;
    }

    .repertoire-intro {
      font-size: 1.1rem;
      color: var(--warm-gray);
      max-width: 640px;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    .repertoire-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .repertoire-card {
      background: var(--white);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      border: 1px solid transparent;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .repertoire-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      opacity: 0;
      transition: opacity 0.35s;
    }

    .repertoire-card:hover {
      border-color: var(--cream-dark);
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    }

    .repertoire-card:hover::after {
      opacity: 1;
    }

    .repertoire-card-icon {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 1rem;
      line-height: 1;
    }

    .repertoire-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.25rem;
      line-height: 1.2;
    }

    .repertoire-card .repertoire-subtitle {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 0.85rem;
    }

    .repertoire-card p {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--warm-gray);
    }

    .repertoire-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .repertoire-tag {
      background: var(--cream);
      color: var(--warm-gray);
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .repertoire-tag.tag-polish {
      background: rgba(184, 36, 42, 0.08);
      color: var(--crimson-dark);
    }

    .repertoire-tag.tag-neighboring {
      background: rgba(26, 92, 56, 0.09);
      color: var(--forest);
    }

    @media (max-width: 900px) {
      .repertoire-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .repertoire-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════════════
       GROUP PHOTO
    ═══════════════════════════════════════ */
    .group-photo {
      background: var(--white);
    }

    .photo-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: var(--cream-dark);
      box-shadow: 0 10px 40px rgba(0,0,0,0.10);
      line-height: 0;
    }

    .photo-frame img {
      display: block;
      width: 100%;
      height: auto;
    }

    .photo-caption {
      font-family: 'Caveat', cursive;
      font-size: 1.3rem;
      color: var(--warm-gray-light);
      text-align: center;
      margin-top: 1.2rem;
      line-height: 1.4;
    }

    /* ═══════════════════════════════════════
       PYRKI — KIDS GROUP
    ═══════════════════════════════════════ */
    .pyrki {
      background: var(--white);
    }

    .pyrki-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
      border-radius: 24px;
      padding: 3rem;
      color: var(--cream);
      box-shadow: 0 10px 40px rgba(26, 92, 56, 0.18);
    }

    .pyrki-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 0.35rem 0.95rem;
      border-radius: 100px;
      margin-bottom: 1.1rem;
    }

    .pyrki-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.4rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 0.9rem;
      color: var(--white);
    }

    .pyrki-card > div > p {
      font-size: 1rem;
      line-height: 1.75;
      color: rgba(253, 246, 236, 0.88);
      margin-bottom: 1.2rem;
    }

    .pyrki-name-note {
      background: rgba(0,0,0,0.18);
      border-left: 3px solid var(--gold);
      border-radius: 0 12px 12px 0;
      padding: 1rem 1.25rem;
      font-size: 0.92rem !important;
      line-height: 1.7;
      margin-bottom: 0 !important;
    }

    .pyrki-name-note strong {
      color: var(--gold-light);
    }

    .pyrki-details {
      display: grid;
      gap: 1rem;
    }

    .pyrki-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 16px;
      padding: 1.2rem 1.4rem;
    }

    .pyrki-detail-icon {
      font-size: 1.5rem;
      line-height: 1.2;
      flex-shrink: 0;
    }

    .pyrki-detail h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
      color: var(--white);
    }

    .pyrki-detail p {
      font-size: 0.9rem;
      line-height: 1.55;
      color: rgba(253, 246, 236, 0.78);
    }

    .pyrki-actions {
      margin-top: 1.4rem;
    }

    .btn-pyrki {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold);
      color: var(--charcoal);
      padding: 0.85rem 1.8rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.98rem;
      transition: all 0.3s ease;
    }

    .btn-pyrki:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

    @media (max-width: 900px) {
      .pyrki-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
      }
    }

    /* ═══════════════════════════════════════
       DONATE — ZEFFY EMBED
    ═══════════════════════════════════════ */
    .donate {
      background: var(--cream);
    }

    .donate-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 3.5rem;
      align-items: start;
      margin-top: 2rem;
    }

    .donate-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--warm-gray);
      margin-bottom: 1.2rem;
    }

    .donate-uses {
      list-style: none;
      margin-top: 1.8rem;
      display: grid;
      gap: 0.9rem;
    }

    .donate-uses li {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      font-size: 0.97rem;
      line-height: 1.6;
      color: var(--warm-gray);
    }

    .donate-uses li span {
      font-size: 1.2rem;
      line-height: 1.3;
      flex-shrink: 0;
    }

    .donate-note {
      margin-top: 2rem;
      padding: 1.1rem 1.3rem;
      background: var(--white);
      border-left: 3px solid var(--gold);
      border-radius: 0 12px 12px 0;
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--warm-gray-light);
    }

    .donate-embed {
      background: var(--white);
      border-radius: 24px;
      padding: 0.75rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    }

    .zeffy-wrap {
      position: relative;
      width: 100%;
      /* Tall enough that the Zeffy form doesn't get its own inner scrollbar */
      height: clamp(720px, 88vh, 920px);
      overflow: hidden;
      border-radius: 18px;
    }

    .zeffy-wrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .donate-fallback {
      text-align: center;
      font-size: 0.82rem;
      color: var(--warm-gray-light);
      padding: 0.75rem 0.5rem 0.25rem;
    }

    .donate-fallback a {
      color: var(--crimson);
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .donate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* ═══════════════════════════════════════
       NEWSLETTER — ZEFFY EMBED
    ═══════════════════════════════════════ */
    .newsletter {
      background: var(--white);
      padding: 5rem 2rem;
      text-align: center;
    }

    .newsletter .section-title {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-intro {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--warm-gray);
      max-width: 540px;
      margin: 0 auto 2.5rem;
    }

    .newsletter-embed {
      max-width: 620px;
      margin: 0 auto;
      background: var(--cream);
      border-radius: 24px;
      padding: 0.75rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    }

    .zeffy-newsletter-wrap {
      position: relative;
      width: 100%;
      /* Bump this if the form ever gets an inner scrollbar */
      height: 460px;
      overflow: hidden;
      border-radius: 18px;
    }

    .zeffy-newsletter-wrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Keep the nav on one line as the link list grew */
    @media (max-width: 1150px) and (min-width: 951px) {
      .nav-links {
        gap: 1.25rem;
      }

      .nav-links a {
        font-size: 0.82rem;
      }
    }

    /* ═══════════════════════════════════════
       PYRKI TEASER (homepage card linking to /pyrki)
    ═══════════════════════════════════════ */
    .pyrki-teaser {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2.25rem;
      align-items: center;
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
      border-radius: 24px;
      padding: 2.5rem 3rem;
      color: var(--cream);
      box-shadow: 0 10px 40px rgba(26, 92, 56, 0.18);
    }

    .pyrki-teaser-emoji {
      font-size: 3.5rem;
      line-height: 1;
    }

    .pyrki-teaser h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .pyrki-teaser p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: rgba(253, 246, 236, 0.88);
    }

    .pyrki-teaser .btn-pyrki {
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .pyrki-teaser {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 1.25rem;
        justify-items: center;
      }
    }

    /* ═══════════════════════════════════════
       SUBPAGES (/pyrki, /donate)
       No dark hero behind the nav, so it stays
       in its solid state at every scroll position.
    ═══════════════════════════════════════ */
    nav.nav-solid {
      background: rgba(253, 246, 236, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }

    nav.nav-solid .nav-logo {
      color: var(--crimson);
    }

    nav.nav-solid .nav-links a {
      color: var(--warm-gray);
    }

    nav.nav-solid .nav-links a.nav-cta {
      color: var(--white) !important;
    }

    nav.nav-solid .mobile-toggle span {
      background: var(--charcoal);
    }

    .page-header {
      padding: 9rem 2rem 4.5rem;
      text-align: center;
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .page-header.ph-green {
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 55%, var(--crimson-dark) 100%);
    }

    .page-header.ph-red {
      background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--forest) 100%);
    }

    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 25% 60%, rgba(212, 168, 67, 0.20) 0%, transparent 50%),
        radial-gradient(circle at 75% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
    }

    .page-header-content {
      position: relative;
      z-index: 1;
    }

    .page-header .section-label {
      color: var(--gold-light);
    }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2.4rem, 6vw, 4rem);
      line-height: 1.03;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .page-header p {
      max-width: 620px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(253, 246, 236, 0.85);
    }

    .breadcrumb {
      margin-top: 1.75rem;
      font-size: 0.85rem;
      color: rgba(253, 246, 236, 0.6);
    }

    .breadcrumb a {
      color: var(--gold-light);
      text-decoration: none;
      font-weight: 600;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    @media (max-width: 700px) {
      .page-header {
        padding: 7rem 1.5rem 3.5rem;
      }
    }

    /* ═══════════════════════════════════════
       EVENTS
       Shared by the homepage "Upcoming Events"
       section and the standalone /events page.
    ═══════════════════════════════════════ */
    .events {
      background: var(--white);
    }

    .events-intro {
      font-size: 1.1rem;
      color: var(--warm-gray);
      max-width: 640px;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    /* ── Featured event (the fundraiser) ── */
    .event-featured {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      align-items: center;
      gap: 2.75rem;
      padding: 2.75rem;
      border-radius: 24px;
      background: linear-gradient(150deg, #0B2318 0%, var(--forest) 58%, #0E2C1D 100%);
      box-shadow: 0 18px 50px rgba(11, 35, 24, 0.28);
    }

    .event-poster {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
      transition: transform 0.4s ease;
    }

    .event-poster:hover {
      transform: translateY(-4px);
    }

    .event-poster img {
      display: block;
      width: 100%;
      height: auto;
    }

    .event-featured-body {
      color: var(--cream);
    }

    .event-flag {
      display: inline-block;
      font-family: 'Caveat', cursive;
      font-size: 1.15rem;
      color: var(--gold-light);
      border: 1px solid rgba(212, 168, 67, 0.45);
      border-radius: 50px;
      padding: 0.15rem 1rem;
      margin-bottom: 1rem;
    }

    .event-featured-body h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .event-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.15rem;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }

    .event-featured-body > p {
      font-size: 0.98rem;
      line-height: 1.75;
      color: rgba(253, 246, 236, 0.85);
      margin-bottom: 1.5rem;
    }

    .event-facts {
      list-style: none;
      display: grid;
      gap: 0.85rem;
      margin-bottom: 1.4rem;
    }

    .event-facts li {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }

    .event-facts-icon {
      font-size: 1.05rem;
      line-height: 1.45;
      flex-shrink: 0;
    }

    .event-facts strong {
      display: block;
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.1rem;
    }

    .event-facts-sub {
      font-size: 0.87rem;
      line-height: 1.55;
      color: rgba(253, 246, 236, 0.7);
    }

    .event-sponsor {
      font-size: 0.87rem;
      line-height: 1.6;
      color: rgba(253, 246, 236, 0.75);
      border-top: 1px solid rgba(212, 168, 67, 0.28);
      padding-top: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .event-sponsor strong {
      color: var(--gold-light);
      font-weight: 600;
    }

    .event-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .btn-tickets {
      display: inline-block;
      padding: 0.9rem 1.9rem;
      background: var(--gold);
      color: #1B1205;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(212, 168, 67, 0.28);
    }

    .btn-tickets:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 168, 67, 0.38);
    }

    .btn-event-ghost {
      display: inline-block;
      padding: 0.9rem 1.7rem;
      border: 1.5px solid rgba(253, 246, 236, 0.45);
      color: var(--cream);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .btn-event-ghost:hover {
      background: rgba(253, 246, 236, 0.12);
      border-color: var(--cream);
    }

    /* ── Secondary event cards ── */
    .event-list {
      display: grid;
      gap: 1.25rem;
      margin-top: 1.5rem;
    }

    .event-card {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.75rem;
      align-items: center;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: 20px;
      padding: 1.75rem 2rem;
      transition: all 0.35s ease;
    }

    .event-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
      border-color: var(--gold);
    }

    .event-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 76px;
      height: 76px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
      color: var(--white);
      flex-shrink: 0;
    }

    .event-date-month {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      opacity: 0.9;
    }

    .event-date-day {
      font-family: 'Playfair Display', serif;
      font-size: 1.85rem;
      font-weight: 900;
      line-height: 1.05;
    }

    .event-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      background: var(--forest);
      color: var(--cream);
      margin-bottom: 0.6rem;
    }

    .event-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--charcoal);
      margin-bottom: 0.35rem;
    }

    .event-card p {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--warm-gray);
    }

    .event-where {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--warm-gray-light);
      margin-top: 0.6rem;
    }

    .event-where strong {
      color: var(--warm-gray);
      font-weight: 600;
    }

    .btn-event {
      display: inline-block;
      padding: 0.8rem 1.6rem;
      background: var(--crimson);
      color: var(--white);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .btn-event:hover {
      background: var(--crimson-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(184, 36, 42, 0.3);
    }

    /* ── Ticketing band (/events) ── */
    .tickets {
      background: var(--cream);
      text-align: center;
    }

    .tickets .section-title {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .tickets-intro {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--warm-gray);
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }

    /* ── Ticketing embed (/events) ── */
    .ticket-embed {
      max-width: 760px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 24px;
      padding: 0.75rem;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    }

    .zeffy-ticket-wrap {
      position: relative;
      width: 100%;
      /* Tall enough that the Zeffy form doesn't get its own inner scrollbar */
      height: clamp(780px, 92vh, 1000px);
      overflow: hidden;
      border-radius: 18px;
    }

    .zeffy-ticket-wrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 900px) {
      .event-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.75rem;
      }

      .event-poster {
        max-width: 420px;
        margin: 0 auto;
      }

      .event-card {
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
      }

      .event-card .btn-event {
        grid-column: 1 / -1;
        justify-self: start;
      }
    }

    @media (max-width: 600px) {
      .event-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
      }

      .event-actions .btn-tickets,
      .event-actions .btn-event-ghost {
        width: 100%;
        text-align: center;
      }
    }
