/* ============================================
   Work vs. Luck
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --gray: #888;
  --accent: #00704A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--gray);
  transition: border-color 0.3s;
}

a:hover {
  border-color: var(--white);
}

em {
  font-style: italic;
  color: var(--accent);
}

/* ---- NAV ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-detail {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
}

/* ---- HERO ---- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-pre {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-intro {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2rem;
  text-align: center;
}


.hero-subheading {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.title-line {
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.title-work,
.title-luck,
.title-vs {
  display: inline;
}

.hero-sub {
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

/* Hero coasters */
.hero-coasters {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.hero-coasters canvas {
  display: block;
  width: 100%;
}

/* ---- DIVIDER ---- */

.divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

/* ---- SECTIONS ---- */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-summary .section-body,
.section-intro .section-body {
  max-width: 680px;
}

.section-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}

.section-label h2 {
  font-size: 1.5rem;
  font-weight: 500;
  position: sticky;
  top: 6rem;
}

.section-label .year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.section-body p {
  margin-bottom: 1.25rem;
  color: rgba(245, 245, 240, 0.7);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-body .lead {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.callout {
  border-left: 1px solid var(--accent);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.callout p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white) !important;
  font-style: italic;
}

/* ---- PRESS ---- */

.press-quotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.press-quote p {
  font-style: italic;
  color: var(--white) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.press-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
}

.press-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.press-images img {
  width: 100%;
  border-radius: 2px;
}

/* ---- STARBUCKS SECTION ---- */

.section-starbucks {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.starbucks-network-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.starbucks-network-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid #00704A;
  position: relative;
  overflow: hidden;
}

.starbucks-network-ring canvas {
  width: 100%;
  height: 100%;
}

.starbucks-intro {
  margin-bottom: 4rem;
}

.starbucks-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.starbucks-option p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.starbucks-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.starbucks-headline {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.starbucks-context {
  max-width: 680px;
  margin-bottom: 4rem;
}

.starbucks-context p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.starbucks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* Sleeve & sticker visual */
.sleeve-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.sleeve-visual canvas {
  width: 250px;
  height: 250px;
  margin-bottom: 1.5rem;
}

/* Coaster table */
.coaster-table {
  padding: 0 0 3rem;
}

.coaster-table-placeholder {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-align: center;
  margin-bottom: 1rem;
}

.coaster-table-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #141414;
  border-radius: 4px;
  overflow: hidden;
}

.coaster-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2rem;
}

.coaster-cell:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.coaster-cell canvas {
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
}

.coaster-cell-caption {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.7;
  text-align: center;
  max-width: 280px;
}

.format-pair {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* Coaster flip */
.coaster-flip {
  width: 240px;
  height: 240px;
  perspective: 800px;
  cursor: pointer;
}

.coaster-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.coaster-flip:hover .coaster-inner {
  transform: rotateY(180deg);
}

.coaster-front,
.coaster-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.coaster-front {
  background: var(--white);
}

.coaster-back {
  background: var(--accent);
  transform: rotateY(180deg);
}

.coaster-logo {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coaster-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.coaster-back .format-label {
  color: rgba(255, 255, 255, 0.4);
}

.sleeve-die,
.sticker-die {
  font-size: 6rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.format-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

.sleeve-caption {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  max-width: 500px;
  line-height: 1.7;
}

/* Steps */
.starbucks-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 24px;
}

.step-content h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  font-weight: 400;
}

/* Bottom */
.starbucks-bottom {
}

.starbucks-layers {
  margin-bottom: 5rem;
}

.layers-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--accent);
  text-transform: uppercase;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.layer {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
}

.layer-level {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.layer p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.5);
  line-height: 1.7;
  font-weight: 400;
}

.starbucks-economics {
  display: flex;
  gap: 5rem;
  margin-bottom: 2rem;
}

.econ-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 400;
}

/* Network slider */
.network-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.slider-canvas-wrap {
  display: flex;
  justify-content: center;
}

.slider-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid #00704A;
  overflow: hidden;
}

