/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --paper: #e6f7f4;
  --paper-card: #ffffff;
  --white: #ffffff;
  --cream: #f7f1e3;
  --ink: #10302b;
  --ink-soft: #45635d;
  --ink-faint: rgba(16, 48, 43, 0.6);
  --line: rgba(16, 48, 43, 0.12);

  --turquoise: #0dbfa8;
  --turquoise-dark: #0a9483;
  --turquoise-text: #055b50;
  --tomato: #ef6545;
  --tomato-text: #b23d22;
  --tang: #f49625;
  --shower: #ea5e86;
  --bahamas: #1fcdb8;
  --umbrella: #ffd094;
  --lavender: #f9d4f8;
  --lavender-text: #9c3f97;
  --shortcake: #fcc4c0;
  --twilight: #aecfd0;
  --corn: #f7e9b2;
  --mint: #9bd873;

  --font-display: "Luckiest Guy", cursive;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1200px;
  --header-h: 74px;
  --trust-h: 40px;
  --radius-s: 10px;
  --radius-m: 12px;
  --ticket-shadow: 0 18px 34px -22px rgba(16, 48, 43, 0.24), 0 1px 0 rgba(16, 48, 43, 0.05);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 3px; }

section[id] { scroll-margin-top: calc(var(--header-h) + var(--trust-h) + 16px); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--turquoise);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-s);
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise-text);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 28px;
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: 999px;
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease), background 0.2s var(--ease);
}
.btn-primary {
  background: var(--turquoise);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover { background: var(--turquoise-dark); transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-primary:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary:disabled { opacity: 0.6; transform: none; box-shadow: 5px 5px 0 var(--ink); }
.btn-outline {
  background: var(--paper-card);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  padding: 14px 26px 14px 14px;
}
.btn-outline:hover { background: var(--lavender); }
.btn-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-icon--play { background: var(--lavender); color: var(--ink); }
.btn-ghost { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; padding: 10px 4px; }
.btn-ghost:hover { color: var(--turquoise-text); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 101;
  height: var(--trust-h);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trust-strip .container {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-strip li { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-strip li svg { color: var(--tang); flex-shrink: 0; }
.trust-strip .dot { color: var(--umbrella); }
.trust-strip__cta { margin-left: auto; }
.trust-strip__cta a { display: flex; align-items: center; gap: 6px; transition: opacity 0.2s var(--ease); }
.trust-strip__cta a:hover { opacity: 0.8; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--trust-h); inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 241, 227, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(16, 48, 43, 0.4); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  gap: 4px;
}
.logo span { color: var(--tomato); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-links a { position: relative; padding-bottom: 3px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--tomato);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--trust-h) + 72px);
  padding-bottom: 100px;
  overflow: hidden;
}
.hero__shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__shapes svg { position: absolute; opacity: 0.9; }

.shape-circle-a { top: -18%; left: -10%; width: 320px; color: var(--lavender); animation: drift-a 13s ease-in-out infinite; }
.shape-circle-b { bottom: -26%; right: -12%; width: 380px; color: var(--turquoise); opacity: 0.95; animation: drift-b 15s ease-in-out infinite; }
.shape-sun { top: 6%; left: 46%; width: 80px; color: var(--tang); animation: spin-slow 18s linear infinite; }
.shape-squiggle { top: 26%; right: 3%; width: 54px; color: var(--shower); animation: float-a 8s ease-in-out infinite; }
.shape-dots { color: var(--ink); opacity: 0.4; }
.shape-dots-a { top: 42%; left: 1%; width: 64px; animation: float-c 9s ease-in-out infinite; }
.shape-dots-b { bottom: 10%; right: 20%; width: 56px; animation: float-c 10s ease-in-out infinite reverse; }
.shape-dots-c { top: 10%; left: 22%; width: 40px; animation: float-c 7s ease-in-out infinite; }

.shape-star { top: 16%; right: 28%; width: 34px; color: var(--shortcake); animation: float-b 9s ease-in-out infinite; }
.shape-heart { bottom: 28%; left: 4%; width: 46px; color: var(--shower); animation: float-a 10s ease-in-out infinite; }
.shape-ring { top: 62%; right: 6%; width: 50px; color: var(--mint); animation: drift-a 11s ease-in-out infinite; }
.shape-triangle-outline { bottom: 3%; left: 38%; width: 42px; color: var(--corn); animation: float-b 8.5s ease-in-out infinite; }

@keyframes float-a { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(6deg); } }
@keyframes float-b { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(12px) rotate(-8deg); } }
@keyframes float-c { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(8deg); } }
@keyframes drift-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(14px, 18px) scale(1.03); } }
@keyframes drift-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-16px, -14px) scale(1.04); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-card);
  border-radius: 999px;
  padding: 6px 20px 6px 6px;
  box-shadow: var(--ticket-shadow);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero__badge-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero__preview { display: none; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.hero__line { display: block; }
.hero__line--ink { color: var(--ink); }
.hero__line--turquoise { color: var(--turquoise-dark); }
.hero__line--tomato { color: var(--tomato); }
.hero__lede {
  margin-top: 26px;
  max-width: 52ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 40px;
}
.hero__trust-row li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.hero__trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.hero__trust-icon--teal { background: var(--turquoise); }
.hero__trust-icon--lavender { background: var(--lavender); }
.hero__trust-icon--tang { background: var(--tang); }

.hero__preview-card {
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-m);
  box-shadow: var(--ticket-shadow);
  padding: 26px 26px 22px;
  width: 100%;
  max-width: 280px;
  transform: rotate(3deg);
}
.hero__preview-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-text);
}
.hero__preview-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero__preview-list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px dashed var(--line);
  display: grid;
  gap: 11px;
}
.hero__preview-list li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 600; }
.hero__preview-list svg { color: var(--turquoise-text); flex-shrink: 0; }
.hero__preview-footer {
  margin-top: 20px;
  background: var(--lavender);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__preview-footer-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__preview-footer-label { flex: 1; font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.hero__preview-footer-count { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }

/* ==========================================================================
   Trusted-by strip
   ========================================================================== */
.trusted-strip { padding-block: 28px; border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.trusted-strip__inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trusted-strip__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trusted-strip__logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trusted-strip__logos img {
  height: 22px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.2s var(--ease), opacity 0.2s var(--ease);
}
.trusted-strip__logos img:hover { filter: grayscale(0); opacity: 1; }

/* ==========================================================================
   Section shells
   ========================================================================== */
.section { padding-block: 104px; position: relative; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.02rem; }

.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .section-head p { color: rgba(230, 247, 244, 0.7); }

.reveal { opacity: 0; transform: translateY(20px) rotate(var(--rotate, 0deg)); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0) rotate(var(--rotate, 0deg)); }

/* ==========================================================================
   Lineup carousel
   ========================================================================== */
.lineup-carousel { margin-bottom: 56px; }

.carousel-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.carousel-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  border: 2px solid var(--line);
  background: var(--paper-card);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.86rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.carousel-tab svg { color: var(--ink); flex-shrink: 0; }
.carousel-tab.is-active { background: var(--cat-color); border-color: var(--cat-color); color: var(--ink); }
.carousel-tab.is-active svg { color: var(--ink); }

.carousel-viewport {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-m);
  touch-action: pan-y;
  cursor: grab;
}
.carousel-viewport:active { cursor: grabbing; }
.carousel-viewport:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 4px; }

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), filter 0.45s var(--ease);
  will-change: transform, opacity;
}
.carousel-slide .folder { width: 100%; height: 100%; display: flex; flex-direction: column; }
.carousel-slide .folder__body { flex: 1 1 auto; overflow-y: auto; }
.act-list--single { grid-template-columns: 1fr; }

