/* =========================================================
   VoilaTicket — "Bold Block" design system.
   Used by index.html, about.html, contact.html.
   The venue demos under /demos/ are self-contained and do
   NOT use this stylesheet — they are venue-branded.

   Palette and construction rules come from the Block Final
   design: cream paper, deep ink lines, amber / teal / coral
   accents, Archivo Black display type, Montserrat body,
   thick 2.5px ink borders and hard offset shadows.
   No gradients, no soft shadows, no emoji — flat SVG only.
   ========================================================= */

:root {
  --cream: #FBF3E4;
  --ink: #1F2A24;
  --amber: #E8A33D;
  --teal: #17A398;
  --coral: #E2553B;
  --paper: #ffffff;

  --body: #3a4640;      /* long-form text */
  --soft: #4a564c;      /* ledes */
  --muted: #6a766c;     /* fine print on cream */
  --gray: #5a6478;      /* fine print on white cards */
  --teal-deep: #0c3b36; /* text on teal */
  --sky: #bfe8e2;       /* illustration sky */

  --bw: 2.5px;          /* standard border width */
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400; /* Archivo Black is a single weight */
  color: var(--ink);
  margin: 0;
}

h1 { font-size: 52px; line-height: 1.02; letter-spacing: -1.5px; }
h2 { font-size: 30px; line-height: 1.08; letter-spacing: -1px; }
h3 { font-size: 18px; letter-spacing: -0.3px; }
h4 { font-size: 15px; }

p { margin: 0; }

.lede {
  color: var(--soft);
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 62ch;
}

.hero-title--narrow { max-width: 18ch; }

.mark {
  background: var(--amber);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mark--teal { background: var(--teal); color: var(--cream); }

/* badge / eyebrow chip */
.badge {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 5px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 18px;
}
.badge--teal  { background: var(--teal); }
.badge--amber { background: var(--amber); color: var(--ink); }
.badge--ink   { background: var(--ink); box-shadow: 3px 3px 0 var(--teal); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 8px;
  border: var(--bw) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }

.btn--coral { background: var(--coral); color: #fff; }
.btn--teal  { background: var(--teal);  color: #fff; }
.btn--ink   { background: var(--ink);   color: var(--cream); box-shadow: 4px 4px 0 var(--teal); }
.btn--ink:hover  { box-shadow: 2px 2px 0 var(--teal); }
.btn--ink:active { box-shadow: 0 0 0 var(--teal); }
.btn--ghost { background: var(--paper); color: var(--ink); }

.btn .arrow { font-family: var(--sans); font-weight: 800; }

/* ---------- nav ---------- */

.nav {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-word {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand-word span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.nav-links > a { padding: 4px 0; }
.nav-links > a:hover { color: var(--coral); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 9px 16px !important;
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--teal);
  transition: transform .08s ease, box-shadow .08s ease;
}
.nav-cta:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--teal); }

/* hamburger — mobile only */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .15s ease, opacity .15s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 7px 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .08s ease, box-shadow .08s ease;
}
.lang-btn:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.lang-globe { width: 15px; height: 15px; }
.lang-caret { font-size: 9px; }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  min-width: 160px;
  z-index: 60;
}
.lang-menu li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.lang-menu li:hover { background: var(--cream); }
.lang-menu li[aria-selected="true"] { background: var(--amber); }
.lang-code { font-weight: 900; font-size: 11px; letter-spacing: .5px; }

/* ---------- sections ---------- */

.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }

.section-head { margin-bottom: 28px; }
.section-head .lede { margin-top: 12px; }

