/* ═══════════════════════════════════════════════════════════════════
   DE NIEUWE GIDS — Stijl
   Typografie: Fraunces (display serif) + DM Sans (body)
   Palet: Inktblauw + Warm goud + Perkament
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variabelen ──────────────────────────────────────────────────── */
:root {
  --ink:          #1C2B4B;
  --ink-deep:     #0f1a2e;
  --gold:         #C08B28;
  --gold-light:   #F2E4C4;
  --gold-pale:    #FDF8ED;
  --cream:        #FAFAF6;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --muted:        #6B7280;
  --muted-light:  #9CA3AF;
  --border:       #E5DDD0;
  --border-light: #F0EAE0;
  --success:      #2A6B4C;
  --success-bg:   #EAF4EE;
  --warning:      #92580A;
  --warning-bg:   #FEF3C7;
  --error:        #9B1C1C;
  --error-bg:     #FEE2E2;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(28,43,75,0.08);
  --shadow-md:    0 4px 24px rgba(28,43,75,0.12);
  --shadow-lg:    0 8px 40px rgba(28,43,75,0.16);

  --max-w:        1200px;
  --nav-h:        68px;
}

/* ─── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }

.display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* ─── Layout helpers ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ─── Navigation ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  height: var(--nav-h);
  border-bottom: 3px solid var(--gold);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-deep);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}

.nav__links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav__links a.active { color: #fff; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--ink-deep) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav__cta:hover { background: #d4a030 !important; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 50%, rgba(192,139,40,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at -10% 80%, rgba(192,139,40,0.08) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── Search Bar ──────────────────────────────────────────────────── */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}

.search-bar input::placeholder { color: var(--muted-light); }

.search-bar button {
  background: var(--gold);
  border: none;
  padding: 0 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-deep);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.search-bar button:hover { background: #d4a030; }

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  z-index: 50;
}

.search-suggestions.open { display: block; }

.suggestion-group-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px 4px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.1s;
  text-decoration: none;
  color: var(--text);
}

.suggestion-item:hover { background: var(--gold-pale); }

.suggestion-item__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
}

.suggestion-item__name { font-size: 0.9rem; font-weight: 500; }
.suggestion-item__meta { font-size: 0.75rem; color: var(--muted); }

/* ─── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.stats-bar__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ─── Section ─────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--white); }

.section__header {
  margin-bottom: 48px;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section__sub {
  margin-top: 12px;
  color: var(--muted);
  max-width: 520px;
  font-size: 1rem;
}

/* ─── Branch Grid ─────────────────────────────────────────────────── */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.branch-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--text);
}

.branch-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.branch-card__icon {
  width: 32px;
  height: 32px;
  background: var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.branch-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
}

.branch-card__count {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── Business Cards ──────────────────────────────────────────────── */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.biz-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.biz-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.biz-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.biz-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.biz-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.biz-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.biz-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.biz-card__meta span { display: flex; align-items: center; gap: 4px; }

.biz-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.biz-card__branches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.biz-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

/* ─── Badges ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge--verified {
  background: var(--success-bg);
  color: var(--success);
}

.badge--active {
  background: #EBF5FF;
  color: #1E6BAB;
}

.badge--pending {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge--founding {
  background: linear-gradient(135deg, #F5E6C4, #F2D890);
  color: #7A5800;
  border: 1px solid rgba(192,139,40,0.3);
}

.badge--zzp {
  background: #F3F0FF;
  color: #5B21B6;
}

.badge--online {
  background: #F0FDF4;
  color: #166534;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold-light);
  color: var(--warning);
}

.tag--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ─── How it works ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  position: relative;
}

.step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── FOMO Banner ─────────────────────────────────────────────────── */
.fomo-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.fomo-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(192,139,40,0.12);
}

.fomo-banner__text { position: relative; z-index: 1; }

.fomo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fomo-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  font-size: 1rem;
}

.fomo-banner__action { position: relative; z-index: 1; flex-shrink: 0; }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink-deep);
  border-color: var(--gold);
}
.btn--primary:hover { background: #d4a030; border-color: #d4a030; }

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn--outline-white:hover { border-color: rgba(255,255,255,0.7); }

.btn--sm { font-size: 0.85rem; padding: 9px 18px; }
.btn--lg { font-size: 1.05rem; padding: 16px 32px; }

.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--ink-deep); }

/* ─── Directory Page ──────────────────────────────────────────────── */
.dir-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.filter-panel h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.filter-section { margin-bottom: 28px; }

.filter-section__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.1s;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 2px;
}

.filter-option:hover { background: var(--gold-pale); }
.filter-option.active { background: var(--gold-pale); color: var(--warning); font-weight: 600; }

.filter-option__count {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--border-light);
  padding: 1px 6px;
  border-radius: 100px;
}

.dir-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dir-results__count {
  font-size: 0.9rem;
  color: var(--muted);
}

.dir-results__count strong { color: var(--text); }

/* ─── Business Profile ────────────────────────────────────────────── */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}

.profile-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.profile-card__header {
  background: var(--ink);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.profile-card__header::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(192,139,40,0.15);
}

.profile-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-deep);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.profile-card__badges { display: flex; gap: 6px; flex-wrap: wrap; position: relative; z-index: 1; }

.profile-card__body { padding: 32px; }

.profile-section { margin-bottom: 28px; }

