/* ==========================================================
   TR-CAMP 2026 — Lost & Found
   ========================================================== */

:root {
  --cream: #FFF4DD;
  --cream-2: #FFE9BD;
  --ink: #15102E;
  --ink-soft: #2A1F5C;
  --pink: #FF6A1A;
  --pink-hot: #E84F00;
  --coral: #FF5A3C;
  --lime: #C9F32A;
  --lime-deep: #A8D60E;
  --aqua: #4FE0CC;
  --aqua-deep: #1FB8A3;
  --sun: #FFD23D;
  --violet: #6B3BFF;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-harder: 10px 10px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
}

button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--lime); color: var(--ink); }

.display, h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-wrap: balance;
}

.script { font-family: 'Caveat', cursive; font-weight: 700; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: 'ss01' on; }

/* ----- shared layout ----- */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; position: relative; }
.section.wrap { padding: 100px 32px; }
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section.wrap { padding: 72px 18px; }
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 16px; z-index: 50;
  margin: 16px auto 0; max-width: 1320px;
  padding: 0 24px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 14px 10px 24px;
  box-shadow: var(--shadow-hard);
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 20px; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .dot { width: 12px; height: 12px; background: var(--lime); border-radius: 999px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: background .15s;
}
.nav-links a:hover { background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--lime); color: var(--ink);
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--ink);
  transition: transform .15s;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 32px 80px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero { padding: 40px 18px 60px; }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: end;
}
.hero-title {
  font-size: clamp(64px, 12vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
}
.hero-title .it { font-style: italic; font-family: 'Bricolage Grotesque', serif; font-weight: 800; }
.hero-title .pink { color: var(--pink); }
.hero-title .stroke {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}
.hero-sub {
  max-width: 540px; font-size: 19px; line-height: 1.45; color: var(--ink-soft);
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* hero sticker positions — desktop */
.hero-sticker-date { top: 180px; right: 4%; }
.hero-sticker-hanko { top: 340px; right: 16%; }
.hero-sticker-lf { top: 55%; left: -10px; }

/* mobile sticker block — hidden on desktop */
.hero-stickers-mobile {
  display: none;
  gap: 14px;
  margin: 22px 0 0;
  align-items: center;
}
.hero-stickers-mobile .sticker { position: static; }
.hero-sticker-mobile-star {
  box-shadow: none !important;
  border: none !important;
  width: 130px; height: 130px;
  font-size: 16px; line-height: 1.25;
  flex-shrink: 0;
}
.hero-stickers-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-stickers-pills .sticker {
  box-shadow: 3px 3px 0 var(--ink);
}

@media (max-width: 600px) {
  .hero-sticker-abs { display: none !important; }
  .hero-stickers-mobile { display: flex; }
  /* Transformation: larger than before but still fits the screen */
  .hero-line-transform { font-size: clamp(40px, 10.5vw, 60px); line-height: 0.86; }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 700; font-size: 16px;
  transition: transform .15s, box-shadow .15s;
  background: var(--cream); color: var(--ink);
  box-shadow: var(--shadow-hard);
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.pink { background: var(--pink); color: white; }
.btn.lime { background: var(--lime); }
.btn.sun  { background: var(--sun); }
.btn.aqua { background: var(--aqua); }
.btn.ink  { background: var(--ink); color: var(--cream); }

.btn .arr { width: 22px; height: 22px; }

/* stickers */
.sticker {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  user-select: none;
  z-index: 3;
}
.sticker.s-pink { background: var(--pink); color: white; }
.sticker.s-lime { background: var(--lime); color: var(--ink); }
.sticker.s-sun  { background: var(--sun);  color: var(--ink); }
.sticker.s-aqua { background: var(--aqua); color: var(--ink); }
.sticker.s-ink  { background: var(--ink);  color: var(--cream); }

.sticker.round { border-radius: 999px; padding: 14px 22px; }
.sticker.starburst {
  width: 160px; height: 160px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border: none; box-shadow: none;
  font-size: 18px; line-height: 1;
  padding: 0 30px;
}
.sticker.flag {
  padding: 10px 18px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  border: none; box-shadow: none;
}

/* marquee */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.marquee-track {
  display: inline-flex; gap: 36px;
  animation: marquee 26s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; }
.marquee-track .dot {
  width: 22px; height: 22px; border-radius: 999px; background: var(--ink);
}
.marquee.ink-bg { background: var(--ink); color: var(--cream); }
.marquee.pink-bg { background: var(--pink); color: white; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== generic card ===== */
.card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-hard);
}

/* ===== ABOUT ===== */
.about {
  background: var(--ink);
  color: var(--cream);
  border-radius: 48px;
  margin: 0 24px;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--lime); color: var(--ink);
  padding: 8px 16px; border-radius: 999px;
  font-weight: 700;
}
.about-h {
  font-size: clamp(48px, 7vw, 96px);
  margin: 24px 0 16px;
}
.about-h em { color: var(--lime); font-style: normal; }
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.about-text p { margin-bottom: 16px; color: rgba(255,244,221,0.85); }
.about-text strong { color: var(--cream); }
.about-bullets {
  list-style: none;
  display: grid; gap: 12px;
  margin: 20px 0;
}
.about-bullets li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  font-weight: 500;
}
.about-bullets li .b-num {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--lime); color: var(--ink);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 13px;
}
.about-side .mission-card {
  background: var(--pink); color: white;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--cream);
  transform: rotate(2deg);
}
.about-side .mission-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.about-side .mission-card p { font-size: 15px; line-height: 1.5; }