/* full-width ink band */
.band {
  background: var(--ink);
  padding: 56px 0;
}
.band h2 { color: var(--cream); }
.band .lede { color: #cfd6cf; }

/* ---------- hero ---------- */

.hero { padding: 56px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { margin: 0 0 18px; }
.hero .lede { margin: 0 0 26px; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.trust-item svg { width: 18px; height: 18px; flex: none; }

.hero-art {
  border: 3px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--sky);
}
.hero-art svg { width: 100%; height: auto; }

/* ---------- vertical tiles ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tile {
  display: block;
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .08s ease, box-shadow .08s ease;
}
a.tile:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.tile svg { width: 34px; height: 34px; margin-bottom: 18px; }
.tile-title { font-family: var(--display); font-size: 15px; }
.tile-sub { font-size: 12px; opacity: .85; margin-top: 3px; font-weight: 600; line-height: 1.4; }

.tile--teal  { background: var(--teal);  color: var(--cream); }
.tile--amber { background: var(--amber); color: var(--ink); }
.tile--amber .tile-sub { opacity: .8; }
.tile--coral { background: var(--coral); color: var(--cream); }
.tile--ink   { background: var(--ink);   color: var(--cream); box-shadow: 5px 5px 0 var(--teal); }
a.tile--ink:hover { box-shadow: 3px 3px 0 var(--teal); }

/* ---------- step cards (how it works) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--amber);
  font-family: var(--display);
  font-size: 15px;
  margin-bottom: 14px;
}
.step:nth-child(2) .step-num { background: var(--teal); color: #fff; }
.step:nth-child(3) .step-num { background: var(--coral); color: #fff; }
.step:nth-child(4) .step-num { background: var(--ink); color: var(--cream); }
.step h3 { font-size: 14.5px; margin: 0 0 6px; }
.step p { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }

/* ---------- pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plans--duo { grid-template-columns: 1fr 1fr; }
.plan {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.plan--featured { box-shadow: 5px 5px 0 var(--teal); }
.plan--ink { background: var(--ink); color: var(--cream); box-shadow: 5px 5px 0 var(--amber); }
.plan--ink h3, .plan--ink .plan-price { color: var(--cream); }

.plan-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  margin-bottom: 12px;
}
.plan-tag--teal  { background: var(--teal); color: #fff; }
.plan-tag--amber { background: var(--amber); color: var(--ink); }

.plan h3 { font-size: 16px; margin-bottom: 10px; }
.plan-price {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
}
.plan-price small {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0;
}
.plan-price--sm { font-size: 22px; }
.plan--ink .plan-price small { color: #b8c2bb; }
.plan-blurb { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; margin: 10px 0 14px; }
.plan--ink .plan-blurb { color: #cfd6cf; }

.plan-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.plan-bullets li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  line-height: 1.4;
}
.plan--ink .plan-bullets li { color: #e6ebe6; }
.plan-bullets svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }

/* no-subscription callout */
.callout {
  margin-top: 22px;
  background: var(--amber);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.callout svg { width: 34px; height: 34px; flex: none; }
.callout strong { font-family: var(--display); font-weight: 400; font-size: 15px; display: block; }
.callout p { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: 3px; }

/* ---------- feature cards on ink band ---------- */

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.band-card {
  background: var(--cream);
  border: var(--bw) solid #000;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 4px 4px 0 var(--teal);
}
.band-card:nth-child(2) { box-shadow: 4px 4px 0 var(--amber); }
.band-card:nth-child(3) { box-shadow: 4px 4px 0 var(--coral); }
.band-card svg { width: 30px; height: 30px; margin-bottom: 10px; }
.band-card h3 { font-size: 14px; }
.band-card p { color: var(--gray); font-size: 12.5px; margin-top: 4px; font-weight: 500; line-height: 1.5; }

/* ---------- demo cards ---------- */

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.demo-card {
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .08s ease, box-shadow .08s ease;
}
a.demo-card:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.demo-art { border-bottom: var(--bw) solid var(--ink); background: var(--sky); }
.demo-art svg { width: 100%; height: auto; }
.demo-body { padding: 16px 18px; }
.demo-kicker {
  font-family: var(--display);
  font-size: 11px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.demo-title { font-weight: 800; color: var(--ink); font-size: 16px; margin: 4px 0 6px; }
.demo-sub { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }
.demo-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--teal);
  font-size: 14px;
}
.demo-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); font-weight: 600; font-style: italic; }

/* ---------- experience cards ---------- */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.exp-card {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.exp-card h4 { font-size: 14px; margin: 0 0 6px; }
.exp-card p { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }
.exp-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); font-weight: 600; font-style: italic; max-width: 70ch; }

/* ---------- about page ---------- */

.team-featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}
.team-photo {
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--amber);
  background: var(--paper);
}
.team-photo img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.team-role {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
}
.team-name { font-family: var(--display); font-size: 22px; margin-top: 10px; }
.team-bio { margin-top: 14px; color: var(--body); font-weight: 500; font-size: 15px; line-height: 1.6; max-width: 60ch; }

.team-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.support-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}
.support-card .team-photo { box-shadow: 3px 3px 0 var(--teal); border-radius: 8px; border-width: 2px; }
.support-card .team-name { font-size: 15px; margin-top: 8px; }
.support-card p { margin-top: 6px; color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }

.story { max-width: 68ch; display: flex; flex-direction: column; gap: 16px; }
.story p { color: var(--body); font-size: 15.5px; font-weight: 500; line-height: 1.65; }
.story a { font-weight: 800; color: var(--teal); border-bottom: 2px solid var(--teal); }

.exp-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.exp-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.exp-item .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--amber);
  font-family: var(--display);
  font-size: 12px;
}
.exp-item h4 { margin: 0 0 4px; font-size: 14.5px; }
.exp-item p { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: start;
}
.contact-card {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-card:last-child { box-shadow: 6px 6px 0 var(--amber); }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card > p { color: var(--gray); font-size: 14px; font-weight: 500; line-height: 1.55; margin-bottom: 18px; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.form input, .form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.form input:focus, .form textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--teal);
  background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--muted); font-weight: 600; }