.slider-ring canvas {
  width: 100%;
  height: 100%;
}

.slider-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slider-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.slider-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.slider-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.slider-stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
}

.slider-stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
}

.starbucks-ask {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.starbucks-ask p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.8;
  max-width: 600px;
}

.starbucks-timeline {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.starbucks-timeline p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.8;
  max-width: 600px;
}

.starbucks-footnote {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.4);
  font-weight: 400;
  margin-top: 1rem;
  font-style: italic;
}

.network-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid #00704A;
  border-bottom: 1px solid #00704A;
  color: #00704A;
  font-size: 0.75rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.network-cta:hover {
  background: #00704A;
  color: var(--white);
  border-color: #00704A;
  border-bottom-color: #00704A;
}

/* ---- DIAGRAM ---- */

.section-diagram {
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.diagram-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.diagram-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.diagram-item {
  max-width: 250px;
}

.diagram-icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.diagram-item p {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  font-weight: 400;
}

.diagram-connector {
  font-size: 1rem;
  color: var(--gray);
}

.diagram-note {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
}

/* ---- LUCK IMAGE ---- */

.luck-image {
  width: 100%;
  margin-bottom: 0.5rem;
  border-radius: 2px;
}

.image-caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* ---- JACK BUTCHER BIO ---- */

.section-bio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bio-inner {
  max-width: 1000px;
}

.bio-header {
  margin-bottom: 3rem;
}

.bio-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.bio-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.bio-col p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.bio-link {
  color: var(--white);
  border-bottom: none;
}

.bio-link:hover {
  color: var(--accent);
}

.bio-links-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bio-links-inline a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white);
}

/* ---- TOUCHPOINTS ---- */

.section-touchpoints {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.touchpoints-header {
  margin-bottom: 5rem;
}

.touchpoint {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.touchpoint:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.touchpoint-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}

.touchpoint-label h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  position: sticky;
  top: 6rem;
}

.touchpoint-context {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
}

.touchpoint-body p {
  margin-bottom: 1.25rem;
  color: rgba(245, 245, 240, 0.7);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
}

.touchpoint-body .lead {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Booth steps */
.booth-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.booth-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.booth-step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 24px;
}

.booth-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.booth-step p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Online features */
.online-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.online-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.online-feature p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Video concepts */
.video-concepts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.video-concept strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.video-concept p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- COLLABORATORS ---- */

.section-collab {
  padding: 6rem 2rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collab-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s;
}

.collab-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.collab-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.collab-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.5);
  line-height: 1.7;
  font-weight: 400;
}

/* ---- FOOTER ---- */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-title {
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.footer p {
  font-size: 0.7rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer a {
  border-bottom-color: var(--gray);
}

.footer a:hover {
  border-bottom-color: var(--white);
  color: var(--white);
}

/* ---- ANIMATIONS ---- */

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-label h2 {
    position: static;
  }

  .starbucks-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .coaster-table-inner {
    grid-template-columns: 1fr;
  }

  .coaster-cell:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .network-slider {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider-ring {
    width: 240px;
    height: 240px;
  }

  .touchpoint-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .touchpoint-label h3 {
    position: static;
  }

  .online-features {
    grid-template-columns: 1fr;
  }

  .bio-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collab-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .diagram-connector {
    display: none;
  }

  .diagram-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .layers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .starbucks-economics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .format-pair {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .coaster-flip {
    width: 200px;
    height: 200px;
  }

  .sleeve-die,
  .sticker-die {
    font-size: 4.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 1.25rem 3rem;
  }

  .die {
    font-size: 1.4rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .section-starbucks {
    padding: 5rem 1.25rem;
  }

  .layers-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 0.75rem 1.25rem;
  }

  .step {
    gap: 1rem;
  }

  .format-pair {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .coaster-flip {
    width: 180px;
    height: 180px;
  }

  .sleeve-die,
  .sticker-die {
    font-size: 4rem;
  }

  .press-images {
    grid-template-columns: 1fr;
  }

  .starbucks-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
