/* ============================================================
   KAVANA INTERIO — MAIN CSS
   Light luxury theme — competing with Homelane / Livspace
   ============================================================ */

:root {
  --primary:    #1a1a2e;
  --accent:     #c9a84c;
  --accent2:    #e8d5a3;
  --light:      #f9f7f4;
  --white:      #ffffff;
  --text:       #2d2d2d;
  --text-light: #6b7280;
  --border:     #e5e0d8;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--text-light); line-height: 1.8; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary   { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: #b8933e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-dark      { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: #0f0f1e; transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white     { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent2); }
.btn-wa        { background: #25D366; color: white; }
.btn-wa:hover  { background: #1ebe5a; }

/* ---- NAV ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--primary); }
.nav-logo-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 2px; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--primary);
  padding-top: 68px;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: white; max-width: 680px;
}
.hero-eyebrow {
  display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid var(--accent);
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-content h1 { color: white; margin-bottom: 20px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px; border-radius: 8px;
}
.hero-badge .num { font-size: 22px; font-weight: 700; color: var(--accent); font-family: var(--font-serif); }
.hero-badge .lbl { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--accent); padding: 32px 0; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.2rem; font-weight: 700; color: var(--primary); font-family: var(--font-serif); }
.stat-item .lbl { font-size: 13px; color: rgba(26,26,46,0.75); font-weight: 500; }

/* ---- CARDS ---- */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); background: rgba(201,168,76,0.1);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--light); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: var(--transition); border: 1px solid transparent;
  cursor: pointer;
}
.service-card:hover { border-color: var(--accent); background: white; transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; }

/* ---- GALLERY GRID ---- */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; cursor: pointer; background: white;
  transition: var(--transition); color: var(--text);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.gallery-grid { columns: 3; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(26,26,46,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-size: 24px; }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; color: white; font-size: 32px;
  cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 24px; padding: 12px 16px; cursor: pointer; border-radius: 8px;
  transition: var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ---- WHY KAVANA ---- */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: 16px; width: 100%; }
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: var(--primary); border-radius: 50%;
  width: 100px; height: 100px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-weight: 700; box-shadow: var(--shadow);
}
.why-badge .pct { font-size: 28px; font-family: var(--font-serif); }
.why-badge .txt { font-size: 10px; text-align: center; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.why-point { display: flex; gap: 12px; align-items: flex-start; }
.why-point .icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-point h4 { font-size: 14px; margin-bottom: 4px; }
.why-point p { font-size: 13px; }

/* ---- PROCESS ---- */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2)); z-index: 0;
}
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--accent);
  color: var(--primary); font-size: 20px; font-weight: 700; font-family: var(--font-serif);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 4px solid white; box-shadow: var(--shadow);
}
.process-step h4 { font-size: 14px; margin-bottom: 6px; }
.process-step p { font-size: 12px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--primary); }
.testimonials-section .section-header .eyebrow { color: var(--accent2); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px; color: white;
}
.stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; gap: 12px; align-items: center; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--accent2); }
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-loc { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--primary);
}
.faq-q .icon { font-size: 20px; transition: var(--transition); color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 16px; font-size: 14px; }

/* ---- CTA BANNER ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section .bg {
  position: absolute; inset: 0; object-fit: cover; opacity: 0.15; width: 100%; height: 100%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.1rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer { background: #0f0f1e; color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { font-family: var(--font-serif); font-size: 22px; color: white; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); }
.footer-col h5 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; font-family: var(--font); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.footer-contact-item .ic { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- FLOATING BUTTONS ---- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
  font-size: 26px;
}
.float-wa:hover { transform: scale(1.1); }
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--primary); padding: 12px 20px;
  display: none; gap: 12px;
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.mobile-cta-bar .call { background: var(--accent); color: var(--primary); }
.mobile-cta-bar .wa { background: #25D366; color: white; }

/* ---- CALCULATOR ---- */
.calc-section { background: var(--light); }
.calc-card {
  background: white; border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow-lg); max-width: 800px; margin: 0 auto;
}
.calc-step { margin-bottom: 28px; }
.calc-step label { display: block; font-weight: 600; margin-bottom: 10px; font-size: 15px; color: var(--primary); }
.calc-options { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-opt {
  padding: 10px 20px; border: 2px solid var(--border); border-radius: 8px;
  cursor: pointer; font-size: 14px; font-weight: 500; transition: var(--transition);
  background: white;
}
.calc-opt.selected, .calc-opt:hover { border-color: var(--accent); background: rgba(201,168,76,0.08); color: var(--primary); }
.calc-slider { width: 100%; accent-color: var(--accent); height: 6px; }
.calc-result {
  background: linear-gradient(135deg, var(--primary), #16213e);
  color: white; border-radius: 12px; padding: 28px; margin-top: 20px; text-align: center;
}
.calc-result .amount { font-size: 2.5rem; font-weight: 700; color: var(--accent); font-family: var(--font-serif); }
.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ---- CONTACT FORM ---- */
.contact-form { background: white; border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: var(--font); transition: var(--transition); background: var(--light);
}
.form-control:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex; gap: 8px; align-items: center; list-style: none;
  font-size: 13px; padding: 16px 0;
}
.breadcrumb li + li::before { content: '›'; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--primary); font-weight: 500; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--primary); padding: 120px 0 60px; color: white;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: white; clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb .current { color: white; }
.page-hero .breadcrumb li + li::before { color: rgba(255,255,255,0.4); }

/* ---- POPUP / MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 16px; padding: 40px;
  max-width: 520px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 20px; font-size: 24px;
  cursor: pointer; color: var(--text-light); background: none; border: none;
}
.modal h3 { margin-bottom: 8px; }
.modal .sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--primary); color: white; padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500; z-index: 10000; opacity: 0; transition: var(--transition);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }

/* ---- ADMIN INDICATOR ---- */
.admin-bar {
  background: var(--accent); color: var(--primary); text-align: center;
  font-size: 12px; font-weight: 600; padding: 6px;
  display: none;
}

/* ---- UTILS ---- */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-light   { color: var(--text-light); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.badge-gold { background: rgba(201,168,76,0.15); color: #b8933e; }
.badge-green { background: rgba(22,163,74,0.1); color: #16a34a; }
.bg-light { background: var(--light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .float-wa { bottom: 88px; }
  .hero-badges { gap: 12px; }
  .why-badge { width: 80px; height: 80px; right: -10px; bottom: -10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .calc-card { padding: 24px 16px; }
  .modal { padding: 24px 20px; }
  .btn { padding: 12px 20px; font-size: 14px; }
}

/* ---- MOBILE NAV DRAWER ---- */
.nav-drawer {
  position: fixed; inset: 0; z-index: 1001; pointer-events: none;
}
.nav-drawer-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 0.3s;
}
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: white; transform: translateX(100%); transition: transform 0.3s;
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { pointer-events: all; }
.nav-drawer.open .nav-drawer-overlay { opacity: 1; }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.drawer-close { align-self: flex-end; font-size: 24px; cursor: pointer; color: var(--text-light); background: none; border: none; }
.drawer-link { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--primary); }
.drawer-link:hover { color: var(--accent); }
