html { scroll-behavior: smooth; }
body {
  min-height: 100dvh;
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow: hidden;
  overscroll-behavior-x: none;
}

/* === SLIDER === */
.slider {
  display: flex;
  width: 300%;
  min-height: 100dvh;
  height: 100dvh;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(-33.333333%, 0, 0); /* Start on center panel (form) */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.panel {
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(1.5rem, env(safe-area-inset-top)) 1rem calc(5rem + env(safe-area-inset-bottom));
  scroll-padding-top: 1.5rem;
  scroll-padding-bottom: calc(5rem + env(safe-area-inset-bottom));
}

/* === NAV DOTS === */
.nav-dots {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 150;
  padding: 0.4rem 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-arrow {
  position: fixed;
  top: 50%;
  z-index: 145;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 88, 12, 0.18);
  background: rgba(20, 16, 14, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background 0.3s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.panel-arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.02);
  border-color: rgba(232, 88, 12, 0.38);
  background: rgba(28, 22, 19, 0.95);
}

.panel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

body.drawer-open .panel-arrow {
  opacity: 0;
  pointer-events: none;
}

.panel-arrow-left { left: 1rem; }
.panel-arrow-right { right: 1rem; }

.nav-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.nav-dot.active {
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(232, 88, 12, 0.5), 0 0 20px rgba(232, 88, 12, 0.2);
  transform: scale(1.25);
}

.nav-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* === INFO PANEL STYLES === */
.info-card {
  width: 100%;
  max-width: 600px;
  background: rgba(22, 18, 16, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(232, 88, 12, 0.2);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.info-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1;
  text-align: center;
}

.info-card p {
  font-size: 1.1rem;
  color: #f0e6dc;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.principle-box {
  background: rgba(0,0,0,0.4);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  text-align: center;
}

.principle-thermo {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(232, 88, 12, 0.3));
}

.principle-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.principle-box p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 0;
}

.visitor-brief {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(232, 88, 12, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.visitor-brief-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-align: center;
}

.visitor-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.visitor-brief-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.visitor-brief-card:hover {
  border-color: rgba(232, 88, 12, 0.25);
  box-shadow: 0 0 20px rgba(232, 88, 12, 0.08);
  transform: translateY(-2px);
}

.visitor-brief-card strong {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.visitor-brief-card span {
  color: rgba(255,255,255,0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.visitor-brief-note {
  margin-top: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.team-section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.1rem;
  text-align: center;
}

.team-section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.team-section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  line-height: 1;
}

.team-section-copy {
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  line-height: 1.4;
}

.team-grid-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid rgba(232, 88, 12, 0.08);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(30, 24, 21, 0.72), rgba(24, 19, 17, 0.78));
}

.team-grid-group--governance {
  border-color: rgba(232, 88, 12, 0.14);
  background: linear-gradient(180deg, rgba(38, 26, 21, 0.76), rgba(29, 21, 18, 0.82));
}

.team-grid-group--members {
  background: linear-gradient(180deg, rgba(28, 23, 20, 0.72), rgba(22, 18, 16, 0.8));
}

.team-grid-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-grid-label::before,
.team-grid-label::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 88, 12, 0.18), transparent);
}

.team-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.team-grid-cards--members {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
}

.team-grid-cards--members .team-member {
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: transparent;
  box-shadow: none;
}

.team-grid-cards--members .team-member:nth-child(2n) {
  border-right: 0;
}

.team-grid-cards--members .team-member:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.team-grid-cards--members .team-member::before {
  opacity: 0.55;
}

.team-member {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem 0.85rem;
  padding: 0.95rem 0.95rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(232, 88, 12, 0.08);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 145, 77, 0.85), rgba(232, 88, 12, 0.08));
}

.team-member-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(232, 88, 12, 0.28);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.team-member-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 88, 12, 0.1);
  color: rgba(255, 165, 103, 0.82);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.team-member-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.team-member.chair .team-member-photo {
  width: 66px;
  height: 66px;
}

