/* ============================================
   AURA RESERVE — Multi-Location Stylesheet
   ============================================ */

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

:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #161616;
  --surface-3: #1a1a1a;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.10);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.52);
  --text-tertiary: rgba(255, 255, 255, 0.28);
  --text-ghost: rgba(255, 255, 255, 0.04);
  --accent: #c9a96e;
  --pill: 100px;
  --card-r: 16px;
  --input-r: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; } .d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; } .d6 { animation-delay: 0.85s; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes subtlePulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }


/* ============================================
   NAVIGATION
   ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 40px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: all 0.4s ease; }
.nav.scrolled { padding: 16px 40px; background: rgba(10, 10, 10, 0.92); border-bottom: 0.5px solid var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-primary); font-weight: 400; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-tertiary); transition: color 0.3s ease; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--accent); }
.nav-links .nav-cta { color: #000; background: var(--accent); padding: 10px 26px; border-radius: var(--pill); transition: all 0.3s ease; }
.nav-links .nav-cta:hover { color: #000; background: #d4b87a; transform: translateY(-1px); }
.nav-menu-btn { display: none; color: var(--text-primary); font-size: 20px; }

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
}

.nav-links.mobile-open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 24px 20px; border-bottom: 0.5px solid var(--border); gap: 20px; }


/* ============================================
   HERO (original — kept for other pages)
   ============================================ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.7) 100%), url('../images/scottsdale/fleet.jpg') center center / cover no-repeat; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 0.5px, transparent 0.5px), linear-gradient(90deg, var(--border) 0.5px, transparent 0.5px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%); }

.hud { position: absolute; width: 20px; height: 20px; border-color: rgba(255, 255, 255, 0.08); border-style: solid; }
.hud-tl { top: 24px; left: 24px; border-width: 0.5px 0 0 0.5px; }
.hud-tr { top: 24px; right: 24px; border-width: 0.5px 0.5px 0 0; }
.hud-bl { bottom: 24px; left: 24px; border-width: 0 0 0.5px 0.5px; }
.hud-br { bottom: 24px; right: 24px; border-width: 0 0.5px 0.5px 0; }
.hud-label { position: absolute; font-family: var(--font-mono); font-size: 8px; letter-spacing: 2.5px; color: rgba(255, 255, 255, 0.12); text-transform: uppercase; }
.hud-top { top: 26px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.hud-bottom { bottom: 26px; right: 52px; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 40px; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; }
.hero-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 8vw, 110px); line-height: 1.05; color: var(--text-primary); margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--text-secondary); }
.hero-sub { font-size: 15px; color: var(--text-secondary); max-width: 460px; margin: 0 auto 48px; line-height: 1.85; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-line { width: 0.5px; height: 40px; background: var(--text-tertiary); animation: subtlePulse 2.5s ease-in-out infinite; }


/* ============================================
   PILL BUTTONS
   ============================================ */
.btn-primary { font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--bg); background: var(--accent); padding: 16px 40px; border-radius: var(--pill); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.btn-primary:hover { background: #d4b87a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2); }
.btn-ghost { font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-secondary); padding: 16px 40px; border: 0.5px solid var(--border-light); border-radius: var(--pill); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--text-secondary); background: rgba(255, 255, 255, 0.03); }


/* ============================================
   SECTION COMMON
   ============================================ */
.section-divider { height: 0.5px; background: var(--border); }
.section-header { text-align: center; padding: 100px 40px 64px; }
.section-eyebrow { font-family: var(--font-mono); font-size: 8px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 5vw, 52px); line-height: 1.2; color: var(--text-primary); }
.section-title em { font-style: italic; color: var(--text-secondary); }


/* ============================================
   STATEMENT
   ============================================ */
