:root {
  --bg-primary: #faf3e0;
  --bg-secondary: #f5ede0;
  --bg-warm: #f0e6d3;
  --accent: #6b1e35;
  --accent-light: #8b2d4a;
  --accent-ghost: rgba(107, 30, 53, 0.08);
  --text-primary: #1a0a0f;
  --text-secondary: #4a3f35;
  --text-muted: #7a6f65;
  --white: #ffffff;
  --border: #e5ddd0;
  --shadow: rgba(26, 10, 15, 0.06);
  --shadow-md: rgba(26, 10, 15, 0.1);
  --shadow-heavy: rgba(26, 10, 15, 0.18);
  --font-heading: 'Zodiak', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

a { color: var(--accent); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; display: block; }

.section-padding { padding: 120px 0; }

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.accent { color: var(--accent); }

.max-width-700 { max-width: 700px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(107, 30, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 30, 53, 0.3);
  color: var(--white);
}

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-arrow { transition: transform 0.3s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ===== Side-Nav Desktop ===== */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 80px;
  background: rgba(250, 243, 224, 0.96);
  backdrop-filter: blur(24px) saturate(1.2);
  border-right: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(26, 10, 15, 0.04);
}

.side-nav.open { width: 280px; }

.side-nav-brand {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 220px;
  flex-shrink: 0;
  padding: 0 20px;
}

.side-nav.open .side-nav-brand {
  opacity: 1;
  transform: translateX(0);
}

.logo-link { display: block; transition: transform 0.35s ease; }
.logo-link:hover { transform: scale(1.04); }
.logo-img { max-height: 90px; width: auto; }

.side-nav-toggle {
  background: rgba(107, 30, 53, 0.06);
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 12px;
  border-radius: 12px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.side-nav-toggle:hover {
  background: rgba(107, 30, 53, 0.1);
  border-color: rgba(107, 30, 53, 0.15);
}

.nav-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.open .nav-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.side-nav.open .nav-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.side-nav.open .nav-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

.side-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
  width: 220px;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
  padding: 0 28px;
}

.side-nav.open .side-nav-menu {
  opacity: 1;
  transform: translateX(0);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(107, 30, 53, 0.05);
  padding-left: 20px;
}

.nav-link:hover::before { transform: scaleY(1); }

.nav-phone {
  margin-top: 28px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  padding: 14px 16px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-phone:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 30, 53, 0.25);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 80px;
  background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-warm) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(107, 30, 53, 0.07);
  top: -10%;
  right: 5%;
  animation: orbFloat1 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(139, 45, 74, 0.05);
  bottom: 10%;
  left: 20%;
  animation: orbFloat2 12s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(107, 30, 53, 0.04);
  top: 40%;
  right: 35%;
  animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.08); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  box-shadow: 0 4px 16px var(--shadow);
}

.hero-badge svg { color: #22c55e; }

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.8rem);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 30, 53, 0.06);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(107, 30, 53, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.15) 0%, rgba(139, 45, 74, 0.08) 100%);
  border-radius: 32px;
  filter: blur(30px);
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px var(--shadow-heavy);
  transition: transform 0.6s ease;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image-wrapper:hover .hero-image { transform: scale(1.02); }

.hero-image-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px var(--shadow-md);
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== About / Timeline ===== */
.about { padding-left: 80px; }

.about .section-title { margin-bottom: 1.5rem; }
.about .section-lead { margin-bottom: 2.5rem; max-width: 480px; }

.timeline {
  position: relative;
  padding-left: 36px;
  margin-top: 8px;
}

.timeline-line {
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-light) 60%, transparent 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 44px;
  padding-left: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(107, 30, 53, 0.1), 0 2px 8px rgba(107, 30, 53, 0.15);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(107, 30, 53, 0.12), 0 4px 12px rgba(107, 30, 53, 0.2);
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Services ===== */
.services { padding-left: 80px; background: var(--bg-secondary); }

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 44px 32px;
  border: 1px solid var(--border);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px var(--shadow-heavy);
  border-color: rgba(107, 30, 53, 0.15);
}

