:root {
  --brand: rgb(255, 42, 42);
  --brand-600: rgb(252, 136, 136);
  --on-brand: rgb(255, 255, 255);
  --bg-900: rgb(10, 10, 10);
  --bg-850: rgb(18, 18, 18);
  --bg-800: rgb(22, 22, 22);
  --bg-750: rgb(27, 27, 27);
  --bg-700: rgb(34, 34, 34);
  --line-700: rgb(47, 47, 47);
  --line-650: rgb(52, 52, 52);
  --text-100: rgb(255, 255, 255);
  --text-200: rgb(232, 232, 232);
  --text-300: rgb(199, 199, 199);
  --text-400: rgb(174, 176, 180);
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .5), 0 8px 18px rgba(0, 0, 0, .35);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, .55), 0 14px 32px rgba(0, 0, 0, .4);
  --focus: 0 0 0 3px rgba(255, 42, 42, .65);
  --r-4: 4px;
  --r-8: 8px;
  --r-12: 12px;
  --t-fast: .2s ease;
  --t: .3s ease;
  --t-slow: .4s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line-650: rgb(74, 74, 74);
  }
}

@media (forced-colors: active) {
  :root {
    --focus: 0 0 0 2px Highlight;
  }
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-100);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-300);
}

p {
  margin-bottom: 1rem;
  color: var(--text-300);
}

ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .6rem;
  color: var(--text-300);
}

li::before {
  content: '•';
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t);
}

a:hover,
a:focus {
  color: var(--brand-600);
  text-decoration: underline;
}

a:focus-visible {
  outline: var(--focus);
  border-radius: 2px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

section {
  padding: 2.5rem 1rem;
}

@media (min-width: 600px) {
  section {
    padding: 3rem 1.5rem;
  }
}

.section-dark {
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  margin: 2rem 0;
}

@media (min-width: 600px) {
  .section-dark {
    margin: 2.5rem 0;
  }
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  text-align: center;
  color: var(--brand);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  .section-title {
    margin-bottom: 2.5rem;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line-650);
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .site-header {
    padding: .9rem 2rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .header-actions {
    gap: 8px;
  }
}

@media (min-width: 600px) {
  .header-actions {
    gap: 10px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  flex: 1;
}

@media (min-width: 400px) {
  .brand {
    gap: .8rem;
  }
}

.brand a {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  line-height: 1;
  min-width: 0;
}

@media (min-width: 400px) {
  .brand a {
    gap: .8rem;
  }
}

.brand a:focus-visible {
  outline: var(--focus);
  border-radius: var(--r-4);
}

.brand img {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  transition: transform var(--t), filter var(--t);
}

@media (min-width: 400px) {
  .brand img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 600px) {
  .brand img {
    width: 40px;
    height: 40px;
  }
}

.brand a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.4));
}

.brand span,
.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand);
  letter-spacing: .3px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 400px) {
  .brand span,
  .brand-text {
    font-size: 1.05rem;
    letter-spacing: .5px;
  }
}

@media (min-width: 600px) {
  .brand span,
  .brand-text {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    letter-spacing: .6px;
  }
}

.icon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(25, 25, 25);
  outline: none;
  border: 1px solid rgb(42, 42, 42);
  transition: transform .12s ease, background .12s ease;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
}

@media (min-width: 600px) {
  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

.icon-btn:hover,
.icon-btn:focus {
  transform: translateY(-1px);
  background: rgb(34, 34, 34);
}

.icon-btn:active {
  transform: translateY(0);
}

.icon-btn svg,
.icon-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

@media (min-width: 400px) {
  .icon-btn svg,
  .icon-btn img {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 600px) {
  .icon-btn svg,
  .icon-btn img {
    width: 22px;
    height: 22px;
  }
}

.icon-btn svg {
  fill: rgb(229, 229, 229);
}

.icon-btn img {
  opacity: 0.9;
}

.icon-btn:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.icon-btn .menu-icon {
  display: block !important;
}

/* ===== NAVIGATION ===== */
#primary-nav {
  position: fixed;
  right: 8px;
  top: 60px;
  background: rgb(18, 18, 18);
  border: 1px solid rgb(42, 42, 42);
  border-radius: 14px;
  padding: 12px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  max-width: calc(100vw - 16px);
}

@media (min-width: 600px) {
  #primary-nav {
    right: 12px;
    top: 70px;
  }
}

#primary-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-nav .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

#primary-nav .close-btn:hover {
  color: var(--brand);
}

