/* Glass Masters - Window Cleaning */

:root {
  --gm-navy: #0a2540;
  --gm-navy-dark: #061829;
  --gm-teal: #14b8a6;
  --gm-teal-dark: #0d9488;
  --gm-gold: #f59e0b;
  --gm-white: #ffffff;
  --gm-gray-50: #f8fafc;
  --gm-gray-100: #f1f5f9;
  --gm-gray-200: #e2e8f0;
  --gm-gray-600: #475569;
  --gm-gray-800: #1e293b;
  --gm-text: #334155;
  --gm-radius: 12px;
  --gm-shadow: 0 4px 24px rgba(10, 37, 64, 0.12);
  --gm-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gm-max: 1140px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--gm-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gm-text);
  background: var(--gm-white);
}

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

a {
  color: var(--gm-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gm-teal);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gm-navy);
  color: var(--gm-white);
  border-radius: var(--gm-radius);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}


.header-sentinel {
  height: 1px;
  margin-top: -1px;
  pointer-events: none;
}

.hero__tagline {
  margin: 0 0 0.75rem;
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  opacity: 0.95;
}

.page-hero {
  background: linear-gradient(145deg, var(--gm-navy) 0%, var(--gm-navy-dark) 100%);
  color: var(--gm-white);
  padding: 3.5rem 1.25rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--gm-white);
}

.page-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  font-size: 1.125rem;
  opacity: 0.92;
}

.page-hero .hero__actions .btn--secondary {
  color: var(--gm-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.page-hero .hero__actions .btn--secondary:hover {
  background: var(--gm-white);
  color: var(--gm-navy);
}

.location-promo {
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  background: rgba(20, 184, 166, 0.12);
  border-left: 4px solid var(--gm-teal);
  border-radius: 0 8px 8px 0;
}

.content-narrow {
  max-width: 42rem;
  margin: 0 auto;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--gm-teal-dark);
}

a.area-pill {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

a.area-pill:hover {
  background: var(--gm-teal);
  border-color: var(--gm-teal);
  color: var(--gm-white);
}

.contact-card select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gm-text);
  background: var(--gm-gray-50);
  border: 1px solid var(--gm-gray-200);
  border-radius: 8px;
}

.contact-card select:focus {
  outline: none;
  border-color: var(--gm-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}

.section--dark .contact-card select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gm-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gm-white);
  border-bottom: 1px solid var(--gm-gray-200);
  box-shadow: 0 1px 0 rgba(10, 37, 64, 0.06);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 24, 41, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(6, 24, 41, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .brand,
.site-header .site-nav a,
.site-header .brand__tag {
  transition: color 0.45s ease;
}

.site-header .nav-toggle span {
  transition: background 0.45s ease;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .site-nav a {
  color: var(--gm-white);
}

.site-header.is-scrolled .brand:hover,
.site-header.is-scrolled .site-nav a:hover {
  color: var(--gm-teal);
}

.site-header.is-scrolled .brand__tag {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--gm-white);
}

.site-header.is-scrolled .header-cta {
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .brand,
  .site-header .site-nav a,
  .site-header .brand__tag,
  .site-header .nav-toggle span {
    transition: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--gm-max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gm-navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--gm-navy-dark);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--gm-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.site-nav a:hover {
  color: var(--gm-teal-dark);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--gm-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.site-nav.is-open a {
  color: var(--gm-navy);
}

.site-nav.is-open a:hover {
  color: var(--gm-teal-dark);
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: var(--gm-white);
  border-bottom: 1px solid var(--gm-gray-200);
  box-shadow: var(--gm-shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--gm-teal);
  color: var(--gm-white);
  border-color: var(--gm-teal);
}

.btn--primary:hover {
  background: var(--gm-teal-dark);
  border-color: var(--gm-teal-dark);
  color: var(--gm-white);
}

.btn--secondary {
  background: transparent;
  color: var(--gm-navy);
  border-color: var(--gm-navy);
}

.btn--secondary:hover {
  background: var(--gm-navy);
  color: var(--gm-white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gm-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--gm-white);
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 920px);
  padding: 5rem 1.25rem 4.5rem;
  color: var(--gm-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 100%;
  min-height: 125%;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
  transform: translate3d(-50%, -50%, 0);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(6, 24, 41, 0.92) 0%, rgba(10, 37, 64, 0.78) 42%, rgba(10, 37, 64, 0.45) 100%),
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(20, 184, 166, 0.22), transparent 70%);
  pointer-events: none;
}

.hero--location {
  min-height: min(72vh, 720px);
}

.hero--location .hero__inner {
  align-items: center;
}

.hero--location .hero__bg-img {
  object-position: center center;
  min-height: 145%;
}

.hero__scrim--location {
  background:
    linear-gradient(115deg, rgba(6, 24, 41, 0.9) 0%, rgba(10, 37, 64, 0.75) 48%, rgba(10, 37, 64, 0.58) 100%),
    radial-gradient(ellipse 65% 55% at 72% 28%, rgba(20, 184, 166, 0.2), transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.hero__content {
  max-width: 42rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  max-width: 36rem;
  opacity: 0.92;
}

.hero .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.container {
  max-width: var(--gm-max);
  margin: 0 auto;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  display: block;
  line-height: 1.2;
}

.brand__tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gm-gray-600);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gm-teal);
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  max-width: 36rem;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust__stars {
  color: #f5b301;
  letter-spacing: 0.05em;
}

.hero-trust a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-trust--light {
  color: var(--gm-navy);
}

.hero-trust--light a {
  color: var(--gm-teal);
}

.jobber-embed {
  margin-top: 1.5rem;
  min-height: 480px;
}

.jobber-embed iframe {
  width: 100%;
  border: 0;
}

.map-embed-wrap {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gm-gray-200);
  aspect-ratio: 16 / 9;
  background: var(--gm-gray-100);
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat strong {
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--gm-white);
}