@media (max-width: 820px) {
  .about { margin: 0 12px; padding: 56px 28px; border-radius: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== PROGRAM ===== */
.program-h {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 12px;
}
.program-h .it { font-style: italic; color: var(--pink); }
.program-intro {
  max-width: 720px; font-size: 18px; color: var(--ink-soft);
  margin-bottom: 48px;
}
.program-theme {
  display: inline-flex; flex-direction: column; gap: 6px;
  background: var(--ink); color: var(--cream);
  padding: 24px 32px;
  border-radius: 22px;
  margin-bottom: 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.program-theme .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); font-weight: 700;
}
.program-theme .name {
  font-size: 44px; font-weight: 800; letter-spacing: -0.02em;
}
.program-theme .name span:nth-child(1) { color: var(--pink); }
.program-theme .name span:nth-child(3) { color: var(--lime); }

.program-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 32px;
}
.prog-card {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 32px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform .2s;
}
.prog-card:hover { transform: translateY(-4px); }
.prog-card.c1 { background: var(--pink); color: white; }
.prog-card.c2 { background: var(--lime); }
.prog-card.c3 { background: var(--aqua); }
.prog-card.c4 { background: var(--sun); }
.prog-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700; opacity: 0.7;
}
.prog-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  line-height: 1;
}
.prog-card p { font-size: 15px; line-height: 1.45; }
.prog-card .icon {
  position: absolute; right: -10px; bottom: -10px;
  font-size: 130px; font-weight: 900;
  font-family: 'Bricolage Grotesque', sans-serif;
  opacity: 0.18;
  line-height: 1;
}

@media (max-width: 820px) {
  .program-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { background: var(--pink); color: white; }
.pricing-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.pricing-head h2 {
  font-size: clamp(48px, 7vw, 96px); color: white;
  max-width: 800px;
}
.pricing-head p { max-width: 420px; font-size: 17px; line-height: 1.45; opacity: 0.95; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tariff {
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 28px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-hard);
  position: relative;
}
.tariff .ribbon {
  position: absolute; top: -14px; right: 24px;
  background: var(--lime); color: var(--ink);
  border: 2px solid var(--ink);
  padding: 6px 14px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tariff h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
}
.tariff .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.tariff ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  border-top: 2px dashed rgba(21,16,46,0.18);
  padding-top: 18px;
}
.tariff li {
  display: flex; gap: 10px; align-items: flex-start;
}
.tariff li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--lime); border: 2px solid var(--ink); border-radius: 999px;
  margin-top: 1px;
}
.tariff .price {
  margin-top: auto;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 68px; font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.tariff .price small { font-size: 28px; opacity: 0.7; }

.tariff.featured { background: var(--ink); color: var(--cream); }
.tariff.featured .desc { color: rgba(255,244,221,0.8); }
.tariff.featured ul { border-color: rgba(255,244,221,0.18); }
.tariff.featured li::before { background: var(--pink); border-color: var(--cream); }

.booking-row {
  margin-top: 40px;
  background: var(--ink); color: var(--cream);
  border-radius: 28px; padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px;
  align-items: center;
}
.booking-row .b-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--lime);
}
.booking-row .b-text { font-size: 15px; line-height: 1.45; }
.booking-row .b-text b { color: var(--lime); }