.profile-section__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.profile-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.contact-list { display: flex; flex-direction: column; gap: 10px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-item__icon {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item a { color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.validation-progress {
  margin-bottom: 20px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.progress-bar {
  height: 8px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #d4a030);
  border-radius: 100px;
  transition: width 0.6s ease;
}

.validation-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.validation-item:last-child { border-bottom: none; }

.validation-item__avatar {
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.validation-item__name { font-size: 0.85rem; font-weight: 600; }
.validation-item__city { font-size: 0.75rem; color: var(--muted); }
.validation-item__msg { font-size: 0.8rem; color: var(--muted); margin-top: 2px; font-style: italic; }

/* ─── Registration Form ───────────────────────────────────────────── */
.form-page {
  padding: 64px 0;
  min-height: calc(100vh - var(--nav-h));
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-card__header {
  background: var(--ink);
  padding: 32px 40px;
}

.form-card__header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.form-card__header p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.form-card__body { padding: 40px; }

.invite-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
}

.invite-notice__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.invite-notice p { font-size: 0.9rem; color: var(--text); }
.invite-notice strong { color: var(--ink); }

.form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type { border-bottom: none; margin-bottom: 0; }

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-label span { font-weight: 400; color: var(--muted); }

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Branch selector */
.branch-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.branch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
  color: var(--text);
}

.branch-toggle:hover { border-color: var(--gold); }
.branch-toggle.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--warning); }
.branch-toggle input { display: none; }

/* Type selector */
.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.type-option {
  position: relative;
  cursor: pointer;
}

.type-option input { position: absolute; opacity: 0; width: 0; height: 0; }

.type-option__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.15s;
  background: var(--cream);
}

.type-option input:checked + .type-option__card {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.type-option__card:hover { border-color: var(--gold); }

.type-option__icon { font-size: 1.2rem; }
.type-option__name { font-size: 0.88rem; font-weight: 600; }
.type-option__desc { font-size: 0.75rem; color: var(--muted); }

.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.form-alert--error { background: var(--error-bg); color: var(--error); border: 1px solid #FCA5A5; }
.form-alert--success { background: var(--success-bg); color: var(--success); border: 1px solid #A7F3D0; }
.form-alert--info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

/* ─── Dashboard ───────────────────────────────────────────────────── */
.dashboard-header {
  background: var(--ink);
  padding: 48px 0;
  color: #fff;
}

.dashboard-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dashboard-header p { color: rgba(255,255,255,0.6); }

.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 48px 0;
  align-items: start;
}

.status-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.status-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.status-steps { display: flex; flex-direction: column; gap: 14px; }

.status-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.status-step.done { border-color: var(--success); background: var(--success-bg); }
.status-step.partial { border-color: var(--gold); background: var(--gold-pale); }

.status-step__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--border-light);
}

.status-step.done .status-step__icon { background: var(--success-bg); }
.status-step.partial .status-step__icon { background: var(--gold-pale); }

.status-step__text strong { display: block; font-size: 0.9rem; color: var(--ink); }
.status-step__text span { font-size: 0.8rem; color: var(--muted); }

.invite-box {
  background: linear-gradient(135deg, var(--ink) 0%, #2a3f6b 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}

.invite-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.invite-box p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }

.invite-url {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.invite-url input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-family: monospace;
}

.invite-url button {
  background: var(--gold);
  border: none;
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-deep);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.invite-url button:hover { background: #d4a030; }

.invited-list { display: flex; flex-direction: column; gap: 8px; }

.invited-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.invited-item__name { font-weight: 600; color: var(--ink); flex: 1; }
.invited-item__city { font-size: 0.75rem; color: var(--muted); }

/* ─── Invite Page ─────────────────────────────────────────────────── */
.invite-hero {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.invite-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(192,139,40,0.2) 0%, transparent 60%);
}

.invite-hero__inner { position: relative; z-index: 1; }

.invite-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.invite-hero h1 em { font-style: italic; color: var(--gold); }
.invite-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── Validate Page ───────────────────────────────────────────────── */
.validate-page { padding: 64px 0; }

.validate-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}

.validate-card__header {
  background: var(--ink);
  padding: 28px 32px;
}

.validate-card__header h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.validate-card__header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.validate-card__body { padding: 32px; }

/* ─── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 16px 0;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--text); }

/* ─── Welcome Banner ──────────────────────────────────────────────── */
.welcome-banner {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.welcome-banner__icon { font-size: 2rem; }
.welcome-banner h2 { font-family: var(--font-display); font-size: 1.2rem; color: var(--success); margin-bottom: 6px; }
.welcome-banner p { font-size: 0.9rem; color: #166534; }

/* ─── Empty State ─────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 32px;
  color: var(--muted);
}

.empty-state__icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; }
.empty-state p { font-size: 0.9rem; margin-bottom: 24px; }

/* ─── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer__brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer__col ul a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__bottom .gold { color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dir-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .profile-layout { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fomo-banner { flex-direction: column; gap: 24px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero { padding: 64px 0 56px; }
  .stats-bar__inner { flex-wrap: wrap; gap: 20px; }
  .biz-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card__body { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .search-bar button { padding: 0 16px; font-size: 0.85rem; }
}

/* ─── Animations ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ─── Mobile nav toggle ───────────────────────────────────────────── */
.nav__mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .nav__mobile-cta {
    display: inline-flex;
    background: var(--gold);
    color: var(--ink-deep);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
  }
}
