  :root {
    --cream: #F7EFE5;
    --sand: #EDD9C8;
    --burg-dark: #3D0A18;
    --burg: #6B1628;
    --burg-mid: #9B2D42;
    --gold: #C9962A;
    --gold-light: #F0C84A;
    --white: #FDFAF6;
    --text-dark: #1E0810;
    --text-mid: #6B1628;
    --text-muted: #7A5560;
    --nav-height: 64px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
  }

  h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.2; }

  /* FOCUS STATES */
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* SKIP LINK */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--burg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 200;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .skip-link:focus { top: 0; }

  /* REDUCED MOTION */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253,250,246,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 1px 12px rgba(107,22,40,0.07);
  }

  .nav-logo {
    font-family: 'Fraunces', serif;
    color: var(--burg-dark);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
  }

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

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }

  .nav-links a:hover {
    color: var(--burg-dark);
    border-bottom-color: var(--gold);
  }

  /* HAMBURGER */
  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--sand);
    border-radius: 8px;
    padding: 0.45rem;
    cursor: pointer;
    color: var(--burg-mid);
    transition: border-color 0.2s, color 0.2s;
  }

  .nav-toggle:hover { border-color: var(--gold); color: var(--burg-dark); }

  /* MOBILE NAV */
  @media (max-width: 640px) {
    nav { padding: 0 1.2rem; }

    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    .nav-links {
      position: absolute;
      top: var(--nav-height);
      left: 0; right: 0;
      background: rgba(253,250,246,0.99);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--sand);
      box-shadow: 0 4px 16px rgba(107,22,40,0.08);
      display: none;
    }

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

    .nav-links li a {
      display: block;
      padding: 0.8rem 1.5rem;
      border-bottom: none;
      font-size: 0.95rem;
      color: var(--text-mid);
    }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 4rem) 2rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(107,22,40,0.05) 0%, transparent 60%),
      radial-gradient(ellipse at 100% 100%, rgba(201,150,42,0.07) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1.5px solid rgba(107,22,40,0.07);
    pointer-events: none;
  }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107,22,40,0.07);
    border: 1px solid rgba(107,22,40,0.2);
    color: var(--burg);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.3rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--burg-dark);
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }

  .hero h1 span { color: var(--gold); }

  .hero-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .hero-dates {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }

  .hero-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1.5px solid var(--sand);
    color: var(--text-mid);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(107,22,40,0.06);
  }

  .hero-date-pill svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 1;
  }

  /* COUNTDOWN */
  .countdown {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 14px;
    padding: 1.2rem 1.5rem 1rem;
    min-width: 90px;
    box-shadow: 0 2px 12px rgba(107,22,40,0.07);
  }

  .countdown-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--burg);
    line-height: 1;
    min-width: 3rem;
    text-align: center;
  }

  .countdown-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .countdown-sep {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: var(--sand);
    margin-bottom: 0.5rem;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
  }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(107,22,40,0.25);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
    z-index: 1;
  }

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

  /* SECTION DIVIDER */
  .section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sand) 30%, var(--gold) 50%, var(--sand) 70%, transparent 100%);
    margin: 0;
    border: none;
  }

  /* SECTION COMMON */
  section { padding: 5.5rem 2rem; }

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

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .section-label::before, .section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--burg-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 3rem;
  }

  /* REUNION INFO */
  .reunion { background: var(--white); }

  .venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .venue-card {
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    cursor: default;
  }

  .venue-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burg), var(--gold));
  }

  .venue-card:hover {
    box-shadow: 0 8px 32px rgba(92,58,30,0.12);
    transform: translateY(-3px);
  }

  .venue-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burg), var(--burg-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: white;
  }

  .venue-card h3 {
    font-size: 1.2rem;
    color: var(--burg-dark);
    margin-bottom: 0.5rem;
  }

  .venue-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* TSHIRT */
  .tshirt {
    background: var(--sand);
    position: relative;
    overflow: hidden;
  }

  .tshirt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(107,22,40,0.04) 0%, transparent 55%);
    pointer-events: none;
  }

  .tshirt .section-title { color: var(--burg-dark); }
  .tshirt .section-label { color: var(--gold); }
  .tshirt .section-label::before, .tshirt .section-label::after { background: var(--gold); }
  .tshirt .section-desc { color: var(--text-muted); }
  .tshirt .section-inner { position: relative; z-index: 1; }
  .tshirt .section-desc strong { color: var(--burg); font-weight: 800; }
  .section-divider-dark { background: linear-gradient(90deg, transparent, var(--sand), var(--gold), var(--sand), transparent); }
  .bot-field-row { display: none; }

  .tshirt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }

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

  .tshirt-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .tshirt-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    display: block;
  }

  /* Placeholder when image missing */
  .tshirt-img-wrap img[src="shirt.png"] {
    min-height: 380px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  }

  .deadline-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #C0392B;
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.55rem 1rem;
    border-radius: 100px;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .order-form {
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 4px 24px rgba(107,22,40,0.08);
  }

  .form-group { margin-bottom: 1.25rem; }

  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--burg-mid);
    letter-spacing: 1px;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .form-group input::placeholder { color: var(--text-muted); opacity: 0.6; }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--burg-mid);
    background: var(--white);
  }

  .form-group select option { background: var(--white); color: var(--text-dark); }

  .order-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .order-row-main {
    display: grid;
    grid-template-columns: 2fr 80px auto;
    gap: 0.8rem;
    align-items: center;
  }

  .order-row select, .order-row input[type=number] {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  .order-note {
    width: 100%;
    padding: 0.55rem 0.9rem;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.83rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .order-note::placeholder { color: var(--text-muted); opacity: 0.6; }
  .order-note:focus { border-color: var(--burg-mid); background: var(--white); }

  .req { color: #C0392B; margin-left: 2px; font-size: 0.85em; }

  .remove-row {
    background: transparent;
    border: 1.5px solid var(--sand);
    color: var(--text-muted);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
  }

  .remove-row:hover {
    border-color: #C0392B;
    color: #C0392B;
    background: rgba(192,57,43,0.06);
  }

  .add-size-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: transparent;
    border: 1.5px dashed var(--sand);
    color: var(--text-muted);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    width: 100%;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s, color 0.2s;
  }

  .add-size-btn:hover {
    border-color: var(--burg-mid);
    color: var(--burg);
  }

  .submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #E8A820 100%);
    border: none;
    border-radius: 12px;
    color: var(--burg-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(201,150,42,0.35);
  }

  .submit-btn:hover {
    opacity: 0.93;
    box-shadow: 0 6px 28px rgba(201,150,42,0.5);
    transform: translateY(-1px);
  }

  .submit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: left;
    margin-top: 0.9rem;
    line-height: 1.55;
  }

  .form-note svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); opacity: 0.8; }

  /* MODAL */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 64px rgba(0,0,0,0.35);
    animation: modalIn 0.3s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .modal-check {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(46,204,113,0.35);
  }

  .modal h3 {
    font-size: 1.6rem;
    color: var(--burg-dark);
    margin-bottom: 0.6rem;
  }

  .modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .modal-close {
    padding: 0.9rem 2.5rem;
    background: var(--burg-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
  }

  .modal-close:hover {
    background: var(--burg);
    transform: scale(1.02);
  }

  /* FOOTER */
  footer {
    background: var(--burg-dark);
    border-top: 3px solid var(--gold);
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    background: rgba(201,150,42,0.2);
    border: 1px solid rgba(201,150,42,0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold-light);
  }

  footer .footer-title {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
  }

  footer .footer-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(245,237,216,0.55);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .footer-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
  }

  footer .footer-copy {
    color: rgba(245,237,216,0.35);
    font-size: 0.78rem;
  }

  /* BACK TO TOP */
  .back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), #E8A820);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--burg-dark);
    box-shadow: 0 4px 20px rgba(201,150,42,0.45);
    z-index: 99;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }

  .back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .back-top:hover { transform: translateY(-2px); }

  /* RESPONSIVE */
  @media (max-width: 600px) {
    section { padding: 4rem 1.2rem; }
    .order-row-main { grid-template-columns: 1fr 70px auto; }
    .countdown { gap: 0.5rem; }
    .countdown-block { padding: 1rem 1.1rem 0.8rem; min-width: 76px; }
    .countdown-num { font-size: 2.5rem; }
    .back-top { bottom: 1.2rem; right: 1.2rem; }
  }

  @media (max-width: 380px) {
    .payment-tabs { grid-template-columns: 1fr; }
  }

  /* PAYMENT METHOD */
  .payment-method-block { margin-bottom: 1.25rem; }

  .payment-method-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--burg-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
  }

  .payment-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .payment-tab {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }

  .payment-tab:hover { border-color: var(--burg-mid); }

  .payment-tab.active {
    background: var(--white);
    border-color: var(--burg);
    box-shadow: 0 0 0 3px rgba(107,22,40,0.1);
  }

  .payment-tab-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--burg-mid);
  }

  .payment-tab.active .payment-tab-icon { color: var(--burg); }

  .payment-tab-text { display: flex; flex-direction: column; gap: 0.15rem; }

  .payment-tab-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .payment-tab-fee {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* PRICE BREAKDOWN */
  .price-breakdown {
    background: rgba(107,22,40,0.04);
    border: 1.5px solid rgba(107,22,40,0.12);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
  }

  .price-row.fee-row { font-size: 0.82rem; }

  .price-row.total-row {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(107,22,40,0.1);
    margin-top: 0.1rem;
  }

  .price-row.total-row span:last-child {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--burg);
    font-weight: 700;
  }

  /* CASH APP */
  .cashapp-info-box {
    background: rgba(0,196,43,0.06);
    border: 1.5px solid rgba(0,196,43,0.25);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 0.9rem;
  }

  .cashapp-info-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .cashapp-logo-wrap {
    width: 48px;
    height: 48px;
    background: #00C42B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cashapp-cashtag {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .cashapp-send-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
  }

  .cashapp-send-label strong { color: var(--text-dark); }

  .cashapp-note-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0,196,43,0.2);
  }

  .cashapp-note-text strong { color: var(--text-dark); }

  .cashapp-order-ref {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 0.6rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0,196,43,0.2);
    line-height: 1.55;
  }

  .order-num-chip {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background: rgba(0,196,43,0.12);
    color: var(--text-dark);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
  }

  .copy-ref-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #00875A;
    background: rgba(0,196,43,0.10);
    border: 1px solid rgba(0,196,43,0.35);
    border-radius: 4px;
    cursor: pointer;
    vertical-align: middle;
    transition: background 0.15s;
  }
  .copy-ref-btn:hover { background: rgba(0,196,43,0.2); }
  .copy-ref-btn.copied { color: var(--text-muted); }

  .late-order-notice {
    background: rgba(201,150,42,0.1);
    border: 1.5px solid rgba(201,150,42,0.35);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .cashapp-open-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: #00C42B;
    color: white;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 0.65rem;
    cursor: pointer;
  }

  .cashapp-open-btn:hover { background: #00A623; transform: translateY(-1px); }

  /* STRIPE CARD ELEMENT */
  .card-element-container {
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    transition: border-color 0.2s;
  }

  .card-element-container.StripeElement--focus { border-color: var(--burg-mid); }
  .card-element-container.StripeElement--invalid { border-color: #C0392B; }

  .card-error {
    font-size: 0.8rem;
    color: #C0392B;
    margin-top: 0.4rem;
    min-height: 1.2em;
  }

  .hidden { display: none !important; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation: fadeUp 0.5s ease both; }
  .hero h1 { animation: fadeUp 0.55s 0.1s ease both; }
  .hero-tagline { animation: fadeUp 0.55s 0.2s ease both; }
  .hero-dates { animation: fadeUp 0.55s 0.3s ease both; }
  .countdown { animation: fadeUp 0.55s 0.4s ease both; }
  .scroll-hint { animation: bounce 2.5s 1s ease infinite; }

  /* ============ HOME PAGE LINK CARDS ============ */
  .home-links { background: var(--white); }

  .link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .nav-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 18px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
  }

  .nav-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burg), var(--gold));
  }

  .nav-card:hover { box-shadow: 0 8px 32px rgba(92,58,30,0.12); transform: translateY(-3px); }
  .nav-card h3 { font-size: 1.25rem; color: var(--burg-dark); }
  .nav-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
  .nav-card .card-cta {
    margin-top: auto;
    color: var(--burg);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  /* ============ PROGRAM (home) ============ */
  .program { background: var(--cream); }

  .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .day-card {
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 18px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
  }

  .day-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burg), var(--gold));
  }

  .day-head { margin-bottom: 1.2rem; }
  .day-date {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
  }
  .day-card h3 { font-size: 1.3rem; color: var(--burg-dark); }
  .day-theme {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.25rem;
  }

  .schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .schedule-item {
    display: flex;
    gap: 0.7rem;
    align-items: baseline;
    font-size: 0.92rem;
  }
  .schedule-item .s-time {
    font-weight: 700;
    color: var(--burg-mid);
    min-width: 3.2rem;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
  }
  .schedule-item .s-time.dot { color: var(--gold); }
  .schedule-item .s-act { color: var(--text-mid); }

  .day-sub {
    margin: 1.1rem 0 0.6rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .day-sub::after { content: ''; flex: 1; height: 1.5px; background: var(--sand); }

  /* ============ GRADUATE RECOGNITION ============ */
  .graduates { background: var(--white); }

  .grad-tier-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--burg-dark);
    margin: 3.5rem 0 0.2rem;
  }
  .grad-tier-title.first { margin-top: 0; }
  .grad-tier-desc { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 0.5rem; }

  .grad-level-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.8rem 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .grad-level-label::after { content: ''; flex: 1; height: 1.5px; background: var(--sand); }

  .grad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
  }

  .grad-card {
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .grad-card:hover { box-shadow: 0 8px 32px rgba(92,58,30,0.12); transform: translateY(-3px); }

  /* ===== Graduate photo carousel ===== */
  .grad-carousel {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--burg), var(--burg-mid));
    overflow: hidden;
  }
  .grad-slides { position: absolute; inset: 0; }
  .grad-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
  }
  .grad-slide.is-active { opacity: 1; visibility: visible; }
  .grad-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }

  /* initials fallback — shown only when the carousel has no usable photos */
  .grad-carousel .grad-initials {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.92);
  }
  .grad-carousel.is-empty .grad-initials { display: flex; }

  .grad-photo-tag {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    z-index: 2;
  }

  /* prev / next arrows + dots — revealed by JS only when >1 photo exists */
  .grad-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.42);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .grad-nav:hover { background: rgba(0,0,0,0.65); }
  .grad-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .grad-prev { left: 0.5rem; }
  .grad-next { right: 0.5rem; }
  .grad-carousel.has-multiple .grad-nav { display: flex; }

  .grad-dots {
    position: absolute;
    bottom: 0.6rem;
    right: 0.55rem;
    display: none;
    gap: 0.35rem;
    z-index: 3;
  }
  .grad-carousel.has-multiple .grad-dots { display: flex; }
  .grad-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .grad-dot.is-active { background: #fff; transform: scale(1.25); }
  .grad-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  @media (prefers-reduced-motion: reduce) {
    .grad-slide { transition: none; }
  }

  .grad-info { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
  .grad-year { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--burg); }
  /* Graduates page: burgundy eyebrow label instead of hard-to-read gold */
  .graduates .section-label { color: var(--burg); }
  .grad-info h3 { font-size: 1.25rem; color: var(--burg-dark); line-height: 1.2; }
  .grad-school { font-weight: 700; color: var(--burg); font-size: 0.92rem; }
  .grad-bio { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
  .grad-bio strong { color: var(--text-mid); }

  .grad-gift { margin-top: auto; padding-top: 0.4rem; }
  .gift-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    background: #00C42B;
    color: #fff;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .gift-btn:hover { background: #00A623; transform: translateY(-1px); }
  .gift-btn.disabled { background: var(--sand); color: var(--text-muted); cursor: default; pointer-events: none; }

  .grad-empty {
    background: var(--cream);
    border: 1.5px dashed var(--sand);
    border-radius: 14px;
    padding: 1.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ============ TEMPORARY ORDER BANNER (tshirts) ============ */
  .temp-banner {
    background: rgba(201,150,42,0.12);
    border: 1.5px solid rgba(201,150,42,0.4);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .temp-banner svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
  .temp-banner strong { color: var(--burg); }

  @media (max-width: 600px) {
    .grad-carousel { aspect-ratio: 4 / 5; }
  }

  /* Page top offset for pages without a hero (clears the fixed nav) */
  .page-top { padding-top: calc(var(--nav-height) + 4rem); }

  /* Graduate family lineage line */
  .grad-family {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 0.7rem;
    margin-top: 0.1rem;
    border-top: 1px solid var(--sand);
  }

/* ============================================================
   BIRTHDAY BASH
   ============================================================ */

.bday-top {
  background: var(--cream);
}

.bday-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bday-intro {
  text-align: center;
}

.bday-title {
  text-align: center;
}

.bday-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}

.bday-info-pills {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.bday-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--burg-mid);
}

.bday-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--burg);
  color: var(--white);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.bday-cta-btn:hover {
  background: var(--burg-dark);
  transform: translateY(-1px);
}

/* MONTHLY TOTALS */
.bday-totals-block {
  padding-top: 0.5rem;
}

.bday-totals-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burg-dark);
  margin-bottom: 0.3rem;
}

