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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

::selection {
  background: #f59e0b;
  color: #ffffff;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #b45309 0%, #D4AF37 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cf8508;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: 1.5rem;
  color: #0f172a;
}
@media (min-width: 640px) {
  .section-heading {
    font-size: 2.25rem;
  }
}

.section-lede {
  color: #475569;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .section-lede {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .section {
    padding-block: 5rem;
  }
}

.section--alt {
  background: #f8fafc;
}

.section--bordered {
  border-block: 1px solid #e2e8f0;
}

.section-header {
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  border: none;
}

body.edit-mode-active [data-editable],
body.edit-mode-active [contenteditable=true] {
  outline: 2px dashed #D4AF37;
  outline-offset: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

body.edit-mode-active [data-editable]:hover,
body.edit-mode-active [contenteditable=true]:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: #0f172a;
  color: #D4AF37;
  border-color: rgba(212, 175, 55, 0.3);
}
.btn--primary:hover {
  background: #1e293b;
}

.btn--gold {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #020617;
}
.btn--gold:hover {
  background: linear-gradient(90deg, #fcd34d, #f59e0b);
}

.btn--danger {
  background: #dc2626;
  color: #ffffff;
}
.btn--danger:hover {
  background: #b91c1c;
}

.btn--emerald {
  background: #059669;
  color: #ffffff;
}
.btn--emerald:hover {
  background: #047857;
}

.btn--blue {
  background: #2563eb;
  color: #ffffff;
}
.btn--blue:hover {
  background: #1d4ed8;
}

.btn--ghost {
  background: #e2e8f0;
  color: #1e293b;
}
.btn--ghost:hover {
  background: #cbd5e1;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #0f172a;
}
.btn--glass:hover {
  background: #ffffff;
}

.btn--sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.6875rem;
  border-radius: 1rem;
}

.btn--link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c57f08;
  box-shadow: none;
  padding: 0;
  background: none;
}
.btn--link:hover {
  color: #92400e;
}

.btn--link-danger {
  color: #dc2626;
}
.btn--link-danger:hover {
  color: #b91c1c;
}

.btn--link-blue {
  color: #2563eb;
}
.btn--link-blue:hover {
  color: #1e40af;
}

.card {
  background: #ffffff;
  border-radius: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .card {
    padding: 1.75rem;
  }
}
.card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

.card--flush {
  padding: 0;
}

.card--emergency {
  background: rgba(254, 242, 242, 0.5);
  border: 2px solid #dc2626;
}

.card--featured {
  background: rgba(255, 251, 235, 0.6);
  border: 2px solid #f59e0b;
}

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card--emergency .card__icon {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 8px 16px -6px rgba(220, 38, 38, 0.3);
}

.card:hover .card__icon {
  background: #0f172a;
  color: #D4AF37;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .card__title {
    font-size: 1.25rem;
  }
}

.card__text {
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.glass-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.75rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  position: relative;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.trust-pill svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.trust-pill--alert {
  color: #dc2626;
  font-weight: 800;
}
.trust-pill--alert svg {
  color: #dc2626;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #1e293b;
}

.badge--corner {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.badge--amber {
  background: #fef3c7;
  color: #78350f;
}

.badge--red {
  background: #dc2626;
  color: #ffffff;
}

.badge--emerald {
  background: #d1fae5;
  color: #065f46;
}

.badge--dark {
  background: #0f172a;
  color: #D4AF37;
}

.badge--pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.field {
  display: block;
  margin-bottom: 0.75rem;
}

.field__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 0.25rem;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 1.25rem;
  border: 1px solid #cbd5e1;
  font-size: 0.8125rem;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.field__select {
  background: #ffffff;
}

.field__textarea {
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .field-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 1.5rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  transition: border-color 0.2s ease;
}
.dropzone:hover {
  border-color: #f59e0b;
}
.dropzone svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #94a3b8;
  margin-inline: auto;
}

.dropzone__hint {
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.dropzone__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  margin-top: 0.25rem;
}

.dropzone__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: center;
}
.dropzone__previews img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border: 1px solid #cbd5e1;
}