.service-icon {
  margin-bottom: 24px;
  display: inline-flex;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.08) 0%, rgba(139, 45, 74, 0.04) 100%);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.12) 0%, rgba(139, 45, 74, 0.08) 100%);
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.card-cta {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-cta::after {
  content: '→';
  transition: transform 0.25s ease;
}

.card-cta:hover::after { transform: translateX(4px); }

/* ===== Detail Sections ===== */
.detail { padding: 120px 0; padding-left: 80px; }

.detail-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px var(--shadow-heavy);
  position: relative;
}

.detail-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
}

.detail-img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-image-wrapper:hover .detail-img { transform: scale(1.05); }

.detail-title {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.detail p {
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Letterbox */
.detail-letterbox {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.letterbox-bar {
  height: 80px;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.detail-letterbox .detail-content { padding: 80px 0; }

/* Aura */
.detail-aura { position: relative; overflow: hidden; }

.aura-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 30, 53, 0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: auraPulse 7s ease-in-out infinite;
}

@keyframes auraPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.9; }
}

/* Blueprint */
.detail-blueprint { position: relative; overflow: hidden; background: var(--bg-secondary); }

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 30, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 30, 53, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.blueprint-frame {
  position: relative;
  border: 2px dashed rgba(107, 30, 53, 0.25);
  padding: 10px;
  border-radius: 20px;
}

.blueprint-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-dim {
  background: rgba(26, 10, 15, 0.8);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 2px;
  backdrop-filter: blur(6px);
  font-weight: 600;
}

/* ===== CTA Sections ===== */
.cta { padding: 100px 0; padding-left: 80px; }

.cta-command { background: var(--bg-primary); }

.command-module {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  box-shadow: 0 32px 64px var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.5) inset;
  position: relative;
  overflow: hidden;
}

.command-module::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(107, 30, 53, 0.04) 50%, transparent 100%);
  animation: commandRotate 18s linear infinite;
}

