/* Self-hosted fonts — no third-party round-trips. */

/* Roboto — variable weight (covers 400 + 700) — latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Roboto — variable weight (covers 400 + 700) — latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Saira Stencil One — latin-ext */
@font-face {
  font-family: 'Saira Stencil One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/saira-stencil-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Saira Stencil One — latin */
@font-face {
  font-family: 'Saira Stencil One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/saira-stencil-one-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --clr-bg:            #1d2635;
  --clr-bg-dark:       #141d2b;
  --clr-bg-surface:    rgba(36, 48, 67, 0.6);
  --clr-bg-surface-solid: #243043;
  --clr-bg-glass:      rgba(36, 48, 67, 0.65);
  --clr-accent:        #0fbbf5;
  --clr-accent-hover:  #0099cc;
  --clr-accent-glow:   rgba(15, 187, 245, 0.4);
  --clr-accent-subtle: rgba(15, 187, 245, 0.08);

  --clr-text:          #cbd5e1;
  --clr-text-muted:    #94a3b8;
  --clr-text-bright:   #ffffff;
  --clr-text-heading:  #f1f5f9;

  --clr-border:        rgba(255, 255, 255, 0.1);
  --clr-border-bright: rgba(255, 255, 255, 0.15);

  --clr-success:       #22c55e;
  --clr-success-bg:    rgba(34, 197, 94, 0.1);
  --clr-error:         #ef4444;
  --clr-error-bg:      rgba(239, 68, 68, 0.1);

  --font-body:         'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:      'Saira Stencil One', cursive;

  /* 4px base. */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-7:  1.75rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --nav-h:           clamp(64px, 7vw, 84px);
  --nav-offset:      18px;
  --topbar-h:        0px;
  --container-max:   1200px;
  --container-wide:  1400px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-full: 9999px;

  --shadow-sm:   0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px var(--clr-accent-glow);

  --ease:        0.3s ease;
  --ease-fast:   0.18s ease;
  --ease-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: #1e5f7a #0a1018;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0a1018;
}
::-webkit-scrollbar-thumb {
  background: #1e5f7a;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #2a7a9e;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: clip;
}

/* JS toggles .scroll-locked on <html> while nav menus are open. */
body.menu-open {
  overflow: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  text-shadow: none;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.container--wide {
  max-width: var(--container-wide);
}

/* Padding clears the fixed nav + topbar so content isn't hidden behind them. */
.site-main {
  padding-top: calc(var(--topbar-h) + var(--nav-h) + var(--nav-offset) + var(--sp-8));
  min-height: 60vh;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-accent);
  color: var(--clr-text-bright);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--ease-fast);
}

.skip-link:focus {
  top: var(--sp-2);
}

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

:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-text-heading);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--clr-text);
  line-height: 1.7;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--clr-text-bright);
  margin-bottom: var(--sp-4);
  text-shadow: none;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--clr-text);
  max-width: 680px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color var(--ease), color var(--ease),
              box-shadow var(--ease), transform var(--ease-fast),
              border-color var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  min-height: 48px; /* accessible touch target */
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary {
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  border: 2px solid var(--clr-accent);
}

.btn--primary:hover {
  background-color: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background-color: transparent;
  color: var(--clr-text-bright);
  border: 2px solid var(--clr-border-bright);
}

.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--clr-text-bright);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}

.btn--outline:hover {
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  box-shadow: var(--shadow-glow);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--topbar-h) + var(--nav-offset) + var(--nav-h));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent);
  z-index: 998;
  pointer-events: none;
}

.main-nav {
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-offset));
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: var(--container-wide);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0 clamp(1rem, 2vw, 1.75rem) 0 clamp(0.5rem, 1vw, 0.75rem);
  background: var(--clr-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  height: clamp(36px, 5vw, 48px);
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--clr-text-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  height: 100%;
  flex: 1;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) clamp(0.6rem, 1vw, 1rem);
  color: var(--clr-text);
  font-weight: 700;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background-color var(--ease);
  white-space: nowrap;
  position: relative;
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--clr-text-bright);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-link--active {
  color: var(--clr-accent);
}

.nav-link--cta {
  background-color: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
}

.nav-link--cta::after {
  display: none; /* no underline indicator on CTA */
}

.nav-link--cta:hover {
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  box-shadow: var(--shadow-glow);
}

