/* ========================================
   Joenix — gecombineerde styles
   ======================================== */

:root {
  --lime: #a4e831;
  --lime-dark: #84c020;
  --ink: #0a0a0a;
  --paper: #f5f3ec;
  --paper-warm: #ede9dc;
  --muted: #6b6b6b;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, header, footer, section, nav { position: relative; z-index: 2; }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 100;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.logo-img { display: block; line-height: 0; }
.logo-img img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  transform: skewX(-12deg);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 0.7rem 1.3rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { transform: translateY(-2px); }

@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- HERO (home) ---------- */
.hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 10vw, 8rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 2rem;
  font-variation-settings: 'opsz' 144;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-8deg) rotate(-1deg);
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 50ch;
  color: #2a2a2a;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 1.1rem 2rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  padding: 1.1rem 0.5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.hero-x {
  position: absolute;
  top: 5%;
  right: -3%;
  width: clamp(20rem, 35vw, 40rem);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero-swoosh {
  position: absolute;
  bottom: 2rem;
  left: 10%;
  width: 200px;
  height: 30px;
  opacity: 0.6;
}

/* ---------- CLIENTS STRIP ---------- */
.clients {
  background: var(--ink);
  color: var(--paper);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}
.clients-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.clients-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  white-space: nowrap;
}
.clients-list {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.clients-list span { display: inline-flex; align-items: center; gap: 1rem; }
.clients-list span:not(:last-child)::after {
  content: '✦';
  color: var(--lime);
  font-style: normal;
  font-size: 0.7em;
}

/* ---------- PROBLEM SECTION ---------- */
.problem {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--lime);
}

.problem h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.problem p {
  font-size: 1.15rem;
  max-width: 55ch;
  color: #2a2a2a;
  line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.services {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
  max-width: 1400px;
  margin: 0 auto;
}
.services-header { margin-bottom: 4rem; max-width: 700px; }
.services-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper-warm);
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: var(--paper);
}
.service-card:hover .service-num { color: var(--lime); }
.service-card:hover .service-arrow { background: var(--lime); color: var(--ink); }
.service-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3rem;
  transition: color 0.3s;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}
.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

/* ---------- WHY JOENIX ---------- */
.why {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.why-x-bg {
  position: absolute;
  bottom: -10%;
  right: -5%;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20rem, 40vw, 45rem);
  color: var(--lime);
  opacity: 0.15;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.why-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.why h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 4rem;
  max-width: 18ch;
}
.why h2 em { color: var(--lime); font-style: italic; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.why-item h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.why-item h3::before {
  content: '✦';
  color: var(--lime);
  font-size: 0.8em;
  margin-top: 0.3em;
}
.why-item p { font-size: 1rem; line-height: 1.6; opacity: 0.85; }

/* ---------- ABOUT INTRO ---------- */
.about-intro {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -8% -8% 12% 12%;
  background: var(--lime);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.9;
}
.about-photo .photo-swoosh {
  position: absolute;
  top: -8%;
  left: -5%;
  width: 60%;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.about-text .section-label { margin-bottom: 1rem; }
.about-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-text h2 em {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.about-text h2 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.3em;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-8deg) rotate(-1deg);
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin-bottom: 1rem;
}
.about-text .signature {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-text .signature::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--lime);
}

/* ---------- QUOTE ---------- */
.quote {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1000px;
  margin: 0 auto;
}
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}
.quote blockquote::before {
  content: '"';
  position: absolute;
  left: -0.5rem;
  top: -0.3em;
  font-size: 4em;
  color: var(--lime);
  font-weight: 800;
  line-height: 1;
}
.quote cite {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--lime);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.cta p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 50ch;
  line-height: 1.55;
}
.cta-btn {
  background: var(--ink);
  color: var(--paper);
  padding: 1.3rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s;
}
.cta-btn:hover { transform: translateY(-3px) scale(1.02); }
.cta-x {
  position: absolute;
  top: -10%;
  right: -3%;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15rem, 35vw, 35rem);
  color: var(--ink);
  opacity: 0.08;
  font-weight: 800;
  pointer-events: none;
}

/* ---------- PAGE HEADER (projects & contact) ---------- */
.page-header {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--lime); }
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 144;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.page-header h1 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.3em;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-8deg) rotate(-1deg);
}
.page-header .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 55ch;
  color: #2a2a2a;
  line-height: 1.6;
}
.page-header-x {
  position: absolute;
  top: 5%;
  right: -3%;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15rem, 28vw, 28rem);
  color: var(--lime);
  opacity: 0.18;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ---------- PROJECTS ---------- */
.filter-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.filter-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.filter-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  background: transparent;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.projects {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.project {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(10,10,10,0.1);
}
.project:last-child { border-bottom: 1px solid rgba(10,10,10,0.1); }
@media (max-width: 820px) {
  .project { grid-template-columns: 1fr; gap: 1.5rem; }
}
.project-meta { position: sticky; top: 110px; align-self: start; }
@media (max-width: 820px) { .project-meta { position: static; } }
.project-number {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.project-number::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--lime);
}
.project-client {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.project-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  background: var(--paper-warm);
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(10,10,10,0.08);
}
.tag.highlight {
  background: var(--lime);
  border-color: var(--lime-dark);
  font-weight: 500;
}
.project-body { padding-top: 0.5rem; }
.project-section { margin-bottom: 1.75rem; }
.project-section:last-child { margin-bottom: 0; }
.project-section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.project-section p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1a1a1a;
}
.project-section .pull {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  padding-left: 1.25rem;
  border-left: 3px solid var(--lime);
  margin: 0.5rem 0;
}
.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(10,10,10,0.15);
}
.stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.stat-num em { color: var(--lime); font-style: italic; }
.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.band-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.band p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  max-width: 22ch;
}
.band p em { color: var(--lime); font-weight: 600; font-style: italic; }
.band-x {
  position: absolute;
  bottom: -15%;
  right: -3%;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18rem, 35vw, 35rem);
  color: var(--lime);
  opacity: 0.12;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* ---------- CONTACT FORM ---------- */
.contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 7vw, 6rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--paper-warm);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(10,10,10,0.06);
  position: relative;
  overflow: hidden;
}
.form-card .section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.form-card h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.form-card .form-intro {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .form-row.split { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-row label .opt {
  color: var(--muted);
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
  font-size: 0.85rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 1rem;
  background: var(--paper);
  border: 1.5px solid rgba(10,10,10,0.12);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.1s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--ink);
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.form-row .field-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  font-family: var(--body);
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #c0392b;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
@media (max-width: 540px) { .radio-group { grid-template-columns: 1fr; } }
.radio-option { position: relative; }
.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-option label {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--paper);
  border: 1.5px solid rgba(10,10,10,0.12);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.radio-option input:checked + label {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.radio-option label:hover { border-color: var(--ink); }

.btn-submit {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 1.1rem 2rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-submit svg { transition: transform 0.25s; }
.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit[disabled] { opacity: 0.6; cursor: wait; }
.form-footnote {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}

/* HTMX loading indicator */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }
.htmx-request.btn-submit { opacity: 0.6; cursor: wait; }

/* Success / error messages from contact form */
.form-result {
  background: var(--lime);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: left;
}
.form-result.error {
  background: #fff4f2;
  border: 2px solid #c0392b;
}
.form-result h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.form-result p { font-size: 1.05rem; line-height: 1.6; }

/* ---------- SIDE INFO (contact) ---------- */
.side-info { display: flex; flex-direction: column; gap: 2rem; }
.direct-block .section-label { margin-bottom: 1.25rem; }
.direct-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px dashed rgba(10,10,10,0.15);
  transition: padding 0.2s;
}
.direct-link:last-child { border-bottom: none; }
.direct-link:hover { padding-left: 0.5rem; }
.direct-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.direct-link:hover .direct-icon { background: var(--lime); }
.direct-text { line-height: 1.3; }
.direct-text .top {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.direct-text .value {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.next-block {
  background: var(--ink);
  color: var(--paper);
  padding: 1.75rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.next-block::before {
  content: 'X';
  position: absolute;
  bottom: -20%;
  right: -8%;
  font-family: var(--display);
  font-style: italic;
  font-size: 12rem;
  color: var(--lime);
  opacity: 0.1;
  font-weight: 800;
  pointer-events: none;
  line-height: 1;
}
.next-block .section-label { color: var(--lime); margin-bottom: 1.25rem; }
.next-block .section-label::before { background: var(--lime); }
.next-block h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.next-list {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.next-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245,243,236,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.45;
}
.next-list li:last-child { border-bottom: none; }
.next-list .num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--lime);
  flex-shrink: 0;
  padding-top: 0.15rem;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: 'X';
  position: absolute;
  bottom: -15%;
  left: -3%;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18rem, 35vw, 35rem);
  color: var(--lime);
  opacity: 0.1;
  font-weight: 800;
  pointer-events: none;
  line-height: 1;
}
.faq-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.faq-section .section-label { color: var(--lime); }
.faq-section .section-label::before { background: var(--lime); }
.faq-section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 22ch;
}
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid rgba(245,243,236,0.15);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(245,243,236,0.15); }
.faq-q {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  line-height: 1.25;
}
.faq-q::before {
  content: '✦';
  color: var(--lime);
  font-size: 0.7em;
  flex-shrink: 0;
}
.faq-a {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245,243,236,0.85);
  padding-left: 1.85rem;
  max-width: 70ch;
}

/* ---------- LOCATION ---------- */
.location {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) { .location { grid-template-columns: 1fr; } }
.location-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.location-text h2 em {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.location-text h2 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.3em;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-8deg) rotate(-1deg);
}
.location-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1a1a1a;
  margin-bottom: 1rem;
  max-width: 50ch;
}
.map-illu {
  position: relative;
  aspect-ratio: 1.1;
  background: var(--paper-warm);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.08);
}
.map-illu svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 38%;
  left: 52%;
  z-index: 2;
}
.map-pin .dot {
  width: 16px;
  height: 16px;
  background: var(--lime);
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 6px rgba(164,232,49,0.3);
  animation: ping 2s infinite;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 6px rgba(164,232,49,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(164,232,49,0.15); }
}
.map-pin .label {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.map-pin .label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--ink);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo { display: block; margin-bottom: 0.75rem; }
.footer-logo img { height: 48px; filter: invert(1); }
.footer-brand p {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--lime);
  opacity: 0.8;
}
.footer-meta {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0.8;
}
.footer-meta a { color: var(--paper); text-decoration: none; }
.footer-meta a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,243,236,0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-cta, .hero-tag,
.page-header h1, .page-header .lead, .breadcrumb {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero-tag, .breadcrumb { animation-delay: 0.1s; }
.hero h1, .page-header h1 { animation-delay: 0.2s; }
.hero-sub, .page-header .lead { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.55s; }