.statement { padding: 120px 56px; text-align: center; position: relative; overflow: hidden; }
.statement-ghost-wrap { position: relative; display: inline-block; line-height: 1; margin-bottom: 2px; }
.statement-ghost { font-family: var(--font-display); font-style: italic; font-size: clamp(80px, 14vw, 180px); font-weight: 300; color: var(--text-ghost); line-height: 1; position: relative; z-index: 0; margin: 0; }
.statement-ghost-reserve { font-family: var(--font-mono); font-weight: 400; font-style: normal; font-size: clamp(9px, 1.5vw, 20px); letter-spacing: 0.55em; text-transform: uppercase; color: var(--accent); opacity: 0.2; position: absolute; bottom: 28%; left: 50%; transform: translateX(-46%); z-index: 1; white-space: nowrap; }
.statement-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 4vw, 48px); line-height: 1.3; color: var(--text-primary); margin-bottom: 24px; position: relative; z-index: 1; }
.statement-title em { font-style: italic; color: var(--text-secondary); }
.statement-sub { font-size: 15px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.9; font-weight: 300; }


/* ============================================
   LOCATION COLUMNS (HOME PAGE)
   ============================================ */
.locations { padding: 0 40px 120px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) { .locations-grid { grid-template-columns: 1fr; gap: 64px; } }

.location-col { }

.location-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
}

.location-name {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 400; color: var(--text-primary);
}

.location-link {
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); transition: color 0.3s ease;
}

.location-link:hover { color: #d4b87a; }

.location-cars { display: flex; flex-direction: column; gap: 12px; }

.location-car {
  position: relative; background: var(--surface);
  overflow: hidden; aspect-ratio: 16 / 10;
  border-radius: var(--card-r);
  border: 0.5px solid var(--border);
  transition: border-color 0.4s ease;
}

.location-car:hover { border-color: rgba(201, 169, 110, 0.2); }

.location-car img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.75) saturate(0.9);
}

.location-car:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.location-car-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; border-radius: var(--card-r);
}

.location-car-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; color: var(--text-primary); margin-bottom: 2px;
}

.location-car-meta {
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary);
}

.location-car-price {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1px; color: var(--accent);
  background: rgba(0, 0, 0, 0.55); padding: 5px 12px;
  border-radius: var(--pill); backdrop-filter: blur(8px);
}

.location-car-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; color: var(--text-tertiary);
  text-transform: uppercase;
}

.location-view-all {
  display: block; text-align: center;
  margin-top: 20px; padding: 14px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--pill);
  transition: all 0.3s ease;
}

.location-view-all:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.05);
}


/* ============================================
   FLEET GRID (LOCATION PAGES)
   ============================================ */
.fleet { padding-bottom: 120px; }

.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding: 0 40px;
}

@media (max-width: 900px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card { position: relative; background: var(--surface); overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; border-radius: var(--card-r); border: 0.5px solid var(--border); transition: border-color 0.4s ease; }
.fleet-card:hover { border-color: rgba(201, 169, 110, 0.2); }
.fleet-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease; filter: brightness(0.75) saturate(0.9); }
.fleet-card:hover .fleet-card-img { transform: scale(1.06); filter: brightness(0.9) saturate(1); }
.fleet-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border-radius: var(--card-r); }
.fleet-card-name { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--text-primary); margin-bottom: 4px; }
.fleet-card-meta { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); }
.fleet-card-price { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--accent); background: rgba(0, 0, 0, 0.55); padding: 6px 14px; border-radius: var(--pill); backdrop-filter: blur(8px); }


/* ============================================
   EXPERIENCE
   ============================================ */
.experience { padding: 0 0 120px; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-item { padding: 48px 36px; border: 0.5px solid var(--border); border-radius: var(--card-r); transition: background 0.4s ease, border-color 0.4s ease; }
.exp-item:hover { background: var(--surface); border-color: var(--border-light); }
.exp-num { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--accent); opacity: 0.3; margin-bottom: 20px; line-height: 1; }
.exp-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--text-primary); margin-bottom: 12px; }
.exp-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }


/* ============================================
   STATS
   ============================================ */
.stats { padding: 80px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; padding: 20px; }
.stat-num { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 56px); color: var(--text-primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-tertiary); }


