:root{
    --navy:#0F1830;
    --navy-2:#172041;
    --navy-3:#1D2749;
    --cream:#FBF8F2;
    --paper:#F4EEDF;
    --gold:#B7893F;
    --gold-light:#D9BC80;
    --gold-dim:#8A6B33;
    --charcoal:#292A2D;
    --line-dark:rgba(217,188,128,0.22);
    --line-light:#DCD3BE;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--cream);
    color:var(--charcoal);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  .serif{font-family:'Fraunces',serif;}
  .mono{font-family:'IBM Plex Mono',monospace;}

  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.28em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
  }
  .eyebrow .rule{width:36px;height:1px;background:currentColor;opacity:0.5;}
  .diamond{
    width:6px;height:6px;
    background:var(--gold);
    transform:rotate(45deg);
    flex:none;
  }

  /* ---------- HERO ---------- */
  .hero{
    background:
      radial-gradient(ellipse 900px 500px at 50% -10%, rgba(217,188,128,0.10), transparent 60%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color:var(--cream);
    padding:88px 24px 96px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .hero::before, .hero::after{
    content:"";
    position:absolute;
    left:0; right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--line-dark) 20%, var(--line-dark) 80%, transparent);
  }
  .hero::before{ top:28px; }
  .medallion{
    width:148px;height:148px;
    border-radius:6px;
    margin:0 auto 34px;
    background:var(--cream);
    display:flex;align-items:center;justify-content:center;
    box-shadow:
      0 0 0 1px rgba(217,188,128,0.55),
      0 0 0 6px rgba(217,188,128,0.08),
      0 22px 44px -14px rgba(0,0,0,0.55);
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.05s forwards;
  }
  .medallion img{
    width:106px;height:106px;
    object-fit:contain;
    display:block;
  }
  .hero .eyebrow{
    color:var(--gold-light);
    margin-bottom:26px;
    opacity:0;
    animation:rise 0.8s cubic-bezier(.2,.8,.2,1) 0.2s forwards;
  }
  .hero h1{
    font-family:'Fraunces',serif;
    font-weight:500;
    font-size:clamp(36px,6vw,64px);
    line-height:1.08;
    letter-spacing:-0.01em;
    margin:0 0 22px;
    max-width:16ch;
    margin-left:auto;margin-right:auto;
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.32s forwards;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--gold-light);
  }
  .hero p.sub{
    font-size:16.5px;
    line-height:1.65;
    color:rgba(251,248,242,0.72);
    max-width:440px;
    margin:0 auto 42px;
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.44s forwards;
  }
  .hero .wordmark-strip{
    margin-top:56px;
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.68s forwards;
  }
  .wordmark-strip .brand{
    font-family:'Fraunces',serif;
    font-size:13px;
    letter-spacing:0.32em;
    color:var(--gold-light);
    text-transform:uppercase;
  }
  .wordmark-strip .tag{
    margin-top:6px;
    font-size:12px;
    color:rgba(251,248,242,0.45);
    font-style:italic;
    font-family:'Fraunces',serif;
  }

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

  /* ---------- FORM ---------- */
  .notify{
    display:flex;
    max-width:400px;
    margin:0 auto;
    border-bottom:1px solid rgba(217,188,128,0.4);
    padding-bottom:2px;
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.56s forwards;
  }
  .notify input{
    flex:1;
    background:transparent;
    border:none;
    outline:none;
    color:var(--cream);
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    padding:12px 8px;
  }
  .notify input::placeholder{color:rgba(251,248,242,0.38);}
  .notify button{
    background:none;
    border:none;
    color:var(--gold-light);
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    padding:12px 6px;
    cursor:pointer;
    white-space:nowrap;
    transition:color 0.2s ease, transform 0.2s ease;
  }
  .notify button:hover{color:var(--cream); transform:translateX(2px);}
  .notify button:focus-visible, .notify input:focus-visible{outline:1px solid var(--gold-light); outline-offset:3px;}
  .form-note{
    margin-top:14px;
    font-size:11.5px;
    color:rgba(251,248,242,0.38);
    opacity:0;
    animation:rise 0.9s cubic-bezier(.2,.8,.2,1) 0.6s forwards;
  }
  .form-note.confirmed{color:var(--gold-light);}

  /* ---------- PRODUCTS ---------- */
  .products{
    background:var(--cream);
    padding:96px 24px 84px;
  }
  .products-head{
    text-align:center;
    max-width:560px;
    margin:0 auto 64px;
  }
  .products-head .eyebrow{color:var(--gold-dim); margin-bottom:20px;}
  .products-head h2{
    font-family:'Fraunces',serif;
    font-weight:500;
    font-size:clamp(26px,3.4vw,34px);
    line-height:1.28;
    margin:0;
    color:var(--navy);
  }

  .tickets{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
    max-width:1080px;
    margin:0 auto;
  }
  @media (max-width:900px){
    .tickets{grid-template-columns:1fr; max-width:420px;}
  }

  .ticket{
    position:relative;
    background:var(--paper);
    border:1px solid var(--line-light);
    padding:38px 28px 30px;
    text-align:center;
    transition:transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
    opacity:0;
    animation:rise 0.7s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .ticket:nth-child(1){animation-delay:0.05s;}
  .ticket:nth-child(2){animation-delay:0.16s;}
  .ticket:nth-child(3){animation-delay:0.27s;}
  .ticket:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 46px -22px rgba(15,24,48,0.28);
    border-color:var(--gold-light);
  }
  /* perforated edge */
  .ticket::before{
    content:"";
    position:absolute;
    left:0;right:0;top:0;
    height:1px;
    background-image:linear-gradient(90deg, var(--charcoal) 50%, transparent 0);
    background-size:9px 1px;
    background-repeat:repeat-x;
    opacity:0.16;
  }
  .ticket-icon{
    width:52px;height:52px;
    margin:0 auto 20px;
    border-radius:50%;
    border:1px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    color:var(--gold-dim);
  }
  .ticket-icon svg{width:22px;height:22px;stroke:var(--gold-dim);fill:none;stroke-width:1.4;}
  .ticket h3{
    font-family:'Fraunces',serif;
    font-weight:500;
    font-size:19px;
    color:var(--navy);
    margin:0 0 10px;
  }
  .ticket p{
    font-size:13.5px;
    line-height:1.6;
    color:#5B5C60;
    margin:0 0 22px;
    min-height:62px;
  }
  .ticket .divider{
    border:none;
    border-top:1px dashed var(--line-light);
    margin:0 0 16px;
  }
  .ticket .meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-family:'IBM Plex Mono',monospace;
    font-size:10.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#8A8B8E;
  }
  .status-dot{
    display:inline-block;
    width:6px;height:6px;
    border-radius:50%;
    background:var(--gold);
    margin-right:6px;
    animation:pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{opacity:1;}
    50%{opacity:0.35;}
  }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--navy);
    color:rgba(251,248,242,0.55);
    text-align:center;
    padding:56px 24px 40px;
  }
  footer .foot-brand{
    font-family:'Fraunces',serif;
    font-style:italic;
    font-size:15px;
    color:var(--gold-light);
    margin-bottom:10px;
  }
  footer .foot-tag{
    font-size:12.5px;
    color:rgba(251,248,242,0.4);
    margin-bottom:28px;
  }
  footer .foot-rule{
    width:52px;height:1px;
    background:var(--line-dark);
    margin:0 auto 24px;
  }
  footer .foot-contact{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    letter-spacing:0.03em;
    margin-bottom:18px;
  }
  footer .foot-contact a{
    color:var(--gold-light);
    text-decoration:none;
    border-bottom:1px solid rgba(217,188,128,0.35);
    padding-bottom:1px;
    transition:color 0.2s ease, border-color 0.2s ease;
  }
  footer .foot-contact a:hover{
    color:var(--cream);
    border-color:var(--cream);
  }
  footer .copyright{
    font-family:'IBM Plex Mono',monospace;
    font-size:10.5px;
    letter-spacing:0.06em;
    color:rgba(251,248,242,0.3);
  }

  @media (prefers-reduced-motion:reduce){
    *{animation:none !important; transition:none !important;}
    .medallion,.hero .eyebrow,.hero h1,.hero p.sub,.notify,.form-note,.wordmark-strip,.ticket{opacity:1;transform:none;}
  }

  /* Inquiry modal */
  .inquiry-backdrop{
    position:fixed; inset:0; z-index:1000;
    background:rgba(15,24,48,0.72);
    display:none; align-items:center; justify-content:center;
    padding:24px 16px;
  }
  .inquiry-backdrop.open{display:flex;}
  .inquiry-modal{
    width:100%; max-width:440px;
    background:var(--cream);
    border:1px solid var(--line-light);
    padding:28px 24px 22px;
    box-shadow:0 24px 60px rgba(15,24,48,0.35);
  }
  .inquiry-modal h2{
    margin:0 0 6px;
    font-family:'Fraunces',serif;
    font-size:26px; font-weight:500; color:var(--navy);
  }
  .inquiry-modal .inquiry-sub{
    margin:0 0 20px;
    font-size:13px; line-height:1.5; color:rgba(41,42,45,0.72);
  }
  .inquiry-modal label{
    display:block; margin:0 0 6px;
    font-family:'IBM Plex Mono',monospace;
    font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold-dim);
  }
  .inquiry-modal .field{margin:0 0 14px;}
  .inquiry-modal input, .inquiry-modal textarea{
    width:100%;
    border:1px solid var(--line-light);
    background:#fff;
    color:var(--navy);
    font-family:'Inter',sans-serif;
    font-size:14px;
    padding:11px 12px;
  }
  .inquiry-modal textarea{min-height:120px; resize:vertical;}
  .inquiry-modal input:focus, .inquiry-modal textarea:focus{
    outline:1px solid var(--gold); outline-offset:1px;
  }
  .inquiry-actions{
    display:flex; gap:12px; justify-content:flex-end; margin-top:8px;
  }
  .inquiry-actions button{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
    border:none; cursor:pointer; padding:11px 16px;
  }
  .inquiry-actions .cancel{
    background:transparent; color:var(--gold-dim);
  }
  .inquiry-actions .cancel:hover{color:var(--navy);}
  .inquiry-actions .send{
    background:var(--navy); color:var(--cream);
  }
  .inquiry-actions .send:hover{background:var(--navy-2);}
  .inquiry-actions .send:disabled{opacity:0.55; cursor:not-allowed;}