.team-member.leader {
  border-color: rgba(232, 88, 12, 0.12);
  background: linear-gradient(180deg, rgba(56, 37, 28, 0.74), rgba(44, 30, 24, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 182, 129, 0.04);
}

.team-member.leader.chair {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  text-align: left;
  padding: 1rem;
}

.team-member-name {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.team-member-specialty {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.3;
}

.team-member-company {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.3;
}

.team-member-role {
  display: inline-block;
  margin-top: 0.38rem;
  width: fit-content;
  font-size: 0.58rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 163, 108, 0.9);
  padding-top: 0.22rem;
  border-top: 1px solid rgba(232, 88, 12, 0.18);
  line-height: 1.4;
}

.swipe-hint {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

.swipe-hint-center {
  margin-top: 0.95rem;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.swipe-peek {
  position: fixed;
  bottom: calc(4.6rem + env(safe-area-inset-bottom));
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(232, 88, 12, 0.14);
  background: rgba(22, 18, 16, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.swipe-peek.visible {
  opacity: 1;
}

.swipe-peek-left {
  left: 0.75rem;
  transform: translateX(-0.4rem);
}

.swipe-peek-right {
  right: 0.75rem;
  transform: translateX(0.4rem);
}

.swipe-peek-left.visible,
.swipe-peek-right.visible {
  transform: translateX(0);
}

.swipe-peek.peek-pop {
  animation: swipe-peek-pop 0.9s ease;
}

.swipe-peek-arrow {
  color: var(--color-primary);
  font-size: 0.82rem;
  line-height: 1;
}

@keyframes swipe-peek-pop {
  0%, 100% { transform: translateX(0) scale(1); }
  35% { transform: translateX(0) scale(1.06); }
  70% { transform: translateX(0) scale(0.98); }
}

/* === BEER POUR CANVAS (behind menu card) === */
.beer-pour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.beer-pour-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Menu card above pour */
.menu-card {
  position: relative;
  z-index: 1;
}

/* Steam blast overlay */
.steam-blast-canvas {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

/* === TEAM CARD ANIMATIONS === */
/* === BEER MENU STYLES === */
.menu-card {
  width: 100%;
  max-width: 520px;
  background: rgba(35, 28, 24, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(232, 88, 12, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-header {
  text-align: center;
  border-bottom: 1px solid rgba(232, 88, 12, 0.3);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.menu-header img {
  width: 80px;
  margin: 0 auto 0.75rem;
}

.menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.25rem;
}

.menu-header p {
  font-size: 1rem;
  color: #f0e6dc;
}

.clouds-hero {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 88, 12, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.clouds-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clouds-hero-copy {
  text-align: center;
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

.clouds-pour-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.clouds-pour-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.5rem 0.7rem 0.45rem;
  border-radius: 999px;
  background: rgba(232, 88, 12, 0.1);
  border: 1px solid rgba(232, 88, 12, 0.18);
  min-width: 0;
}

.clouds-pour-name {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
}

.clouds-pour-meta {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  line-height: 1.1;
}

.beer-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid rgba(232, 88, 12, 0.4);
  padding-bottom: 0.25rem;
  margin-bottom: 0.55rem;
  margin-top: 0.95rem;
}

.beer-list {
  list-style: none;
  padding: 0;
}

.beer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
  align-items: start;
}

.beer-column {
  display: flex;
  flex-direction: column;
}


.beer-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.28rem 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.beer-item:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.02);
}

.beer-name { font-weight: 600; color: #fff; }
.beer-style { display: block; color: rgba(255,255,255,0.4); font-size: 0.74rem; margin-top: 0.05rem; }
.beer-abv { color: var(--color-primary); font-weight: 700; font-size: 0.8rem; white-space: nowrap; }

.clouds-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.46);
  text-align: center;
}

.clouds-status-card {
  margin-top: 1rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(232, 88, 12, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.clouds-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 88, 12, 0.12);
  border: 1px solid rgba(232, 88, 12, 0.2);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clouds-status-title {
  margin-top: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.clouds-status-copy {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.clouds-status-meta {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.8rem;
  line-height: 1.4;
}


.clouds-event-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clouds-event-item {
  margin-bottom: 0.6rem;
  border: 1px solid rgba(232, 88, 12, 0.12);
  border-radius: 0.95rem;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.clouds-event-toggle {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.95rem;
}

.clouds-event-toggle::-webkit-details-marker {
  display: none;
}

.clouds-event-item[open] .clouds-event-toggle {
  background: rgba(232, 88, 12, 0.08);
}

.clouds-event-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.clouds-event-name {
  font-weight: 600;
  color: #fff;
}

.clouds-event-date {
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.82rem;
}

.clouds-event-time {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.56);
}

.clouds-event-body {
  padding: 0 0.95rem 0.9rem;
}

.clouds-event-desc {
  margin-top: 0.1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.35;
}

.clouds-event-cta {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
  font-weight: 700;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(232, 88, 12, 0.3);
  color: var(--color-text);
}

/* Warm gradient orb behind the card */
.heat-orb {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 900px;
  max-height: 800px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 88, 12, 0.08) 0%, rgba(232, 88, 12, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orb-pulse 10s ease-in-out infinite;
}

/* === FORM CARD === */
.form-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: rgba(22, 18, 16, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(232, 88, 12, 0.2);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 100px rgba(232, 88, 12, 0.1);
  animation: card-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === LOGO === */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-3);
  animation: logo-enter 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes logo-enter {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container img {
  width: 100px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(232, 88, 12, 0.6));
}

/* Flame particles */
.flame-particles {
  position: absolute;
  inset: -20px;
  z-index: 1;
  pointer-events: none;
}

.flame-particle {
  position: absolute;
  bottom: 10%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF6A1E, #E8580C, transparent);
  animation: flame-rise linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}

.flame-particle:nth-child(1) { left: 20%; animation-duration: 2.2s; animation-delay: 0s; }
.flame-particle:nth-child(2) { left: 35%; animation-duration: 1.8s; animation-delay: 0.3s; width: 3px; height: 3px; }
.flame-particle:nth-child(3) { left: 50%; animation-duration: 2.5s; animation-delay: 0.7s; }
.flame-particle:nth-child(4) { left: 65%; animation-duration: 2s; animation-delay: 1.1s; width: 4px; height: 4px; }
.flame-particle:nth-child(5) { left: 80%; animation-duration: 2.3s; animation-delay: 0.5s; width: 3px; height: 3px; }
.flame-particle:nth-child(6) { left: 10%; animation-duration: 1.9s; animation-delay: 1.5s; width: 3px; height: 3px; }

@keyframes flame-rise {
  0% { opacity: 0; transform: translateX(0) translateY(0) scale(1); }
  15% { opacity: 0.9; }
  50% { opacity: 0.6; transform: translateX(-8px) translateY(-40vh) scale(0.8); }
  100% { opacity: 0; transform: translateX(8px) translateY(-80vh) scale(0.2); }
}

.flame-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(232, 88, 12, 0.15) 60deg, transparent 120deg, rgba(255, 106, 30, 0.1) 200deg, transparent 280deg, rgba(232, 88, 12, 0.12) 340deg, transparent 360deg);
  animation: flame-ring-rotate 4s linear infinite;
  filter: blur(8px);
}

@keyframes flame-ring-rotate {
  to { transform: rotate(360deg); }
}

/* === HEADINGS === */
.form-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-4);
}

/* === COUNTDOWN === */
.countdown-section {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  width: 100%;
}

.meeting-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.meeting-datetime {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.meeting-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
  min-width: 2.2em;
  text-align: center;
  background: rgba(44, 36, 32, 0.6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-1);
  position: relative;
  overflow: hidden;
}

.countdown-value::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 88, 12, 0.6), rgba(255, 153, 51, 0.8), rgba(232, 88, 12, 0.6), transparent);
  filter: blur(1px);
  animation: thermal-scan 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.countdown-value:nth-child(1)::after { animation-delay: 0s; }
.countdown-value:nth-child(2)::after { animation-delay: 0.5s; }
.countdown-value:nth-child(3)::after { animation-delay: 1s; }
.countdown-value:nth-child(4)::after { animation-delay: 1.5s; }

.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

.meeting-status {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* === FORM FIELDS === */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === FORM INPUTS === */
.field-input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-size: 16px; /* Prevents iOS zoom */
  font-family: var(--font-body);
  color: var(--color-text);
  background: rgba(44, 36, 32, 0.7);
  border: 1px solid rgba(232, 88, 12, 0.25);
  border-radius: var(--radius-md);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field-input::placeholder {
  color: var(--color-text-faint);
}

.field-input:focus-visible {
  outline-color: rgba(232, 88, 12, 0.55);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 88, 12, 0.2);
}

.field-input.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(217, 68, 68, 0.15);
}

.field-error {
  display: none;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 0.25rem;
  font-weight: 500;
}

.field-error.visible {
  display: block;
}

.tap-panel-grid {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tap-panel-grid-members {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tap-panel-grid-thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tap-panel {
  min-height: 3.5rem;
  width: 100%;
  padding: 0.8rem 0.875rem;
  border: 1px solid rgba(232, 88, 12, 0.25);
  border-radius: var(--radius-md);
  background: rgba(44, 36, 32, 0.7);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.tap-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 88, 12, 0.45);
}

.tap-panel:focus-visible {
  outline: 2px solid rgba(232, 88, 12, 0.55);
  outline-offset: 2px;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 88, 12, 0.2);
}

.tap-panel.active {
  background: rgba(232, 88, 12, 0.18);
  border-color: rgba(232, 88, 12, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 88, 12, 0.16);
}

.tap-panel-grid.error .tap-panel {
  border-color: rgba(217, 68, 68, 0.5);
}

.tap-panel-grid.error {
  padding: 0.25rem;
  margin: -0.25rem;
  border-radius: calc(var(--radius-md) + 0.25rem);
  box-shadow: 0 0 0 2px rgba(217, 68, 68, 0.14);
}

.tap-panel-title {
  font-weight: 600;
  line-height: 1.2;
}

.tap-panel-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.tap-panel--center {
  align-items: center;
  text-align: center;
}

.tap-panel--other {
  align-items: center;
  text-align: center;
  border-style: dashed;
}

.field-optional {
  font-weight: 400;
  color: var(--color-text-faint);
  font-size: 0.82em;
}

.profession-picker {
  position: relative;
}

.profession-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-height: 14rem;
  overflow-y: auto;
  background: var(--color-surface);
  border: 1px solid rgba(232, 88, 12, 0.3);
  border-radius: var(--radius-md);
  margin-top: 0.35rem;
  padding: 0.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profession-results:empty {
  display: none;
}

.profession-result {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.profession-result:hover,
.profession-result.active {
  background: rgba(232, 88, 12, 0.14);
}

.guest-picker {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.guest-quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.guest-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(232, 88, 12, 0.24);
  border-radius: var(--radius-full);
  background: rgba(44, 36, 32, 0.72);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.guest-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 88, 12, 0.45);
}

.guest-chip.active {
  background: rgba(232, 88, 12, 0.18);
  border-color: rgba(232, 88, 12, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 88, 12, 0.14);
}

.guest-chip--other {
  border-style: dashed;
}

.guest-search-input {
  margin-top: 0.05rem;
}

.guest-results {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 14rem;
  overflow-y: auto;
}

.guest-results:empty {
  display: none;
}

.guest-result {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(232, 88, 12, 0.18);
  border-radius: var(--radius-md);
  background: rgba(44, 36, 32, 0.58);
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.guest-result:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 88, 12, 0.42);
}

