:root {
  --purple: #8b5cf6;
  --purple-hot: #9d5cf5;
  --blue: #4a86d8;
  --teal: #46bfd0;
  --sun: #ffd24a;
  --sun-deep: #f2b705;
  --seaglass: #a8d9d4;
  --ink: #14263d;
  --muted: #5a6b80;
  --bg: #f7f2e6;
  --bg-soft: #e7eef3;
  --card: #fffdf7;
  --gradient: linear-gradient(100deg, var(--purple-hot) 0%, var(--blue) 55%, var(--teal) 100%);
  --shadow-hard: 6px 6px 0 #000;
  --shadow-hard-sm: 4px 4px 0 #000;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
}

h1, h2, h3 {
  font-family: 'Archivo Black', sans-serif;
  margin: 0;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(74, 134, 216, 0.10), rgba(255, 210, 74, 0.07) 45%, transparent 70%);
  transform: translate(-9999px, -9999px);
}

/* Type helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 999px;
  padding: 7px 16px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-hard-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

/* Brand wordmark. The artwork carries its own gradient, so these rules only
   size it. No text styling left to inherit. */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.main-nav a:hover { opacity: 1; color: var(--purple-hot); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid #000;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-small { padding: 9px 18px; font-size: 12.5px; }

.btn-brutal {
  background: var(--sun);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}

.btn-brutal:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.btn-brutal:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #000; }

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: #000;
  box-shadow: var(--shadow-hard-sm);
}

.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; background: var(--seaglass); }

.btn-outline {
  background: var(--card);
  color: var(--ink);
  width: 100%;
  text-align: center;
  justify-content: center;
  box-shadow: var(--shadow-hard-sm);
}

.btn-outline:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; }

.btn-block { width: 100%; justify-content: center; }

/* Stickers / badges */
.sticker {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--seaglass);
  color: var(--ink);
  border: 2px dashed #000;
  border-radius: 999px;
  padding: 8px 18px;
}

.sticker-hero {
  transform: rotate(-6deg);
  margin: 18px 0 6px;
  background: var(--sun);
}

.sticker-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--sun);
  border-style: solid;
  z-index: 2;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 70px;
}

.halftone {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(20, 38, 61, 0.07) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 65%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.hero-blob-1 {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(74, 134, 216, 0.22), transparent 70%);
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 210, 74, 0.28), transparent 70%);
}

.hero-title {
  margin: 0;
  line-height: 0;
}

.hero-title img {
  display: block;
  width: clamp(260px, 58vw, 600px);
  height: auto;
  margin: 0 auto;
}

.hero-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(19px, 3vw, 26px);
  color: var(--ink);
  margin-top: 20px;
  text-transform: lowercase;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--gradient);
  color: #fff;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}

/* Two identical groups on a max-content track: -50% is exactly one group, so
   the loop restarts on a pixel-identical frame. inline-flex would size the
   track to the line box and make -50% drift, which is what left a gap. */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 80s linear infinite;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
}

.marquee-group {
  flex: 0 0 auto;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stat strip */
.stat-strip {
  background: var(--bg-soft);
  color: var(--ink);
  border-bottom: 2px solid #000;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  border-left: 2px dashed rgba(20, 38, 61, 0.2);
}

.stat:first-child { border-left: none; }

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--muted);
}

/* Sections */
.section { padding: 90px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-soft); }

.section-title {
  font-size: clamp(30px, 5vw, 46px);
  margin-top: 18px;
  color: var(--ink);
}

.section-subtitle {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* Some intros carry more detail than a normal subtitle and need a wider
   measure. Same specificity as .section-subtitle, so it must stay after it
   to win. */
.section-subtitle-wide {
  max-width: 720px;
}

.section-subtitle-left {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 500;
}

/* Steps */
.steps-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  background: var(--card);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform 0.15s ease;
}

.step-rotate-1 { transform: rotate(-1.5deg); }
.step-rotate-2 { transform: rotate(1deg); }
.step-rotate-3 { transform: rotate(-0.75deg); }
.step-card:hover { transform: rotate(0deg) translateY(-4px); }

.step-ghost-num {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 84px;
  color: rgba(20, 38, 61, 0.06);
  line-height: 1;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
}

/* Packages */
.packages-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--card);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 34px 26px;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
}

.package-featured {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 6px 6px 0 var(--sun);
}

.package-card h3 { font-size: 22px; }

.package-fit {
  color: var(--muted);
  font-weight: 700;
  font-size: 12.5px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
}

.package-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 38px;
  margin: 10px 0 22px;
}

.package-price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Space Mono', monospace;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}

.package-card li {
  padding: 9px 0;
  border-top: 1px dashed rgba(20, 38, 61, 0.18);
  font-size: 14.5px;
}

.package-card li:first-child { border-top: none; }

.package-flags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 24px;
}

.package-flags strong {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.package-flags strong::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--sun-deep);
  vertical-align: middle;
}

.packages-note {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
  font-weight: 500;
}

.packages-note a {
  color: var(--purple-hot);
  font-weight: 700;
  text-decoration: underline;
}

/* Pricing fine print: the two charges that sit outside the block rate */
.fineprint {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.fineprint li {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  background: var(--card);
  border: 2px dashed #000;
  border-radius: 999px;
  padding: 8px 18px;
}

.fineprint strong { color: var(--purple-hot); }

/* Add-ons */
.addons-title {
  margin-top: 72px;
  text-align: center;
  font-size: clamp(22px, 3.5vw, 30px);
}

/* Flex-wrap rather than a 3-col grid: with five cards a grid strands the last
   row left-aligned, while this centres the remainder. */
.addons-grid {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.addon-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: var(--seaglass);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-hard-sm);
}

