/* ============================================================
   SIP OF JAPAN / indigo x gold world
   Washi cream, deep navy, gold leaf. Quiet, premium, adult.
   ============================================================ */

body.sip {
  --sip-navy: #1b2a4a;
  --sip-navy-deep: #101c33;
  --sip-gold: #b98a2f;
  --sip-gold-soft: #dcbf7c;
  --sip-washi: #f7f1e3;
  --sip-red: #a33b2e;
  background: var(--sip-washi);
  color: #1d2433;
}
body.sip .eyebrow { color: var(--sip-gold); }
body.sip .eyebrow::before { background: var(--sip-gold); }

/* ---------- hero ---------- */
.sip-hero {
  min-height: 100svh;
  position: relative; overflow: hidden;
  display: grid; place-items: center; text-align: center;
  color: var(--sip-washi);
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(185, 138, 47, .28), transparent 60%),
    radial-gradient(700px 420px at 4% 110%, rgba(90, 130, 190, .2), transparent 60%),
    linear-gradient(180deg, #0c1526 0%, #14233f 55%, #1b2a4a 100%);
}
/* gold dust */
.sip-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .8;
  background-image:
    radial-gradient(1.4px 1.4px at 18% 32%, rgba(220,191,124,.8) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 32% 68%, rgba(220,191,124,.6) 50%, transparent 51%),
    radial-gradient(1.7px 1.7px at 64% 24%, rgba(220,191,124,.7) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 78% 56%, rgba(220,191,124,.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 46% 82%, rgba(220,191,124,.6) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 88% 84%, rgba(220,191,124,.6) 50%, transparent 51%);
}
/* seigaiha bottom */
.sip-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px;
  background-image: radial-gradient(circle at 50% 0, transparent 28px, rgba(220,191,124,.14) 29px, rgba(220,191,124,.14) 31px, transparent 32px, transparent 44px, rgba(220,191,124,.1) 45px, rgba(220,191,124,.1) 47px, transparent 48px);
  background-size: 90px 60px;
  background-position: 0 100%, 45px 70px;
  opacity: .8; pointer-events: none;
}
.sip-hero-inner { position: relative; z-index: 2; padding: 130px 18px 150px; width: 100%; }
.sip-kicker {
  font-family: var(--font-serif); letter-spacing: .58em; padding-left: .58em;
  font-size: clamp(12px, 1.6vw, 15px); color: var(--sip-gold-soft);
  text-transform: uppercase;
}
.sip-title {
  font-family: var(--font-serif-en); font-style: italic; font-weight: 500;
  font-size: clamp(56px, 10.5vw, 128px);
  line-height: 1.02; margin: 22px 0 10px;
  text-shadow: 0 12px 46px rgba(0,0,0,.5);
}
.sip-title .of { font-size: .55em; color: var(--sip-gold-soft); }
.sip-sub-jp { font-family: var(--font-serif); font-size: clamp(15px, 2vw, 19px); letter-spacing: .3em; padding-left: .3em; opacity: .9; }
/* date is the single most important fact on an event page: give it the weight */
.sip-when { margin-top: 30px; }
.sip-date {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 3.1vw, 34px);
  letter-spacing: .05em; line-height: 1.15;
  color: var(--sip-washi);
}
.sip-venue-line {
  font-family: var(--font-serif-en); font-style: italic;
  font-size: clamp(16px, 2vw, 21px);
  color: var(--sip-gold-soft); margin-top: 8px;
}
.sip-badge {
  display: inline-block; margin-top: 18px;
  font-family: var(--font-display); font-weight: 400;
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: #221a08; background: linear-gradient(120deg, var(--sip-gold-soft), var(--sip-gold));
  padding: 9px 22px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(185,138,47,.35);
}
.sip-hero .countdown { justify-content: center; margin-top: 34px; }
.sip-hero .cd-num { color: var(--sip-washi); }
.sip-hero-ctas { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn.sip-cta { background: linear-gradient(120deg, var(--sip-gold-soft), var(--sip-gold)); color: #221a08; box-shadow: 0 12px 36px rgba(185,138,47,.4); }

/* divider knot */
.sip-divider { display: flex; align-items: center; gap: 18px; justify-content: center; margin: 8px 0; color: var(--sip-gold); }
.sip-divider::before, .sip-divider::after { content: ""; width: min(160px, 26vw); height: 1px; background: linear-gradient(90deg, transparent, var(--sip-gold)); }
.sip-divider::after { background: linear-gradient(270deg, transparent, var(--sip-gold)); }

/* ---------- pillars ---------- */
.sip-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-top: 50px; }
.sip-pillar {
  text-align: center; padding: 38px 22px 34px;
  background: #fffdf7; border: 1px solid rgba(185,138,47,.25); border-radius: var(--radius);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s, border-color .3s;
}
.sip-pillar:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: var(--sip-gold); }
.sip-pillar .circle {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--sip-navy);
  display: grid; place-items: center; color: var(--sip-gold-soft);
  font-family: var(--font-serif); font-size: 26px; font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(220,191,124,.4), 0 10px 24px rgba(27,42,74,.25);
}
.sip-pillar h3 { font-family: var(--font-serif-en); font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.sip-pillar .jp { font-family: var(--font-serif); font-size: 13px; color: var(--sip-gold); letter-spacing: .18em; margin-bottom: 10px; }
.sip-pillar p { font-size: 13.5px; color: #4a5364; }

/* a la carte */
.alacarte { margin-top: 46px; border-top: 1px solid rgba(220,191,124,.25); padding-top: 36px; }
.alacarte h3 { font-family: var(--font-serif-en); font-style: italic; font-size: 24px; color: var(--sip-gold-soft); margin-bottom: 20px; text-align: center; }
.alacarte-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ala-item {
  border: 1px solid rgba(220,191,124,.35); border-radius: 999px;
  padding: 9px 20px; font-size: 13.5px; letter-spacing: .04em;
  display: inline-flex; gap: 10px; align-items: center;
}
.ala-item b { color: var(--sip-gold-soft); font-weight: 700; }

/* ---------- venue band ---------- */
.sip-venue {
  background: linear-gradient(120deg, var(--sip-navy), var(--sip-navy-deep));
  color: var(--sip-washi); border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between;
}
.sip-venue h3 { font-family: var(--font-serif-en); font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin-bottom: 8px; }
.sip-venue p { opacity: .82; }

/* sponsorship ways — sip accent */
body.sip .way::before { color: var(--sip-gold); }
body.sip .way:hover { border-color: var(--sip-gold); }

/* ============================================================
   TIER TABLE — shared by ticket passes and sponsorship
   Structure comes from hairlines and space, not from cards.
   ============================================================ */
.sip-passes-section { background: var(--sip-navy-deep); color: var(--sip-washi); position: relative; overflow: hidden; }
.sip-passes-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22;
  background-image: radial-gradient(circle at 50% 0, transparent 28px, rgba(220,191,124,.08) 29px, rgba(220,191,124,.08) 31px, transparent 32px);
  background-size: 90px 60px;
}
.sip-passes-section .container { position: relative; }

.tier-table {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid rgba(220,191,124,.38);
}
.tier {
  padding: 38px 34px 34px;
  border-left: 1px solid rgba(220,191,124,.18);
  display: flex; flex-direction: column;
}
.tier:first-child { border-left: 0; padding-left: 0; }
.tier:last-child { padding-right: 0; }
.tier.is-top { border-top: 2px solid var(--sip-gold); margin-top: -1px; }

.tier-flag {
  font-family: var(--font-display); font-weight: 400; font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--sip-gold); margin-bottom: 12px;
}
.tier-name {
  font-family: var(--font-serif-en); font-style: italic; font-weight: 600;
  font-size: 25px; line-height: 1.2;
}
.tier-price {
  font-family: var(--font-num); font-weight: 900; font-size: 58px; line-height: 1;
  margin: 16px 0 6px; font-variant-numeric: tabular-nums;
}
.tier-price span { font-size: .42em; vertical-align: 22%; margin-right: 2px; opacity: .7; }
.tier-note {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  opacity: .55; margin-bottom: 24px;
}
.tier-list { display: grid; gap: 11px; font-size: 14.5px; line-height: 1.55; }
.tier-list li { padding-left: 15px; position: relative; opacity: .92; }
.tier-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 1px; background: var(--sip-gold);
}
.tier-value {
  margin-top: auto; padding-top: 24px;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--sip-gold-soft);
}