.range-slider {
  width: 100%;
  accent-color: #f59e0b;
  height: 0.5rem;
  background: #e2e8f0;
  border-radius: 1rem;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.modal[hidden] {
  display: none;
}

.modal__dialog {
  background: #ffffff;
  color: #0f172a;
  border-radius: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 36rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .modal__dialog {
    padding: 2rem;
  }
}

.modal__dialog--lg {
  max-width: 56rem;
}

.modal__dialog--xl {
  max-width: 72rem;
}

.modal__dialog--panel {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1;
  z-index: 5;
}
.modal__close:hover {
  color: #1e293b;
}

.modal__header {
  padding: 1rem 1.25rem;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.75rem 1.75rem 0 0;
}

.modal__header-title {
  font-weight: 900;
  font-size: 1rem;
}

.modal__header-sub {
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-top: 0.125rem;
}

.modal__header .modal__close {
  position: static;
  color: #94a3b8;
}
.modal__header .modal__close:hover {
  color: #ffffff;
}

.modal__body {
  padding: 1rem 1.25rem;
  overflow-y: auto;
  flex: 1;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .modal__body {
    padding: 1.5rem;
  }
}

.modal__footer {
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0 0 1.75rem 1.75rem;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .modal__title {
    font-size: 1.5rem;
  }
}

.modal__subtitle {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24rem;
  width: 100%;
  pointer-events: none;
}

.toast {
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  background: #0f172a;
  color: #D4AF37;
  border-color: rgba(212, 175, 55, 0.4);
}

.toast--error {
  background: #dc2626;
  color: #ffffff;
  border-color: #b91c1c;
}

.toast__dismiss {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.8;
}
.toast__dismiss:hover {
  opacity: 1;
}

.data-table-wrap {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  overflow-x: auto;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.data-table {
  text-align: left;
  font-size: 0.75rem;
  min-width: 600px;
}
.data-table thead {
  background: #f1f5f9;
  color: #334155;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
}
.data-table th, .data-table td {
  padding: 0.75rem;
}
.data-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.15s ease;
}
.data-table tbody tr:hover {
  background: rgba(241, 245, 249, 0.8);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table .text-right {
  text-align: right;
}
.data-table .text-center {
  text-align: center;
}

.data-table__primary {
  font-weight: 700;
  color: #0f172a;
}

.data-table__secondary {
  font-size: 0.6875rem;
  color: #64748b;
  font-weight: 600;
}

.status-select {
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #f1f5f9;
  color: #1e293b;
}

.status-select--in-progress {
  background: #d1fae5;
  color: #065f46;
}

.status-select--completed {
  background: #dbeafe;
  color: #1e40af;
}

.status-select--proposal {
  background: #fef3c7;
  color: #92400e;
}

.emergency-bar {
  background: #dc2626;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid #b91c1c;
  position: relative;
  z-index: 40;
}
@media (min-width: 640px) {
  .emergency-bar {
    font-size: 0.8125rem;
  }
}

.emergency-bar__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .emergency-bar__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .emergency-bar__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 640px) {
  .emergency-bar__inner {
    flex-direction: row;
  }
}

.emergency-bar__notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.emergency-bar__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #ffffff;
}

.emergency-bar__address {
  display: none;
  align-items: center;
  gap: 0.25rem;
  color: #fecaca;
  font-weight: 500;
}
.emergency-bar__address svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .emergency-bar__address {
    display: inline-flex;
  }
}

.emergency-bar__call {
  font-weight: 900;
  color: #b91c1c;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: background-color 0.15s ease;
}
.emergency-bar__call svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #dc2626;
}
.emergency-bar__call:hover {
  background: #fef2f2;
}

.hero-frame {
  position: relative;
  background: #0f172a;
  overflow: hidden;
}

.hero-frame__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-frame__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.hero-frame__scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.45));
  backdrop-filter: blur(1px);
}

.hero-frame__scrim-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent, #ffffff);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
}

