/* ═══════════════════════════════════════
   Aura Invites – Design System
   Mobile-First · BEM · CSS Variables
═══════════════════════════════════════ */

/* ── CSS Variables ─────────────────── */
:root {
  --bg:          #FAF9F6;
  --gold:        #C5A059;
  --gold-light:  #e8d5a8;
  --gold-dark:   #a8853d;
  --text:        #1a1a1a;
  --text-muted:  #4A4A4A;
  --text-light:  #888888;
  --text-subtle: #666666;
  --border:      #e8e0d5;
  --white:       #ffffff;
  --skeleton:    #ede8e0;

  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Montserrat', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);

  --transition:  all 0.4s ease-in-out;
}

/* ── 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(--ff-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--ff-sans); border: none; background: none; cursor: pointer; }
select, input, textarea { font-family: var(--ff-sans); }

/* ── Typography ───────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── Buttons ──────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,160,89,0.3);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ── Section Layout ───────────────── */
.section {
  padding: 80px 20px;
}
.section--light { background: var(--bg); }
.section--white { background: var(--white); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Navigation ───────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav--scrolled {
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 14px 24px;
}
.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav__links {
  display: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links .nav__cta {
  color: var(--white);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
}
.nav__links .nav__cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Mobile Nav Overlay ───────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.mobile-nav-overlay[hidden] { display: none; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  cursor: pointer;
  color: var(--text);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-links a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-links .mobile-cta {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius);
  margin-top: 8px;
}

/* ── Hero ─────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title { margin-bottom: 28px; }
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}
.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.45;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--text);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

/* ── Marquee ──────────────────────── */
.marquee-track {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--white);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 28px;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--border);
  margin-left: 28px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── USP Grid ─────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
.usp-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.usp-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(197,160,89,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.usp-card h3 { font-size: 1.15rem; }
.usp-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── Style Gallery ────────────────── */
.styles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
.style-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.style-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--skeleton);
}
.style-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}
.style-card:hover .style-card__img img { transform: scale(1.05); }
.style-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--gold);
  background: linear-gradient(135deg, #f5ede0, #ede0cc);
  font-style: italic;
}
.style-card__body {
  padding: 28px;
}
.style-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.style-card__title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.style-card__desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.style-card__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Pricing ──────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(197,160,89,0.18);
}
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-card__currency {
  font-family: var(--ff-sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-card__amount {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.pricing-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-feature__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.pricing-card__btn { margin-top: auto; }
.pricing-card__scarcity {
  font-size: 12px;
  font-style: italic;
  color: var(--text-subtle);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Social Proof Banner */
.social-proof {
  text-align: center;
  margin-bottom: 48px;
}
.social-proof__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 8px; }
.social-proof__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-subtle);
}

/* ── What's Included ──────────────── */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.included-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.included-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197,160,89,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.included-item__title { font-size: 1rem; margin-bottom: 4px; }
.included-item__desc  { font-size: 13px; color: var(--text-muted); }

/* ── How It Works ─────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 56px;
  counter-reset: steps;
}
.step { display: flex; gap: 20px; }
.step__num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.step__title { font-size: 1.1rem; margin-bottom: 6px; }
.step__desc   { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Vision Section ───────────────── */
.vision {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg);
}
.vision__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.vision__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.75;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Reviews ──────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card__text  { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.review-card__author { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--text); }
.review-card__year   { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ── FAQ Accordion ────────────────── */
.faq-list { margin-top: 56px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--text);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s ease-in-out;
  color: var(--gold);
}
.faq-item--open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.faq-answer__inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Footer ───────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 40px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer__brand h3 {
  font-family: var(--ff-serif);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.footer__brand p { font-size: 13px; line-height: 1.7; }
.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 13px; transition: color 0.3s; }
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  text-align: center;
}