.pricing-note {
  margin-top: 28px;
  background: var(--lime); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; text-align: left; }
}

/* ===== REVIEWS ===== */
.reviews-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
.reviews-head h2 { font-size: clamp(48px, 7vw, 96px); }
.reviews-head h2 .it { font-style: italic; color: var(--pink); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review {
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 28px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.review .quote-mark {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 100px; line-height: 0.7;
  position: absolute; top: 24px; right: 28px;
  color: var(--pink);
  font-weight: 800;
}
.review .who {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.review .avatar {
  width: 52px; height: 52px; border-radius: 999px;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 20px;
}
.review image-slot {
  width: 64px; height: 64px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.review.r1 image-slot { background: var(--pink); color: white; }
.review.r2 image-slot { background: var(--ink); color: var(--cream); }
.review.r3 image-slot { background: var(--pink); color: white; }
.review.r4 image-slot { background: var(--ink); color: var(--cream); }

/* ===== GALLERY ===== */
.gallery-sec { padding-top: 60px; padding-bottom: 120px; position: relative; }
.gallery-head { max-width: 900px; margin-bottom: 56px; }
.gallery-head .sticker { margin-bottom: 18px; }
.gallery-h {
  font-size: clamp(48px, 7vw, 96px);
  margin: 8px 0 18px;
}
.gallery-h .it { font-style: italic; color: var(--pink); }
.gallery-sub {
  font-size: 18px; color: var(--ink-soft);
  max-width: 580px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 22px;
  position: relative;
}
.gtile {
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 10px 10px 38px;
  box-shadow: var(--shadow-hard);
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.gtile:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 12px 12px 0 var(--ink);
  z-index: 5;
}
.gtile image-slot {
  background: var(--cream-2);
  border-radius: 12px;
  overflow: hidden;
}
.gtile-cap {
  display: block;
  text-align: left;
  margin-top: 8px;
  padding: 0 6px;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  position: absolute;
  bottom: 8px; left: 14px; right: 14px;
}

.gallery-stickers { position: absolute; inset: 0; pointer-events: none; }
.gallery-stickers .sticker { pointer-events: auto; position: absolute; }
.gst-1 { top: 220px; right: 4%; font-size: 13px; text-align: center; transform: rotate(8deg); }
.gst-2 { bottom: 80px; left: -10px; font-size: 13px; transform: rotate(-10deg); }

@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 760px)  { .gallery-grid { column-count: 2; } .gst-1, .gst-2 { display: none; } }
@media (max-width: 460px)  { .gallery-grid { column-count: 1; } }
.review .name-block {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
}
.review .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase;
}
.review p { font-size: 15px; line-height: 1.55; white-space: pre-wrap; }
.review p em { font-style: italic; color: var(--pink); font-weight: 600; }
.review.r1 { background: var(--sun); transform: rotate(-1deg); }
.review.r2 { background: var(--aqua); transform: rotate(1deg); }
.review.r3 { background: var(--lime); transform: rotate(0.6deg); }
.review.r4 { background: var(--cream); transform: rotate(-0.6deg); }
.review.r1 .avatar { background: var(--pink); color: white; }
.review.r2 .avatar { background: var(--ink); color: var(--cream); }
.review.r3 .avatar { background: var(--pink); color: white; }
.review.r4 .avatar { background: var(--ink); color: var(--cream); }
@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { background: var(--lime); }
.faq-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; margin-bottom: 56px; }
.faq-head h2 { font-size: clamp(48px, 7vw, 96px); }
.faq-head p { font-size: 17px; line-height: 1.5; color: var(--ink-soft); }
.faq-list {
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq-item.open { box-shadow: var(--shadow-hard); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.faq-q .toggle {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 2px solid var(--ink); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 18px;
  background: var(--cream);
  transition: background .15s, transform .2s;
}
.faq-item.open .toggle { background: var(--pink); color: white; transform: rotate(45deg); }
.faq-a {
  padding: 0 28px;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 28px 24px;
}
.faq-a p { margin-bottom: 10px; font-size: 15px; line-height: 1.55; white-space: pre-wrap; }
.faq-a em { font-style: italic; font-weight: 600; color: var(--pink); }
.faq-a a { text-decoration: underline; font-weight: 600; }

@media (max-width: 820px) {
  .faq-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== REG FORM ===== */
.reg { background: var(--ink); color: var(--cream); }
.reg-head { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.reg-head .badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
  background: var(--lime); color: var(--ink);
  padding: 8px 18px; border-radius: 999px;
  margin-bottom: 24px;
}
.reg-head h2 { font-size: clamp(44px, 6vw, 88px); }
.reg-head h2 em { color: var(--pink); font-style: italic; }
.reg-head p { margin-top: 18px; font-size: 17px; opacity: 0.85; }

.reg-form {
  max-width: 880px; margin: 0 auto;
  background: var(--cream); color: var(--ink);
  border-radius: 32px;
  padding: 48px;
  border: 2px solid var(--cream);
  box-shadow: var(--shadow-harder);
}
.reg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
}
.field input, .field select {
  padding: 14px 18px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-size: 16px;
  outline: none;
  transition: box-shadow .15s, transform .1s;
}
.field input:focus, .field select:focus {
  box-shadow: 4px 4px 0 var(--pink);
  transform: translate(-1px,-1px);
}
.field .range-wrap {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: white;
  border: 2px solid var(--ink); border-radius: 14px;
}
.field .range-wrap input[type=range] { flex: 1; accent-color: var(--pink); }
.field .range-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px; width: 40px; text-align: center;
  color: var(--pink);
}

.radio-group {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.radio-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: white;
  border: 2px solid var(--ink); border-radius: 14px;
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
.radio-opt:hover { background: var(--cream-2); }
.radio-opt.active { background: var(--lime); }
.radio-opt .dot {
  width: 18px; height: 18px; border: 2px solid var(--ink); border-radius: 999px;
  flex-shrink: 0; background: white;
  position: relative;
}
.radio-opt.active .dot::after {
  content: ""; position: absolute; inset: 3px; background: var(--pink); border-radius: 999px;
}

.tariff-pick {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.tariff-opt {
  cursor: pointer;
  padding: 18px;
  background: white; border: 2px solid var(--ink); border-radius: 16px;
  text-align: center;
  transition: transform .1s;
}
.tariff-opt:hover { transform: translateY(-2px); }
.tariff-opt.active { background: var(--pink); color: white; }
.tariff-opt .t-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 16px; margin-bottom: 4px;
}
.tariff-opt .t-price { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; }
@media (max-width: 600px) { .tariff-pick { grid-template-columns: 1fr; } }

.checkrow {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: white;
  border: 2px solid var(--ink); border-radius: 14px;
  cursor: pointer; font-size: 14px; line-height: 1.4;
}
.checkrow .box {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid var(--ink); border-radius: 6px; background: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--ink);
}
.checkrow.active .box { background: var(--lime); }

.submit-btn {
  margin-top: 28px; width: 100%;
  background: var(--pink); color: white;
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-hard);
  transition: transform .15s, box-shadow .15s;
}
.submit-btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }

.form-success {
  text-align: center;
  padding: 40px;
}
.form-success h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px; font-weight: 800;
  margin-bottom: 14px; color: var(--pink);
}

@media (max-width: 700px) {
  .reg-form { padding: 28px; }
  .reg-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.foot {
  background: var(--sun);
  padding: 80px 0 40px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.foot h3 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 28px;
}
.foot h3 .it { font-style: italic; color: var(--pink); }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  margin-bottom: 60px;
}
.foot-card {
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 22px;
  padding: 28px;
}
.foot-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  margin-bottom: 14px;
}
.foot-card .name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.foot-card a { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-weight: 500; }
.foot-card a:hover { color: var(--pink); }

.foot-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.foot-socials a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--cream);
  font-weight: 600; font-size: 14px;
  transition: transform .15s;
}
.foot-socials a:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); background: var(--lime); }

.foot-bottom {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
}
/* floating scroll-to-top button */
.fab-top {
  position: fixed;
  bottom: 32px; right: 24px;
  z-index: 99;
  width: 52px; height: 52px;
  background: var(--ink); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--lime);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity .25s, transform .25s, background .15s, box-shadow .15s;
}
.fab-top--visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top:hover { background: var(--lime); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr; }
}