.site-header__inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .site-header__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .site-header__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 640px) {
  .site-header__inner {
    height: 5.5rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand:hover .brand__mark {
  transform: scale(1.05);
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
@media (min-width: 640px) {
  .brand__mark {
    width: 4rem;
    height: 4rem;
  }
}

.brand__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}
@media (min-width: 640px) {
  .brand__name {
    font-size: 1.5rem;
  }
}

.brand__tagline {
  display: block;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  font-weight: 800;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .brand__tagline {
    font-size: 0.625rem;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.main-nav__link {
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  transition: background-color 0.15s ease;
}
.main-nav__link:hover {
  background: rgba(255, 255, 255, 0.8);
}

.main-nav__link--active {
  color: #b45309;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav__pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f59e0b;
  display: inline-block;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .header-actions {
    display: flex;
  }
}

.dashboard-count {
  background: #0f172a;
  color: #D4AF37;
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  font-weight: 700;
}

.edit-toggle {
  background: rgba(253, 230, 138, 0.8);
  color: #451a03;
  border: 1px solid #fcd34d;
}
.edit-toggle svg {
  color: #b45309;
  width: 1rem;
  height: 1rem;
}
.edit-toggle:hover {
  background: rgba(253, 224, 71, 0.9);
}

.mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  border-radius: 1.25rem;
  color: #1e293b;
}
.mobile-menu-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
}
.mobile-menu[hidden] {
  display: none;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  color: #1e293b;
  border-radius: 1rem;
}
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.8);
}

.mobile-menu__link--accent {
  color: #b45309;
  font-weight: 800;
}

.mobile-menu__actions {
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-quickbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #e2e8f0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 -10px 25px -10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 640px) {
  .mobile-quickbar {
    display: none;
  }
}

.mobile-quickbar .btn {
  flex: 1;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-block: 2rem;
}
@media (min-width: 640px) {
  .hero {
    padding-block: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-block: 5rem;
  }
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .hero__grid {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__grid {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: 2.5rem;
  }
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__badge {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #451a03;
  border-color: rgba(252, 211, 77, 0.6);
  margin-inline: auto;
}
.hero__badge svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
}
@media (min-width: 1024px) {
  .hero__badge {
    margin-inline: 0;
  }
}

.hero__title {
  font-size: 1.875rem;
  color: #0f172a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__subtitle {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1e293b;
  max-width: 42rem;
  line-height: 1.6;
  padding: 1rem;
  border-radius: 1.5rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .hero__subtitle {
    margin-inline: 0;
  }
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .hero__trust-row {
    justify-content: flex-start;
  }
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__cta-row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .hero__cta-row {
    justify-content: flex-start;
  }
}

.hero__cta-row .btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
}

@media (min-width: 640px) {
  .hero__cta-row .btn {
    width: auto;
  }
}
.quote-panel {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #0f172a;
  padding: 1.25rem;
  border-radius: 1.75rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  position: relative;
}
@media (min-width: 640px) {
  .quote-panel {
    padding: 1.75rem;
  }
}

.quote-panel__ribbon {
  position: absolute;
  top: -0.875rem;
  right: 1.5rem;
  background: #0f172a;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-weight: 900;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.quote-panel__title {
  font-size: 1.375rem;
  font-weight: 900;
  color: #0f172a;
}

.quote-panel__sub {
  font-size: 0.75rem;
  color: #475569;
  margin: 0.125rem 0 1.25rem;
}

.spotlight {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .spotlight {
    grid-template-columns: 6fr 6fr;
    gap: 3rem;
  }
}

.spotlight__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.spotlight__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #78350f;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card {
  padding: 1rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease;
}
.tech-card:hover {
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
}

.tech-card__title {
  color: #b45309;
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.tech-card__text {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.6;
}

.spotlight__proof {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .spotlight__proof {
    flex-direction: row;
  }
}

.spotlight__proof .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .spotlight__proof .btn {
    width: auto;
  }
}

.spotlight__proof-note {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.spotlight__media {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.5rem;
}

.spotlight__media img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 1.5rem;
}
@media (min-width: 640px) {
  .spotlight__media img {
    height: 26.25rem;
  }
}

.spotlight__caption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.spotlight__caption-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.spotlight__caption-row span:last-child {
  color: #D4AF37;
}