.row { margin-top: 16px; }
.row .label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
}
.row .value { font-weight: 700; font-size: 15px; margin-top: 2px; }
.row .value a { color: var(--teal); border-bottom: 2px solid var(--teal); font-weight: 800; }
.row .value-note { font-size: 12.5px; color: var(--muted); margin-top: 2px; font-weight: 500; }

.divider { border: none; border-top: 2px dashed var(--ink); opacity: .25; margin: 20px 0 14px; }

/* ---------- footer ---------- */

.footer {
  background: var(--teal);
  border-top: 3px solid var(--ink);
  padding: 26px 0;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer .brand-word { font-size: 16px; }
.footer .brand-word span { color: var(--cream); }
.footer-links { display: flex; gap: 18px; font-size: 13px; font-weight: 800; color: var(--teal-deep); }
.footer-links a:hover { color: var(--cream); }
.footer-fine {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-deep);
}

/* ---------- comparison tables (vs Eventbrite) ---------- */

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--paper);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--ink);
  vertical-align: top;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.2px;
  background: var(--cream);
}
.compare-table thead th:first-child { width: 34%; }
.compare-table .col-them { color: var(--gray); }
.compare-table .col-us {
  background: rgba(23, 163, 152, 0.08);
  color: var(--ink);
}
.compare-table .check-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--teal);
}
.compare-table .check-no { color: var(--gray); }

.savings-table-wrap { margin-top: 28px; }
.savings-table .col-saves {
  font-family: var(--display);
  color: var(--coral);
  font-size: 15px;
}

.compare-note {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--soft);
  max-width: 68ch;
  line-height: 1.55;
}
.compare-note strong { color: var(--ink); }

.compare-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- feature list (what's included) ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.feature-card svg { width: 28px; height: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 14.5px; margin-bottom: 4px; }
.feature-card p { color: var(--gray); font-size: 13px; font-weight: 500; line-height: 1.5; }

/* ---------- venue examples (tag grid) ---------- */

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.venue-tag {
  display: inline-block;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- responsive ---------- */

html { overflow-x: clip; }
body { overflow-x: clip; }

@media (max-width: 980px) {
  .tiles, .steps, .plans, .band-grid { grid-template-columns: repeat(2, 1fr); }
  .plans--duo { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 560px; margin: 0 auto; width: 100%; }
  h1 { font-size: 40px; letter-spacing: -1px; }
  .hero .lede { max-width: none; }
}

@media (max-width: 900px) {
  .nav-inner { position: relative; flex-wrap: nowrap; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: var(--bw) solid var(--ink);
    padding: 8px 20px 20px;
    box-shadow: 0 6px 0 var(--ink);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }

  .nav-links > a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px dashed rgba(31, 42, 36, 0.18);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links > a:last-of-type { border-bottom: none; }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    display: flex !important;
    padding: 14px 16px !important;
    min-height: 48px;
  }

  .nav-links .lang-switch {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(31, 42, 36, 0.18);
  }
  .nav-links .lang-btn { min-height: 44px; width: 100%; justify-content: center; }
  .nav-links .lang-menu { position: static; margin-top: 8px; box-shadow: 3px 3px 0 var(--ink); width: 100%; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  h1 { font-size: 33px; letter-spacing: -0.8px; }
  h2 { font-size: 24px; }
  .section { padding: 44px 0; }
  .section--tight { padding: 36px 0; }
  .hero { padding: 36px 0 32px; }

  .hero h1[style*="max-width"],
  .hero-title--narrow { max-width: none !important; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
    min-height: 48px;
  }

  .trust-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .tiles, .steps, .plans, .band-grid, .exp-grid, .features-grid,
  .demo-grid, .contact-grid, .team-support { grid-template-columns: 1fr; }
  .team-featured { grid-template-columns: 1fr; }
  .team-photo { max-width: 240px; }
  .callout { flex-direction: column; align-items: flex-start; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 12px 18px; }
  .footer-fine { line-height: 1.55; }

  .compare-table { font-size: 12.5px; min-width: 520px; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }
  .compare-table-wrap { -webkit-overflow-scrolling: touch; }

  .plan-price { font-size: 26px; }

  .text-center-mobile { text-align: center; }
  .text-center-mobile .lede { margin-left: auto; margin-right: auto; }
  .text-center-mobile .hero-actions { align-items: center; }
  .text-center-mobile .compare-cta { justify-content: center; }

  .btn, .lang-btn { min-height: 44px; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .submit-row .btn { justify-content: center; }
}
