/* ── SCOPED RESET (only inside .tours-events-section) ── */
    .tours-events-section,
    .tours-events-section *,
    .tours-events-section *::before,
    .tours-events-section *::after {
      box-sizing: border-box;
    }
    .tours-events-section img,
    .tours-events-section svg {
      max-width: 100%;
      display: block;
    }

    /* ── FULL-WIDTH SECTION ── */
    .tours-events-section {
      width: 100%;
      background: #0D0E0A;
      color: #F3EFE3;
      font-family: "Bitter", Georgia, serif;
      border-top: 1px solid #2A2B24;
      border-bottom: 1px solid #2A2B24;
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
      /* Prevent section from trapping vertical touch-scroll on mobile */
      touch-action: pan-y;
    }

    /* ── CENTERED CONTAINER ── */
    .tours-events-container {
      width: 100%;
      max-width: 1216px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ── CONTENT WRAPPER ── */
    .tours-events-content {
      width: 100%;
    }

    /* ── HEADER ROW ── */
    .te-header-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .te-header-left {
      flex: 1 1 360px;
      min-width: 0;
    }

    .te-eyebrow {
      font-family: "JetBrains Mono", monospace;
      font-size: 12.5px;
      letter-spacing: 3.12px;
      color: #5DBA63;
      margin: 0 0 20px;
      text-transform: uppercase;
    }

    .te-headline {
      font-family: "Archivo Black", sans-serif;
      font-size: 72px;
      line-height: 0.95;
      letter-spacing: -2px;
      color: #F3EFE3;
      margin: 0 0 24px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .te-subhead {
      font-family: "Bitter", serif;
      font-size: 17px;
      line-height: 1.65;
      color: #A8A393;
      max-width: 480px;
      margin: 0;
    }

    .te-header-right {
      flex: 0 1 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      padding-bottom: 4px;
    }

    .te-event-count {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      letter-spacing: 2px;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-filter-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .te-filter-btn {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      letter-spacing: 1.5px;
      padding: 7px 14px;
      border: 1px solid #2A2B24;
      background: transparent;
      color: #A8A393;
      cursor: pointer;
      text-transform: uppercase;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .te-filter-btn.active,
    .te-filter-btn:hover {
      border-color: #5DBA63;
      color: #5DBA63;
    }
    .te-filter-btn.active {
      background: rgba(93, 186, 99, 0.06);
    }

    /* ── SCROLL TRACK ── */
    .te-scroll-outer {
      position: relative;
    }
    .te-scroll-outer::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 16px;
      width: 100px;
      background: linear-gradient(to right, transparent, #0D0E0A);
      pointer-events: none;
      z-index: 2;
    }

    .te-card-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 16px;
      cursor: grab;
      scrollbar-width: none;
      -ms-overflow-style: none;
      /* Allow vertical page scroll while horizontal swipe navigates cards */
      touch-action: pan-y;
    }
    .te-card-track::-webkit-scrollbar {
      display: none;
    }
    .te-card-track.dragging {
      cursor: grabbing;
      user-select: none;
    }

    /* ── EVENT CARD ── */
    .te-event-card {
      flex: 0 0 340px;
      max-width: 340px;
      background: #14150F;
      border: 1px solid #2A2B24;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.18s;
      position: relative;
      overflow: hidden;
      min-height: 460px;
      touch-action: manipulation;
    }
    .te-event-card:hover {
      border-color: #5DBA63;
      transform: translateY(-4px);
    }
    .te-event-card.tba {
      opacity: 0.72;
    }
    .te-event-card.tba:hover {
      opacity: 1;
    }

    .te-card-accent {
      height: 3px;
      width: 100%;
    }
    .te-card-accent.green {
      background: #5DBA63;
    }
    .te-card-accent.orange {
      background: #FF5B1F;
    }
    .te-card-accent.dim {
      background: #2A2B24;
    }

    .te-card-watermark {
      position: absolute;
      top: 14px;
      right: 16px;
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.12);
      z-index: 1;
    }

    .te-card-top {
      padding: 22px 24px 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .te-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      width: fit-content;
    }
    .te-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .te-status-badge.upcoming .te-status-dot { background: #5DBA63; }
    .te-status-badge.upcoming { color: #5DBA63; }
    .te-status-badge.tba .te-status-dot { background: #A8A393; }
    .te-status-badge.tba { color: #A8A393; }
    .te-status-badge.sold-out .te-status-dot { background: #FF5B1F; }
    .te-status-badge.sold-out { color: #FF5B1F; }

    .te-event-title {
      font-family: "Archivo Black", sans-serif;
      font-size: 20px;
      line-height: 1.15;
      color: #F3EFE3;
      letter-spacing: -0.3px;
      font-weight: 900;
    }

    .te-event-meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .te-event-date {
      font-family: "JetBrains Mono", monospace;
      font-size: 11.5px;
      letter-spacing: 1px;
      color: #EDE7D3;
    }
    .te-event-location {
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-event-divider {
      height: 1px;
      background: #2A2B24;
      margin: 0 24px;
    }

    .te-event-body {
      padding: 16px 24px;
      flex: 1;
    }

    .te-event-desc {
      font-family: "Bitter", serif;
      font-size: 14.5px;
      line-height: 1.65;
      color: #A8A393;
      margin: 0;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .te-event-tags {
      padding: 0 24px 16px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .te-event-tag {
      font-family: "JetBrains Mono", monospace;
      font-size: 9.5px;
      letter-spacing: 1.5px;
      padding: 3px 9px 4px;
      border: 1px solid #2A2B24;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-capacity-row {
      padding: 0 24px 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .te-capacity-label {
      display: flex;
      justify-content: space-between;
      font-family: "JetBrains Mono", monospace;
      font-size: 9.5px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
      gap: 8px;
    }
    .te-capacity-bar-bg {
      height: 3px;
      background: #2A2B24;
      width: 100%;
    }
    .te-capacity-bar-fill {
      height: 100%;
      background: #5DBA63;
      transition: width 0.4s ease;
    }
    .te-capacity-bar-fill.orange {
      background: #FF5B1F;
    }

    .te-flyer-row {
      padding: 0 24px 12px;
    }
    .te-flyer-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: 1px solid #2A2B24;
      color: #5DBA63;
      font-family: "JetBrains Mono", monospace;
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 12px;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }
    .te-flyer-btn:hover {
      border-color: #5DBA63;
      background: rgba(93, 186, 99, 0.06);
    }
    .te-flyer-btn svg {
      flex-shrink: 0;
    }

    .te-card-footer {
      padding: 16px 24px;
      border-top: 1px solid #2A2B24;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .te-rsvp-btn {
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: #5DBA63;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: uppercase;
      padding: 0;
      transition: opacity 0.15s;
      box-shadow: none !important;
    }
    .te-rsvp-btn:hover {
      opacity: 0.72;
      box-shadow: none !important;
    }
    .te-rsvp-btn:disabled {
      color: #54524A;
      cursor: not-allowed;
      opacity: 1;
    }

    .te-spots-left {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1px;
      color: #54524A;
      text-transform: uppercase;
    }
    .te-spots-left.urgent {
      color: #FF5B1F;
    }

    /* ── SCROLL NAV ── */
    .te-scroll-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 32px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .te-scroll-nav-left {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .te-scroll-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .te-dot {
      width: 6px;
      height: 6px;
      background: #2A2B24;
      transition: background 0.2s, width 0.2s;
      cursor: pointer;
    }
    .te-dot.active {
      background: #5DBA63;
      width: 20px;
    }
    .te-scroll-arrows {
      display: flex;
      gap: 8px;
    }
    .te-arrow-btn {
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid #2A2B24;
      color: #A8A393;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s, color 0.15s;
      font-family: inherit;
    }
    .te-arrow-btn:hover {
      border-color: #5DBA63;
      color: #5DBA63;
    }
    .te-arrow-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    .te-card-count-label {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      letter-spacing: 2px;
      color: #54524A;
      text-transform: uppercase;
    }

    /* ── VIEW ALL ROW ── */
    .te-view-all-row {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-top: 48px;
    }
    .te-view-all-divider {
      flex: 1;
      height: 1px;
      background: #2A2B24;
    }
    .te-view-all-btn {
      font-family: "JetBrains Mono", monospace;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #F3EFE3;
      background: #1A1B15;
      border: 1px solid #2A2B24;
      padding: 16px 32px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      transition: border-color 0.18s, color 0.18s, background 0.18s;
      flex-shrink: 0;
    }
    .te-view-all-btn:hover {
      border-color: #5DBA63;
      color: #5DBA63;
      background: rgba(93, 186, 99, 0.06);
    }

    /* ── MODAL BACKDROP ── */
    .te-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(13, 14, 10, 0.94);
      z-index: 1100;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      padding: 16px;
    }
    .te-modal-backdrop.open {
      opacity: 1;
      pointer-events: all;
    }

    /* ── RSVP MODAL ── */
    .te-rsvp-modal {
      width: 100%;
      max-width: 780px;
      max-height: 90vh;
      background: #14150F;
      border: 1px solid #2A2B24;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      transform: translateY(28px);
      transition: transform 0.25s ease;
    }
    .te-modal-backdrop.open .te-rsvp-modal {
      transform: translateY(0);
    }

    .te-modal-header {
      padding: 28px 36px 24px;
      border-bottom: 1px solid #2A2B24;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      flex-shrink: 0;
      flex-wrap: wrap;
    }
    .te-modal-header-left {
      flex: 1 1 240px;
      min-width: 0;
    }
    .te-modal-event-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 2px;
      color: #5DBA63;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .te-modal-event-badge .te-dot-sm {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #5DBA63;
    }
    .te-modal-event-title {
      font-family: "Archivo Black", sans-serif;
      font-size: 22px;
      color: #F3EFE3;
      letter-spacing: -0.3px;
      line-height: 1.1;
      margin-bottom: 6px;
      font-weight: 900;
    }
    .te-modal-event-meta {
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      letter-spacing: 1px;
      color: #54524A;
    }

    .te-step-progress {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }
    .te-step-pip {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .te-step-circle {
      width: 28px;
      height: 28px;
      border: 1px solid #2A2B24;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      color: #54524A;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .te-step-circle.active {
      border-color: #5DBA63;
      color: #5DBA63;
    }
    .te-step-circle.done {
      border-color: #5DBA63;
      background: #5DBA63;
      color: #1A1B15;
    }
    .te-step-label {
      font-family: "JetBrains Mono", monospace;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .te-step-label.active {
      color: #5DBA63;
    }
    .te-step-connector {
      width: 32px;
      height: 1px;
      background: #2A2B24;
      margin: 0 4px 22px;
      flex-shrink: 0;
    }
    .te-step-connector.done {
      background: #5DBA63;
    }

    .te-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      background: #1A1B15;
      border: 1px solid #2A2B24;
      color: #A8A393;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s, color 0.15s;
      line-height: 1;
      z-index: 3;
    }
    .te-modal-close:hover {
      border-color: #5DBA63;
      color: #F3EFE3;
    }

    .te-modal-body {
      flex: 1;
      overflow-y: auto;
      padding: 32px 36px;
    }
    .te-modal-body::-webkit-scrollbar {
      width: 4px;
    }
    .te-modal-body::-webkit-scrollbar-track {
      background: #1A1B15;
    }
    .te-modal-body::-webkit-scrollbar-thumb {
      background: #2A2B24;
    }

    .te-modal-footer {
      padding: 20px 36px;
      border-top: 1px solid #2A2B24;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      background: #14150F;
      gap: 16px;
      flex-wrap: wrap;
    }

    .te-footer-note {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1px;
      color: #54524A;
      flex: 1 1 200px;
      min-width: 0;
    }

    .te-footer-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .te-btn-primary {
      font-family: "JetBrains Mono", monospace;
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: 1.5px;
      padding: 14px 28px;
      background: #5DBA63;
      color: #1A1B15;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      transition: opacity 0.15s;


      display: flex;
      align-items: center;
      gap: 8px;
    }
    .te-btn-primary:hover {
      opacity: 0.85;
    }
    .te-btn-primary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .te-btn-ghost {
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      letter-spacing: 1.5px;
      padding: 14px 20px;
      background: transparent;
      color: #A8A393;
      border: 1px solid #2A2B24;
      cursor: pointer;
      text-transform: uppercase;
      transition: border-color 0.15s, color 0.15s;
    }
    .te-btn-ghost:hover {
      border-color: #5DBA63;
      color: #F3EFE3;
    }

    /* ── FORM STYLES ── */
    .te-form-section-title {
      font-family: "Archivo Black", sans-serif;
      font-size: 15px;
      color: #F3EFE3;
      letter-spacing: 0.2px;
      margin-bottom: 20px;
      font-weight: 900;
    }

    .te-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .te-field-row.full {
      grid-template-columns: 1fr;
    }
    .te-field-row.three {
      grid-template-columns: 1fr 1fr 1fr;
    }

    .te-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
      min-width: 0;
    }

    .te-field label {
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-field input,
    .te-field select,
    .te-field textarea {
      background: #1A1B15;
      border: 1px solid #2A2B24;
      color: #F3EFE3;
      font-family: "Bitter", serif;
      font-size: 15px;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.15s;
      width: 100%;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .te-field input:focus,
    .te-field select:focus,
    .te-field textarea:focus {
      border-color: #5DBA63;
    }
    .te-field input::placeholder,
    .te-field textarea::placeholder {
      color: #54524A;
    }
    .te-field select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2354524A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .te-checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      cursor: pointer;
    }
    .te-checkbox-row input[type="checkbox"] {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
      border: 1px solid #2A2B24;
      background: #1A1B15;
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      position: relative;
      transition: border-color 0.15s;
    }
    .te-checkbox-row input[type="checkbox"]:checked {
      background: #5DBA63;
      border-color: #5DBA63;
    }
    .te-checkbox-row input[type="checkbox"]:checked::after {
      content: "✓";
      position: absolute;
      color: #1A1B15;
      font-size: 12px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: bold;
    }
    .te-checkbox-label {
      font-family: "Bitter", serif;
      font-size: 14px;
      line-height: 1.5;
      color: #A8A393;
    }
    .te-checkbox-label strong {
      color: #EDE7D3;
    }

    .te-form-divider {
      height: 1px;
      background: #2A2B24;
      margin: 28px 0;
    }

    /* ── DONATION TILES ── */
    .te-donation-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 16px;
    }
    .te-donation-tile {
      border: 1px solid #2A2B24;
      background: #1A1B15;
      padding: 16px 12px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      transition: border-color 0.15s, background 0.15s;
    }
    .te-donation-tile:hover {
      border-color: #5DBA63;
    }
    .te-donation-tile.selected {
      border-color: #5DBA63;
      background: rgba(93, 186, 99, 0.07);
    }
    .te-donation-tile.none-tile.selected {
      border-color: #2A2B24;
      background: #1A1B15;
    }
    .te-donation-amount {
      font-family: "Archivo Black", sans-serif;
      font-size: 20px;
      color: #F3EFE3;
      line-height: 1;
      font-weight: 900;
    }
    .te-donation-tile.selected .te-donation-amount {
      color: #5DBA63;
    }
    .te-donation-tile.none-tile.selected .te-donation-amount {
      color: #A8A393;
    }
    .te-donation-sublabel {
      font-family: "JetBrains Mono", monospace;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-donation-tile-wide {
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .te-donation-tile-wide.selected {
      border-color: #5DBA63;
      background: rgba(93, 186, 99, 0.07);
    }
    .te-donation-tile-wide.selected .te-donation-amount {
      color: #5DBA63;
    }

    .te-custom-amount-row {
      display: none;
      margin-bottom: 20px;
    }
    .te-custom-amount-row.visible {
      display: block;
    }

    .te-payment-section {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .te-payment-section.expanded {
      max-height: 600px;
      opacity: 1;
    }

    .te-payment-label-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .te-payment-label {
      font-family: "Archivo Black", sans-serif;
      font-size: 15px;
      color: #F3EFE3;
      font-weight: 900;
    }
    .te-secure-badge {
      font-family: "JetBrains Mono", monospace;
      font-size: 9.5px;
      letter-spacing: 1.5px;
      color: #54524A;
      border: 1px solid #2A2B24;
      padding: 3px 8px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .te-secure-dot {
      width: 5px;
      height: 5px;
      background: #5DBA63;
      border-radius: 50%;
    }

    .te-card-input-wrap {
      position: relative;
    }
    .te-card-input-icon {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #54524A;
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1px;
    }

    .te-impact-row {
      display: flex;
      gap: 0;
      border: 1px solid #2A2B24;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .te-impact-cell {
      flex: 1 1 33%;
      padding: 14px 16px;
      border-right: 1px solid #2A2B24;
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }
    .te-impact-cell:last-child {
      border-right: none;
    }
    .te-impact-val {
      font-family: "Archivo Black", sans-serif;
      font-size: 16px;
      color: #5DBA63;
      line-height: 1;
      font-weight: 900;
    }
    .te-impact-label {
      font-family: "JetBrains Mono", monospace;
      font-size: 9.5px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
    }

    /* ── CONFIRMATION SCREEN ── */
    .te-confirmation {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 8px 0;
    }
    .te-confirm-icon {
      width: 64px;
      height: 64px;
      border: 2px solid #5DBA63;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #5DBA63;
    }
    .te-confirm-title {
      font-family: "Archivo Black", sans-serif;
      font-size: 28px;
      color: #F3EFE3;
      letter-spacing: -0.5px;
      line-height: 1.1;
      font-weight: 900;
    }
    .te-confirm-sub {
      font-family: "Bitter", serif;
      font-size: 16px;
      line-height: 1.6;
      color: #A8A393;
      max-width: 440px;
    }

    .te-ticket-block {
      width: 100%;
      border: 1px solid #2A2B24;
      background: #1A1B15;
      padding: 0;
      overflow: hidden;
      position: relative;
    }
    .te-ticket-top {
      padding: 20px 24px;
      border-bottom: 1px dashed #2A2B24;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .te-ticket-event-name {
      font-family: "Archivo Black", sans-serif;
      font-size: 16px;
      color: #F3EFE3;
      letter-spacing: -0.2px;
      font-weight: 900;
    }
    .te-ticket-meta {
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 1px;
      color: #54524A;
      margin-top: 4px;
    }
    .te-ticket-code {
      font-family: "JetBrains Mono", monospace;
      font-size: 18px;
      letter-spacing: 3px;
      color: #5DBA63;
      white-space: nowrap;
    }
    .te-ticket-bottom {
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .te-ticket-attendee {
      font-family: "JetBrains Mono", monospace;
      font-size: 10.5px;
      letter-spacing: 1px;
      color: #A8A393;
    }
    .te-ticket-donation-tag {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1.5px;
      padding: 3px 9px;
      background: rgba(93, 186, 99, 0.12);
      border: 1px solid #5DBA63;
      color: #5DBA63;
      text-transform: uppercase;
    }
    .te-ticket-free {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1px;
      color: #54524A;
      text-transform: uppercase;
    }

    .te-confirm-actions {
      display: flex;
      gap: 10px;
      width: 100%;
      flex-wrap: wrap;
    }
    .te-confirm-actions .te-btn-primary,
    .te-confirm-actions .te-btn-ghost {
      flex: 1 1 160px;
      justify-content: center;
    }

    .te-receipt-note {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 1.5px;
      color: #54524A;
      text-transform: uppercase;
      text-align: center;
    }

    .te-donation-receipt {
      width: 100%;
      border: 1px solid #2A2B24;
      padding: 16px 20px;
      background: rgba(93, 186, 99, 0.04);
      text-align: left;
    }
    .te-donation-receipt-title {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 2px;
      color: #5DBA63;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .te-donation-receipt-body {
      font-family: "Bitter", serif;
      font-size: 14px;
      color: #A8A393;
      line-height: 1.6;
    }
    .te-donation-receipt-body strong {
      color: #EDE7D3;
    }

    .te-optin-box {
      width: 100%;
      border: 1px solid #2A2B24;
      padding: 16px 20px;
      background: rgba(93, 186, 99, 0.04);
      display: flex;
      align-items: flex-start;
      gap: 14px;
      text-align: left;
    }
    .te-optin-icon {
      width: 32px;
      height: 32px;
      border: 1px solid #2A2B24;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #5DBA63;
      font-size: 14px;
      margin-top: 2px;
    }
    .te-optin-text {
      font-family: "Bitter", serif;
      font-size: 13.5px;
      line-height: 1.55;
      color: #A8A393;
    }
    .te-optin-text strong {
      color: #EDE7D3;
    }

    .te-step2-intro {
      font-family: "Bitter", serif;
      font-size: 14.5px;
      line-height: 1.6;
      color: #A8A393;
      margin-bottom: 20px;
    }

    /* ════════════════════════════════════════
       RESPONSIVE - TABLET (≤ 1024px)
       ════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .tours-events-section {
        padding: 80px 0 64px;
      }
      .te-headline {
        font-size: 60px;
      }
      .te-header-row {
        margin-bottom: 48px;
      }
    }

    /* ════════════════════════════════════════
       RESPONSIVE - TABLET / SMALL (≤ 768px)
       ════════════════════════════════════════ */
    @media (max-width: 768px) {
      .tours-events-section {
        padding: 64px 0 56px;
      }
      .tours-events-container {
        padding: 0 24px;
      }
      .te-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 40px;
      }
      .te-header-left {
        flex: 0 1 auto;
      }
      .te-header-right {
        align-items: flex-start;
        width: 100%;
      }
      .te-filter-row {
        justify-content: flex-start;
      }
      .te-headline {
        font-size: 48px;
        letter-spacing: -1.5px;
      }
      .te-subhead {
        font-size: 16px;
      }

      .te-view-all-row {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
      }
      .te-view-all-divider {
        width: 100%;
        flex: 0 0 1px;
      }
      .te-view-all-btn {
        width: 100%;
        justify-content: center;
      }

      .te-modal-header {
        padding: 24px 24px 20px 24px;
      }
      .te-modal-body {
        padding: 24px;
      }
      .te-modal-footer {
        padding: 16px 24px;
      }
      .te-step-progress {
        width: 100%;
        justify-content: flex-start;
      }
      .te-step-connector {
        width: 24px;
      }

      .te-field-row,
      .te-field-row.three {
        grid-template-columns: 1fr;
      }
      .te-donation-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ════════════════════════════════════════
       RESPONSIVE - MOBILE (≤ 480px)
       ════════════════════════════════════════ */
    @media (max-width: 480px) {
      .tours-events-section {
        padding: 56px 0 48px;
      }
      .tours-events-container {
        padding: 0 20px;
      }
      .te-headline {
        font-size: 40px;
        letter-spacing: -1px;
      }
      .te-eyebrow {
        font-size: 11.5px;
        letter-spacing: 2.5px;
      }

      .te-event-card {
        flex: 0 0 280px;
        max-width: 280px;
        min-height: 440px;
      }

      .te-scroll-nav {
        flex-direction: column;
        align-items: stretch;
      }
      .te-scroll-nav-left {
        justify-content: space-between;
      }
      .te-scroll-arrows {
        justify-content: flex-end;
      }

      .te-view-all-btn {
        padding: 14px 20px;
        font-size: 12px;
      }

      .te-modal-backdrop {
        padding: 24px 12px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
      }
      .te-rsvp-modal {
        max-height: none;
        height: auto;
        border: 1px solid #2A2B24;
        margin: auto 0;
      }
      .te-modal-header {
        padding: 20px 20px 16px 20px;
      }
      .te-modal-body {
        padding: 20px;
        overflow-y: visible;
      }
      .te-modal-footer {
        padding: 8px 20px 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }
      .te-footer-note {
        font-size: 8.5px;
        margin: 0;
        line-height: 1.3;
      }
      .te-footer-actions {
        width: 100%;
      }
      .te-footer-actions .te-btn-primary,
      .te-footer-actions .te-btn-ghost {
        flex: 1;
        justify-content: center;
      }
      .te-modal-event-title {
        font-size: 20px;
      }

      .te-donation-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .te-impact-row {
        flex-direction: column;
      }
      .te-impact-cell {
        border-right: none;
        border-bottom: 1px solid #2A2B24;
      }
      .te-impact-cell:last-child {
        border-bottom: none;
      }

      .te-confirm-title {
        font-size: 24px;
      }
      .te-confirm-sub {
        font-size: 15px;
      }
      .te-ticket-code {
        font-size: 16px;
        letter-spacing: 2px;
      }
    }