.stat span {
  font-size: 0.875rem;
  opacity: 0.85;
}

.content-image {
  width: 100%;
  border-radius: var(--gm-radius);
  box-shadow: var(--gm-shadow);
  object-fit: cover;
}

.content-image {
  aspect-ratio: 16 / 10;
}

.hero .btn--secondary {
  color: var(--gm-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero .btn--secondary:hover {
  background: var(--gm-white);
  color: var(--gm-navy);
  border-color: var(--gm-white);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: var(--gm-max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gm-gray-800);
}

.trust-item__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gm-teal);
  flex-shrink: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--gm-radius);
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.btn--light {
  background: var(--gm-white);
  color: var(--gm-navy);
  border-color: var(--gm-white);
}

.btn--light:hover {
  background: var(--gm-gray-100);
  border-color: var(--gm-gray-100);
  color: var(--gm-navy-dark);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.footer-inner strong {
  display: block;
  margin-bottom: 0.25rem;
}

.footer-inner span {
  display: block;
  opacity: 0.75;
}

.section--dark .section-head h2,
.section--dark .section-head p {
  color: var(--gm-white);
}

.section--dark .contact-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.section--dark .contact-card label {
  color: var(--gm-white);
}

.section--dark .contact-card input,
.section--dark .contact-card textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gm-white);
}

.section--dark .contact-card a {
  color: var(--gm-teal);
}

.split .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1rem 1.25rem;
  background: var(--gm-gray-50);
  border-bottom: 1px solid var(--gm-gray-200);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gm-gray-800);
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section--light {
  background: var(--gm-gray-50);
}

.section--dark {
  background: var(--gm-navy);
  color: var(--gm-white);
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark h2,
.section--dark h3 {
  color: var(--gm-white);
}

.section-head {
  max-width: var(--gm-max);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  color: var(--gm-navy);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--gm-gray-600);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.card {
  padding: 1.75rem;
  background: var(--gm-white);
  border: 1px solid var(--gm-gray-200);
  border-radius: var(--gm-radius);
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.section--dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.card:hover {
  box-shadow: var(--gm-shadow);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--gm-navy);
}

.section--dark .card h3 {
  color: var(--gm-white);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--gm-teal-dark);
  font-size: 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--gm-max);
  margin: 0 auto;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gm-teal);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--gm-max);
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--gm-white);
  border-radius: var(--gm-radius);
  border: 1px solid var(--gm-gray-200);
  counter-increment: step;
}

.process-step__num {
  display: none;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gm-teal);
  color: var(--gm-white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: var(--gm-max);
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.area-pill-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.area-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gm-white);
  border: 1px solid var(--gm-gray-200);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gm-navy);
}

.section--dark .area-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gm-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  max-width: 36rem;
  background: var(--gm-white);
  border: 1px solid var(--gm-gray-200);
  border-radius: var(--gm-radius);
  box-shadow: var(--gm-shadow);
}

.reviews-summary__rating {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gm-navy);
  line-height: 1;
}

.reviews-summary__meta {
  color: var(--gm-gray-600);
  font-size: 0.9375rem;
}

.reviews-summary__google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gm-navy);
}