/* ── WhatsApp FAB ─────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ── Toast Notifications ──────────── */
#toast-container {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--text);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.4s ease;
  max-width: 300px;
  pointer-events: auto;
}
.toast--success { background: #2d7a4f; }
.toast--error   { background: #b83232; }
@keyframes toastIn  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

/* ── Skeleton Loading ─────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--skeleton) 25%, #e8e2d8 50%, var(--skeleton) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ── Modal ────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 990;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-panel {
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 36px 24px 40px;
  width: 100%;
  max-width: 600px;
  max-height: 92svh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}
.modal-title {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  justify-content: center;
}

/* ── Admin Panel ──────────────────── */
.admin-wrap { display: none; }
.admin-wrap.active { display: block; }

.admin-login {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login__logo {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.admin-login__sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 36px;
}
.admin-login__input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
  outline: none;
}
.admin-login__input:focus { border-color: var(--gold); }

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100svh;
}
.admin-sidebar {
  background: var(--text);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar__logo {
  font-family: var(--ff-serif);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover   { color: var(--white); background: rgba(255,255,255,0.05); }
.admin-nav-item--active { color: var(--white); border-left-color: var(--gold); background: rgba(197,160,89,0.1); }
.admin-sidebar__logout {
  margin-top: auto;
  padding: 12px 24px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.admin-sidebar__logout:hover { color: var(--white); }

.admin-main { padding: 36px; background: #f2f0ec; overflow-y: auto; }
.admin-header { margin-bottom: 32px; }
.admin-header h1 { font-size: 1.8rem; margin-bottom: 4px; }
.admin-header p  { color: var(--text-muted); font-size: 13px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.kpi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.kpi-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.kpi-card__value { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 500; color: var(--text); }
.kpi-card__sub   { font-size: 12px; color: var(--gold); margin-top: 4px; }

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.admin-table-header h2 { font-size: 1.1rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: left;
  padding: 14px 20px;
  background: #faf9f6;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #faf9f6; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-nieuw            { background: #e8f0fe; color: #1a56db; }
.status-in_behandeling   { background: #fef3c7; color: #92400e; }
.status-ontwerp_klaar    { background: #d1fae5; color: #065f46; }
.status-afgerond         { background: #e5e7eb; color: #374151; }
.status-geannuleerd      { background: #fee2e2; color: #991b1b; }

.admin-btn {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.admin-btn:hover { background: var(--gold); color: var(--white); }
.admin-btn--danger { border-color: #b83232; color: #b83232; }
.admin-btn--danger:hover { background: #b83232; color: var(--white); }

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 980;
  animation: fadeIn 0.3s;
}
.drawer-overlay[hidden] { display: none; }
.drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  padding: 32px;
  animation: slideIn 0.35s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-close { cursor: pointer; float: right; color: var(--text-muted); }
.drawer-title { font-size: 1.5rem; margin-bottom: 24px; }
.drawer-field { margin-bottom: 18px; }
.drawer-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 4px; }
.drawer-field span, .drawer-field p { font-size: 14px; color: var(--text); }
.drawer-field select, .drawer-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 14px;
  margin-top: 4px;
  outline: none;
}
.drawer-field select:focus, .drawer-field textarea:focus { border-color: var(--gold); }
.drawer-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* CMS Tabs */
.cms-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.cms-tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.cms-tab--active { color: var(--gold); border-bottom-color: var(--gold); }
.cms-panel { display: none; }
.cms-panel--active { display: block; }
.cms-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  resize: vertical;
  outline: none;
  font-family: var(--ff-sans);
  color: var(--text);
  transition: border-color 0.3s;
}
.cms-textarea:focus { border-color: var(--gold); }
.cms-field { margin-bottom: 20px; }
.cms-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 6px; }

/* ── Responsive Breakpoints ───────── */
@media (min-width: 640px) {
  .usp-grid         { grid-template-columns: 1fr 1fr; }
  .styles-grid      { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr 1fr; }
  .included-grid    { grid-template-columns: 1fr 1fr; }
  .reviews-grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid       { grid-template-columns: 1fr 1fr; }
  .footer__inner    { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom   { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .section         { padding: 100px 40px; }
  .nav__links      { display: flex; }
  .nav__burger     { display: none; }
  .styles-grid     { grid-template-columns: repeat(3,1fr); }
  .pricing-grid    { grid-template-columns: repeat(3,1fr); }
  .included-grid   { grid-template-columns: repeat(3,1fr); }
  .reviews-grid    { grid-template-columns: repeat(2,1fr); }
  .steps-grid      { grid-template-columns: repeat(4,1fr); }
  .modal-overlay   { align-items: center; }
  .modal-panel     { border-radius: var(--radius-lg); max-height: 90svh; }
}

@media (max-width: 768px) {
  .admin-layout    { grid-template-columns: 1fr; }
  .admin-sidebar   { display: none; }
  .admin-main      { padding: 24px 16px; }
  .kpi-grid        { grid-template-columns: 1fr 1fr; }
  .admin-table     { font-size: 12px; }
  .admin-table th,
  .admin-table td  { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