.nav-label-mobile  { display: none; }
.nav-label-desktop { display: inline; }

.nav-chevron {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform var(--ease-smooth);
  flex-shrink: 0;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron,
.nav-item--mega:hover .nav-chevron,
.nav-item--mega.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: rgb(20, 29, 43);
  border: 1px solid var(--clr-border-bright);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--sp-3) 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  color: var(--clr-text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown__link:hover {
  background-color: rgba(15, 187, 245, 0.06);
  color: var(--clr-accent);
}

.nav-item--promoted:first-child {
  margin-left: auto;
}

.nav-item--promoted .nav-link {
  color: var(--clr-text-bright);
  font-weight: 800;
  letter-spacing: 0.09em;
}

.nav-item--promoted .nav-link:hover {
  color: var(--clr-accent);
}

.nav-item--promoted .nav-link--active {
  color: var(--clr-accent);
}

.nav-item--promoted ~ .nav-item:not(.nav-item--promoted):not(.nav-item--desktop-hidden) .nav-link {
  padding-left: clamp(0.35rem, 0.5vw, 0.5rem);
  padding-right: clamp(0.35rem, 0.5vw, 0.5rem);
}

.nav-divider {
  width: 1px;
  height: 35%;
  align-self: center;
  background: rgba(255, 255, 255, 0.2);
  margin-left: auto;
  margin-right: var(--sp-1);
  flex-shrink: 0;
  list-style: none;
}

/* Hidden in the nav-list on desktop — surfaces in nav-actions instead. */
.nav-item--desktop-hidden {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background-color var(--ease);
}

.nav-phone:hover {
  color: var(--clr-accent);
  background-color: var(--clr-accent-subtle);
}

.nav-phone svg {
  flex-shrink: 0;
  color: var(--clr-accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  font-weight: 700;
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 2px solid var(--clr-accent);
  transition: background-color var(--ease), box-shadow var(--ease),
              transform var(--ease-fast), border-color var(--ease);
}

.nav-cta:hover {
  background-color: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.nav-item--phone-cta {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-2);
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: background-color var(--ease-fast);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--clr-text-bright);
  border-radius: var(--radius-full);
  transition: transform var(--ease-smooth), opacity var(--ease-smooth),
              width var(--ease-smooth);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop blurs the page when a dropdown/mega-menu is open. */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

/* Desktop: activate on mega or dropdown hover — visual only, no pointer capture
   (CSS :hover closes the dropdown naturally; no click needed to dismiss)
   backdrop-filter only applied here (not on base rule) to prevent the GPU
   compositing layer from blocking pointer events when the backdrop is inactive. */
.main-nav:has(.nav-item--mega:hover) ~ .nav-backdrop,
.main-nav:has(.nav-item--dropdown:hover) ~ .nav-backdrop {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-hero {
  padding: var(--sp-10) 0 var(--sp-12);
  background: radial-gradient(circle at 30% 50%, rgba(36, 48, 67, 0.8) 0%, var(--clr-bg) 70%);
  border-bottom: 1px solid var(--clr-border);
}

.page-hero--area {
  background: var(--clr-bg);
  border-bottom: none;
}

.page-hero__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--clr-text-heading);
  margin-bottom: var(--sp-5);
}

.page-hero__intro {
  font-size: 1.05rem;
  color: var(--clr-text);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.page-hero__inline-link {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.breadcrumb {
  padding: var(--sp-4) 0 var(--sp-2);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: var(--clr-text-muted);
}

.breadcrumb__link {
  color: var(--clr-text-muted);
  transition: color var(--ease-fast);
}

.breadcrumb__link:hover {
  color: var(--clr-accent);
}

.breadcrumb__item--current {
  color: var(--clr-text);
}
section {
  padding: var(--sp-16) 0;
}

.services-primary,
.cta-strip {
  background-color: rgba(36, 48, 67, 0.18);
}

.cta-strip {
  background:
    linear-gradient(135deg, rgba(36, 48, 67, 0.9) 0%, rgba(29, 38, 53, 0.95) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 187, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.cta-strip__content {
  flex: 1 1 320px;
}

.cta-strip__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.cta-strip__heading {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--clr-text-heading);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.cta-strip__text {
  font-size: 1rem;
  color: var(--clr-text);
  max-width: 480px;
  line-height: 1.7;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cta-strip__phone {
  color: var(--clr-accent);
  font-weight: 700;
}

.site-footer {
  position: relative;
  background-color: var(--clr-bg-dark);
  color: var(--clr-text);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--clr-accent), transparent) 1;
  padding-top: var(--sp-16);
  overflow: hidden;
}

.site-footer__grid-bg {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at bottom center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at bottom center, black 20%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
}

.site-footer__col--about .logo {
  margin-bottom: var(--sp-5);
  display: inline-flex;
}

.site-footer__col--about .logo-main {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.site-footer__col--about .logo-sub {
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
}

.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.site-footer__tagline {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.65;
}

.nap {
  font-style: normal;
}

.nap__name {
  font-weight: 700;
  color: var(--clr-text-bright);
  font-size: 0.95rem;
  margin-bottom: var(--sp-3);
}

.nap__address {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.nap__phone a,
.nap__email a {
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: color var(--ease-fast);
  display: inline-block;
  margin-bottom: var(--sp-2);
}

.nap__phone a:hover,
.nap__email a:hover {
  color: var(--clr-accent);
}

.site-footer__nav-list li {
  margin-bottom: var(--sp-2);
}

.site-footer__hours-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.88rem;
  line-height: 1.4;
}

.site-footer__hours-table th,
.site-footer__hours-table td {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}

.site-footer__hours-table tr:last-child th,
.site-footer__hours-table tr:last-child td {
  border-bottom: 0;
}

.site-footer__hours-days {
  color: var(--clr-text);
  width: 55%;
}

.site-footer__hours-time {
  color: var(--clr-text-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-footer__hours-row--closed .site-footer__hours-time {
  font-style: italic;
}

.site-footer__nav-link {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--ease-fast), padding-left var(--ease-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.site-footer__nav-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width var(--ease-fast);
  flex-shrink: 0;
}

.site-footer__nav-link:hover {
  color: var(--clr-accent);
}

.site-footer__nav-link:hover::before {
  width: 12px;
}

.site-footer__bar {
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.site-footer__copyright,
.site-footer__legal-link {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.site-footer__copyright {
  margin: 0;
  line-height: 1.6;
}

.site-footer__reg {
  margin: var(--sp-4) 0 0;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.site-footer__reg span {
  margin: 0 var(--sp-2);
  opacity: 0.5;
}

.site-footer__legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.site-footer__bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

.site-footer__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

.site-footer__badge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.site-footer__badge img {
  display: block;
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--ease-fast);
}

.site-footer__badge a:hover img {
  opacity: 1;
}

.site-footer__badge a:hover {
  transform: translateY(-1px);
}

.site-footer__badge--light a {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
}

.site-footer__badge--light a:hover {
  box-shadow: 0 0 0 1px var(--clr-accent), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.site-footer__badge--light img {
  height: 32px;
  opacity: 1;
}

.site-footer__legal-link {
  transition: color var(--ease-fast);
}

.site-footer__legal-link:hover {
  color: var(--clr-text-bright);
}

.speed-dial {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-4);
  animation: sd-enter 0.4s ease 0.3s both;
  filter: opacity(1);
  translate: 0 0;
  transition: translate 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 2.5s cubic-bezier(0.22, 1, 0.36, 1);
  /* Container width is set by the longest action label (Google Reviews), creating
     a transparent area to the left of the toggle. pointer-events: none prevents
     this invisible region from blocking page interactions. Descendants override
     this individually (toggle has default auto; actions list sets auto when open). */
  pointer-events: none;
}

@keyframes sd-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.speed-dial.is-dimmed:not(.is-open) {
  filter: opacity(0.35);
  transition: translate 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.3s ease;
}

.speed-dial-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
  pointer-events: none;
}

.speed-dial-actions li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  transition: opacity var(--ease-smooth), transform var(--ease-smooth);
  transition-delay: var(--sd-delay, 0s);
}

/* Stagger via :nth-child so no inline style="--delay" is needed. */
.speed-dial-actions li:nth-child(1) { --sd-delay: 0.15s; }
.speed-dial-actions li:nth-child(2) { --sd-delay: 0.1s;  }
.speed-dial-actions li:nth-child(3) { --sd-delay: 0.05s; }

.speed-dial-label {
  background: rgba(29, 38, 53, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.speed-dial-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(29, 38, 53, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--ease), color var(--ease),
              transform var(--ease-fast), box-shadow var(--ease),
              border-color var(--ease);
}

.speed-dial-btn svg {
  width: 20px;
  height: 20px;
}

.speed-dial-btn:hover {
  background-color: var(--clr-accent);
  color: var(--clr-text-bright);
  border-color: var(--clr-accent);
  transform: scale(1.12);
  box-shadow: 0 8px 24px var(--clr-accent-glow);
}

.speed-dial-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--clr-accent);
  pointer-events: auto;
  color: var(--clr-text-bright);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 28px var(--clr-accent-glow);
  transition: background-color var(--ease), transform var(--ease-smooth), box-shadow var(--ease);
  position: relative;
}

/* Static accent glow — no animation, so no paint cost. Sits behind the SVG
   icons in paint order. */
.speed-dial-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 40px 4px rgba(15, 187, 245, 0.65);
  pointer-events: none;
}

.speed-dial-toggle:hover {
  background-color: var(--clr-accent-hover);
  transform: scale(1.06);
}

.speed-dial-toggle:hover::before {
  opacity: 0;
}

.speed-dial-toggle svg {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: opacity var(--ease-smooth), transform var(--ease-smooth);
}

.speed-dial-toggle .icon-open {
  width: 30px;
  height: 30px;
  transform: translate(-1px, 1px);
}

.speed-dial-toggle .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.speed-dial.is-open .speed-dial-actions {
  pointer-events: auto;
}

.speed-dial.is-open .speed-dial-actions li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.speed-dial.is-open .speed-dial-toggle {
  background-color: var(--clr-bg-surface-solid);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border-bright);
}

.speed-dial.is-open .speed-dial-toggle::before {
  opacity: 0;
}

.speed-dial.is-open .speed-dial-toggle .icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.speed-dial.is-open .speed-dial-toggle .icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
  color: var(--clr-accent);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page__content {
  text-align: center;
  padding: var(--sp-16) 0;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--clr-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.error-page__heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.error-page__message {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto var(--sp-8);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

/* Mid-width nav: collapse the phone number to icon-only and tighten spacing. */
@media (max-width: 1200px) {
  .nav-phone__text {
    display: none;
  }

  .nav-phone {
    padding: 0.6rem;
    background: rgba(15, 187, 245, 0.1);
    border-radius: var(--radius-sm);
  }

  .nav-phone svg {
    width: 24px;
    height: 24px;
  }

  .nav-link {
    padding: var(--sp-2) clamp(0.4rem, 0.7vw, 0.75rem);
    font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 960px) {
  /* Mobile surfaces phone + CTA inside the dropdown menu, not nav-actions. */
  .nav-actions .nav-phone,
  .nav-actions .nav-cta {
    display: none;
  }

  .nav-item--desktop-hidden {
    display: block;
  }
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .site-footer__col--about {
    grid-column: 1 / -1;
  }

  .local-expertise__grid {
    grid-template-columns: 1fr;
  }

  .stats-strip__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-strip__item {
    flex: 1 1 140px;
  }
}

@media (max-width: 960px) {
  .nav-label-mobile  { display: inline; }
  .nav-label-desktop { display: none; }

  .hamburger {
    display: flex;
  }

  .nav-item--phone-cta {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + var(--sp-2));
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: rgba(29, 38, 53, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--clr-border-bright);
    border-radius: var(--radius-md);
    padding: var(--sp-2) var(--sp-3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--ease-smooth), transform var(--ease-smooth),
                visibility var(--ease-smooth);
    overflow: hidden;
  }

  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: calc(100dvh - var(--topbar-h) - var(--nav-offset) - var(--nav-h) - var(--sp-2) - var(--sp-4));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-item {
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-divider {
    display: none;
  }

  .nav-item--promoted:first-child {
    margin-left: 0;
  }

  .nav-item--promoted .nav-link {
    font-weight: 700;
    letter-spacing: 0.07em;
  }

  .nav-item--promoted ~ .nav-item {
    margin-left: 0;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: var(--sp-4) var(--sp-6);
    justify-content: space-between;
    border-radius: 0;
    min-height: 52px;
  }

  .nav-chevron {
    margin-right: var(--sp-4);
    margin-left: var(--sp-4);
  }

  .nav-link--active::after {
    display: none;
  }

  .nav-link--active {
    border-left: 3px solid var(--clr-accent);
    padding-left: calc(var(--sp-6) - 3px);
    background-color: rgba(15, 187, 245, 0.06);
  }

  .nav-item--desktop-hidden {
    border-bottom: none;
    padding-top: var(--sp-3);
  }

  .nav-item--phone-cta {
    border-bottom: none;
    padding-bottom: var(--sp-3);
  }

  .nav-link--cta {
    margin: var(--sp-2) var(--sp-5);
    display: flex;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 0.75rem var(--sp-5);
  }

  .nav-phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    margin: var(--sp-2) var(--sp-5);
    padding: 0.75rem var(--sp-5);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: none;
    border-radius: var(--radius-sm);
    background-color: rgba(15, 187, 245, 0.08);
    transition: background-color var(--ease);
  }

  .nav-phone-cta:hover {
    background-color: rgba(15, 187, 245, 0.15);
  }

  .nav-phone-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
  }

  .nav-item--dropdown.is-open .nav-dropdown {
    max-height: 500px;
  }

  .nav-dropdown li {
    border-bottom: 1px solid var(--clr-border);
  }

  .nav-dropdown li:last-child {
    border-bottom: none;
  }

  .nav-dropdown__link {
    padding: 0.65rem var(--sp-5) 0.65rem var(--sp-10);
    font-size: 0.88rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    margin: 0 var(--sp-4);
    transition: background-color var(--ease), color var(--ease);
  }

  .nav-dropdown__link:hover {
    background-color: rgba(15, 187, 245, 0.06);
    padding-left: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .main-nav {
    width: 96%;
    padding: 0 var(--sp-4);
  }

  .hero-content {
    padding: 0 var(--sp-5);
  }

  .hero__heading {
    font-size: clamp(2.6rem, 11vw, 4rem);
    letter-spacing: 1px;
  }

  .hero__subheading {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .stats-strip__list {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .stats-strip__item {
    flex: 0 0 140px;
    scroll-snap-align: start;
    padding: var(--sp-4);
  }

  .stats-strip__item + .stats-strip__item::before {
    top: 10%;
    bottom: 10%;
  }

  section {
    padding: var(--sp-12) 0;
  }

  .ss-grid__item {
    flex: 1 1 calc((100% - 2 * var(--sp-4)) / 3);
    max-width: calc((100% - 2 * var(--sp-4)) / 3);
  }

  .ss-card {
    aspect-ratio: 1;
    justify-content: center;
    padding: var(--sp-4);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .site-footer__col--about {
    grid-column: auto;
  }

  .site-footer__bar {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-2);
  }

  .site-footer__bar-right {
    align-items: center;
  }

  .site-footer__badges {
    justify-content: center;
  }

  .cta-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__actions .btn {
    width: 100%;
  }

  .trust-strip__list {
    grid-template-columns: 1fr;
  }

  .speed-dial {
    bottom: var(--sp-5);
    right: var(--sp-5);
  }

  .speed-dial-label {
    display: none;
  }

  .speed-dial.is-open .speed-dial-label {
    display: block;
    font-size: 0.78rem;
    padding: var(--sp-1) var(--sp-3);
  }

  .speed-dial-toggle {
    width: 54px;
    height: 54px;
  }

  .speed-dial-btn {
    width: 46px;
    height: 46px;
  }

  .local-expertise__trust {
    padding: var(--sp-6);
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .page-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero__heading {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-content {
    padding: 0 var(--sp-4);
  }

  .areas-list {
    gap: var(--sp-2);
  }

  .areas-list__link {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

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

  .stats-strip__number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .error-page__actions {
    flex-direction: column;
    align-items: center;
  }

  .ss-grid__item {
    flex: 1 1 calc((100% - var(--sp-4)) / 2);
    max-width: calc((100% - var(--sp-4)) / 2);
  }

  .speed-dial {
    bottom: var(--sp-4);
    right: var(--sp-4);
    gap: var(--sp-3);
  }

  .speed-dial-actions {
    gap: var(--sp-2);
  }

  .speed-dial.is-open .speed-dial-label {
    font-size: 0.72rem;
    padding: 2px var(--sp-2);
  }

  .speed-dial-toggle {
    width: 50px;
    height: 50px;
  }

  .speed-dial-btn {
    width: 42px;
    height: 42px;
  }
}

.testimonials {
  background-color: var(--clr-bg-surface-solid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.testimonial-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.testimonial-card:hover {
  border-color: var(--clr-border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-5);
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: var(--sp-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border);
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-accent-subtle);
  border: 1px solid rgba(15, 187, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-text-heading);
}

.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: 2px;
}

/* Google "G" mark — inline SVG data URI on a pseudo-element so no DOM node is
   added. Decorative (the "Google Review" text already names the source). */
.testimonial-card__meta::before {
  content: '';
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234285f4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/><path fill='%2334a853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/><path fill='%23fbbc05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/><path fill='%23ea4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.testimonials__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}

@media (max-width: 480px) {
  .testimonials__cta .btn {
    width: 100%;
  }
}

/* .text-highlight: marker-sweep utility. IntersectionObserver in main.js flips
   .is-highlighted on once when the element enters the viewport. */
.text-highlight {
  background-image: linear-gradient(to right, var(--clr-accent), var(--clr-accent));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  border-radius: 4px;
  padding: 2px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 1.8s cubic-bezier(0.22, 1, 0.36, 1),
              color           0.3s  ease 0.9s;
}

.text-highlight.is-highlighted {
  background-size: 100% 100%;
  color: var(--clr-bg-dark);
}

@media (prefers-reduced-motion: reduce) {
  .text-highlight {
    background-size: 100% 100%;
    color: var(--clr-bg-dark);
    transition: none;
  }
}

.text-accent {
  color: var(--clr-accent);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-12);
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-category-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-8);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
}

.faq-category-heading:first-child {
  margin-top: 0;
}

.faq-item {
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item[open] {
  border-color: var(--clr-border-bright);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-text-heading);
  list-style: none;
  transition: color var(--ease), background-color var(--ease);
  min-height: 60px;
  user-select: none;
  -webkit-user-select: none;
}

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

.faq-item summary:hover {
  color: var(--clr-accent);
  background-color: var(--clr-accent-subtle);
}

.faq-item[open] summary {
  color: var(--clr-accent);
  background-color: var(--clr-accent-subtle);
  border-bottom: 1px solid var(--clr-border);
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform var(--ease-smooth), color var(--ease);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--clr-accent);
}

.faq-item__body {
  padding: var(--sp-6);
  color: var(--clr-text);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item__body p + p {
  margin-top: var(--sp-3);
}

.faq-item__body ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-top: var(--sp-3);
  color: var(--clr-text);
}

.faq-item__body ul li {
  margin-bottom: var(--sp-2);
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h) + var(--nav-offset) + var(--sp-6));
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.faq-sidebar-card {
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}

.faq-sidebar-card--accent {
  border-color: rgba(15, 187, 245, 0.3);
  background: var(--clr-accent-subtle);
}

.faq-sidebar-card__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-heading);
  margin-bottom: var(--sp-3);
}

.faq-sidebar-card__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

@media (max-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-highlight-box {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-sidebar-card {
    flex: 1 1 240px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {
  .faq-item summary {
    padding: var(--sp-4) var(--sp-5);
    font-size: 0.9rem;
  }

  .faq-item__body {
    padding: var(--sp-5);
  }
}


/* overflow:visible lets the dropdown panel escape the nav's bounds. */
.nav-item--mega {
  position: static;
}

/* Invisible hover bridge spans the gap between the nav link and the panel
   so the cursor can travel down without losing :hover on the parent li */
.nav-item--mega > .nav-link::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 34px;
}

/* Upward bridge on the mega panel itself — catches cursor from above */
.mega-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

/* Full-width panel — positioned relative to .main-nav (which is fixed) */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgb(20, 29, 43);
  border: 1px solid var(--clr-border-bright);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
  pointer-events: none;
}

/* Gated on .js-ready (main.js sets it) so the menu doesn't flash before JS attaches. */
.js-ready .nav-item--mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu__inner {
  padding: var(--sp-4) var(--sp-5);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__cell {
  border-bottom: 1px solid var(--clr-border);
}

.mega-menu__cell:nth-child(3n+1),
.mega-menu__cell:nth-child(3n+2) {
  border-right: 1px solid var(--clr-border);
}

.mega-menu__cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.mega-menu__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);

  border: none;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transform: translateX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.25s ease;
}

.mega-menu__card:hover {
  transform: translateX(6px);
  background: rgba(15, 187, 245, 0.07);
}

.mega-menu__card-subs {
  display: none;
}

.mega-menu__card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}

.mega-menu__card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.mega-menu__card-title::after {
  content: ' \2192';
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mega-menu__card:hover .mega-menu__card-title {
  color: var(--clr-accent);
}

.mega-menu__card:hover .mega-menu__card-title::after {
  opacity: 1;
}

.mega-menu__card-desc {
  font-size: 0.74rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}

.mega-menu__card:hover .mega-menu__card-desc {
  color: var(--clr-text);
}

.mega-menu__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: var(--sp-3) var(--sp-4) var(--sp-1);
  margin-top: var(--sp-2);
  border-top: 1px solid var(--clr-border);
}

.mega-menu__all-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.mega-menu__all-link:hover {
  gap: var(--sp-3);
}

/* Mobile collapses the mega menu into a flat scrollable list. */
@media (max-width: 960px) {
  .nav-item--mega {
    position: relative;
  }

  .nav-item--mega > .nav-link::before {
    display: none;
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
    padding: 0;
  }

  .nav-item--mega.is-open .mega-menu {
    max-height: 1000px;
  }

  .mega-menu__inner {
    padding: 0;
  }

  .mega-menu__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mega-menu__cell,
  .mega-menu__cell:nth-child(3n+1),
  .mega-menu__cell:nth-child(3n+2) {
    border-bottom: 1px solid var(--clr-border);
    border-right: none;
  }

  .mega-menu__cell:last-child {
    border-bottom: none;
  }

  .mega-menu__card {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-3);
    padding: 0.65rem var(--sp-5) 0.65rem var(--sp-10);
    margin: 0 var(--sp-4);
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: background-color var(--ease), color var(--ease);
  }

  .mega-menu__card:hover {
    transform: none;
    box-shadow: none;
    background-color: rgba(15, 187, 245, 0.06);
  }

  .mega-menu__card-desc {
    display: none;
  }

  .mega-menu__card-body {
    padding: 0;
  }

  .mega-menu__card-title {
    font-size: 0.88rem;
    color: var(--clr-text);
  }

  .mega-menu__footer {
    padding: var(--sp-3) var(--sp-5);
    margin-top: 0;
    border-top: none;
    justify-content: flex-start;
  }
}

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

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__heading,
  .hero__subheading,
  .hero__actions,
  .hero__badge,
  .hero__scroll-indicator,
  .hero__scroll-indicator-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* JS (initHoursCta) toggles .btn--closed when the office is closed. */
.btn--closed {
  background: var(--clr-error) !important;
  border-color: var(--clr-error) !important;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  line-height: 1.15 !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.btn--closed:hover,
.btn--closed:focus-visible {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}
.btn-closed__label {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-closed__next {
  font-size: 0.55rem;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.01em;
  margin-top: 1px;
}


.contact-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.contact-modal.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90svh;
  overflow-y: auto;
  background: var(--clr-bg-surface-solid);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.1, 0.64, 1), opacity 0.25s ease;
}
.contact-modal.is-open .contact-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  background: var(--clr-border);
  color: var(--clr-text-bright);
}

.contact-modal__view[hidden] {
  display: none;
}

.contact-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}
.contact-modal__title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--clr-text-heading);
  margin-bottom: var(--sp-2);
}
.contact-modal__subtitle {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.contact-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact-modal__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-modal__req {
  color: var(--clr-accent);
  margin-left: 1px;
}

.contact-modal__input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-sm);
  color: var(--clr-text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 46px;
}
.contact-modal__input::placeholder {
  color: var(--clr-text-muted);
}
.contact-modal__input:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(15, 187, 245, 0.2);
}
.contact-modal__input.is-invalid {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px var(--clr-error-bg);
}
.contact-modal__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-modal__field-error {
  font-size: 0.78rem;
  color: var(--clr-error);
  display: none;
}
.contact-modal__field.has-error .contact-modal__field-error,
.contact-modal__consent.has-error .contact-modal__field-error {
  display: block;
}