.reviews-summary__google svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.reviews-loading,
.reviews-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gm-gray-600);
}

.reviews-google-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--gm-teal-dark);
  text-decoration: none;
}

.reviews-google-link:hover {
  color: var(--gm-navy);
  text-decoration: underline;
}

.review {
  padding: 1.5rem;
  background: var(--gm-white);
  border-radius: var(--gm-radius);
  border: 1px solid var(--gm-gray-200);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gm-gray-100);
  flex-shrink: 0;
}

.review__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gm-navy);
}

.review__meta {
  min-width: 0;
}

.review__author {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gm-navy);
}

.review__source {
  display: block;
  font-size: 0.8125rem;
  color: var(--gm-gray-600);
}

.review blockquote,
.review__text {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--gm-gray-800);
}

.review cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gm-navy);
}

.stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--gm-gold);
  letter-spacing: 0.05em;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--gm-gray-200);
  border-radius: var(--gm-radius);
  background: var(--gm-white);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--gm-navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--gm-teal);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item div,
.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--gm-gray-600);
}

.faq-category {
  margin: 0 0 1.25rem;
  font-size: 1.375rem;
  color: var(--gm-navy);
}

.faq-more {
  margin: 1.75rem 0 0;
  text-align: center;
  color: var(--gm-gray-600);
}

.faq-more a {
  font-weight: 600;
  color: var(--gm-teal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--gm-max);
  margin: 0 auto;
}

.contact-card {
  padding: 2rem;
  background: var(--gm-white);
  border-radius: var(--gm-radius);
  box-shadow: var(--gm-shadow);
  border: 1px solid var(--gm-gray-200);
}

.contact-card--cta .btn {
  margin-top: 1rem;
}

.contact-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gm-navy);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gm-text);
  background: var(--gm-gray-50);
  border: 1px solid var(--gm-gray-200);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: none;
  border-color: var(--gm-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}

.contact-card textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 2.5rem 1.25rem 6rem;
  background: var(--gm-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.site-footer a {
  color: var(--gm-teal);
  text-decoration: none;
}

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

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

.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: var(--gm-white);
  border-top: 1px solid var(--gm-gray-200);
  box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.12);
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.875rem 0.5rem;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .site-nav.is-open {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .site-nav.is-open {
    display: flex;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    min-height: min(88vh, 960px);
    padding: 6rem 1.25rem 5.5rem;
  }

  .hero__inner {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    transform: translate3d(-50%, -50%, 0) !important;
  }
}

@media (max-width: 991px) {
  .header-inner {
    padding: 0.625rem 1rem;
    gap: 0.625rem;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 0.9375rem;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
  }

  .brand > span {
    min-width: 0;
  }

  .brand__logo {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }

  .site-nav.is-open {
    z-index: 1001;
  }
}

@media (max-width: 767px) {
  .brand__tag {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 3.25rem 1rem 2.75rem;
  }

  .hero--location .hero__bg-img {
    min-height: 125%;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(6, 24, 41, 0.94) 0%, rgba(10, 37, 64, 0.84) 52%, rgba(10, 37, 64, 0.76) 100%);
  }

  .hero h1 {
    font-size: clamp(1.625rem, 7.5vw, 2.25rem);
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-size: 0.9375rem;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    width: 100%;
  }
  .hero__meta {
    justify-items: center;
    text-align: center;
  }

  .stat {
    align-items: center;
    text-align: center;
    max-width: 16rem;
  }

  #services .card {
    text-align: center;
  }

  #services .service-icon {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .process-step {
    padding: 1.35rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-step::before {
    position: static;
    left: auto;
    top: auto;
    margin: 0 auto 0.875rem;
    flex-shrink: 0;
  }

  .process-step h3 {
    margin-top: 0;
  }


  .stat strong {
    font-size: 1.25rem;
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero__bg-img {
    min-height: 115%;
    object-position: center 28%;
  }

  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
  }

  .trust-item {
    font-size: 0.8125rem;
  }

  .section {
    padding: 2.75rem 1rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .section-head h2 {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .card,
  .review,
  .contact-card {
    padding: 1.25rem;
  }

  .split {
    gap: 1.5rem;
  }

  .split .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list {
    gap: 0.625rem;
  }

  .gallery-grid {
    gap: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .mobile-cta {
    display: flex;
  }

  body:has(.mobile-cta) {
    padding-bottom: 4.75rem;
  }

  .site-footer {
    padding: 2rem 1rem 6rem;
  }
}

@media (max-width: 380px) {
  .brand__name {
    font-size: 0.875rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