.guest-result.active {
  background: rgba(232, 88, 12, 0.18);
  border-color: rgba(232, 88, 12, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 88, 12, 0.14);
}

.guest-result-name {
  font-weight: 600;
  line-height: 1.2;
}

.guest-result-meta {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.guest-picker.error .guest-quick-picks {
  padding: 0.25rem;
  margin: -0.25rem;
  border-radius: calc(var(--radius-md) + 0.25rem);
  box-shadow: 0 0 0 2px rgba(217, 68, 68, 0.14);
}

/* === SUBMIT BUTTON === */
.submit-wrap {
  margin-top: 0.5rem;
}

.submit-btn {
  width: 100%;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--gradient-fire);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 88, 12, 0.4);
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 88, 12, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading .btn-text { visibility: hidden; }
.submit-btn.loading .spinner { display: block; }

.spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
}

/* === 212 SLIDE-UP DRAWER === */
.info-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 96vw);
  z-index: 200;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.about-panel-active .info-drawer {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
}

.info-drawer-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(180deg, rgba(232, 88, 12, 0.96) 0%, rgba(196, 74, 10, 0.98) 100%);
  border: none;
  border-radius: 0.85rem 0.85rem 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 -6px 28px rgba(232, 88, 12, 0.3);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer across the tab */