.contact-modal__industry {
  display: flex;
  gap: 0;
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.contact-modal__industry-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.7rem var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  min-height: 46px;
  transition: background-color var(--ease), color var(--ease);
}
.contact-modal__industry-btn:first-child {
  border-right: 1px solid var(--clr-border-bright);
}
.contact-modal__industry-btn.is-active {
  background: var(--clr-accent);
  color: var(--clr-text-bright);
}
.contact-modal__industry-btn:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-text);
}

.contact-modal__field--company {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              margin 0.35s ease;
  margin-top: calc(-1 * var(--sp-4));
}
.contact-modal__field--company[hidden] {
  display: flex;
}
.contact-modal__field--company.is-visible {
  max-height: 120px;
  opacity: 1;
  margin-top: 0;
}

.contact-modal__consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--sp-3);
}
.contact-modal__consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-accent);
  cursor: pointer;
}
.contact-modal__consent label {
  flex: 1;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.contact-modal__consent label a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.contact-modal__field-error--consent {
  flex-basis: 100%;
}

.contact-modal__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-modal__alert {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}
.contact-modal__alert--error {
  background: var(--clr-error-bg);
  border: 1px solid var(--clr-error);
  color: var(--clr-error);
}

.contact-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  margin-top: var(--sp-2);
  min-height: 50px;
}
.contact-modal__spinner {
  display: none;
}
.contact-modal__submit.is-loading .contact-modal__spinner {
  display: block;
}
.contact-modal__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.contact-modal__notice {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  text-align: center;
  justify-content: center;
}

