:root {
  --red: #df1419;
  --red-dark: #a9080d;
  --ink: #111111;
  --paper: #fffdfa;
  --muted: #686868;
  --line: #d9d4cd;
  --shadow: 0 24px 55px rgba(0,0,0,.14);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 34px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(223,20,25,.06) 0 1px, transparent 2px) 0 0 / 11px 11px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; background: #fff; border: 2px solid #000; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,253,250,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; transform: rotate(-1deg); }
.brand-domain {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: lowercase;
  white-space: nowrap;
}
.brand-domain-accent { color: var(--red); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { text-decoration: none; font-weight: 800; font-size: .94rem; }
.main-nav a:hover { color: var(--red); }
.nav-cta { border: 2px solid var(--ink); padding: 10px 16px; box-shadow: 4px 4px 0 var(--red); }
.menu-button { display: none; width: 46px; height: 42px; padding: 9px; border: 2px solid #111; background: #fff; }
.menu-button span:not(.sr-only) { display: block; height: 3px; margin: 4px 0; background: #111; }

.hero { position: relative; overflow: hidden; padding: 66px 0 84px; }
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% 38%;
  height: 58%;
  background: var(--red);
  transform: rotate(-5deg);
  z-index: -2;
}
.halftone { position: absolute; width: 220px; height: 220px; opacity: .45; pointer-events: none; background: radial-gradient(circle, var(--red) 0 2px, transparent 2.8px) 0 0 / 13px 13px; }
.halftone-one { left: -70px; top: 24px; transform: rotate(12deg); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(38px, 6vw, 88px); }
.eyebrow { margin: 0 0 10px; color: var(--red); font-weight: 950; letter-spacing: .13em; text-transform: uppercase; font-size: .8rem; }
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.4rem, 9vw, 8.8rem);
  line-height: .78;
  letter-spacing: -.045em;
  transform: rotate(-1.3deg);
}
.hero h1 span { display: block; color: var(--red); font-size: 1.22em; }
.brushline {
  display: inline-block;
  margin: 24px 0 22px;
  padding: 7px 20px 10px;
  color: #fff;
  background: #111;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  transform: rotate(-2deg);
  clip-path: polygon(2% 10%, 98% 0, 100% 90%, 3% 100%, 0 56%);
}
.hero-intro { max-width: 620px; margin: 0; font-size: 1.15rem; color: #343434; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translate(-2px,-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 6px 6px 0 #111; }
.button-primary:hover { box-shadow: 9px 9px 0 #111; }
.button-ghost { background: #fff; }
.button-dark { background: #111; color: #fff; box-shadow: 6px 6px 0 rgba(255,255,255,.35); }
.button.full { width: 100%; }
.quickfacts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 34px; max-width: 670px; }
.quickfacts div { border-top: 4px solid #111; padding-top: 8px; }
.quickfacts strong, .quickfacts span { display: block; }
.quickfacts strong { font-size: 1.08rem; }
.quickfacts span { color: var(--muted); font-size: .88rem; }

.hero-visual { position: relative; min-height: 600px; }
.photo-card {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border: 5px solid #111;
  border-radius: 46% 46% 20px 20px / 20% 20% 20px 20px;
  background: #ddd;
  box-shadow: var(--shadow), 16px 16px 0 rgba(255,255,255,.85);
  transform: rotate(2.2deg);
}
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.2)); pointer-events: none; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.discount-badge {
  position: absolute;
  left: -3%;
  bottom: 8%;
  z-index: 4;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background: var(--red);
  border: 5px double #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--red), 8px 11px 0 #111;
  transform: rotate(-10deg);
  text-transform: uppercase;
}
.discount-badge small { font-weight: 900; font-size: .7rem; }
.discount-badge strong { font-family: Impact, sans-serif; font-size: 4rem; line-height: .95; }
.discount-badge span { font-weight: 950; }
.sticker { position: absolute; z-index: 3; display: grid; place-items: center; background: #fff; border: 4px solid #111; box-shadow: 0 0 0 5px #fff; font-weight: 950; }
.sticker-love { right: 6%; top: 9%; padding: 4px 7px; color: var(--red); transform: rotate(9deg); }
.sticker-two { right: 25%; top: 12%; width: 48px; height: 48px; color: #fff; background: #1e7c65; font-size: 1.8rem; transform: rotate(-6deg); }
.scribble { position: absolute; z-index: 5; font-size: 3rem; font-weight: 900; }
.scribble-a { left: -2%; top: 5%; color: #111; transform: rotate(12deg); }
.scribble-b { right: -2%; bottom: 15%; color: var(--red); -webkit-text-stroke: 2px #111; }

.offer { background: #fff; border-block: 1px solid rgba(0,0,0,.08); }
.offer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr; gap: 20px; align-items: stretch; }
.price-card, .included-card, .date-card { border: 3px solid #111; background: var(--paper); box-shadow: 8px 8px 0 rgba(0,0,0,.12); }
.price-card { padding: clamp(26px,4vw,46px); background: linear-gradient(135deg,#fff 0 58%, rgba(223,20,25,.08) 58%); }
.price-card h2 { margin: 14px 0 12px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: .98; letter-spacing: -.045em; }
.brush-label { display: inline-block; margin: 0; padding: 5px 15px; background: #111; color: #fff; text-transform: uppercase; font-weight: 950; transform: rotate(-1deg); }
.regular-price { font-size: 1.15rem; }
.launch-price { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 26px; color: var(--red); }
.launch-price span { font-family: "Segoe Print", cursive; font-weight: 800; font-size: 1.5rem; }
.launch-price strong { font-family: Impact, sans-serif; font-size: clamp(3.2rem, 6vw, 5rem); line-height: 1; }
.included-card, .date-card { padding: 30px; }
.included-card h3, .date-card h3 { margin: 0 0 18px; text-transform: uppercase; font-size: 1.3rem; }
.included-card h3::after { content:""; display:block; width: 80px; height: 5px; margin-top: 6px; background: var(--red); transform: rotate(-2deg); }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; margin: 12px 0; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: .8rem; }
.fineprint { margin: 22px 0 0; color: var(--muted); font-size: .9rem; }
.date-card { display: flex; align-items: flex-start; gap: 18px; background: #111; color: #fff; }
.date-icon { flex: 0 0 66px; aspect-ratio: 1; display: grid; place-items: center; border: 4px solid var(--red); border-radius: 14px; font-family: Impact, sans-serif; font-size: 2rem; }
.kicker { margin: 0 0 4px; color: var(--red); text-transform: uppercase; font-weight: 950; letter-spacing: .1em; }
.date-card p:last-child { margin-bottom: 0; }

.dark-section { position: relative; overflow: hidden; color: #fff; background: #111; }
.dark-section::before { content:""; position:absolute; right:-120px; top:-80px; width:330px; height:330px; background: radial-gradient(circle,var(--red) 0 2px,transparent 3px) 0 0/13px 13px; opacity:.45; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading h2, .patch-copy h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .94; letter-spacing: -.05em; }
.steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.step { position: relative; min-height: 275px; padding: 32px; color: #111; background: #fff; border: 3px solid #fff; box-shadow: 9px 9px 0 var(--red); }
.step:nth-child(2) { transform: rotate(-1deg); }
.step:nth-child(3) { transform: rotate(1deg); }
.step-number { color: var(--red); font-family: Impact,sans-serif; font-size: 4.4rem; line-height: 1; }
.step h3 { margin: 18px 0 8px; font-size: 1.5rem; text-transform: uppercase; }
.step p { margin: 0; color: #454545; }

.patch-showcase { overflow: hidden; }
.patch-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 7vw, 90px); }
.patch-image { position: relative; }
.patch-image::before { content:""; position:absolute; inset: 8% -5% -7% 8%; background: var(--red); transform: rotate(-4deg); z-index:-1; }
.patch-image img { width: 100%; border: 4px solid #111; box-shadow: 12px 12px 0 #111; transform: rotate(2deg); }
.patch-copy p:not(.eyebrow) { font-size: 1.1rem; color: #414141; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag-cloud span { padding: 8px 13px; border: 2px solid #111; font-weight: 900; background:#fff; box-shadow: 3px 3px 0 var(--red); transform: rotate(-1deg); }
.tag-cloud span:nth-child(even) { transform: rotate(2deg); }

.colors { background: #f2f0eb; border-block: 1px solid rgba(0,0,0,.08); }
.color-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.cap-choice { min-height: 220px; margin: 0; padding: 14px 12px 16px; border: 2px solid transparent; background: #fff; text-align: center; transition: .2s ease; }
.cap-choice:hover { border-color:#111; box-shadow: 6px 6px 0 var(--red); transform: translate(-2px,-2px); }
.cap-choice figcaption { margin-top: 10px; }
.cap-choice strong { display:block; margin-top: 0; font-size: .88rem; }
.cap-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; border: 1px solid #e6e1d8; background: #f8f8f8; }

.signup {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.signup::before {
  content: "";
  position: absolute;
  inset: 12% -9% auto 54%;
  height: 70%;
  background: var(--red);
  transform: rotate(-5deg);
  z-index: 0;
}
.halftone-signup { left: -70px; bottom: -70px; transform: rotate(-8deg); }
.signup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.signup-copy h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(2.7rem, 5.6vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.055em;
}
.signup-copy > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.1rem;
  color: #414141;
}
.signup-facts {
  display: grid;
  gap: 8px;
  margin: 26px 0;
  max-width: 570px;
}
.signup-facts span {
  display: block;
  padding: 11px 14px;
  border-left: 7px solid var(--red);
  background: #f1eee8;
}
.signup-button { width: min(100%, 300px); }
.signup-card {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background: #111;
  border: 4px solid #111;
  box-shadow: 14px 14px 0 rgba(255,255,255,.9), 20px 20px 0 #111;
  transform: rotate(1deg);
}
.signup-card::after {
  content: "✦";
  position: absolute;
  right: 22px;
  top: 16px;
  color: var(--red);
  font-size: 3rem;
  transform: rotate(12deg);
}
.qr-link {
  aspect-ratio: 1;
  min-width: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px;
  color: #111;
  background: #fff;
  border: 8px solid #fff;
  outline: 3px dashed var(--red);
  outline-offset: -15px;
  box-shadow: 7px 7px 0 var(--red);
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.qr-link:hover {
  transform: rotate(0deg) translate(-2px,-2px);
  box-shadow: 10px 10px 0 var(--red);
}
.qr-link img {
  width: min(100%, 210px);
  height: auto;
  border: 0;
}
.qr-link span {
  display: block;
  padding: 4px 8px;
  background: #fff;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.signup-price { align-self: end; }
.signup-price span,
.signup-price small { display: block; text-transform: uppercase; font-weight: 900; }
.signup-price span { color: var(--red); font-size: .82rem; letter-spacing: .08em; }
.signup-price strong { display: block; font-family: Impact, sans-serif; font-size: clamp(3.6rem, 6vw, 6.2rem); line-height: .94; }
.signup-price small { color: #aaa; }
.signup-card > img {
  grid-column: 1 / -1;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 54%;
  border: 4px solid #fff;
}

.location {
  position: relative;
  overflow: hidden;
  background: #f2f0eb;
  border-top: 1px solid rgba(0,0,0,.08);
}
.location::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--red) 0 2px, transparent 2.8px) 0 0 / 13px 13px;
  opacity: .35;
  transform: rotate(12deg);
}
.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}
.location-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.location-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
}
.location-copy address {
  display: inline-block;
  margin: 14px 0 24px;
  padding: 10px 14px;
  border-left: 7px solid var(--red);
  background: #fff;
  font-style: normal;
  font-weight: 900;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.location-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(rgba(17,17,17,.88), rgba(17,17,17,.92)),
    radial-gradient(circle at 30% 20%, rgba(223,20,25,.8) 0 3px, transparent 4px) 0 0 / 20px 20px;
  border: 4px solid #111;
  box-shadow: 14px 14px 0 var(--red);
  text-decoration: none;
  transform: rotate(1deg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.location-card:hover {
  transform: rotate(0deg) translate(-3px,-3px);
  box-shadow: 18px 18px 0 var(--red);
}
.location-card small {
  color: var(--red);
  font-weight: 950;
  letter-spacing: .14em;
}
.location-card strong {
  max-width: 470px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: .95;
  text-transform: uppercase;
}
.location-card > span:not(.location-pin) {
  font-size: 1.1rem;
  font-weight: 800;
}
.location-card em {
  margin-top: 18px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}
.location-pin {
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--red);
  font-size: 4rem;
  line-height: 1;
}
.footer-note {
  display: block;
  color: #777;
  font-size: .9rem;
}

.events-strip { padding:24px 0; background:var(--red); color:#fff; }
.events-strip .shell { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.events-strip p { margin:0; font-size:1.12rem; }
.events-strip a { font-weight:950; text-decoration:none; border-bottom:2px solid #fff; }

.site-footer { padding:58px 0; color:#fff; background:#0a0a0a; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:40px; }
.footer-brand .brand-domain { font-size:1.35rem; }
.site-footer h2 { margin-top:0; font-size:1rem; text-transform:uppercase; color:var(--red); }
.site-footer p { color:#aaa; }
.site-footer a:not(.brand) { display:block; margin:7px 0; color:#ddd; text-decoration:none; }
.site-footer a:hover { color:#fff; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 980px) {
  .hero-grid, .patch-grid, .signup-grid, .location-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:760px; }
  .signup::before { inset: 48% -14% -10% 18%; }
  .signup-card, .location-card { max-width: 720px; width: 100%; margin-inline: auto; }
  .hero-visual { min-height:650px; max-width:680px; width:100%; margin-inline:auto; }
  .offer-grid { grid-template-columns:1fr 1fr; }
  .price-card { grid-column:1/-1; }
  .steps { grid-template-columns:1fr; }
  .step { min-height:auto; }
  .color-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  :root { --shell:min(100% - 24px, 1180px); }
  .section { padding:70px 0; }
  .menu-button { display:block; }
  .main-nav {
    position:absolute;
    top:76px;
    left:12px;
    right:12px;
    display:none;
    padding:18px;
    background:#fff;
    border:3px solid #111;
    box-shadow:8px 8px 0 var(--red);
  }
  .main-nav.open { display:grid; gap:10px; }
  .main-nav a { padding:10px; }
  .nav-cta { text-align:center; }
  .hero { padding-top:42px; }
  .hero h1 { font-size:clamp(4rem,22vw,6.7rem); }
  .hero-visual { min-height:510px; }
  .photo-card { inset:0 2% 0 5%; border-radius:40px 40px 18px 18px; }
  .discount-badge { width:145px; left:0; bottom:2%; }
  .discount-badge strong { font-size:3.2rem; }
  .quickfacts { grid-template-columns:1fr; }
  .quickfacts div { display:flex; justify-content:space-between; gap:20px; }
  .offer-grid, .footer-grid { grid-template-columns:1fr; }
  .price-card { grid-column:auto; }
  .color-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .signup-card { min-height: 430px; }
  .events-strip .shell { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 520px) {
  .hero-actions { display:grid; }
  .button { width:100%; }
  .hero-visual { min-height:430px; }
  .photo-card { inset:0; }
  .discount-badge { width:125px; }
  .discount-badge strong { font-size:2.7rem; }
  .sticker-love { top:5%; right:3%; }
  .sticker-two { top:11%; right:29%; }
  .offer-grid { gap:14px; }
  .included-card, .date-card { padding:23px; }
  .date-card { display:block; }
  .date-icon { width:58px; margin-bottom:18px; }
  .signup-card { grid-template-columns: 1fr; min-height: auto; transform: none; }
  .qr-link { width: min(100%, 250px); margin-inline: auto; }
  .signup-price { text-align: center; }
  .signup-card > img { height: 175px; }
  .location-actions { display:grid; }
  .color-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .cap-choice { min-height:155px; }
  .cap-mini { transform:scale(.86); }
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(223,20,25,.075) 0 1.5px, transparent 2.2px) 0 0 / 12px 12px,
    var(--paper);
}
.legal-nav { display:flex; align-items:center; gap:22px; }
.legal-nav a { text-decoration:none; font-weight:900; }
.legal-main { min-height:70vh; }
.legal-hero {
  position:relative;
  overflow:hidden;
  padding:72px 0 78px;
  color:#fff;
  background:#111;
  border-bottom:12px solid var(--red);
}
.legal-hero::after {
  content:"";
  position:absolute;
  right:-6%;
  bottom:-48%;
  width:52%;
  height:110%;
  background:var(--red);
  transform:rotate(-8deg);
  opacity:.94;
}
.legal-hero .shell { position:relative; z-index:2; }
.legal-hero h1 {
  margin:0;
  max-width:880px;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:clamp(4.2rem, 10vw, 8.7rem);
  line-height:.82;
  letter-spacing:-.035em;
  text-transform:uppercase;
  transform:rotate(-1deg);
}
.legal-lead { max-width:700px; margin:24px 0 0; font-size:1.15rem; color:#e2e2e2; }
.legal-halftone { right:8%; top:18px; z-index:1; opacity:.28; }
.legal-layout {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  gap:34px;
  align-items:start;
  padding-top:64px;
  padding-bottom:90px;
}
.legal-card {
  padding:clamp(26px, 5vw, 58px);
  background:#fff;
  border:4px solid #111;
  box-shadow:13px 13px 0 rgba(223,20,25,.9);
}
.legal-section + .legal-section { margin-top:42px; padding-top:38px; border-top:2px solid #ddd7cf; }
.legal-section h2 {
  margin:0 0 16px;
  font-size:clamp(1.45rem, 2.4vw, 2.2rem);
  line-height:1.05;
  letter-spacing:-.035em;
}
.legal-section h2::after { content:""; display:block; width:72px; height:5px; margin-top:9px; background:var(--red); transform:rotate(-2deg); }
.legal-section p, .legal-section li, .legal-section address { color:#343434; }
.legal-section address { font-style:normal; }
.legal-section a { font-weight:800; text-decoration-thickness:2px; text-underline-offset:3px; }
.legal-section ul { padding-left:24px; }
.legal-section li { margin:8px 0; }
.provider-note {
  margin-top:22px;
  padding:14px 16px;
  border-left:6px solid var(--red);
  background:#f4f1ec;
}
.legal-updated { margin:48px 0 0; color:#777; font-size:.9rem; font-weight:800; }
.legal-aside {
  position:sticky;
  top:104px;
  padding:34px 28px;
  color:#fff;
  background:#111;
  border:4px solid #111;
  box-shadow:11px 11px 0 var(--red);
  transform:rotate(1deg);
}
.legal-aside h2 { margin:16px 0 10px; font-size:2rem; line-height:1; text-transform:uppercase; }
.legal-aside p { color:#ccc; }
.legal-aside .button { width:100%; margin-top:18px; }
.legal-sticker {
  display:inline-block;
  padding:5px 10px;
  color:#111;
  background:#fff;
  border:3px solid var(--red);
  font-family:Impact, sans-serif;
  font-size:1.35rem;
  letter-spacing:.06em;
  transform:rotate(-4deg);
}
.legal-text-link { display:inline-block; margin-top:22px; color:#fff; font-weight:900; text-decoration:none; }
.legal-text-link:hover { color:var(--red); }
.site-footer [aria-current="page"] { color:#fff !important; text-decoration:underline !important; text-decoration-color:var(--red) !important; text-decoration-thickness:3px !important; text-underline-offset:5px !important; }

@media (max-width: 920px) {
  .legal-layout { grid-template-columns:1fr; }
  .legal-aside { position:relative; top:auto; max-width:620px; transform:none; }
}
@media (max-width: 760px) {
  .legal-nav a:first-child { display:none; }
  .legal-hero { padding:52px 0 58px; }
  .legal-layout { padding-top:40px; padding-bottom:65px; }
  .legal-card { box-shadow:8px 8px 0 rgba(223,20,25,.9); }
}
@media (max-width: 520px) {
  .legal-nav .nav-cta { padding:8px 10px; box-shadow:3px 3px 0 var(--red); font-size:.82rem; }
  .legal-hero h1 { font-size:clamp(3.5rem, 21vw, 5rem); }
  .legal-card { padding:24px 20px; }
}


/* Integrated workshop booking form */
.booking-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.booking-section::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto 58%;
  height: 82%;
  background: var(--red);
  transform: rotate(-5deg);
  z-index: 0;
}
.booking-halftone {
  left: -70px;
  bottom: -70px;
  transform: rotate(-8deg);
}
.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.booking-copy {
  position: sticky;
  top: 112px;
}
.booking-copy h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(2.7rem, 5.6vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.055em;
}
.booking-copy > p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.1rem;
  color: #414141;
}
.booking-qr {
  display: inline-grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 12px 16px 12px 12px;
  color: #fff;
  background: #111;
  border: 3px solid #111;
  box-shadow: 7px 7px 0 var(--red);
  text-decoration: none;
  transform: rotate(-1deg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.booking-qr:hover {
  transform: translate(-2px,-2px) rotate(0deg);
  box-shadow: 10px 10px 0 var(--red);
}
.booking-qr img {
  width: 104px;
  height: 104px;
  padding: 5px;
  background: #fff;
}
.booking-qr span,
.booking-qr strong {
  display: block;
}
.booking-qr span {
  color: #d0d0d0;
  font-size: .9rem;
}
.booking-qr strong {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}
.booking-panel {
  color: #111;
  background: #fffdfa;
  border: 4px solid #111;
  box-shadow: 14px 14px 0 rgba(255,255,255,.92), 20px 20px 0 #111;
  padding: clamp(24px, 4.5vw, 50px);
  transform: rotate(.5deg);
}
.language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}
.lang-button {
  width: 46px;
  min-height: 38px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  font-weight: 950;
  cursor: pointer;
}
.lang-button.is-active {
  color: #fff;
  background: var(--red);
  box-shadow: 3px 3px 0 #111;
}
.booking-header {
  margin-bottom: 28px;
}
.booking-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.booking-header h3 {
  margin: 0 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.booking-header > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #555;
}
.booking-form {
  display: grid;
  gap: 19px;
}
.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.booking-form label,
.booking-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}
.booking-form label > span,
.booking-form legend {
  font-weight: 850;
}
.booking-form small {
  color: #666;
  font-weight: 500;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"] {
  width: 100%;
  min-height: 50px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  padding: 11px 13px;
}
.booking-form input:focus-visible,
.booking-form button:focus-visible,
.booking-form a:focus-visible {
  outline: 4px solid rgba(223,20,25,.28);
  outline-offset: 2px;
}
.booking-form fieldset {
  border: 0;
  padding: 0;
}
.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.booking-time-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.booking-choice-button {
  min-height: 68px;
  border: 2px solid #111;
  background: #f1eee8;
  color: #111;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.booking-choice-button:hover:not(:disabled) {
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 var(--red);
}
.booking-choice-button strong,
.booking-choice-button span {
  display: block;
}
.booking-choice-button strong {
  font-size: 1.02rem;
}
.booking-choice-button span {
  color: #676767;
  font-size: .82rem;
}
.booking-choice-button.is-selected {
  color: #fff;
  background: #111;
  box-shadow: 5px 5px 0 var(--red);
}
.booking-choice-button.is-selected span {
  color: #fff;
}
.booking-choice-button:disabled {
  opacity: .42;
  cursor: not-allowed;
}
.booking-privacy-row {
  grid-template-columns: 22px 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: #555;
  font-size: .93rem;
}
.booking-privacy-row input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--red);
}
.booking-privacy-row > span {
  font-weight: 500 !important;
}
.booking-privacy-row a {
  color: #111;
  font-weight: 900;
}
.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.booking-submit {
  min-height: 54px;
  border: 3px solid #111;
  color: #fff;
  background: var(--red);
  box-shadow: 6px 6px 0 #111;
  padding: 12px 20px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.booking-submit:hover:not(:disabled) {
  transform: translate(-2px,-2px);
  box-shadow: 9px 9px 0 #111;
}
.booking-submit:disabled {
  opacity: .6;
  cursor: wait;
}
.booking-status {
  min-height: 25px;
  margin: 0;
  font-weight: 750;
}
.booking-status.is-error { color: #a9080d; }
.booking-status.is-success { color: #176b3a; }
.booking-status.is-warning { color: #8a5400; }

@media (max-width: 980px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-section::before { inset: 35% -18% -10% 12%; height: 70%; }
  .booking-copy { position: static; max-width: 760px; }
  .booking-panel { max-width: 760px; width: 100%; margin-inline: auto; }
}

@media (max-width: 760px) {
  .booking-field-grid,
  .booking-choice-grid,
  .booking-time-grid { grid-template-columns: 1fr; }
  .booking-panel { padding: 24px 18px; box-shadow: 8px 8px 0 rgba(255,255,255,.92), 13px 13px 0 #111; }
  .booking-qr { grid-template-columns: 88px 1fr; }
  .booking-qr img { width: 88px; height: 88px; }
}