.bday-totals-sub {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.month-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.month-card:hover {
  border-color: var(--burg-mid);
  box-shadow: 0 2px 10px rgba(107,22,40,0.08);
}

.month-card.is-current {
  border-color: var(--gold);
  background: rgba(201,150,42,0.05);
}

.month-card.is-selected {
  border-color: var(--burg);
  background: rgba(107,22,40,0.05);
  box-shadow: 0 0 0 3px rgba(107,22,40,0.1);
}

.month-card-name {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.month-card.is-current .month-card-name { color: var(--gold); }

.month-card-total {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burg);
}

.month-card.is-current .month-card-total { color: var(--burg-dark); }

.month-total-zero {
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
}

.bday-totals-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.month-card-general {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(201,150,42,0.04);
  border-color: rgba(201,150,42,0.4);
}

.month-card-general .month-card-name {
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0;
}

.month-card-general .month-card-total {
  font-size: 1.25rem;
}

.month-card-general-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  flex: 1;
  text-align: left;
  padding-left: 0.75rem;
  font-style: italic;
}

.month-card-general.is-selected {
  border-color: var(--gold);
  background: rgba(201,150,42,0.1);
  box-shadow: 0 0 0 3px rgba(201,150,42,0.2);
}

.month-pill-general {
  grid-column: 1 / -1;
  background: rgba(201,150,42,0.05);
  border-color: rgba(201,150,42,0.4);
  color: var(--gold);
}