.addon-card h4 {
  margin: 0 0 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.addon-card p {
  margin: 0;
  font-size: 14.5px;
  color: #33475c;
}

/* Service area */
.service-area-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.town-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 32px;
  justify-content: start;
}

.town-list li {
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  text-transform: lowercase;
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.town-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.service-note {
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
}

.service-area-map {
  display: flex;
  justify-content: center;
  background: var(--card);
  border: 2px solid #000;
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
  padding: 24px;
}

.service-area-map svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.map-label {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  fill: var(--ink);
}

.map-ocean {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: var(--muted);
  opacity: 0.5;
  text-anchor: middle;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-list details {
  background: var(--card);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-hard-sm);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  cursor: pointer;
  font-size: 15px;
  text-transform: lowercase;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
}

.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: transform 0.15s ease; }

details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-detail {
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  margin-top: 16px;
  color: var(--ink);
}

.contact-detail a {
  color: var(--purple-hot);
  text-decoration: underline;
}

.contact-form {
  background: var(--card);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 34px;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  text-transform: lowercase;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 2px solid #000;
  resize: vertical;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 #000;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Space Mono', monospace;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  color: var(--ink);
  text-align: center;
  padding: 56px 0;
  border-top: 3px solid #000;
}

.footer-logo { display: block; }

.footer-logo img {
  display: block;
  width: clamp(150px, 32vw, 200px);
  height: auto;
  margin: 0 auto;
}

.footer-inner p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-transform: lowercase;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  color: var(--muted) !important;
  font-size: 12px !important;
}

/* ---------- Booking form: package select + add-on checkboxes ---------- */
.contact-form select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 2px solid #000;
  background: #fff;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2314263d' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form select:focus { outline: none; box-shadow: 3px 3px 0 #000; }

.form-addons {
  border: 2px dashed #000;
  border-radius: 10px;
  padding: 14px 16px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-addons legend {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  text-transform: lowercase;
  padding: 0 6px;
}

/* Two classes beat the single-class column rule above, so these stay in a row. */
.contact-form .check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
}

.contact-form .check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--purple-hot);
  padding: 0;
  margin: 0;
}

/* ---------- Cross-page CTA band ---------- */
.cta-band {
  position: relative;
  z-index: 1;
  background: var(--gradient);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 40px 0;
  color: #fff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band-title {
  font-size: clamp(22px, 3.4vw, 32px);
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18);
}

.cta-band-inner p {
  margin: 8px 0 0;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

/* Shared shell for the thanks/404 message pages. */
.message-page {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  text-align: center;
}

.message-inner {
  position: relative;
  z-index: 2;
}

.message-inner .sticker-hero {
  display: inline-block;
  margin-bottom: 20px;
}

.message-inner .page-hero-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Netlify honeypot: present in the DOM for bots to fill in, invisible and
   unreachable for real visitors. display:none would make some spam filters
   ignore the field entirely, so it's positioned off-screen instead. */
.hidden-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* ---------- Secondary page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 54px;
  border-bottom: 2px solid #000;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(34px, 6vw, 58px);
  margin-top: 18px;
}

.page-hero-sub {
  max-width: 540px;
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Drink blends ---------- */
.drinks-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.drink-card {
  position: relative;
  background: var(--card);
  border: 2px solid #000;
  border-radius: 14px;
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drink-card h3 { font-size: 20px; }

.drink-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.drink-badge {
  align-self: flex-start;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 2px;
}

.badge-spirit { background: var(--sun); }
.badge-either { background: var(--seaglass); }
.badge-na     { background: #d9e8f5; }

/* Full-width prompt under the grid rather than a ninth cell, so the nine
   drinks stay a clean 3x3 and the ask reads as a footnote to the lineup. */
.drink-cta-bar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--bg-soft);
  border: 2px dashed #000;
  border-radius: 14px;
  padding: 22px 26px;
}

.drink-cta-bar h3 { font-size: 19px; }

.drink-cta-bar p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* Beats .btn-outline's width:100% on specificity. */
.drink-cta-bar .btn {
  width: auto;
  flex: 0 0 auto;
}

/* ---------- Machines ---------- */
.spec-chips {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.spec-chips li {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  background: var(--card);
  border: 2px solid #000;
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-hard-sm);
}

.spec-chips strong { color: var(--purple-hot); }

.machines-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.machine { margin: 0; }

/* Arch-topped frame: reads as a display window rather than a plain box, and
   holds the right aspect ratio so swapping in a real photo shifts nothing. */
.machine-arch {
  aspect-ratio: 3 / 4;
  border: 2px solid #000;
  border-radius: 999px 999px 16px 16px;
  box-shadow: var(--shadow-hard);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.machine-arch::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(20, 38, 61, 0.28);
  border-radius: 999px 999px 10px 10px;
  pointer-events: none;
}

.machine-slot-label {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(20, 38, 61, 0.5);
}

.machine-seaglass { background: linear-gradient(165deg, #f6efa9 0%, #aee4cd 100%); }
.machine-taffy    { background: linear-gradient(165deg, #f9bcd7 0%, #aac8f3 100%); }
.machine-sandbar  { background: linear-gradient(165deg, #cbb098 0%, #9d7a5c 100%); }

.machine figcaption { margin-top: 16px; }
.machine figcaption h3 { font-size: 19px; }

.machine figcaption p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.machine-note {
  max-width: 660px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .machines-grid { grid-template-columns: 1fr; gap: 34px; }
  .machine-arch { aspect-ratio: 4 / 3; border-radius: 180px 180px 16px 16px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-featured { transform: none; }
  .service-area-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat:nth-child(3) { border-left: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 2px solid #000;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .drinks-grid { grid-template-columns: 1fr; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