.carousel-slide[data-state="active"] { transform: translateX(0) scale(1) rotate(0deg); opacity: 1; z-index: 3; pointer-events: auto; }
.carousel-slide[data-state="prev"] { transform: translateX(-102%); opacity: 0; z-index: 1; pointer-events: none; }
.carousel-slide[data-state="next"] { transform: translateX(102%); opacity: 0; z-index: 1; pointer-events: none; }
.carousel-slide[data-state="hidden"] { transform: translateX(0); opacity: 0; z-index: 0; pointer-events: none; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 26px; }
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease);
}
.carousel-arrow:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.carousel-arrow:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--ink); background: transparent; padding: 0; transition: all 0.2s var(--ease); }
.carousel-dot.is-active { background: var(--ink); width: 26px; border-radius: 6px; }

@media (min-width: 721px) {
  .carousel-viewport { height: 540px; }
  .carousel-slide .folder { max-width: 620px; }
  .carousel-slide[data-state="prev"] { transform: translateX(-58%) scale(0.88) rotate(-3deg); opacity: 0.5; z-index: 2; filter: saturate(0.75); }
  .carousel-slide[data-state="next"] { transform: translateX(58%) scale(0.88) rotate(3deg); opacity: 0.5; z-index: 2; filter: saturate(0.75); }
}

/* ==========================================================================
   Folders (ticket-stub cards)
   ========================================================================== */
.folder {
  position: relative;
  background: var(--paper-card);
  border-radius: var(--radius-m);
  box-shadow: var(--ticket-shadow);
}
.folder.is-hidden { display: none; }