#primary-nav .nav-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  min-width: 160px;
}

@media (min-width: 400px) {
  #primary-nav .nav-links-wrapper {
    min-width: 180px;
  }
}

#primary-nav .nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-200);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

#primary-nav .nav-link:hover {
  background: rgb(27, 27, 27);
  color: var(--brand-600);
}

#primary-nav .has-submenu>button.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#primary-nav .has-submenu>button span {
  transition: transform 0.2s ease;
  display: inline-block;
}

#primary-nav .has-submenu>button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

#primary-nav .mobile-submenu {
  display: block;
  list-style: none;
  padding-left: 1.25rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#primary-nav .mobile-submenu.open {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

#primary-nav .mobile-submenu li {
  margin: 0;
  padding: 0;
}

#primary-nav .mobile-submenu li::before {
  display: none;
}

#primary-nav .mobile-submenu a {
  display: block;
  padding: 8px 10px;
  font-size: 0.95rem;
  color: var(--text-300);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

#primary-nav .mobile-submenu a:hover {
  background: rgb(27, 27, 27);
  color: var(--brand-600);
}

/* Hours Popup */
#hoursPopup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 1rem;
  left: 1rem;
  background: #111;
  color: var(--text-200);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .55);
  font-size: .95rem;
  line-height: 1.5;
  min-width: 200px;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}

@media (min-width: 400px) {
  #hoursPopup {
    left: auto;
    right: 1rem;
    width: auto;
    white-space: nowrap;
  }
}

#hoursPopup.open,
#hoursPopup.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#hoursPopup strong {
  color: var(--brand);
}

/* ===== GRID SYSTEM ===== */
.grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .grid-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===== CARDS ===== */
.card,
.service-card,
.rev-card,
.package-card,
.booking-card,
.checkout-form,
fieldset,
.content-container {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-1);
  transition: transform var(--t), box-shadow var(--t), background-color var(--t), border-color var(--t);
  position: relative;
}

@media (min-width: 600px) {
  .card,
  .service-card,
  .rev-card,
  .package-card,
  .booking-card,
  .checkout-form,
  fieldset,
  .content-container {
    padding: 1.8rem 1.5rem;
  }
}

.card:hover,
.service-card:hover,
.package-card:hover,
.booking-card:hover,
.checkout-form:hover,
fieldset:hover,
.content-container:hover,
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  background: var(--bg-800);
  border-color: rgba(255, 42, 42, 0.3);
}

.card::after,
.service-card::after,
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 42, 42, 0.05) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.card:hover::after,
.service-card:hover::after,
.review-card:hover::after {
  opacity: 1;
}

.service-card h3,
.package-card h2,
.booking-card h2,
.checkout-form h2,
fieldset legend,
.content-container h1 {
  margin-top: 0;
  color: var(--brand);
}

.service-card p,
.package-card li,
.rev-card p,
.content-container p,
.content-container li {
  font-size: .95rem;
  color: var(--text-300);
}

.service-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t);
}

.service-link:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

/* Process Numbers */
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn,
.hero-cta,
.cta-btn,
.purchase-button,
.booking-btn.primary,
#submitBtn,
#submit-button,
.home-button {
  background: var(--brand);
  color: var(--on-brand);
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 600px) {
  .btn,
  .hero-cta,
  .cta-btn {
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
  }
}

.btn:hover,
.hero-cta:hover,
.cta-btn:hover,
.purchase-button:hover,
.booking-btn.primary:hover,
#submitBtn:hover,
#submit-button:hover,
.home-button:hover {
  background: var(--brand-600);
  color: var(--on-brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
  text-decoration: none;
}

.btn:active,
.hero-cta:active,
.cta-btn:active {
  transform: none;
  box-shadow: none;
}

.btn.btn-large {
  padding: 1rem 1.75rem;
  font-size: 1.1rem;
}

@media (min-width: 600px) {
  .btn.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.2rem;
  }
}

.btn.btn-secondary,
.hero-cta.secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn.btn-secondary:hover,
.hero-cta.secondary:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.btn.btn-outline {
  background: transparent;
  color: var(--text-200);
  border: 1px solid var(--line-650);
}

.btn.btn-outline:hover {
  background: var(--bg-750);
  border-color: var(--brand);
  color: var(--brand);
}

.cta-icon {
  font-size: 1.1em;
}

/* ===== HERO SECTION ===== */
.hero-wrapper {
  padding: 2rem 0.5rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .hero-wrapper {
    padding: 3rem 1rem 2rem;
  }
}

