/* ================================================================
   My Wedding Day — Pure CSS Stylesheet
   Brand: #7B2D42 (wine) | #C9A96E (gold) | #6B8F6B (sage) | #FAF7F2 (cream)
   Fonts: Syne (headings) + Lora (body) via Google Fonts
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Cinzel:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --wine:   #7B2D42;
  --gold:   #C9A96E;
  --sage:   #6B8F6B;
  --cream:  #FAF7F2;
  --cream2: #F0EBE3;
  --dark:   #1C1C2E;
  --dark2:  #3A1828;
  --card:   #FFFFFF;
  --text:   #1C1C2E;
  --muted:  #78716c;
  --border: rgba(123,45,66,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow:    0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
}

/* ── Typography ─────────────────────────────────────────────── */
body {
  font-family: 'Syne', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
p, blockquote, .font-lora { font-family: 'Lora', serif; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

.pt-nav { padding-top: 5rem; }

/* ── Grid helpers ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background-color: var(--wine);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.88); }

.btn-secondary {
  background-color: var(--cream2);
  color: var(--wine);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--wine); filter: brightness(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--wine) 0%, var(--gold) 100%);
  color: #fff;
}
.btn-gold:hover { opacity: 0.9; }

.btn-ghost {
  color: var(--wine);
  padding: 0.5rem 1rem;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); border-radius: var(--radius); }

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background-color: #1ebe5d; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.card-hover {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── Inputs ─────────────────────────────────────────────────── */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d6d3d1;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.input::placeholder { color: #a8a29e; }
.input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(123,45,66,0.1);
}
.input-icon-wrap { position: relative; }
.input-icon-wrap .input { padding-left: 2.75rem; }
.input-icon-wrap .icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a8a29e;
  pointer-events: none;
}
.label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-verified { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.badge-featured  { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.badge-premium   { background: linear-gradient(135deg, var(--wine), var(--gold)); color: #fff; }
.badge-standard  { background: var(--cream2); color: var(--wine); border: 1px solid var(--border); }
.badge-basic     { background: #f5f5f4; color: #57534e; border: 1px solid #e7e5e4; }

/* ── Text gradient ──────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--wine) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: 0.875rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.875rem; font-family: 'Syne', sans-serif; }
.alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #86efac; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209,205,199,0.6);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--transition);
}
.navbar:not(.scrolled) .nav-logo { color: #fff; }
.navbar.scrolled       .nav-logo { color: var(--wine); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.navbar:not(.scrolled) .nav-link         { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .nav-link:hover   { color: #fff; background: rgba(255,255,255,0.1); }
.navbar:not(.scrolled) .nav-link.active  { color: #fff; background: rgba(255,255,255,0.2); }
.navbar.scrolled .nav-link               { color: #57534e; }
.navbar.scrolled .nav-link:hover         { color: var(--wine); background: rgba(123,45,66,0.05); }
.navbar.scrolled .nav-link.active        { color: var(--wine); background: rgba(123,45,66,0.06); }

.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.nav-text-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.navbar:not(.scrolled) .nav-text-btn       { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .nav-text-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-text-btn             { color: #57534e; }
.navbar.scrolled .nav-text-btn:hover       { color: var(--wine); background: rgba(123,45,66,0.05); }

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.navbar:not(.scrolled) .nav-hamburger { color: #fff; }
.navbar.scrolled       .nav-hamburger { color: #44403c; }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger span + span { margin-top: 5px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid #e7e5e4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu-inner a, .mobile-menu-inner button {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
  text-decoration: none;
  color: #44403c;
  transition: background var(--transition);
}
.mobile-menu-inner a:hover, .mobile-menu-inner button:hover { background: #f5f5f4; }
.mobile-menu-inner .divider { height: 1px; background: #e7e5e4; margin: 0.5rem 0; }
.mobile-menu-inner .btn-gold { text-align: center; margin-top: 0.25rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background-color: var(--dark); color: #78716c; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: 0.875rem; color: #78716c; line-height: 1.6; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6d3d1;
  transition: background var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.12); }
.footer h4 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer ul li a { font-size: 0.875rem; color: #78716c; text-decoration: none; transition: color var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: #57534e; text-decoration: none; }
.footer-bottom a:hover { color: #78716c; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 6rem 0 8rem;
  background: linear-gradient(160deg, #1C1A28 0%, #3A1828 45%, #7B2D42 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -10rem; right: -10rem;
  width: 31rem; height: 31rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 20px 20px, rgba(201,169,110,0.8) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; line-height: 1.15; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
.hero h1 em { font-family: 'Lora', serif; color: var(--gold); font-style: italic; font-weight: 500; }
.hero-sub { font-family: 'Lora', serif; color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

/* ── Roadmap card ── */
.roadmap-card {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.roadmap-card-inner {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 60px rgba(123,45,66,0.14);
  border: 1px solid rgba(201,169,110,0.15);
}
@media (min-width: 640px) { .roadmap-card-inner { padding: 2rem; } }
@media (min-width: 1024px) { .roadmap-card-inner { padding: 2.5rem; } }

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.roadmap-card-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.roadmap-card-header h2 { font-size: 1.25rem; margin-top: 0.25rem; }
.roadmap-save-btn {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #e7e5e4;
  color: #57534e;
  text-decoration: none;
  transition: all var(--transition);
}
@media (min-width: 640px) { .roadmap-save-btn { display: flex; } }
.roadmap-save-btn:hover { border-color: var(--wine); color: var(--wine); }

/* ── Roadmap controls ── */
.roadmap-controls { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .roadmap-controls { flex-direction: row; } }

.roadmap-date-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.roadmap-date-card .date-inner { flex: 1; }
.roadmap-countdown {
  text-align: center;
  flex-shrink: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
.roadmap-countdown .count-num { font-size: 1.75rem; font-weight: 800; color: var(--wine); display: block; }
.roadmap-countdown .count-lbl { font-size: 0.7rem; font-weight: 600; color: var(--muted); }

.roadmap-style-card {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.style-toggle { display: flex; border-radius: var(--radius); overflow: hidden; border: 1px solid #e7e5e4; }
.style-toggle button {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  background: #fff;
  color: var(--muted);
}
.style-toggle button.active { background: var(--wine); color: #fff; }

.culture-chips { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.culture-chip {
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  transition: all var(--transition);
}
.culture-chip.active { background: var(--wine); color: #fff; border-color: var(--wine); }

/* ── Progress bar ── */
.progress-bar-wrap { margin-bottom: 1.25rem; }
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.375rem;
}
.progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--cream2);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transition: width 0.7s ease;
}

/* ── Milestone accordion ── */
.milestone-list { display: flex; flex-direction: column; gap: 0.5rem; }
.milestone-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}
.milestone-item.status-urgent   { border-color: rgba(220,38,38,0.2); }
.milestone-item.status-upcoming { border-color: rgba(217,119,6,0.2); }
.milestone-item.status-done     { border-color: rgba(107,143,107,0.25); }

.milestone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.milestone-header.no-toggle { cursor: default; }

.milestone-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  background: var(--cream2);
}
.status-urgent   .milestone-icon { background: #fef2f2; }
.status-upcoming .milestone-icon { background: #fffbeb; }
.status-done     .milestone-icon { background: #f0fdf4; }

.milestone-meta { flex: 1; min-width: 0; }
.milestone-phase {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-bottom: 0.125rem;
}
.status-urgent   .milestone-phase { color: #dc2626; }
.status-upcoming .milestone-phase { color: #d97706; }
.status-done     .milestone-phase { color: #16a34a; }

.milestone-title { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.milestone-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.ms-count {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: var(--cream2);
  color: var(--muted);
}
.ms-count.all-done { background: #f0fdf4; color: #16a34a; }

.ms-status-chip {
  display: none;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
@media (min-width: 640px) { .ms-status-chip { display: inline-flex; } }
.status-urgent   .ms-status-chip { background: #fef2f2; color: #dc2626; border: 1px solid rgba(220,38,38,0.15); }
.status-upcoming .ms-status-chip { background: #fffbeb; color: #d97706; border: 1px solid rgba(217,119,6,0.15); }

.ms-chevron { color: var(--muted); transition: transform 0.2s; font-size: 0.875rem; }
.milestone-item.open .ms-chevron { transform: rotate(180deg); }

.milestone-body {
  display: none;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
}
.milestone-item.open .milestone-body { display: block; }

.category-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.category-row + .category-row { border-top: 1px solid rgba(0,0,0,0.04); }
.cat-icon { font-size: 1.125rem; flex-shrink: 0; }
.cat-label {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.cat-label.done { color: #16a34a; text-decoration: line-through; opacity: 0.6; }

.cat-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius);
  background: var(--cream2);
  color: var(--wine);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cat-browse:hover { opacity: 0.75; }

.cat-check {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-check.checked { background: var(--sage); border-color: var(--sage); }
.cat-check svg { display: none; }
.cat-check.checked svg { display: block; }

.wedding-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  margin: 0 0 1rem 1rem;
}

/* ── Cultural banner ── */
.culture-banner {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--cream2);
  color: var(--wine);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.culture-banner.show { display: flex; }

/* ── Roadmap CTA ── */
.roadmap-cta { margin-top: 2.5rem; text-align: center; }
.roadmap-cta p { font-family: 'Lora', serif; font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.roadmap-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .roadmap-cta-btns { flex-direction: row; } }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip { padding: 3.5rem 0; background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-size: 1.875rem; font-weight: 800; }
.stat-label { margin-top: 0.25rem; font-family: 'Lora', serif; font-size: 0.875rem; color: var(--muted); }

/* ================================================================
   SUPPLIER CARD
   ================================================================ */
.supplier-card { text-decoration: none; display: block; }
.supplier-card-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background: linear-gradient(135deg, #f5f0e8, #e8ddd0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #d6d3d1;
}
.supplier-card-img img { width: 100%; height: 100%; object-fit: cover; }
.supplier-card-img-placeholder {
  width: 100%; height: 12rem;
  background: linear-gradient(135deg, #f5f0e8, #e8ddd0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}
.supplier-card-body { padding: 1rem; }
.supplier-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}
.supplier-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.supplier-card-location {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}
.supplier-card-desc {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.supplier-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f5f5f4;
}
.supplier-card-price { font-weight: 700; color: var(--wine); font-size: 0.875rem; }
.star-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--muted); }
.star-rating .star-filled { color: #f59e0b; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }

.how-step { text-align: center; }
.how-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(123,45,66,0.1), rgba(201,169,110,0.15));
  font-size: 1.5rem;
}
.how-step-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.how-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.how-step p { font-family: 'Lora', serif; font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   DARK CTA SECTION
   ================================================================ */
.cta-dark {
  background: linear-gradient(135deg, #1C1A28 0%, #3A1828 50%, #7B2D42 100%);
  padding: 5rem 0;
}
.cta-dark-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.cta-dark .emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cta-dark h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
@media (min-width: 1024px) { .cta-dark h2 { font-size: 2.5rem; } }
.cta-dark p { font-family: 'Lora', serif; color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── Supplier CTA card ── */
.supplier-cta-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .supplier-cta-card { flex-direction: row; align-items: center; } }
.supplier-cta-text { flex: 1; }
.supplier-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
@media (min-width: 1024px) { .supplier-cta-btns { width: auto; } }

.check-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: #57534e; }
.check-list li .check-icon { color: var(--sage); flex-shrink: 0; margin-top: 0.1rem; font-size: 1rem; }

/* ================================================================
   SECTION HEADINGS (reusable)
   ================================================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-heading { font-size: 1.875rem; font-weight: 800; color: #1c1917; }
@media (min-width: 1024px) { .section-heading { font-size: 2.25rem; } }
.section-sub { font-family: 'Lora', serif; color: var(--muted); font-size: 0.9rem; margin-top: 0.375rem; }

/* ================================================================
   SUPPLIERS PAGE
   ================================================================ */
.suppliers-header { background: #fff; border-bottom: 1px solid #f5f5f4; padding: 2rem 0; }
.suppliers-layout { display: flex; flex-direction: column; gap: 2rem; padding: 2rem 0; }
@media (min-width: 1024px) { .suppliers-layout { flex-direction: row; } }

.suppliers-sidebar { width: 100%; flex-shrink: 0; }
@media (min-width: 1024px) { .suppliers-sidebar { width: 16rem; } }

.filter-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; border: 1px solid var(--border); }
.filter-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f5f5f4; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { font-size: 0.8rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-group select, .filter-group input { width: 100%; }

.suppliers-results { flex: 1; min-width: 0; }
.suppliers-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .suppliers-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .suppliers-grid { grid-template-columns: repeat(3, 1fr); } }

.empty-state { padding: 3rem; text-align: center; }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.empty-state h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state p { font-family: 'Lora', serif; color: var(--muted); font-size: 0.875rem; }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }
.page-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  background: #fff;
  color: #57534e;
  border: 1px solid #e7e5e4;
}
.page-btn:hover { background: #f5f5f4; }
.page-btn.active { background: var(--wine); color: #fff; border-color: var(--wine); }

/* ================================================================
   SUPPLIER PROFILE PAGE
   ================================================================ */
.supplier-hero-img {
  width: 100%;
  height: 16rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: linear-gradient(135deg, #f5f0e8, #e8ddd0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.2;
  overflow: hidden;
  position: relative;
}
@media (min-width: 640px) { .supplier-hero-img { height: 20rem; } }
@media (min-width: 1024px) { .supplier-hero-img { height: 24rem; } }
.supplier-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.supplier-profile-layout { display: flex; flex-direction: column; gap: 2rem; padding: 2rem 0; }
@media (min-width: 1024px) { .supplier-profile-layout { flex-direction: row; } }

.supplier-main { flex: 1; min-width: 0; }
.supplier-sidebar-card {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .supplier-sidebar-card { width: 20rem; } }

.contact-card { position: sticky; top: 5.5rem; }

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: #f5f5f4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item img:hover { transform: scale(1.04); }

.review-item { padding: 1.25rem; }
.review-item + .review-item { border-top: 1px solid var(--border); }
.review-meta { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.5rem; }
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: #1c1917; }
.review-date { font-size: 0.75rem; color: var(--muted); margin-top: 0.125rem; }
.review-title { font-size: 0.875rem; font-weight: 600; color: #1c1917; margin-bottom: 0.25rem; }
.review-body { font-family: 'Lora', serif; font-size: 0.875rem; color: #57534e; line-height: 1.7; }

.review-form-card { background: var(--cream); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.review-form-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.star-picker { display: flex; gap: 0.375rem; margin-bottom: 0.75rem; }
.star-btn { font-size: 1.5rem; background: none; border: none; cursor: pointer; transition: transform 0.15s; color: #d6d3d1; }
.star-btn:hover, .star-btn.selected { color: #f59e0b; transform: scale(1.15); }

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-hero { padding: 4rem 0 2.5rem; text-align: center; }
.pricing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) { .pricing-hero h1 { font-size: 3.25rem; } }
.pricing-hero h1 em { color: var(--wine); font-style: italic; }
.pricing-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.pricing-sub { font-family: 'DM Sans', sans-serif; color: var(--muted); font-size: 1rem; max-width: 32rem; margin: 0 auto 2.5rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 62rem; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card-wrap { position: relative; display: flex; flex-direction: column; }
.pricing-badge-above {
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.pricing-badge-above span {
  padding: 0.25rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--gold));
}

.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.pricing-card.highlight {
  border: 2px solid var(--wine);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.pricing-card.gold-border { border: 2px solid var(--gold); }

.pricing-card-head {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card.highlight .pricing-card-head {
  background: linear-gradient(135deg, rgba(123,45,66,0.06), rgba(201,169,110,0.04));
}
.pricing-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pricing-amount { display: flex; align-items: baseline; gap: 0.375rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wine);
}
.pricing-period { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--muted); }
.pricing-desc { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

.pricing-features { padding: 1.5rem; flex: 1; }
.pricing-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; }
.feat-check {
  width: 1rem; height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,45,66,0.1);
}
.feat-check::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: rotate(45deg) translate(-1px, -1px);
}
.pricing-features li span { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text); line-height: 1.4; }

.pricing-cta { padding: 0 1.5rem 1.5rem; }
.pricing-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
}
.pricing-cta a.cta-solid {
  background: linear-gradient(135deg, var(--wine), var(--gold));
  color: #fff;
}
.pricing-cta a.cta-solid:hover { opacity: 0.9; }
.pricing-cta a.cta-outline {
  background: var(--cream2);
  color: var(--wine);
  border: 1px solid var(--border);
}
.pricing-cta a.cta-outline:hover { border-color: var(--wine); }

.pricing-fine { text-align: center; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--muted); margin-top: 2rem; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero {
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(160deg, #1C1A28 0%, #3A1828 50%, #7B2D42 100%);
}
.about-hero .big-emoji { font-size: 3rem; margin-bottom: 1rem; display: block; }
.about-hero h1 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
@media (min-width: 1024px) { .about-hero h1 { font-size: 3rem; } }
.about-hero p { font-family: 'Lora', serif; color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 38rem; margin: 0 auto; line-height: 1.8; }

.stats-about { background: #fff; padding: 3rem 0; }
.stats-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .stats-about-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-about-item { text-align: center; }
.stat-about-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.875rem;
  background: rgba(123,45,66,0.1);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}
.stat-about-value { font-size: 1.5rem; font-weight: 800; }
.stat-about-label { font-family: 'Lora', serif; font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 1.5rem; text-align: center; }
.value-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-family: 'Lora', serif; font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-detail-icon { color: var(--wine); font-size: 1.125rem; margin-top: 0.125rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.875rem; font-weight: 600; color: #1c1917; }
.contact-detail-value { font-size: 0.875rem; color: var(--muted); }
.contact-detail-value a { color: var(--muted); text-decoration: none; transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--wine); }

.contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-form textarea.input { min-height: 7rem; resize: vertical; }
.form-group { margin-bottom: 1rem; }

/* ================================================================
   AUTH PAGES
   ================================================================ */
.auth-layout { display: flex; min-height: 100vh; }
.auth-panel {
  display: none;
  width: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1C1A28 0%, #3A1828 50%, #7B2D42 100%);
}
@media (min-width: 1024px) { .auth-panel { display: flex; } }
.auth-panel-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20px 20px, rgba(201,169,110,0.8) 1px, transparent 0);
  background-size: 40px 40px;
}
.auth-panel-content { position: relative; z-index: 2; text-align: center; max-width: 22rem; }
.auth-panel-emoji { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.auth-panel h2 { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.auth-panel p { font-family: 'Lora', serif; color: rgba(255,255,255,0.5); line-height: 1.7; }
.auth-panel-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.auth-panel-list p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

.auth-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--cream);
}
@media (min-width: 640px) { .auth-form-side { padding: 2.5rem; } }
.auth-form-inner { width: 100%; max-width: 28rem; }

.auth-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--wine);
  text-decoration: none;
  display: block;
  margin-bottom: 2rem;
}
.auth-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.375rem; }
.auth-sub { font-family: 'Lora', serif; font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }
.auth-sub a { color: var(--wine); font-weight: 600; font-family: 'Syne', sans-serif; text-decoration: none; }
.auth-sub a:hover { text-decoration: underline; }

.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  border-radius: var(--radius);
  border: 1px solid #e7e5e4;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Syne', sans-serif;
}
.social-btn:hover { border-color: #d6d3d1; background: #fafaf9; }

.auth-divider { position: relative; text-align: center; margin: 1.25rem 0; }
.auth-divider::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: #e7e5e4;
}
.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--cream);
}

.role-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.role-btn {
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid #e7e5e4;
  background: var(--card);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Syne', sans-serif;
}
.role-btn.active { border-color: var(--wine); background: rgba(123,45,66,0.06); }
.role-btn-icon { font-size: 1.25rem; margin-bottom: 0.5rem; color: #9ca3af; }
.role-btn.active .role-btn-icon { color: var(--wine); }
.role-btn-label { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.role-btn.active .role-btn-label { color: var(--wine); }
.role-btn-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.4; margin-top: 0.25rem; }

.input-pw-wrap { position: relative; }
.input-pw-wrap .input { padding-right: 2.75rem; }
.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a8a29e;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}
.pw-toggle:hover { color: #57534e; }

.auth-form-group { margin-bottom: 1rem; }
.auth-submit {
  width: 100%;
  height: 3rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.auth-terms { margin-top: 1rem; font-family: 'Lora', serif; font-size: 0.75rem; color: var(--muted); text-align: center; }
.auth-terms a { color: inherit; text-decoration: underline; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dashboard-layout { display: flex; min-height: calc(100vh - 4rem); }
.dashboard-sidebar {
  width: 14rem;
  background: #fff;
  border-right: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 1.5rem 1rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .dashboard-sidebar { display: flex; } }
.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: #57534e;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 0.25rem;
}
.dash-nav-link:hover { background: var(--cream); color: var(--wine); }
.dash-nav-link.active { background: rgba(123,45,66,0.08); color: var(--wine); }

.dashboard-main { flex: 1; padding: 2rem 1rem; background: var(--cream); overflow: auto; }
@media (min-width: 640px) { .dashboard-main { padding: 2rem 1.5rem; } }

.dash-welcome { margin-bottom: 2rem; }
.dash-welcome h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.dash-welcome p { font-family: 'Lora', serif; color: var(--muted); font-size: 0.9rem; }

.dash-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .dash-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.dash-stat { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; border: 1px solid var(--border); }
.dash-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--wine); }
.dash-stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

.dash-section { margin-bottom: 2rem; }
.dash-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dash-section-head h2 { font-size: 1.1rem; font-weight: 700; }

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex-1 { flex: 1; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-muted { color: var(--muted); }
.text-wine  { color: var(--wine); }
.text-gold  { color: var(--gold); }
.text-white { color: #fff; }
.bg-white   { background: #fff; }
.bg-cream   { background: var(--cream); }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease-out; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton {
  border-radius: var(--radius);
  background: linear-gradient(90deg, #e5e0d8 25%, #f0ebe3 50%, #e5e0d8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