/* sponsorship sits on the light background */
.tier-table.on-light { border-top-color: rgba(27,42,74,.28); }
.on-light .tier { border-left-color: rgba(27,42,74,.12); }
.on-light .tier.is-top { border-top-color: var(--sip-gold); }
.on-light .tier-name { color: var(--sip-navy); }
.on-light .tier-note { opacity: .62; }
.on-light .tier-list li { opacity: 1; color: #3c4557; }

@media (max-width: 900px) {
  .tier-table { grid-template-columns: 1fr; border-top: 0; }
  .tier {
    border-left: 0; padding: 30px 0 28px;
    border-top: 1px solid rgba(220,191,124,.22);
  }
  .tier:first-child { border-top: 1px solid rgba(220,191,124,.38); }
  .on-light .tier { border-top-color: rgba(27,42,74,.12); }
  .on-light .tier:first-child { border-top-color: rgba(27,42,74,.28); }
  .tier.is-top { border-top-width: 2px; }
}

/* a la carte sits under the passes */
.alacarte { margin-top: 52px; border-top: 1px solid rgba(220,191,124,.2); padding-top: 34px; }

/* ---------- sponsorship closing ---------- */
.sponsor-section .tier-table { margin-top: 48px; }
.sponsor-close { text-align: center; margin-top: 48px; }
.sponsor-close p {
  font-family: var(--font-serif-en); font-style: italic; font-size: 19px;
  margin-bottom: 22px; color: var(--ink-soft);
}

/* ---------- workshop: statement band, no decorative marks ---------- */
.workshop-block { max-width: 860px; }
.workshop-title {
  font-family: var(--font-serif-en); font-style: italic; font-weight: 600;
  color: #fff; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.14;
  margin: 16px 0 26px;
}
.workshop-body { max-width: 620px; display: grid; gap: 14px; }
.workshop-body p { color: rgba(247,241,227,.86); font-size: 16.5px; line-height: 1.75; }
.workshop-credits {
  display: flex; flex-wrap: wrap; gap: 14px 64px;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(220,191,124,.3);
}
.workshop-credits dt {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 5px;
}
.workshop-credits dd { font-family: var(--font-serif-en); font-size: 20px; color: #fff; }

/* ticket button carries the sip gold */
body.sip .btn-ticket {
  background: linear-gradient(120deg, var(--sip-gold-soft), var(--sip-gold));
  color: #221a08; box-shadow: 0 6px 20px rgba(185,138,47,.4);
}
body.sip .btn-ticket:hover { box-shadow: 0 10px 26px rgba(185,138,47,.5); }

/* fineprint sits under the centered CTA, so centre it too */
.pass-fineprint { margin-top: 20px; text-align: center; font-size: 12px; opacity: .5; }

/* ---------- workshop gallery ---------- */
.workshop-block.has-gallery { max-width: none; }
.workshop-block.has-gallery .workshop-title,
.workshop-block.has-gallery .workshop-body { max-width: 760px; }

.wk-gallery {
  margin-top: 44px;
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 178px 178px;
  grid-auto-flow: dense;
}
.wk-item { margin: 0; overflow: hidden; border-radius: 4px; background: #0b1424; }
.wk-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.wk-item:hover img { transform: scale(1.04); }
/* two full height features (artist portrait, video) + five half height cells = 2 clean rows */
.wk-tall { grid-row: span 2; }
.wk-video { grid-row: span 2; position: relative; }
.wk-video a { display: block; height: 100%; position: relative; }
.wk-video img { filter: brightness(.82); }
.wk-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(220,191,124,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: transform .25s ease;
}
.wk-play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-left: 18px solid #101c33; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.wk-video a:hover .wk-play { transform: translate(-50%,-50%) scale(1.08); }
.wk-video figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px; text-align: center;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
@media (max-width: 900px) {
  .wk-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}
@media (max-width: 520px) {
  .wk-gallery { grid-auto-rows: 128px; gap: 10px; }
  .wk-play { width: 48px; height: 48px; }
  .wk-play::after { border-left-width: 14px; border-top-width: 9px; border-bottom-width: 9px; }
}

/* ---------- oishii yokocho: confirmed lineup ---------- */
/* names only: no logo files exist for most of these vendors, and a wall of
   half filled boxes reads cheaper than clean type. */
.yokocho-section { background: var(--sip-navy-deep); color: var(--sip-washi); }
.vendor-cards {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(220,191,124,.34);
}
.v-card {
  margin: 0; padding: 24px 26px 22px;
  border-bottom: 1px solid rgba(220,191,124,.14);
  border-left: 1px solid rgba(220,191,124,.14);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.v-card:nth-child(3n+1) { border-left: 0; padding-left: 0; }
.v-wordmark {
  font-family: var(--font-serif-en); font-size: 23px; font-weight: 600;
  color: var(--sip-washi); line-height: 1.25;
}
.v-card figcaption {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sip-gold-soft); opacity: .9;
}
@media (max-width: 820px) {
  .vendor-cards { grid-template-columns: 1fr; }
  .v-card { border-left: 0; padding-left: 0; }
}

/* ---------- pouring partners ---------- */
.pour-features {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid rgba(27,42,74,.28);
}
.pour { padding: 34px 30px 30px; border-left: 1px solid rgba(27,42,74,.12); }
.pour:first-child { border-left: 0; padding-left: 0; }
.pour:last-child { padding-right: 0; }
.pour h3 {
  font-family: var(--font-serif-en); font-style: italic; font-weight: 600;
  font-size: 24px; color: var(--sip-navy); margin-bottom: 12px;
}
.pour p { font-size: 14.5px; line-height: 1.75; color: #3c4557; }

.sponsor-logos {
  margin-top: 54px; padding-top: 40px;
  border-top: 1px solid rgba(27,42,74,.14);
  display: grid; gap: 12px;
  grid-template-columns: repeat(5, 1fr);
}
.s-logo { margin: 0; display: grid; place-items: center; }
.s-logo {
  background: #fff; border-radius: 3px; padding: 10px 14px;
  height: 104px; display: grid; place-items: center;
}
.s-logo img {
  max-width: 100%; max-height: 84px; width: auto; height: auto; object-fit: contain;
  transition: transform .3s ease;
}
.s-logo:hover img { transform: scale(1.06); }

@media (max-width: 900px) {
  .pour-features { grid-template-columns: 1fr; border-top: 0; }
  .pour { border-left: 0; padding: 26px 0; border-top: 1px solid rgba(27,42,74,.12); }
  .pour:first-child { border-top: 1px solid rgba(27,42,74,.28); }
  .vendor-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsor-logos { grid-template-columns: repeat(3, 1fr); }
  .v-logo { height: 96px; padding: 12px; }
  .s-logo { height: 72px; }
}

/* ---------- workshops on the day ---------- */
.wk-list { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(220,191,124,.3); }
.wk-list-label {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 16px;
}
.wk-list ul { display: flex; flex-wrap: wrap; gap: 10px; }
.wk-list li {
  border: 1px solid rgba(220,191,124,.4); border-radius: 999px;
  padding: 9px 20px; font-size: 14.5px; color: var(--sip-washi);
}
.wk-list-more { margin-top: 14px; font-size: 13px; opacity: .6; }

/* a confirmed sponsor whose logo file we do not have yet */
.s-logo-text { display: grid; place-items: center; }
.s-logo-text span {
  font-family: var(--font-serif-en); font-size: 22px; font-weight: 600;
  letter-spacing: .06em; color: var(--sip-navy);
}

/* ---------- experience pillars now lead with a photograph ---------- */
.sip-pillar { padding: 0 0 28px; overflow: hidden; text-align: center; }
.pillar-photo { margin: 0 0 20px; aspect-ratio: 4 / 3; overflow: hidden; background: #0f1c33; }
.pillar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.sip-pillar:hover .pillar-photo img { transform: scale(1.05); }
.sip-pillar h3, .sip-pillar .jp, .sip-pillar p { padding-inline: 20px; }