.folder__tab {
  background: var(--cat-color, var(--ink));
  color: var(--ink);
  padding: 16px 22px;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.folder__tab .count { opacity: 0.72; font-weight: 400; }

.folder__seam {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(16, 48, 43, 0.22);
  margin: 0 2px;
}
.folder__seam::before, .folder__seam::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper);
}
.folder__seam::before { left: -11px; }
.folder__seam::after { right: -11px; }

.folder__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.folder__icon svg { width: 15px; height: 15px; }

.folder__body { padding: 32px 34px 32px; }

.act-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
.act-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.act-list .act-row:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 720px) {
  .act-list .act-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .act-list .act-row:last-child { border-bottom: none; }
}

.act-row__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cat-color, var(--ink));
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.act-row__icon svg { width: 17px; height: 17px; }
.act-row h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.act-row p { font-size: 0.9rem; color: var(--ink-soft); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: var(--ticket-shadow);
}
.gallery-item:nth-child(odd) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(even) { transform: rotate(1.5deg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(16, 48, 43, 0.75);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 6px;
}

/* ==========================================================================
   Build your own event
   ========================================================================== */
.build-intro { font-size: 1rem; color: var(--ink-soft); max-width: 62ch; margin-bottom: 32px; }

.build-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.build-groups { display: grid; gap: 26px; margin-bottom: 8px; }
.build-group__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cat-color, var(--ink-soft));
  margin-bottom: 12px;
}
.build-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.build-pill {
  padding: 10px 18px;
  border-radius: var(--radius-s);
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.build-pill:hover { border-color: var(--cat-color, var(--ink)); }
.build-pill[aria-pressed="true"] {
  background: var(--cat-color, var(--ink));
  border-color: var(--cat-color, var(--ink));
  color: var(--ink);
}

.custom-request { margin-top: 32px; padding-top: 28px; border-top: 2px dashed var(--line); }
.custom-row { display: flex; flex-wrap: wrap; gap: 12px; }
.custom-row input {
  flex: 1 1 260px;
  padding: 13px 14px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.custom-row input::placeholder { color: rgba(16, 48, 43, 0.35); }
.custom-row input:focus { border-color: var(--turquoise); outline: none; }
.custom-row .btn { flex-shrink: 0; padding: 13px 24px; }

.selection-tray { margin-top: 30px; padding-top: 26px; border-top: 2px dashed var(--line); }
.selection-chips { display: flex; flex-wrap: wrap; gap: 10px; min-height: 22px; align-items: center; }
.selection-empty { font-size: 0.88rem; color: var(--ink-faint); font-style: italic; }
.selection-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  border-radius: var(--radius-s);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 600;
}
.selection-chip button {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(230, 247, 244, 0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.selection-chip button svg { width: 11px; height: 11px; }
.selection-chip button:hover { background: rgba(230, 247, 244, 0.3); }

.build-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 32px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-number {
  width: 46px; height: 46px;
  background: var(--umbrella);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-s);
  border: 2.5px solid var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
}
.step-item:nth-child(1) .step-number { background: var(--tomato); }
.step-item:nth-child(2) .step-number { background: var(--tang); }
.step-item:nth-child(3) .step-number { background: var(--shower); }
.step-item:nth-child(4) .step-number { background: var(--bahamas); }
.step-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-top: 18px;
  line-height: 1.12;
}
.step-item p { margin-top: 10px; color: rgba(230, 247, 244, 0.7); font-size: 0.94rem; }

/* ==========================================================================
   Why us
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-m);
  background: var(--paper-card);
  box-shadow: var(--ticket-shadow);
}
.value-card:nth-child(1) { --rotate: -0.6deg; }
.value-card:nth-child(2) { --rotate: 0.5deg; }
.value-card:nth-child(3) { --rotate: -0.4deg; }
.value-card__mark {
  width: 40px; height: 40px;
  background: var(--turquoise);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  border-radius: var(--radius-s);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.value-card:nth-child(1) .value-card__mark { background: var(--lavender); color: var(--ink); }
.value-card:nth-child(2) .value-card__mark { background: var(--mint); color: var(--ink); }
.value-card:nth-child(3) .value-card__mark { background: var(--shortcake); color: var(--ink); }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-top: 18px;
  line-height: 1.1;
}
.value-card p { margin-top: 12px; color: var(--ink-soft); font-size: 0.94rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 28px 26px;
  border-radius: var(--radius-m);
  background: var(--paper-card);
  box-shadow: var(--ticket-shadow);
  border-left: 5px solid var(--cat-color, var(--turquoise));
}
.review-card:nth-child(1) { --cat-color: var(--twilight); --rotate: 0.6deg; }
.review-card:nth-child(2) { --cat-color: var(--corn); --rotate: -0.5deg; }
.review-card:nth-child(3) { --cat-color: var(--shortcake); --rotate: 0.4deg; }
.review-card p.quote { font-size: 1.02rem; line-height: 1.6; }
.review-card p.quote::before { content: "\201C"; }
.review-card p.quote::after { content: "\201D"; }
.review-card .cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================================
   Enquiry
   ========================================================================== */
.enquire-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }

.enquire-folder { --cat-color: var(--shower); background: var(--white); border: 3px solid var(--shower); }
.enquire-folder .folder__body { padding: 36px 36px 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(16, 48, 43, 0.35); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--turquoise); outline: none; }
.form-field textarea { resize: vertical; min-height: 108px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--tomato); }
.form-error { display: none; margin-top: 6px; font-size: 0.78rem; color: var(--tomato-text); }
.form-field.has-error .form-error { display: block; }

.services-field legend {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  padding: 0;
}
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.service-check { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; }
.service-check input { width: 16px; height: 16px; accent-color: var(--turquoise); }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  background: rgba(13, 191, 168, 0.08);
  border: 2px solid rgba(13, 191, 168, 0.25);
  font-size: 0.9rem;
  white-space: pre-line;
  display: none;
}
.form-status.is-error { background: rgba(239, 101, 69, 0.1); border-color: rgba(239, 101, 69, 0.3); }
.form-status.is-visible { display: block; }

.form-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 6px; }

.enquire-aside .aside-card {
  background: var(--shower);
  color: var(--white);
  text-shadow: -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink), 1px 1px 0 var(--ink);
  border: 3px solid var(--white);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  margin-bottom: 18px;
  box-shadow: var(--ticket-shadow);
}
.enquire-aside .aside-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.25rem; }
.enquire-aside .aside-card p { margin-top: 10px; font-size: 0.9rem; color: var(--white); }
.aside-contact { margin-top: 20px; display: grid; gap: 10px; font-family: var(--font-mono); font-size: 0.86rem; }
.aside-note {
  border: 2px dashed var(--line);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--paper); padding-top: 64px; }
.footer-dots { display: flex; gap: 10px; padding-bottom: 44px; }
.footer-dots span { width: 8px; height: 8px; border-radius: 50%; }
.footer-dots span:nth-child(8n+1) { background: var(--tomato); }
.footer-dots span:nth-child(8n+2) { background: var(--umbrella); }
.footer-dots span:nth-child(8n+3) { background: var(--shower); }
.footer-dots span:nth-child(8n+4) { background: var(--bahamas); }
.footer-dots span:nth-child(8n+5) { background: var(--lavender); }
.footer-dots span:nth-child(8n+6) { background: var(--twilight); }
.footer-dots span:nth-child(8n+7) { background: var(--mint); }
.footer-dots span:nth-child(8n+8) { background: var(--tang); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: rgba(230, 247, 244, 0.7); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--umbrella);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(230, 247, 244, 0.7); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(230, 247, 244, 0.12);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(230, 247, 244, 0.65);
}
.footer-bottom a { color: inherit; transition: color 0.2s var(--ease); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Desktop composition (asymmetric layouts)
   ========================================================================== */
@media (min-width: 981px) {
  .hero__grid { grid-template-columns: 1.15fr 0.75fr; gap: 20px; }
  .hero__preview { display: flex; justify-content: center; }

  .why__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
  .why__intro { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + var(--trust-h) + 40px); max-width: none; }
  .why__cards { grid-template-columns: 1fr; max-width: 460px; }

  .reviews-track { grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; }
  .review-card:nth-child(1) { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
  .review-card:nth-child(1) p.quote { font-size: 1.25rem; line-height: 1.5; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .value-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .enquire-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__shapes { opacity: 0.6; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open { background: var(--paper); border-bottom-color: var(--line); }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    position: fixed;
    top: calc(var(--header-h) + var(--trust-h));
    left: 0; right: 0;
    background: var(--paper);
    padding: 30px 24px 34px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .header-actions .btn-primary {
    display: inline-flex;
    position: fixed;
    top: calc(var(--header-h) + var(--trust-h) + 250px);
    left: 24px;
    z-index: 101;
  }

  .trust-strip .container { justify-content: flex-start; overflow-x: auto; }
  .trust-strip__cta { margin-left: 0; }
  .hero { padding-bottom: 64px; }
  .shape-circle-a { width: 200px; }
  .shape-circle-b { width: 240px; }
  .section { padding-block: 72px; }
  .act-list { grid-template-columns: 1fr; }
  .folder__body { padding: 26px 20px 22px; }
  .folder__tab { padding: 14px 18px; }
  .step-list { grid-template-columns: 1fr; }
  .value-card, .review-card { --rotate: 0deg; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item { transform: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .enquire-folder .folder__body { padding: 26px 18px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__shapes svg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .folder, .nav-links a::after { transition: none; }
  .carousel-slide { transition: none; }
}
