 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }



  .page {
    max-width: 760px;
    margin: 0 auto;
  }

  /* ===== PAGE HEADER ===== */
  .page-header {
    border-bottom: 1px solid #d4aa4a;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .page-header-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8922a;
    margin-bottom: 0.5rem;
  }

  .page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1409;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  /* ===== SECTIONS ===== */
  .section {
    margin-bottom: 2.8rem;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.972rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.5px solid #d3d1c7;
  }

  .body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #3d3020;
    font-weight: 300;
    margin-bottom: 0.75rem;
  }

  .body-text:last-child { margin-bottom: 0; }

  a { color: #b8922a; text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ===== TICKET TABLE ===== */
  .ticket-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }

  .ticket-table thead th {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888780;
    text-align: left;
    padding: 0 10px 10px;
    border-bottom: 0.5px solid #d3d1c7;
  }

  .ticket-table thead th:last-child { text-align: right; }

  .ticket-table tbody tr {
    border-bottom: 0.5px solid #ebe4cf;
    transition: background 0.15s;
  }

  .ticket-table tbody tr:hover { background: #faf7f0; }
  .ticket-table tbody tr:last-child { border-bottom: none; }

  .ticket-table td {
    padding: 10px 10px;
    vertical-align: middle;
    color: #1a1409;
  }

  .ticket-table td:last-child {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
    color: #1a1409;
  }

  .ticket-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 0.5px solid #d3d1c7;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 500;
    color: #888780;
  }

  .ticket-title {
    font-weight: 400;
    font-style: italic;
    display: block;
    color: #1a1409;
  }

  .ticket-date {
    font-size: 0.8rem;
    color: #888780;
    font-style: normal;
    margin-top: 1px;
  }

  .ticket-special {
    background: #faf7f0;
  }

  .ticket-special .ticket-title {
    font-style: normal;
    font-weight: 300;
    color: #6b5830;
  }

  .door-note {
    font-size: 0.7rem;
    font-weight: 300;
    color: #888780;
    display: block;
  }

  .children-note {
    font-size: 0.88rem;
    color: #6b5830;
    background: #faf7f0;
    border-left: 2px solid #d4aa4a;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    font-style: italic;
  }

  .footnote {
    font-size: 0.75rem;
    color: #888780;
    font-style: italic;
    margin-top: 0.4rem;
  }

  /* ===== PACKAGE CARDS ===== */
  .pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .pkg-card {
    background: #ffffff;
    border: 0.5px solid #d3d1c7;
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
  }

  .pkg-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888780;
    margin-bottom: 0.4rem;
  }

  .pkg-price {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1409;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .pkg-price-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #888780;
  }

  .pkg-desc {
    font-size: 0.88rem;
    color: #6b5830;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ===== CONTACT ===== */
  .contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #3d3020;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5f0e4;
    border: 0.5px solid #d3d1c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 14px;
    height: 14px;
    stroke: #b8922a;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .closing {
    font-style: italic;
    font-size: 1rem;
    color: #888780;
    margin-top: 1.5rem;
  }