/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry { padding: 120px 0; }
.inquiry-inner { max-width: 680px; margin: 0 auto; padding: 0 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 580px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 10px; }
.form-input, .form-select, .form-textarea { font-family: var(--font-body); font-size: 14px; color: var(--text-primary); font-weight: 300; background: var(--surface); border: 0.5px solid var(--border); padding: 16px 20px; border-radius: var(--input-r); transition: border-color 0.3s ease, background 0.3s ease; outline: none; width: 100%; -webkit-appearance: none; appearance: none; }
.form-input::placeholder { color: var(--text-tertiary); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: var(--surface-2); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.28)'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; padding-right: 44px; }
.form-select option { background: var(--surface); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-submit { width: 100%; padding: 18px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--bg); background: var(--accent); border: none; cursor: pointer; border-radius: var(--pill); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); margin-top: 8px; }
.form-submit:hover { background: #d4b87a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2); }
.form-submit:active { transform: scale(0.99); }
.form-note { text-align: center; margin-top: 20px; font-size: 12px; color: var(--text-tertiary); font-weight: 300; line-height: 1.7; }

.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.show { display: block; }
.form-success-icon { width: 56px; height: 56px; margin: 0 auto 24px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; }
.form-success h3 { font-family: var(--font-display); font-weight: 300; font-size: 28px; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: var(--text-secondary); font-weight: 300; line-height: 1.8; max-width: 400px; margin: 0 auto; }


/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 0.5px solid var(--border); padding: 60px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 18px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 12px; font-weight: 400; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--text-tertiary); }
.footer-col h4 { font-family: var(--font-mono); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: var(--text-secondary); margin-bottom: 10px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; font-size: 11px; color: var(--text-tertiary); font-weight: 300; flex-wrap: wrap; gap: 12px; }

@media (max-width: 768px) {
  .footer-inner, .footer-bottom { flex-direction: column; }
  .statement { padding: 80px 24px; }
  .section-header { padding: 80px 20px 48px; }
  .fleet-grid, .exp-grid, .stats-grid { padding: 0 20px; }
  .inquiry-inner { padding: 0 20px; }
  .locations { padding: 0 20px 80px; }
}


/* ============================================
   LOCATION PAGE HERO (shorter)
   ============================================ */
.hero-location {
  height: 50vh;
  min-height: 400px;
}


/* ============================================
   LOCATION ABOUT + FAQ (location pages)
   ============================================ */
.location-about {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.location-about-body {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}
.location-about-body p + p { margin-top: 24px; }
.location-about-body strong { color: var(--text-primary); font-weight: 500; }

.location-occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 48px auto 0;
}
.location-occasion-card {
  padding: 24px;
  border: 0.5px solid var(--border);
  text-align: center;
}
.location-occasion-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.location-occasion-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.location-nap {
  margin: 48px auto 0;
  padding: 32px 40px;
  border: 0.5px solid var(--border);
  max-width: 500px;
}
.location-nap-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.location-nap p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
.location-nap a { color: var(--accent); }
.location-nap strong { color: var(--text-primary); }

.location-map {
  max-width: 800px;
  margin: 40px auto 0;
}
.location-map iframe {
  width: 100%;
  height: 300px;
  border: 0.5px solid var(--border);
  filter: invert(90%) hue-rotate(180deg);
  display: block;
}

.location-faq {
  padding: 60px 40px 100px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  transition: transform 0.3s, border-color 0.2s;
  font-style: normal;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 60px 0 8px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .location-about { padding: 60px 20px 40px; }
  .location-nap { padding: 24px 20px; }
  .location-faq { padding: 40px 20px 80px; }
}


/* ============================================
   HERO V2 — Parallax + Flash + AURA
   (added to index.html only via class hero-v2)
   ============================================ */
.hero-v2 .hv2-bg {
  position: absolute;
  inset: -60px;
  background: url('../images/scottsdale/fleet.jpg') center center / cover no-repeat;
  filter: brightness(0.45) saturate(0.75);
  will-change: transform;
  transition: transform 0.12s linear;
}