@keyframes commandRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.command-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background: rgba(34, 197, 94, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.command-headline {
  font-size: 2rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.command-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.command-phone:hover { 
  color: var(--accent-light); 
  transform: scale(1.03);
}

.command-hours {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Slat CTA */
.cta-slat { background: var(--bg-secondary); padding: 0; }

.slat-panel {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 60%, #8b3d55 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.slat-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(255,255,255,0.04) 100px,
    rgba(255,255,255,0.04) 102px
  );
}

.slat-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.slat-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.slat-content h3 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.slat-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.slat-content .btn-primary {
  background: var(--white);
  color: var(--accent);
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.slat-content .btn-primary:hover {
  background: rgba(255,255,255,0.95);
  color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ===== Areas ===== */
.areas { padding-left: 80px; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.area-chip:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(107, 30, 53, 0.25);
}

.area-chip:hover .signal-fill { background: rgba(255,255,255,0.85); }

.signal-bar {
  width: 28px;
  height: 14px;
  background: rgba(107, 30, 53, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.signal-fill {
  display: block;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
  transition: background 0.3s ease;
}

/* ===== FAQ ===== */
.faq { padding-left: 80px; background: var(--bg-secondary); }

.faq-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
  box-shadow: 0 16px 40px var(--shadow-md);
  border-color: rgba(107, 30, 53, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.faq-question:hover { 
  color: var(--accent); 
  background: rgba(107, 30, 53, 0.02);
}

.faq-question[aria-expanded="true"] { 
  background: rgba(107, 30, 53, 0.04);
  border-bottom: 1px solid var(--border);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 30, 53, 0.08);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon { 
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-answer {
  padding: 0 28px 28px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer p { margin: 0; }

/* ===== Contact ===== */
.contact { padding-left: 80px; }

.contact-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 24px 48px var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.6) inset;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.08) 0%, rgba(139, 45, 74, 0.04) 100%);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, rgba(107, 30, 53, 0.14) 0%, rgba(139, 45, 74, 0.08) 100%);
  transform: scale(1.05);
}

.contact-info h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info a,
.contact-info p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

.contact-info a:hover { color: var(--accent); }

.map-glass-frame {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 400px;
}

.map-glass-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 100px 0 40px;
  padding-left: 80px;
  background: linear-gradient(180deg, #1a0a0f 0%, #0f0508 100%);
  color: var(--white);
  overflow: hidden;
}

.footer-aura {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 30, 53, 0.35) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: footerAura 10s ease-in-out infinite;
}

@keyframes footerAura {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-height: 55px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 0.85; }

.footer-mission {
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0;
}

.footer-links a:hover::before { width: 16px; }

.footer-info p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-info strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.footer-info a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

.footer-info a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .side-nav { width: 70px; }
  .side-nav.open { width: 260px; }
  
  .hero, .about, .services, .detail, .cta, .areas, .faq, .contact, .footer {
    padding-left: 70px;
  }
  
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
  
  .section-padding { padding: 90px 0; }
  
  .command-module { padding: 44px 32px; }
  
  .hero-image-card { left: 10px; bottom: -10px; padding: 14px 18px; }
  
  .hero-stats { gap: 20px; }
  .stat-divider { height: 30px; }
}

@media (max-width: 768px) {
  .side-nav {
    width: 100%;
    height: 72px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    overflow: visible;
    background: rgba(250, 243, 224, 0.98);
    backdrop-filter: blur(20px);
  }
  
  .side-nav-brand {
    margin-bottom: 0;
    opacity: 1;
    transform: none;
    width: auto;
    padding: 0;
  }
  
  .logo-img { max-height: 48px; }
  
  .side-nav-toggle { order: 2; padding: 12px; border-radius: 10px; }
  
  .side-nav-menu-overlay {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(26, 10, 15, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
  }
  
  .side-nav.open .side-nav-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  .side-nav-menu {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-primary);
    border-left: 1px solid var(--border);
    padding: 32px 24px;
    margin-top: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -8px 0 32px rgba(26, 10, 15, 0.1);
    gap: 4px;
  }
  
  .side-nav.open .side-nav-menu {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
  
  .nav-link:hover {
    padding-left: 20px;
  }
  
  .nav-phone {
    margin-top: 20px;
    padding: 16px;
    font-size: 1.1rem;
    justify-content: center;
  }
  
  .hero, .about, .services, .detail, .cta, .areas, .faq, .contact, .footer {
    padding-left: 0;
  }
  
  .hero { 
    min-height: auto; 
    padding-top: 100px; 
    padding-bottom: 60px;
  }
  
  .hero-title { font-size: clamp(2.25rem, 7vw, 3.5rem); }
  
  .hero-image-wrapper { margin-top: 20px; }
  
  .hero-image-card { 
    left: 12px; 
    bottom: -12px; 
    padding: 12px 16px;
    border-radius: 12px;
  }
  
  .hero-image-card svg { width: 22px; height: 22px; }
  .card-value { font-size: 0.9rem; }
  
  .hero-stats { margin-top: 8px; }
  
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  
  .footer-content { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 36px; 
  }
  .footer-mission { margin: 0 auto; }
  .footer-links { align-items: center; }
  
  .letterbox-bar { height: 40px; }
  .detail-letterbox .detail-content { padding: 40px 0; }
  
  .command-phone { font-size: 1.75rem; }
  
  .section-padding { padding: 70px 0; }
  
  .slat-panel { padding: 70px 24px; }
  .slat-content h3 { font-size: 1.75rem; }
  
  .contact-glass-card { padding: 28px; }
  .map-glass-frame { min-height: 320px; }
  .map-glass-frame iframe { min-height: 320px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 90px; padding-bottom: 40px; }
  
  .hero-badge { font-size: 0.78rem; padding: 8px 14px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-primary { width: 100%; justify-content: center; }
  
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-divider { height: 24px; }
  
  .areas-grid { grid-template-columns: 1fr; }
  
  .command-module { padding: 32px 20px; border-radius: 20px; }
  .command-headline { font-size: 1.5rem; }
  .command-phone { font-size: 1.5rem; }
  
  .faq-question { padding: 20px; font-size: 0.95rem; }
  .faq-answer { padding: 0 20px 20px; }
  
  .contact-glass-card { padding: 24px 20px; border-radius: 20px; }
  
  .slat-panel { padding: 56px 20px; }
  .slat-content h3 { font-size: 1.5rem; }
  
  .section-padding { padding: 56px 0; }
  
  .detail { padding: 70px 0; padding-left: 0; }
  
  .service-card { padding: 32px 24px; }
}