.month-pill-general:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.month-pill-general.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* DONATE SECTION */
.bday-donate {
  background: var(--sand);
  padding: 4rem 2rem;
}

.bday-form-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.bday-form-step {
  background: var(--white);
  border: 1.5px solid rgba(107,22,40,0.1);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}

.bday-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.bday-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--burg);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}

.bday-step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--burg-dark);
  margin: 0;
  font-weight: 700;
}

/* MONTH PICKER (in form) */
.month-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.month-pill {
  padding: 0.5rem 0.2rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1.3;
}

.month-pill:hover {
  border-color: var(--burg-mid);
  color: var(--burg);
}

.month-pill.selected {
  border-color: var(--burg);
  background: var(--burg);
  color: var(--white);
}

.selected-month-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--burg);
  min-height: 1.25em;
  margin-top: 0.25rem;
}

/* AMOUNT GRID */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.amount-btn {
  padding: 0.65rem 0.4rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.amount-btn:hover { border-color: var(--burg-mid); }

.amount-btn.active {
  border-color: var(--burg);
  background: rgba(107,22,40,0.06);
  color: var(--burg);
}

.custom-amount-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.custom-amount-wrap:focus-within { border-color: var(--burg); }

.custom-amount-prefix {
  padding: 0 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1rem;
  user-select: none;
}

.custom-amount-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.7rem 0.75rem 0.7rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  -moz-appearance: textfield;
}

.custom-amount-wrap input::-webkit-outer-spin-button,
.custom-amount-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cash App note under button */
.bday-cashapp-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  font-style: italic;
}

/* Optional field label */
.field-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

/* Responsive */
@media (max-width: 900px) {
  .bday-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bday-desc { max-width: 100%; }
}

@media (max-width: 640px) {
  .month-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .month-picker { grid-template-columns: repeat(3, 1fr); }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .bday-info-pills { flex-direction: column; align-items: center; }
}

@media (max-width: 380px) {
  .month-grid { grid-template-columns: repeat(2, 1fr); }
}
  .grad-family strong { color: var(--burg); font-weight: 700; }