.hv2-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(10,10,10,0.5) 100%);
}

.hv2-ghost {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(160px, 28vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: hv2FadeIn 1.5s ease 0.2s forwards;
  will-change: transform;
  transition: transform 0.08s linear;
}

.hv2-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 0.12s linear;
}

.hv2-phase1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: hv2Phase1Out 0.8s cubic-bezier(0.4, 0, 1, 1) 3.3s forwards;
}

.hv2-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--p2-eyebrow-size, 14.5px);
  letter-spacing: var(--p2-eyebrow-spacing, 10px);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: hv2FadeUp 0.7s ease 0.1s forwards;
}

@keyframes hv2Phase1Out {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.96); }
}

.hv2-aura-wrap { position: relative; line-height: 0.9; }

.hv2-aura-clip {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(110px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.06em;
  background: url('../images/scottsdale/fleet.jpg') center 55% / cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  opacity: 0;
  animation: hv2AuraFlash 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes hv2AuraFlash {
  0%   { opacity: 0;   filter: brightness(8) contrast(0.2) saturate(0);              transform: scale(1.06); }
  12%  { opacity: 1;   filter: brightness(8) contrast(0.2) saturate(0);              transform: scale(1.04); }
  28%  { opacity: 1;   filter: brightness(3) contrast(0.6) saturate(0.3);            transform: scale(1.02); }
  55%  { opacity: 1;   filter: brightness(0.3) contrast(2) saturate(0.5) invert(1);  transform: scale(1.01); }
  72%  { opacity: 1;   filter: brightness(1.8) contrast(1.2) saturate(0.8) invert(0); transform: scale(1); }
  88%  { opacity: 1;   filter: brightness(1.4) contrast(1.1) saturate(1);            transform: scale(1); }
  100% { opacity: 0;   filter: brightness(1.4) contrast(1.1) saturate(1);            transform: scale(1); }
}

.hv2-aura-white {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(110px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  opacity: 0;
  animation: hv2FadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 2.1s forwards;
}

.hv2-phase2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  pointer-events: none;
  opacity: 0;
  animation: hv2Phase2In 1s cubic-bezier(0.16, 1, 0.3, 1) 3.8s forwards;
}
.hv2-phase2.visible {
  pointer-events: auto;
  transform: translate(-50%, calc(-50% + var(--p2-offset-y, 0px))) !important;
}

@keyframes hv2Phase2In {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 20px + var(--p2-offset-y, 0px))); }
  to   { opacity: 1; transform: translate(-50%, calc(-50% + var(--p2-offset-y, 0px))); }
}

.hv2-phase2-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--p2-eyebrow-size, 9px);
  letter-spacing: var(--p2-eyebrow-spacing, 5px);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hv2-phase2-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--p2-title-size, clamp(48px, 8vw, 110px));
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hv2-phase2-title em { font-style: italic; color: var(--text-secondary); }

.hv2-phase2-locations {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  margin-top: -16px;
}

.hv2-phase2-sub {
  font-size: var(--p2-sub-size, 15px);
  color: var(--text-secondary);
  max-width: var(--p2-sub-width, 460px);
  margin: 0 auto 48px;
  line-height: 1.85;
  font-weight: 300;
}

.hv2-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hv2-flash {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #fff;
  pointer-events: none;
  animation: hv2FlashBurst 0.55s ease-out 0.5s both;
}
@keyframes hv2FlashBurst {
  0%   { opacity: 0.9; }
  40%  { opacity: 0.12; }
  100% { opacity: 0; }
}

.hv2-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: hv2FadeIn 0.8s ease 4.4s forwards;
}
.hv2-scroll-line {
  width: 0.5px;
  height: 40px;
  background: var(--text-tertiary);
  animation: subtlePulse 2.5s ease-in-out infinite;
}

@keyframes hv2FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hv2FadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hv2-eyebrow { font-size: 9px; letter-spacing: 5px; }
  .hv2-phase2-sub { font-size: 13px; padding: 0 24px; }
}