@media (min-width: 1000px) {
  .hero-wrapper {
    padding: 4rem 2rem 3rem;
  }
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* Primary CTA - Prominent */
.hero-cta-primary {
  margin: 1.5rem 0;
}

.hero-cta-primary .btn {
  animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 42, 42, 0);
  }
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-400);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero-media-wrap {
  max-width: 100%;
  margin: 1.5rem auto;
  position: relative;
}

@media (min-width: 600px) {
  .hero-media-wrap {
    margin: 2rem auto;
  }
}

.hero-media-wrap figure {
  margin: 0;
}

.hero-media-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--bg-800);
  border-radius: 12px;
  box-shadow: 0 10px 34px -6px rgba(0, 0, 0, .65);
  aspect-ratio: 960 / 720;
}

@media (min-width: 600px) {
  .hero-media-wrap img {
    border-radius: 14px;
  }
}

.hero-media-wrap figcaption {
  font-size: .75rem;
  color: var(--text-400);
  margin-top: .6rem;
  text-align: right;
  padding-right: .5rem;
}

@media (min-width: 600px) {
  .hero-media-wrap figcaption {
    font-size: .8rem;
    margin-top: .8rem;
  }
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-300);
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .hero-subtitle {
    font-size: 1.05rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 450px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Trust Signals */
.trust-signals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 500px) {
  .trust-signals {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  color: var(--text-200);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--t);
}

@media (min-width: 600px) {
  .trust-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.65rem;
  }
}

.trust-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .trust-item img {
    width: 18px;
    height: 18px;
  }
}

.trust-item:hover {
  background: var(--bg-750);
  border-color: rgba(255, 42, 42, 0.35);
  transform: translateY(-2px);
}

/* BBB Badge */
.bbb-trust-badge {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.bbb-trust-badge a {
  display: inline-block;
  transition: transform var(--t), opacity var(--t);
}

.bbb-trust-badge a:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.bbb-trust-badge img {
  height: 36px;
  width: auto;
}

@media (min-width: 600px) {
  .bbb-trust-badge img {
    height: 42px;
  }
}

/* ===== SERVICES CTA ===== */
.services-cta,
.section .services-cta {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
}

.services-cta h3 {
  margin-bottom: .25rem;
  color: var(--text-100);
}

.services-cta p {
  margin-bottom: .75rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 450px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* ===== REVIEWS SECTION ===== */
.summary {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--text-300);
  font-size: 0.95rem;
  padding: 0 1rem;
}

@media (min-width: 600px) {
  .summary {
    font-size: 1.05rem;
  }
}

#reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

#reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
}

@media (min-width: 600px) {
  #reviews-swiper .swiper-slide {
    padding: 1rem;
  }
}

.review-card {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line-650);
  background: var(--bg-800);
  box-shadow: var(--shadow-1);
  min-height: 180px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 600px) {
  .review-card {
    padding: 1.25rem 1.5rem;
    min-height: 200px;
    border-radius: 18px;
  }
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: var(--text-200);
}

@media (min-width: 600px) {
  .review-text {
    font-size: 0.98rem;
  }
}

.review-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0.9;
  font-size: 0.85rem;
  color: var(--text-400);
}

@media (min-width: 600px) {
  .review-meta {
    font-size: 0.9rem;
  }
}

.review-meta::before {
  content: '★';
  color: var(--brand);
  font-size: 0.9rem;
}

.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

@media (min-width: 500px) {
  .reviews-cta {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ===== GALLERY ===== */
.gallery-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}

.gallery-fig img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: var(--bg-800);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
  transition: transform 0.4s ease, box-shadow var(--t);
}

@media (min-width: 600px) {
  .gallery-fig img {
    border-radius: 12px;
  }
}

.gallery-fig:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.gallery-fig figcaption {
  font-size: .75rem;
  color: var(--text-400);
  text-align: center;
  padding: .3rem .5rem;
}

@media (min-width: 600px) {
  .gallery-fig figcaption {
    font-size: .8rem;
  }
}

#gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

@media (min-width: 600px) {
  #gallery-swiper .swiper-slide img {
    border-radius: 22px;
  }
}

/* ===== SWIPER CONTROLS ===== */
.swiper {
  width: 100%;
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: var(--text-400);
  opacity: .8;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand);
  --swiper-navigation-size: 24px;
  background: rgba(0, 0, 0, .7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background var(--t), color var(--t);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-size: 30px;
    width: 44px;
    height: 44px;
  }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
  font-weight: bold;
}