.contact-modal__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-8) 0 var(--sp-4);
  gap: var(--sp-4);
}
.contact-modal__result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-modal__result-icon--success {
  background: var(--clr-success-bg);
  color: var(--clr-success);
  border: 2px solid var(--clr-success);
}
.contact-modal__result-icon--fail {
  background: var(--clr-error-bg);
  color: var(--clr-error);
  border: 2px solid var(--clr-error);
}
.contact-modal__result-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-heading);
}
.contact-modal__result-msg {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 360px;
}
.contact-modal__result-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.contact-modal__result-sub a {
  color: var(--clr-accent);
  font-weight: 700;
}
.contact-modal__result-close {
  margin-top: var(--sp-4);
  min-width: 160px;
}
.contact-modal__result-actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 560px) {
  .contact-modal__panel {
    padding: var(--sp-6) var(--sp-4);
    max-width: 100%;
    border-radius: var(--radius-md);
  }
  .contact-modal__row {
    grid-template-columns: 1fr;
  }
}


.contact-modal__tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}

.contact-modal__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem var(--sp-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-text-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-right: 1px solid var(--clr-border-bright);
  cursor: pointer;
  min-height: 46px;
  transition: background-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}

.contact-modal__tab:last-child {
  border-right: none;
}

.contact-modal__tab[aria-selected="true"] {
  background: var(--clr-accent);
  color: var(--clr-text-bright);
}