.info-drawer-tab::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: drawer-shimmer 4s ease-in-out infinite;
}

@keyframes drawer-shimmer {
  0%, 70%, 100% { left: -100%; }
  35% { left: 200%; }
}

.info-drawer-tab:hover {
  background: rgba(255, 106, 30, 0.98);
  box-shadow: 0 -8px 36px rgba(232, 88, 12, 0.45);
}

.info-drawer-tab .chevron {
  display: inline-block;
  transition: transform 0.35s ease;
  font-size: 0.65rem;
}

.info-drawer.open .info-drawer-tab .chevron { transform: rotate(180deg); }

.info-drawer-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: rgba(16, 13, 11, 0.98);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-top: 1px solid rgba(232, 88, 12, 0.35);
  border-left: 1px solid rgba(232, 88, 12, 0.15);
  border-right: 1px solid rgba(232, 88, 12, 0.15);
  box-shadow: 0 -16px 60px rgba(232, 88, 12, 0.12), 0 24px 48px rgba(0, 0, 0, 0.5);
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  text-align: center;
}

.info-drawer.open .info-drawer-body {
  max-height: min(78vh, 720px);
  padding: 1.5rem 1.5rem 1.6rem;
  overflow: auto;
}

/* Thermometer canvas */
.thermo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

.thermo-canvas-wrap {
  position: relative;
  width: 80px;
  height: 220px;
  flex-shrink: 0;
}