.spotlight__caption-note {
  color: #cbd5e1;
  font-size: 0.6875rem;
}

.same-day-callout {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 1.25rem;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: left;
}

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

.service-card {
  background: #ffffff;
  border-radius: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 1.5rem;
  position: relative;
}
@media (min-width: 640px) {
  .service-card {
    padding: 1.75rem;
  }
}
.service-card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

.service-card--emergency {
  background: rgba(254, 242, 242, 0.5);
  border: 2px solid #dc2626;
}

.service-card--hoa {
  background: rgba(255, 251, 235, 0.6);
  border: 2px solid #f59e0b;
}

@media (min-width: 1024px) {
  .service-card--span-full {
    grid-column: span 1;
  }
}
.calculator-card {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 1.25rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  border: 1px solid #e2e8f0;
}
@media (min-width: 640px) {
  .calculator-card {
    padding: 2.5rem;
  }
}

.calculator-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .calculator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.calculator-field {
  margin-bottom: 1.25rem;
}

.calculator-field__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.calculator-field__value {
  color: #f59e0b;
  font-weight: 900;
  font-size: 1.125rem;
}

.calculator-field__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  font-weight: 600;
}

.calculator-result {
  background: #0f172a;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
}
@media (min-width: 640px) {
  .calculator-result {
    padding: 2rem;
  }
}

.calculator-result__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.calculator-result__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-block: 0.5rem;
}
@media (min-width: 640px) {
  .calculator-result__price {
    font-size: 2.25rem;
  }
}

.calculator-result__note {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gallery-toolbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .gallery-toolbar {
    flex-direction: row;
    align-items: flex-end;
  }
}

.gallery-toolbar__lede {
  color: #475569;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  max-width: 36rem;
}

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.filter-btn:hover {
  background: #e2e8f0;
}

.filter-btn.is-active {
  background: #0f172a;
  color: #D4AF37;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.gallery-search {
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.gallery-search input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid #cbd5e1;
  font-size: 0.75rem;
  outline: none;
  background: #f8fafc;
}
.gallery-search input:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
  border-color: #f59e0b;
}

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

