/* AB Exterior — balanced dark (not dreary, not all-white) */

:root {
  --bg-deep: #0e1118;
  --bg-raised: #151a23;
  --bg-card: #1a2130;
  --bg-card-hover: #1f2838;
  --text: #eef2f6;
  --text-muted: #9aa6b5;
  --silver: #e2e8f0;
  --line: rgba(255, 255, 255, 0.09);
  --line-blue: rgba(0, 184, 255, 0.32);
  --blue: #00b8ff;
  --blue-bright: #4dcfff;
  --blue-dim: #0090cc;
  --blue-glow: rgba(0, 184, 255, 0.32);
  --blue-glow-soft: rgba(0, 184, 255, 0.12);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 184, 255, 0.12);
}

body {
  background: var(--bg-deep);
  background-image: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 184, 255, 0.08) 0%, transparent 55%);
  color: var(--text);
}

.site-header {
  background: rgba(14, 17, 24, 0.78);
  border-bottom-color: var(--line);
}

.site-header.is-scrolled {
  background: rgba(14, 17, 24, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.site-nav a { color: var(--text-muted); }
.site-nav a:hover { color: var(--blue-bright); text-shadow: 0 0 20px var(--blue-glow); }
.header-phone { color: var(--silver); }
.menu-toggle { border-color: var(--line); }
.menu-toggle span { background: var(--silver); }
.mobile-nav {
  background: rgba(14, 17, 24, 0.97);
  border-top-color: var(--line-blue);
}
.mobile-nav a { color: var(--text); border-bottom-color: var(--line); }

/* Hero — your photo stays visible; medium scrim, not white wash */
.hero__bg-image {
  object-position: 58% 46%;
  filter: saturate(1.08) contrast(1.03) brightness(1.02);
  opacity: 1;
  animation: hero-ken 26s ease-in-out infinite alternate;
}

@keyframes hero-ken {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero__overlay {
  background:
    linear-gradient(100deg, rgba(14, 17, 24, 0.72) 0%, rgba(14, 17, 24, 0.35) 42%, rgba(14, 17, 24, 0.08) 65%, rgba(14, 17, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(14, 17, 24, 0.25) 0%, transparent 40%, rgba(14, 17, 24, 0.55) 100%);
}

.hero__slant {
  background: linear-gradient(175deg, transparent 50%, var(--bg-raised) 50%);
}

.hero__content {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__title { color: var(--silver); }
.hero__title em { color: var(--text); }
.hero__label { color: var(--blue-bright); text-shadow: 0 0 24px var(--blue-glow); }
.hero__lead { color: var(--text-muted); }

.hero__proof {
  background: rgba(21, 26, 35, 0.82);
  border-color: var(--line-blue);
  backdrop-filter: blur(12px);
}

.hero__areas li {
  color: var(--text-muted);
  background: rgba(0, 184, 255, 0.08);
  border-color: var(--line-blue);
}

.trust-row {
  border-top-color: var(--line-blue);
  color: var(--text-muted);
}
.trust-row strong {
  color: var(--blue-bright);
  text-shadow: 0 0 20px var(--blue-glow);
}

.btn--outline {
  color: var(--blue-bright);
  background: rgba(14, 17, 24, 0.4);
}

.section { background: var(--bg-deep); }
.section--raised { background: var(--bg-raised); }
.texture-carbon {
  background-color: var(--bg-raised);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
}

.process-strip {
  background: var(--bg-raised);
  border-bottom-color: var(--line);
}
.process-card {
  background: var(--bg-card);
  border-color: var(--line);
}
.process-card h3 { color: var(--silver); }
.process-card__num { color: rgba(0, 184, 255, 0.22); }

.section__title { color: var(--silver); }
.section__label { color: var(--blue); }

.pkg-card,
.rev-card,
.contact-card {
  background: var(--bg-card);
  border-color: var(--line);
  box-shadow: none;
}
.svc-item:hover,
.pkg-card--featured {
  border-color: var(--line-blue);
}

.pkg-card--featured {
  background: linear-gradient(180deg, #1e2838 0%, var(--bg-card) 100%);
}

.why-band {
  background: linear-gradient(180deg, var(--bg-raised) 0%, var(--bg-deep) 100%);
  border-color: var(--line);
}
.why-inline h4 { color: var(--blue-bright); }

.section--contact {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-raised) 50%, var(--bg-deep) 100%);
  border-top-color: var(--line-blue);
}

.contact-card--primary {
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.1) 0%, var(--bg-card) 100%);
}

.site-footer {
  background: #0a0c10;
  border-top-color: var(--line-blue);
}

.estimate-page { background: var(--bg-deep); }
.form-card {
  background: var(--bg-card);
  border-color: var(--line-blue);
}
.form-field input,
.form-field textarea {
  background: var(--bg-deep);
  color: var(--text);
  border-color: var(--line);
}
.check, .radio {
  background: var(--bg-deep);
  border-color: var(--line);
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-image { animation: none; }
}

/* FAQ */
.container--narrow { max-width: 42rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 2rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.15rem;
  list-style: none;
  color: var(--silver);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-bright);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--blue-bright); }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.faq-item p a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 2px; }