@media (min-width: 600px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 20px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-tiles {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.faq-tile {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background-color var(--t);
  position: relative;
}

.faq-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  background: var(--bg-800);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-100);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
  font-family: inherit;
}

@media (min-width: 600px) {
  .faq-q {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    gap: .75rem;
  }
}

.faq-q:hover {
  background: rgba(255, 42, 42, 0.05);
}

.faq-q:focus-visible {
  outline: var(--focus);
  outline-offset: -2px;
}

.faq-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

@media (min-width: 600px) {
  .faq-emoji {
    font-size: 1.5rem;
  }
}

.faq-ind {
  margin-left: auto;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  transition: transform var(--t);
}

.faq-ind::before,
.faq-ind::after {
  content: '';
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--t);
}

.faq-ind::before {
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-ind::after {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-ind::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  transition: max-height var(--t-slow) ease, padding var(--t-slow) ease;
}

.faq-a[hidden] {
  display: none;
}

.faq-a:not([hidden]) {
  padding: 0 1.25rem 1.25rem;
}

@media (min-width: 600px) {
  .faq-a:not([hidden]) {
    padding: 0 1.5rem 1.5rem;
  }
}

.faq-a>div {
  padding-top: .5rem;
  border-top: 1px solid var(--line-650);
}

.faq-a p {
  margin: 0;
  color: var(--text-300);
  line-height: 1.7;
  font-size: .9rem;
}

@media (min-width: 600px) {
  .faq-a p {
    font-size: .95rem;
  }
}

.faq-a strong {
  color: var(--text-100);
  font-weight: 600;
}

/* ===== AREAS WE SERVE ===== */
#service-areas .summary {
  margin-bottom: 2rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.area-column {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
}

@media (min-width: 600px) {
  .area-column {
    padding: 1.5rem;
  }
}

.area-column h3 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

@media (min-width: 600px) {
  .area-column h3 {
    font-size: 1.2rem;
  }
}

.area-list {
  margin: 0;
}

.area-list li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.area-list li::before {
  display: none;
}

.area-list li strong {
  color: var(--text-100);
}

.area-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-400);
  margin-top: 1.5rem;
  padding: 0 1rem;
}

/* ===== MAP SECTION ===== */
.map-section {
  text-align: center;
}

.map-container,
.map-embed {
  max-width: 1000px;
  margin: 1.5rem auto 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line-650);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

@media (min-width: 600px) {
  .map-container,
  .map-embed {
    margin-top: 2rem;
    border-radius: 12px;
  }
}

.map-container iframe,
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-850);
  color: var(--text-400);
  padding: 2rem 1rem;
  text-align: center;
  font-size: .9rem;
  border-top: 1px solid var(--line-650);
  margin-top: 2rem;
  background: linear-gradient(180deg, var(--bg-850) 0%, var(--bg-900) 100%);
  position: relative;
}

@media (min-width: 600px) {
  .site-footer {
    padding: 2.5rem 1rem;
    font-size: .95rem;
    margin-top: 3rem;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 42, 42, 0.2) 50%,
      transparent);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 500px) {
  .footer-top {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-300);
  text-decoration: none;
  transition: color var(--t);
}

.footer-nav a:hover {
  color: var(--brand);
}

.footer-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: 0.85rem;
}

@media (min-width: 500px) {
  .footer-meta {
    flex-direction: row;
    gap: .5rem;
    font-size: 0.9rem;
  }
}

.site-footer a {
  color: #e3e3e3;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-evenly;
  gap: .3rem;
  background: rgba(27, 27, 27, 0.95);
  border-top: 1px solid var(--line-700);
  padding: .5rem .3rem;
  transition: transform var(--t);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 400px) {
  .sticky-cta-bar {
    gap: .4rem;
    padding: .6rem .4rem;
  }
}

.sticky-cta-bar a {
  flex: 1;
  margin: 0 .2rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-8);
  padding: .65rem 0;
  text-decoration: none;
  color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

@media (min-width: 400px) {
  .sticky-cta-bar a {
    margin: 0 .4rem;
    font-size: 1.05rem;
    padding: .75rem 0;
    gap: 0.4rem;
  }
}

.sticky-cta-bar .sticky-cta-call {
  background: var(--brand);
  color: var(--on-brand);
}

.sticky-cta-bar .sticky-cta-text {
  background: var(--bg-800);
  border: 1px solid var(--brand);
  color: rgb(255, 255, 255);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-650) 20%, var(--line-650) 80%, transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* ===== CHAT WIDGET ===== */