.thermo-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.thermo-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.thermo-label {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.thermo-label-hot {
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

.thermo-label-boil {
  font-size: 2rem;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(232, 88, 12, 0.4);
}

.thermo-label-steam {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  font-family: var(--font-body);
  max-width: 18ch;
  line-height: 1.4;
}

/* Divider */
.drawer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 0.8rem auto;
}

/* Meet section */
.drawer-meet {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(232, 88, 12, 0.88);
}

.drawer-meet h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
}

.drawer-meet p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.drawer-lead {
  color: #efe2d5;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: none;
}

.drawer-deep-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.1rem;
}

.drawer-detail-card {
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}

.drawer-detail-card h4 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.drawer-detail-card p {
  margin: 0;
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.drawer-detail-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.drawer-detail-card li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.drawer-detail-card li::before {
  content: '';
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(232, 88, 12, 0.35);
}

.drawer-bottom-note {
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: none;
}

.drawer-takeaways {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.1rem;
}

.drawer-takeaways span {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 88, 12, 0.1);
  border: 1px solid rgba(232, 88, 12, 0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.drawer-site {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.4rem 1.2rem;
  background: rgba(232, 88, 12, 0.15);
  border: 1px solid rgba(232, 88, 12, 0.3);
  border-radius: 2rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.drawer-site:hover {
  background: rgba(232, 88, 12, 0.25);
  border-color: rgba(232, 88, 12, 0.5);
}

/* === SUCCESS SCREEN === */
.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem 1rem;
}

.success-screen.show { display: flex; }

.success-icon {
  width: 72px;
  height: 72px;
  position: relative;
}

.success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(91, 168, 71, 0.3);
  animation: success-ring-expand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.success-icon::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 168, 71, 0.15) 0%, transparent 70%);
  animation: success-glow 2s ease-in-out 0.5s infinite alternate;
}

@keyframes success-ring-expand {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes success-glow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

.success-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--color-success); stroke-width: 2; position: relative; z-index: 1; }

.success-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: check-draw 0.5s ease forwards 0.2s;
}

.success-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  letter-spacing: 0.04em;
}

.success-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 360px;
}

.reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(232, 88, 12, 0.1);
  border: 1px solid rgba(232, 88, 12, 0.3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reset-btn:hover {
  background: rgba(232, 88, 12, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.02);
}

/* === CONFETTI CANVAS === */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 210;
}

/* === MOBILE === */
@media (max-width: 820px) {
  .beer-columns { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 500px) {
  .panel {
    align-items: flex-start;
    padding: max(1rem, env(safe-area-inset-top)) 0.75rem calc(4.75rem + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
  .form-card { padding: 1.5rem 1.25rem; border-radius: 1.25rem; }
  .info-card { padding: 1.5rem 1.25rem; }
  .menu-card { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .visitor-brief-grid { grid-template-columns: 1fr; }
  .team-grid-group {
    padding: 0.85rem;
    border-radius: 1rem;
  }
  .team-grid-cards,
  .team-grid-cards--members { grid-template-columns: 1fr; }
  .team-member,
  .team-member.leader.chair {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.88rem 0.9rem 0.84rem;
  }
  .team-grid-cards--members .team-member {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  }
  .team-grid-cards--members .team-member:last-child {
    border-bottom: 0;
  }
  .team-member-photo,
  .team-member.chair .team-member-photo {
    width: 54px;
    height: 54px;
  }
  .team-section-copy {
    max-width: 30ch;
    font-size: 0.78rem;
  }
  .tap-panel-grid-members,
  .tap-panel-grid-thirds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clouds-pour-row { gap: 0.4rem; }
  .swipe-peek { bottom: calc(4rem + env(safe-area-inset-bottom)); }
  .clouds-event-head { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .tap-panel { min-height: 3.25rem; padding: 0.75rem; }
  .logo-container img { width: 80px; }
  .form-title { font-size: 1.75rem; }
  .countdown-value { font-size: 1.75rem; }
  .nav-dots { bottom: 0.75rem; }
}

@media (max-width: 960px) {
  .panel-arrow { display: none; }
}