.gallery-card {
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

.gallery-card__media {
  height: 13rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .gallery-card__media {
    height: 14rem;
  }
}
.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card__media:hover img {
  transform: scale(1.05);
}

.gallery-card__category {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #0f172a;
  color: #D4AF37;
  font-weight: 800;
  font-size: 0.625rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gallery-card__count {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.625rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-card__body {
  padding: 1.5rem;
}

.gallery-card__location {
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.gallery-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.gallery-card__desc {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card__cta {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
}

.lightbox__media {
  height: 16rem;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}
@media (min-width: 640px) {
  .lightbox__media {
    height: 20rem;
  }
}
.lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  z-index: 2;
}
.lightbox__nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.lightbox__nav-btn:hover {
  background: #0f172a;
}
.lightbox__nav-btn[hidden] {
  display: none;
}

.lightbox__nav-btn--prev {
  left: 0.75rem;
}

.lightbox__nav-btn--next {
  right: 0.75rem;
}

.lightbox__counter {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  color: #D4AF37;
  font-weight: 800;
  font-size: 0.6875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 2;
}
.lightbox__counter[hidden] {
  display: none;
}

.lightbox__thumbnails {
  padding: 0.75rem 1.25rem 0.5rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.lightbox__thumbnails[hidden] {
  display: none;
}

.lightbox__thumb {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 1.25rem;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.lightbox__thumb:hover {
  opacity: 1;
}

.lightbox__thumb.is-active {
  border-color: #f59e0b;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lightbox__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lightbox__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox__title {
  font-size: 1.375rem;
  font-weight: 900;
  color: #0f172a;
  margin-top: 0.25rem;
}

.lightbox__location {
  font-size: 0.75rem;
  color: #f59e0b;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox__warranty {
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
}

.lightbox__desc {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  padding: 1rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.metric-card__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #94a3b8;
  display: block;
}

.metric-card__value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
}

.metric-card__value--emerald {
  color: #059669;
}

.metric-card__value--amber {
  color: #d97706;
}

.dashboard-toolbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
@media (min-width: 640px) {
  .dashboard-toolbar {
    flex-direction: row;
  }
}

.dashboard-toolbar__search {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid #cbd5e1;
  font-size: 0.75rem;
  outline: none;
}
@media (min-width: 640px) {
  .dashboard-toolbar__search {
    width: 18rem;
  }
}
.dashboard-toolbar__search:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
  border-color: #f59e0b;
}

.dashboard-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: flex-end;
}
@media (min-width: 640px) {
  .dashboard-toolbar__controls {
    width: auto;
  }
}

.dashboard-toolbar__select {
  padding: 0.5rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid #cbd5e1;
  font-size: 0.75rem;
  background: #ffffff;
  outline: none;
}

.quick-presets {
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-presets__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
}

.quick-presets__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.preset-chip {
  padding: 0.5rem 0.75rem;
  background: #f1f5f9;
  border-radius: 1.25rem;
  color: #1e293b;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  transition: background-color 0.15s ease;
}
.preset-chip:hover {
  background: #f5e9c8;
}

.line-item-input-row {
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .line-item-input-row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.line-item-input-row .field {
  flex: 1;
  margin-bottom: 0;
  width: 100%;
}

.line-item-input-row .field--qty {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 640px) {
  .line-item-input-row .field--qty {
    width: 5rem;
  }
}

.line-item-input-row .field--rate {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 640px) {
  .line-item-input-row .field--rate {
    width: 7rem;
  }
}

.line-item-input-row .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .line-item-input-row .btn {
    width: auto;
  }
}

.quote-summary {
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.75rem;
}

.quote-summary__row {
  display: flex;
  justify-content: space-between;
  width: 15rem;
}

.quote-summary__row--total {
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  font-weight: 900;
}

.quote-summary__label {
  color: #64748b;
  font-weight: 600;
}

.quote-summary__value {
  font-weight: 700;
  color: #0f172a;
}

.quote-summary__total-value {
  color: #059669;
}

.client-meta-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .client-meta-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-meta-card__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
  display: block;
}

.client-meta-card__value {
  font-weight: 900;
  color: #0f172a;
  font-size: 0.875rem;
}

.client-meta-card__sub {
  color: #64748b;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.faq-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #f59e0b;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .faq-list {
    gap: 1rem;
  }
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
@media (min-width: 640px) {
  .faq-item__question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.faq-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d97706;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
  }
}
.faq-item__answer[hidden] {
  display: none;
}
.faq-item__answer strong {
  color: #0f172a;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__lede {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
@media (min-width: 640px) {
  .contact-card {
    padding: 1.25rem;
  }
}

.contact-card__icon {
  padding: 0.75rem;
  border-radius: 1.25rem;
  background: #0f172a;
  color: #D4AF37;
  flex-shrink: 0;
}
.contact-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-card__icon--gold {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #020617;
}

.contact-card__title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #0f172a;
}

.contact-card__text {
  font-size: 0.75rem;
  color: #475569;
  margin-top: 0.125rem;
}

.contact-card__link {
  font-size: 0.875rem;
  font-weight: 800;
  color: #f59e0b;
  margin-top: 0.125rem;
  display: block;
}
.contact-card__link:hover {
  text-decoration: underline;
}

.contact-card__note {
  font-size: 0.625rem;
  color: #64748b;
  font-weight: 600;
}

.map-frame {
  height: 18.75rem;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 15px rgba(212, 175, 55, 0.1);
  position: relative;
}
@media (min-width: 640px) {
  .map-frame {
    height: 23.75rem;
  }
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding-block: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.75rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .site-footer__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 900;
  font-size: 0.875rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.site-footer__name {
  font-weight: 800;
  color: #ffffff;
  font-size: 0.875rem;
}

.site-footer__copyright {
  color: #94a3b8;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 640px) {
  .site-footer__links {
    gap: 1.5rem;
  }
}
.site-footer__links a, .site-footer__links button {
  transition: color 0.15s ease;
}
.site-footer__links a:hover, .site-footer__links button:hover {
  color: #D4AF37;
}

body {
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }
}

/*# sourceMappingURL=main.css.map */