.faq-item p a:hover { color: var(--text); }

.faq-social {
  margin-top: 2.5rem;
  text-align: center;
}
.faq-social__label,
.contact-social__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin: 0 0 0.75rem;
}
.faq-social__hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.faq-social__hint[hidden] { display: none; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.95rem;
}
.social-links a {
  color: var(--silver);
  font-weight: 500;
}
.social-links a:hover { color: var(--blue-bright); }
.social-links--footer { margin: 0.5rem 0 0.75rem; }
.contact-social { margin: 1.5rem 0 0.5rem; text-align: center; }
.contact-social .social-links { justify-content: center; }

/* —— Motion (subtle; respects reduced motion) —— */
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }

.faq-list .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-list .faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.3s; }
.faq-list .faq-item:nth-child(7) { transition-delay: 0.35s; }
.faq-list .faq-item:nth-child(8) { transition-delay: 0.4s; }

.faq-item summary { transition: color 0.2s ease; }
.faq-item[open] { border-color: rgba(0, 184, 255, 0.35); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25); }
.faq-item[open] summary { color: var(--blue-bright); }

.pkg-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.pkg-card--featured:hover {
  box-shadow: 0 12px 40px rgba(0, 184, 255, 0.15);
}

.process-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover {
  transform: translateY(-3px);
}

.contact-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
}

.btn--primary {
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.btn--primary:hover {
  box-shadow: 0 0 28px rgba(0, 184, 255, 0.35);
}
.btn--primary:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__label { animation: hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
  .hero__title { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }
  .hero__lead { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
  .hero__actions { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both; }
  .hero__proof { animation: hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both; }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__label,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero__proof { animation: none; }
  .pkg-card:hover,
  .process-card:hover,
  .contact-card:hover { transform: none; }
  .faq-list .faq-item { transition-delay: 0s; }
}

.footer-licensed {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-weight: 600;
}
.social-links--footer { margin: 0.65rem 0 0.5rem; }

/* —— Services (flat, centered) —— */
#services .container {
  max-width: 56rem;
}
.svc-groups {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-top: 1.75rem;
}
.svc-group {
  text-align: center;
}
.svc-group__head {
  margin: 0 auto 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  max-width: 32rem;
}
.svc-group__icon {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-bright);
  margin-bottom: 0.5rem;
}
.svc-group__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
  margin: 0 0 0.4rem;
}
.svc-group__lead {
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 28rem;
}
.svc-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 640px) {
  .svc-grid:not(.svc-grid--two) > .svc-card--center {
    grid-column: 1 / -1;
    width: calc((100% - 0.85rem) / 2);
    max-width: 100%;
    justify-self: center;
  }
}
.svc-grid--two {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.svc-card {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.svc-card:hover {
  border-color: var(--line-blue);
  background: var(--bg-card);
}
.svc-card__media {
  display: block;
  aspect-ratio: auto;
  min-height: 100%;
  border-bottom: none;
  border-right: 1px solid var(--line);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  object-fit: cover;
}
.svc-card__body {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.svc-card__body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silver);
  margin: 0 0 0.25rem;
}
.svc-card__body p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.svc-card__cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue-bright);
  align-self: flex-start;
}
.svc-card__cta:hover { color: var(--text); text-decoration: underline; }
.svc-cta-bar {
  margin-top: 2rem;
  padding-top: 1.75rem;
  text-align: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.svc-cta-bar span { font-size: 0.9rem; color: var(--text-muted); }
.svc-cta-bar a { color: var(--blue-bright); }
.svc-cta-bar a:hover { color: var(--text); }

.footer-policy { margin: 0.25rem 0 0.5rem; font-size: 0.85rem; }
.footer-policy a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-policy a:hover { color: var(--blue-bright); }

@media (max-width: 479px) {
  .svc-card {
    grid-template-columns: 1fr;
  }
  .svc-card__media {
    border-right: none;
    border-bottom: 1px solid var(--line);
    aspect-ratio: 16 / 9;
  }
  .svc-card__media img { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-card:hover { background: var(--bg-deep); }
}

.form-policy-note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.form-policy-note a { color: var(--blue-bright); }

.header-social {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
  font-size: 0.8rem;
}
.header-social:not([hidden]) { display: flex; }
.header-social a {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.header-social a:hover { color: var(--blue-bright); border-color: rgba(0, 184, 255, 0.45); }
.mobile-nav__social { padding: 0.75rem 1.25rem 1rem; border-bottom: 1px solid var(--line); }
.mobile-nav__social:not([hidden]) { display: flex; }
@media (max-width: 900px) { .header-social { display: none !important; } }
@media (min-width: 901px) { .mobile-nav__social { display: none !important; } }