.dp-chat-launch {
  position: fixed;
  bottom: 70px;
  right: 14px;
  z-index: 99998;
  background: rgb(255, 59, 59);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  font-family: system-ui, Arial, sans-serif;
  transition: all 0.2s ease;
}

@media (min-width: 600px) {
  .dp-chat-launch {
    bottom: 18px;
    right: 18px;
    width: 58px;
    height: 58px;
    font-size: 26px;
  }
}

.dp-chat-launch:hover {
  background: rgb(230, 46, 46);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
}

.dp-chat-panel {
  position: fixed;
  bottom: 130px;
  right: 10px;
  left: 10px;
  width: auto;
  max-height: 65vh;
  background: rgb(15, 15, 15);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(42, 42, 42);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  font-family: system-ui, Arial, sans-serif;
  overflow: hidden;
  z-index: 99999;
}

@media (min-width: 500px) {
  .dp-chat-panel {
    bottom: 86px;
    right: 18px;
    left: auto;
    width: 330px;
    max-height: 520px;
  }
}

.dp-chat-header {
  padding: 12px 14px;
  background: rgb(25, 25, 25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  border-bottom: 1px solid rgb(38, 38, 38);
}

.dp-chat-header button {
  background: transparent;
  color: rgb(204, 204, 204);
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.dp-chat-header button:hover {
  background: rgba(255,255,255,.1);
}

.dp-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  scroll-behavior: smooth;
}

.dp-msg {
  padding: 8px 10px;
  border-radius: 10px;
  max-width: 85%;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 0 2px 5px rgba(0,0,0,.4);
  animation: slideIn 0.2s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dp-msg.user {
  align-self: flex-end;
  background: rgb(255, 59, 59);
  color: rgb(255, 255, 255);
  border-bottom-right-radius: 2px;
}

.dp-msg.ai {
  align-self: flex-start;
  background: rgb(29, 29, 29);
  color: rgb(242, 242, 242);
  border-bottom-left-radius: 2px;
}

.dp-msg.error {
  align-self: center;
  background: rgb(61, 31, 31);
  color: rgb(255, 204, 204);
  border: 1px solid rgb(90, 42, 42);
  font-size: 12px;
  max-width: 95%;
}

.dp-chat-footer {
  padding: 10px;
  border-top: 1px solid rgb(38, 38, 38);
  background: rgb(20, 20, 20);
  display: flex;
  gap: 6px;
}

.dp-chat-footer textarea {
  flex: 1;
  resize: none;
  height: 44px;
  padding: 8px 10px;
  background: rgb(28, 28, 28);
  border: 1px solid rgb(51, 51, 51);
  border-radius: 10px;
  color: rgb(238, 238, 238);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.35;
  transition: border-color 0.2s ease;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

.dp-chat-footer textarea:focus {
  outline: none;
  border-color: rgb(255, 59, 59);
}

.dp-chat-footer button {
  background: rgb(255, 59, 59);
  border: none;
  color: rgb(255, 255, 255);
  font-weight: 600;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.dp-chat-footer button:hover:not(:disabled) {
  background: rgb(230, 46, 46);
  transform: translateY(-1px);
}

.dp-chat-footer button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.dp-suggestion-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 10px;
  background: rgb(21, 21, 21);
  border-top: 1px solid rgb(34, 34, 34);
}

.dp-suggestion-bar button {
  background: rgb(34, 34, 34);
  border: 1px solid rgb(51, 51, 51);
  color: rgb(187, 187, 187);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dp-suggestion-bar button:hover {
  background: rgb(42, 42, 42);
  color: rgb(255, 255, 255);
  border-color: rgb(68, 68, 68);
}

.dp-thinking {
  display: inline-block;
}

.dp-thinking::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* ===== UTILITY CLASSES ===== */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }

/* Focus visible states */
*:focus-visible {
  outline: 3px solid rgba(255, 42, 42, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Image loading shimmer */
img {
  background: linear-gradient(90deg,
      var(--bg-800) 0%,
      var(--bg-750) 50%,
      var(--bg-800) 100%);
  background-size: 200% 100%;
}

img:not([src]) {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .dp-chat-launch {
    transition: none;
  }
  .swiper,
  .swiper * {
    transition: none !important;
    animation: none !important;
  }
  .hero-cta-primary .btn {
    animation: none;
  }
}

/* Hide BBB dynamic seal on mobile to avoid overlap */
@media (max-width: 500px) {
  #bbbseal {
    display: none !important;
  }
}