.contact-modal__tab:hover:not([aria-selected="true"]) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--clr-text);
}

/* Wrapper height animates between active panel heights — see contact-modal.php JS. */
.contact-modal__tab-panels {
  position: relative;
  overflow: hidden;
  transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

[role="tabpanel"][hidden] {
  display: none;
}

[role="tabpanel"] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

[role="tabpanel"].is-active {
  opacity: 1;
  transform: none;
}

.contact-modal__contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-bottom: var(--sp-4);
}

.contact-modal__contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-decoration: none;
  word-break: break-all;
}

.contact-modal__contact-link:hover {
  text-decoration: underline;
}

.contact-modal__contact-link--phone {
  font-size: 1.5rem;
}

.contact-modal__hours-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-modal__hours-table td {
  padding: var(--sp-2) 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--clr-border-bright);
  color: var(--clr-text);
  vertical-align: top;
}

.contact-modal__hours-table td:first-child {
  color: var(--clr-text-muted);
  width: 50%;
}

.contact-modal__hours-table tr:last-child td {
  border-bottom: none;
}

.contact-modal__contact-note {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-modal__tab-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--clr-accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-modal__tab-link:hover {
  text-decoration: none;
}

/* Inline contact form on service/area pages — reuses .contact-modal__* field styling. */

.contact-form {
  background: var(--clr-bg-surface-solid);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-6), 4vw, var(--sp-10));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .contact-form .contact-modal__row {
    grid-template-columns: 1fr;
  }
}

/* Shared by the contact page, areas pages, and the service-template quote
   section. The .quote-section layout itself lives in services.css. */

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--clr-border);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-subtle);
  border: 1px solid rgba(15, 187, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-accent);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
  margin: 0;
}

.contact-info-value a {
  color: var(--clr-accent);
  transition: color var(--ease-fast);
}

.contact-info-value a:hover {
  color: var(--clr-accent-hover);
}


