:root {
  --bg: #0b0f19;
  --panel: #111827;
  --panel-soft: #151d2e;
  --panel-glass: rgba(21, 29, 46, 0.78);
  --line: rgba(255, 255, 255, 0.09);
  --muted: #9ca3af;
  --text: #f8fafc;
  --gold: #f5b301;
  --gold-dark: #d97706;
  --cyan: #22d3ee;
  --danger: #f87171;
  --ok: #34d399;
  --transition: 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
 margin: 0;
 color: var(--text);
 background: var(--bg);
 font-family: "Open Sans", system-ui, sans-serif;
 line-height: 1.5;
 position: relative;
 }

 body::before {
 content: "";
 position: fixed;
 inset: 0;
 pointer-events: none;
 z-index: 5;
 opacity: 0.025;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
 }

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  color: #101010;
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid white;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled * {
    cursor: none;
  }
}

#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0) translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  z-index: 9999;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 179, 1, 0.5);
}

#cursor-ring {
  width: 40px;
  height: 40px;
  z-index: 9998;
  border: 1px solid rgba(245, 179, 1, 0.55);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.2s ease;
}

.cursor-ready #cursor-dot,
.cursor-ready #cursor-ring {
  opacity: 1;
}

.hovering #cursor-ring {
  width: 80px;
  height: 80px;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.12);
  backdrop-filter: blur(2px);
}

.hovering #cursor-dot {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: white;
  background: #000;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.6s ease;
}

.preloader.hide {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: clamp(118px, 18vw, 160px);
  aspect-ratio: 1;
  margin-bottom: clamp(1.7rem, 5vw, 2.5rem);
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: #fff;
  opacity: 0.85;
  filter: contrast(1.1);
  animation: pulse 2s infinite alternate;
}

.counter-wrap {
  overflow: hidden;
  color: #fff;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
}

.counter {
  display: inline-block;
  transform: translateY(100%);
}

.loading-bar-container {
  width: min(300px, 76vw);
  height: 2px;
  margin-top: 1.4rem;
  overflow: hidden;
  background: #222;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 179, 1, 0.45);
  transition: width 0.12s linear;
}

.loader-text {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    opacity: 0.38;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
}

.page-transition.is-covering,
.page-transition.is-revealing {
  transform: scaleY(1);
}

.page-transition.is-revealing {
  transform-origin: top;
}

/* Add a subtle texture/gradient to the transition panel */
.page-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.transition-text {
  display: none; /* Removed as per user preference */
}

.transition-subtext {
  display: none; /* Removed as per user preference */
}

.preloader-card {
  width: min(520px, 100%);
  border: 1px solid rgba(245, 179, 1, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 5vw, 2.4rem);
  background: rgba(12, 17, 28, 0.92);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.preloader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 0.3rem;
  animation: preloaderLogoPop 0.6s ease both;
}

@keyframes preloaderLogoPop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.preloader-brand strong {
  display: block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.preloader-brand span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader-ring {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 1.8rem auto 1.2rem;
}

.preloader-ring::before,
.preloader-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
}

.preloader-ring::before {
  border-top-color: var(--gold);
  border-right-color: rgba(245, 179, 1, 0.35);
  animation: ringSpin 1.1s linear infinite;
}

.preloader-ring::after {
  inset: 10px;
  border-bottom-color: var(--gold-dark);
  border-left-color: rgba(217, 119, 6, 0.35);
  animation: ringSpin 1.4s linear infinite reverse;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.preloader-meter {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), #ffc83d);
  box-shadow: 0 0 14px rgba(245, 179, 1, 0.35);
  transition: width 0.12s linear;
}

.preloader-count {
  margin-top: 1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.eyebrow.no-dot::before {
  display: none;
}

.headline,
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.highlight {
  color: var(--gold);
}

.text-muted {
  color: var(--muted);
}

.event-banner {
  position: relative;
  z-index: 40;
  overflow: hidden;
  contain: paint;
  padding: 0.65rem 0;
  color: #111827;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: bannerShimmer 4s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .event-banner:hover .event-banner-track {
    animation-play-state: paused;
  }
}

.event-banner-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: eventTicker 24s linear infinite;
}

.event-banner-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.event-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin-right: 1.5rem;
}

.event-banner-item::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 1rem;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.4);
}

@keyframes bannerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes eventTicker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 15, 25, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.brand-logo-frame {
  width: 82px;
  height: 82px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  filter: drop-shadow(0 0 16px rgba(245, 179, 1, 0.22));
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}

.brand-name {
  display: inline-block;
  color: var(--text);
  line-height: 1;
}

.brand-name span {
  color: var(--gold-dark);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  border: 0;
  padding: 0.4rem 0;
  color: #d1d5db;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link .magnetic-label,
.nav-phone .magnetic-label {
  width: auto;
}

.nav-link.active,
 .nav-link:hover {
 color: var(--gold);
 }

 .nav-link {
 position: relative;
 }

 .nav-link::after {
 content: "";
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--gold);
 transition: width 0.3s ease;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
 width: 100%;
 }

.nav-phone {
  color: white;
  font-weight: 900;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}

.mobile-menu-button {
  display: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: white;
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem;
  background: rgba(11, 15, 25, 0.98);
}

.mobile-menu.open {
  display: grid;
  gap: 0.75rem;
}

.mobile-menu .nav-link,
.mobile-menu .btn {
  width: 100%;
  justify-content: center;
}

.magnetic-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn::before,
.service-card::before,
.contact-card::before,
.mobile-menu-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, #f5b301, #d97706, #22d3ee, #f5b301);
  background-size: 400% 400%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before,
.service-card:hover::before,
.contact-card:hover::before,
.mobile-menu-button:hover::before {
  opacity: 1;
  animation: gradientSpin 3s linear infinite;
}

@keyframes gradientSpin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.btn-primary {
  color: #111827;
  background: var(--gold);
  box-shadow: 0 18px 42px rgba(217, 119, 6, 0.24);
}

.btn-primary:hover {
  background: #ffc83d;
}

.btn-secondary {
  color: white;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(245, 179, 1, 0.7);
}

.hero {
  position: relative;
  min-height: calc(100vh - 134px);
  display: grid;
  align-items: center;
  background-color: var(--bg);
  background-image:
    linear-gradient(90deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.72) 48%, rgba(11, 15, 25, 0.55) 100%),
    url("/images to use/Coolidgerepair.jpg");
  background-size: 145%; /* Scaled up to allow cropping out the top text */
  background-position: center 65%; /* Moved visible area down to hide the top text above the hero */
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
  }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
  }

 .scroll-mouse {
 width: 26px;
 height: 40px;
 border: 2px solid rgba(255, 255, 255, 0.5);
 border-radius: 13px;
 display: grid;
 place-items: center;
 padding-top: 6px;
 }

 .scroll-wheel {
 width: 4px;
 height: 8px;
 background: var(--gold);
 border-radius: 2px;
 animation: scrollWheel 1.5s ease-in-out infinite;
 }

 .hero-scroll-indicator span {
 color: rgba(255, 255, 255, 0.5);
 font-size: 0.7rem;
 font-weight: 700;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 }

 @keyframes scrollBounce {
 0%, 100% { transform: translateX(-50%) translateY(0); }
 50% { transform: translateX(-50%) translateY(8px); }
 }

 @keyframes scrollWheel {
 0% { opacity: 1; transform: translateY(0); }
 100% { opacity: 0; transform: translateY(12px); }
 }

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 930px;
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  animation: heroEnter 0.78s ease both;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

.text-wrap {
  display: inline-block;
  overflow: hidden;
}

.char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform var(--transition);
}

.animate-in .char {
  transform: translateY(0);
}

.vertical-word-frame {
  display: inline-grid;
  height: 1.05em;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}

.vertical-word-track {
  display: grid;
  color: var(--gold);
  animation: verticalWords 7.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.vertical-word-track span {
  display: block;
  height: 1.05em;
  line-height: 1.05;
  background: linear-gradient(90deg, #fbbf24, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes verticalWords {
  0%, 18% {
    transform: translateY(0);
  }

  25%, 43% {
    transform: translateY(-25%);
  }

  50%, 68% {
    transform: translateY(-50%);
  }

  75%, 93% {
    transform: translateY(-75%);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  color: #d1d5db;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.specialty-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: clamp(2.2rem, 5vw, 4rem) 0;
  overflow: hidden;
  contain: paint;
  color: #111827;
  background: var(--gold);
  transform: rotate(-2deg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

 .specialties-section {
 background: var(--bg);
 }

 .specialty-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
 margin-top: 2rem;
 }

 .specialty-card {
 position: relative;
 border-radius: var(--radius);
 overflow: hidden;
 border: 1px solid var(--line);
 background: var(--panel-glass);
 transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .specialty-card:hover {
 transform: translateY(-8px);
 border-color: rgba(245, 179, 1, 0.5);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
 }

 .specialty-image {
 position: relative;
 height: 200px;
 overflow: hidden;
 }

 .specialty-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
 }

 .specialty-card:hover .specialty-image img {
 transform: scale(1.08);
 }

 .specialty-image-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(to bottom, transparent 40%, rgba(11, 15, 25, 0.95) 100%);
 }

 .specialty-content {
 padding: 1.5rem;
 }

 .specialty-icon {
 width: 56px;
 height: 56px;
 display: grid;
 place-items: center;
 border-radius: 50%;
 border: 2px solid var(--gold);
 background: rgba(245, 179, 1, 0.1);
 color: var(--gold);
 font-size: 1.4rem;
 margin-bottom: 1rem;
 transition: transform 0.3s ease, background 0.3s ease;
 }

 .specialty-card:hover .specialty-icon {
 transform: rotate(-5deg) scale(1.1);
 background: var(--gold);
 color: #111827;
 }

 .specialty-content h3 {
 margin: 0 0 0.75rem;
 font-size: 1.4rem;
 }

 .specialty-bullets {
 list-style: none;
 padding: 0;
 margin: 1rem 0 1.25rem;
 display: grid;
 gap: 0.5rem;
 }

 .specialty-bullets li {
 display: flex;
 align-items: center;
 gap: 0.6rem;
 color: var(--muted);
 font-size: 0.9rem;
 }

 .specialty-bullets li i {
 color: var(--gold);
 font-size: 0.75rem;
 }

.marquee-track {
  display: inline-flex;
  width: max-content;
  min-width: max-content;
  padding: clamp(1.2rem, 3vw, 1.8rem) 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: scrollMarquee 25s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #111827;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-right: clamp(3rem, 6vw, 5rem);
}

@keyframes scrollMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.metric-strip {
  position: relative;
  border-top: 1px solid rgba(245, 179, 1, 0.35);
  border-bottom: 1px solid rgba(245, 179, 1, 0.35);
  background:
    radial-gradient(circle at 20% 50%, rgba(245, 179, 1, 0.06), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 179, 1, 0.04), transparent 50%),
    linear-gradient(180deg, #0f1520, #111827);
}

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

.metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.metric.is-visible::before {
  width: 40%;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section:first-of-type::before,
.section:has(.hero)::before,
.section:has(.page-hero)::before {
  display: none;
}

.trust-section {
  background: var(--bg);
}

.trust-head h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
}

.trust-word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .trust-word {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

.motion-ready .trust-head.is-visible .trust-word {
  opacity: 1;
  transform: translateY(0);
}

.trust-plus {
  color: var(--gold);
  font-weight: 900;
}

.trust-card {
  position: relative;
  background: var(--panel-glass);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.trust-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* Slightly thicker */
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(245, 179, 1, 0.4); /* Stronger glow */
  border-radius: 2px 2px 0 0;
  z-index: 2;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 900;
}

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

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

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-glass);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.6rem;
}

.trust-card {
  min-height: 280px;
  padding: clamp(2rem, 4vw, 3.1rem);
  border-top: 4px solid var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-card.featured,
.trust-card:hover {
  border-top-color: var(--gold-dark);
}

.trust-card:hover {
 transform: translateY(-6px);
 }

 .trust-card:hover .card-icon {
 animation: iconBounce 0.5s ease;
 }

 @keyframes iconBounce {
 0%, 100% { transform: scale(1) rotate(0deg); }
 25% { transform: scale(1.15) rotate(-5deg); }
 50% { transform: scale(1.1) rotate(5deg); }
 75% { transform: scale(1.12) rotate(-3deg); }
 }

.trust-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.trust-card .card-icon {
  width: 64px;
  height: 64px;
  background: var(--panel);
  border: 0;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(245, 179, 1, 0.32);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(245, 179, 1, 0.1);
  font-size: 1.35rem;
}

.service-card {
  display: grid;
  min-height: 152px;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: rgba(17, 24, 39, 0.78);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.service-card:focus {
  border-color: var(--gold);
  transform: translateY(-2px);
  outline: none;
}

.service-card i {
  color: var(--gold);
  font-size: 2rem;
}

.service-card span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 900;
}

.brand .magnetic-label {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  width: auto;
}

.service-card .magnetic-label {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.contact-card .magnetic-label {
  justify-content: flex-start;
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.image-grid img:nth-child(2) {
  margin-top: 2rem;
  border-color: rgba(245, 179, 1, 0.45);
}

.offer-visual {
  grid-template-columns: 1fr;
}

.offer-visual img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.offer-visual img:nth-child(2) {
  margin-top: 0;
}

.owner-portrait {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.owner-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(11, 15, 25, 0.9));
}

.owner-portrait-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(245, 179, 1, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(11, 15, 25, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-story {
  display: grid;
  gap: 1.05rem;
}

.owner-story h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.owner-quote {
  margin-top: 0.35rem;
  border-left: 4px solid var(--gold);
}

.symptom-shell {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(245, 179, 1, 0.16), transparent 24rem),
    linear-gradient(rgba(11, 15, 25, 0.88), rgba(11, 15, 25, 0.95)),
    url("https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
}

.symptom-head {
  margin-bottom: 2rem;
}

.symptom-workbench {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 179, 1, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21, 29, 46, 0.92), rgba(8, 12, 20, 0.94)),
    rgba(17, 24, 39, 0.9);
  box-shadow: var(--shadow);
}

.symptom-workbench::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 179, 1, 0.1), transparent);
  transform: translateX(-110%);
  animation: consoleSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes consoleSweep {
  0%, 42% {
    transform: translateX(-110%);
  }

  70%, 100% {
    transform: translateX(110%);
  }
}

.symptom-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.symptom-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 74px;
  padding: 1rem;
  color: #dce6f4;
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symptom-flow span:last-child {
  border-right: 0;
}

.symptom-flow strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: var(--gold);
}

.symptom-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.symptom-picker,
.symptom-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 14, 0.58);
}

.symptom-picker {
  padding: clamp(1rem, 3vw, 1.25rem);
}

.symptom-picker h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symptom-panel {
  padding: clamp(1rem, 3vw, 2rem);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.symptom-chip {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.symptom-chip:hover {
  border-color: rgba(245, 179, 1, 0.65);
  transform: translateY(-1px);
}

.symptom-chip.active {
  color: #111827;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 26px rgba(245, 179, 1, 0.2);
}

.symptom-result {
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.symptom-result.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.priority {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(245, 179, 1, 0.35);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 179, 1, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 1.4rem;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  color: #d1d5db;
}

.check-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(245, 179, 1, 0.08) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: processScan 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes processScan {
  0%, 38% {
    transform: translateX(-120%);
  }

  65%, 100% {
    transform: translateX(120%);
  }
}

.process-bg-icon {
  position: absolute;
  right: -7rem;
  top: 1.2rem;
  color: rgba(255, 255, 255, 0.03);
  font-size: clamp(14rem, 24vw, 23rem);
}

.process-content {
  position: relative;
  z-index: 1;
}

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

.process-step {
  position: relative;
  padding: 1rem 0.4rem 0;
  text-align: center;
  transition-delay: var(--delay, 0ms);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 51px;
  left: calc(50% + 50px);
  width: calc(100% - 74px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), rgba(255, 255, 255, 0.08));
  transform-origin: left center;
  transition: transform 0.55s ease var(--delay, 0ms);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
 position: relative;
 width: 92px;
 height: 92px;
 display: grid;
 place-items: center;
 margin: 0 auto 1.7rem;
 border: 2px solid var(--gold-dark);
 border-radius: 50%;
 color: var(--gold);
 background: var(--bg);
 font-family: "Montserrat", system-ui, sans-serif;
 font-size: 1.55rem;
 font-weight: 900;
 box-shadow: 0 0 24px rgba(245, 179, 1, 0.16), inset 0 0 20px rgba(245, 179, 1, 0.05);
 transition: box-shadow 0.3s ease, transform 0.3s ease;
 }

 .step-number::before {
 content: "";
 position: absolute;
 inset: -10px;
 border: 1px solid rgba(245, 179, 1, 0.2);
 border-radius: 50%;
 opacity: 0;
 animation: stepPulse 2.8s ease-out infinite;
 }

 .process-step.is-visible .step-number {
 animation: stepGlow 2s ease-out forwards;
 }

 @keyframes stepPulse {
 0% {
 transform: scale(0.72);
 opacity: 0;
 }

 24% {
 opacity: 1;
 }

 100% {
 transform: scale(1.2);
 opacity: 0;
 }
 }

 @keyframes stepGlow {
 0% {
 box-shadow: 0 0 24px rgba(245, 179, 1, 0.16), inset 0 0 20px rgba(245, 179, 1, 0.05);
 transform: scale(1);
 }
 50% {
 box-shadow: 0 0 40px rgba(245, 179, 1, 0.4), inset 0 0 30px rgba(245, 179, 1, 0.15);
 transform: scale(1.05);
 }
 100% {
 box-shadow: 0 0 24px rgba(245, 179, 1, 0.16), inset 0 0 20px rgba(245, 179, 1, 0.05);
 transform: scale(1);
 }
 }

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translateY(28px);
}

.motion-ready .process-step {
  transform: translateY(28px) scale(0.88);
}

.motion-ready .process-step::after {
  transform: scaleX(0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .process-step.is-visible {
  transform: translateY(0) scale(1);
}

.motion-ready .process-step.is-visible::after {
  transform: scaleX(1);
}

.cta-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(245, 179, 1, 0.12), transparent 32rem),
    linear-gradient(rgba(11, 15, 25, 0.94), rgba(11, 15, 25, 0.96)),
    url("https://images.unsplash.com/photo-1504222490345-c075b6008014?auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
}

.cta-content {
  max-width: 780px;
  text-align: center;
}

.cta-content h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-content .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.offers-section h2 {
  max-width: 680px;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
}

.reviews-section {
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
}

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.offer-list {
  display: grid;
  gap: 1rem;
}

.offer {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.86);
}

.offer .card-icon {
  margin-bottom: 0;
  margin-top: 0.15rem;
}

.review {
  position: relative;
}

.stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.35rem, 5vw, 3.35rem) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 179, 1, 0.16), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(34, 211, 238, 0.12), transparent 18rem),
    linear-gradient(115deg, rgba(11, 15, 25, 0.98), rgba(21, 29, 46, 0.9));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0.5;
}

.page-hero-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  text-align: center;
  justify-items: center;
}

.page-hero-eyebrow {
  justify-self: center;
}

.page-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  justify-self: center;
  padding: 0;
  border: 0;
}

.form-shell {
  display: grid;
  gap: 1.2rem;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.estimate-form {
  display: grid;
  gap: 1.35rem;
}

.estimate-form h2 {
  margin-bottom: 0;
}

.estimate-rail {
  display: grid;
  gap: 1rem;
}

.estimate-card {
  display: grid;
  gap: 0.95rem;
}

.estimate-card h3 {
  margin: 0;
}

.estimate-actions {
  margin-top: 0.2rem;
}

.quick-lane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-lane-button {
  min-height: 56px;
  font-size: 0.75rem;
  line-height: 1.25;
}

.form-panel {
  padding: clamp(1.3rem, 4vw, 2.8rem);
  border-top: 4px solid var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #aeb7c5;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  color: white;
  background: rgba(5, 8, 14, 0.8);
  outline: none;
}

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

input:focus,
 select:focus,
 textarea:focus {
 border-color: var(--gold);
 box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.2), 0 0 20px rgba(245, 179, 1, 0.1);
 animation: inputGlow 0.4s ease;
 }

 @keyframes inputGlow {
 0% { box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.2), 0 0 0 rgba(245, 179, 1, 0); }
 50% { box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.2), 0 0 25px rgba(245, 179, 1, 0.3); }
 100% { box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.2), 0 0 20px rgba(245, 179, 1, 0.1); }
 }

.field-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.14) !important;
}

.status {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius);
  color: #d1fae5;
  background: rgba(52, 211, 153, 0.1);
}

.status.active {
  display: block;
}

.status.error {
  border-color: rgba(248, 113, 113, 0.45);
  color: #fee2e2;
  background: rgba(248, 113, 113, 0.1);
}

.faq-section {
 background: var(--panel);
 }

 .faq-list {
 max-width: 800px;
 margin: 0 auto;
 display: grid;
 gap: 0.75rem;
 }

 .faq-item {
 border: 1px solid var(--line);
 border-radius: var(--radius);
 overflow: hidden;
 background: var(--panel-glass);
 transition: border-color 0.25s ease, box-shadow 0.25s ease;
 }

 .faq-item:hover {
 border-color: rgba(245, 179, 1, 0.3);
 }

 .faq-item.open {
 border-color: rgba(245, 179, 1, 0.5);
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .faq-toggle {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;
 border: 0;
 padding: 1.25rem 1.5rem;
 color: white;
 background: transparent;
 text-align: left;
 font-weight: 900;
 font-size: 1rem;
 cursor: pointer;
 transition: color 0.2s ease;
 }

 .faq-toggle:hover {
 color: var(--gold);
 }

 .faq-toggle span {
 flex: 1;
 }

 .faq-toggle i {
 color: var(--gold);
 font-size: 0.85rem;
 transition: transform 0.3s ease;
 }

 .faq-item.open .faq-toggle i {
 transform: rotate(180deg);
 }

 .faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease, padding 0.4s ease;
 padding: 0 1.5rem;
 background: rgba(0, 0, 0, 0.15);
 }

 .faq-item.open .faq-answer {
 max-height: 400px;
 padding: 0 1.5rem 1.5rem;
 }

 .faq-answer p {
 margin: 0;
 color: var(--muted);
 line-height: 1.7;
 }

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.contact-shell {
  align-items: stretch;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-intro {
  display: grid;
  gap: 0.85rem;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(17, 24, 39, 0.8);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-card:hover {
  border-color: rgba(245, 179, 1, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.contact-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(245, 179, 1, 0.1);
  flex-shrink: 0;
}

.contact-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hours-card {
  overflow: hidden;
}

.hours-card-head {
  padding: 1.1rem 1.1rem 0;
}

.hours-card-head h3 {
  margin: 0 0 0.45rem;
}

.contact-form-shell {
  display: grid;
  gap: 1rem;
}

.contact-form-shell h2 {
  margin: 0;
}

.hours-list {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  margin: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.map-section {
 padding: clamp(4rem, 8vw, 6rem) 0;
 background: var(--panel);
 border-top: 1px solid var(--line);
 }

 .map-split {
 display: grid;
 grid-template-columns: 1fr 1.4fr;
 gap: clamp(2rem, 5vw, 4rem);
 align-items: center;
 }

 .map-info-header {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 margin-bottom: 1rem;
 color: var(--gold);
 }

 .map-info-header h3 {
 margin: 0;
 font-size: clamp(1.6rem, 3vw, 2.2rem);
 color: var(--text);
 }

 .map-info-header i {
 font-size: 1.8rem;
 }

 .map-address {
 color: var(--muted);
 font-size: 1rem;
 line-height: 1.6;
 margin-bottom: 0;
 }

 .map-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
 margin: 1.5rem 0;
 }

 .map-hours-mini {
 margin-top: 1.5rem;
 padding-top: 1.5rem;
 border-top: 1px solid var(--line);
 }

 .map-hours-mini h4 {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 margin: 0 0 1rem;
 font-size: 1rem;
 color: var(--text);
 }

 .map-hours-grid {
 display: grid;
 gap: 0.4rem;
 }

 .map-hours-row {
 display: flex;
 justify-content: space-between;
 padding: 0.5rem 0;
 border-bottom: 1px solid var(--line);
 font-size: 0.9rem;
 }

 .map-hours-row:last-child {
 border-bottom: none;
 }

 .map-hours-day {
 color: var(--muted);
 }

 .map-hours-time {
 color: var(--text);
 font-weight: 600;
 }

 .map-frame-wrapper {
 position: relative;
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow);
 }

 .map-frame {
 width: 100%;
 height: 380px;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 filter: grayscale(0.3) contrast(1.05);
 }

 .map-frame-overlay {
 position: absolute;
 inset: 0;
 pointer-events: none;
 border-radius: var(--radius);
 box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
 }

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #080c14;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.5fr) 0.75fr 0.85fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand-panel .brand-logo-frame {
  width: 110px;
  height: 110px;
}

.footer-brand-panel .brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}

.footer-brand-panel .brand {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand-panel .brand-name {
  color: white;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.footer-brand-panel .brand-name span {
  color: var(--gold-dark);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links button,
.footer-links a {
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
  text-decoration: none;
}

.footer-hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-hours li {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.58rem;
  border-bottom: 1px solid var(--line);
}

.footer-hours li:last-child {
  border-bottom: 0;
}

.footer-hours strong {
  color: white;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #6b7280;
  font-size: 0.88rem;
}

.footer-designer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.footer-designer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-designer-link:hover {
  color: white;
  letter-spacing: 0.18em;
  text-shadow: 0 0 12px rgba(245, 179, 1, 0.3);
}

.footer-designer-link:hover::after {
  width: 100%;
}

.mobile-cta {
  display: none;
}

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

 .mobile-menu-button {
 display: grid;
 place-items: center;
 }

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

 .grid-3,
 .split,
 .contact-grid,
 .footer-grid,
 .map-split {
 grid-template-columns: 1fr;
 }

 .process-step::after {
 display: none;
 }

 .hero {
 min-height: auto;
 }

 .estimate-layout,
 .contact-card-row {
 grid-template-columns: 1fr;
 }

 .owner-portrait {
 min-height: 420px;
 }

 .hero-scroll-indicator {
 display: none;
 }
 }

@media (max-width: 640px) {
  body {
    padding-bottom: 80px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    background-position: 52% 54%;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
    line-height: 0.96;
  }

  .hero h1 .text-wrap,
  .hero h1 .char {
    max-width: 100%;
  }

  .hero h1 .char {
    white-space: normal;
  }

  .hero .vertical-word-frame {
    display: block;
    height: 1.06em;
    margin-top: 0.04em;
  }

  .brand-logo-frame {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

.metric-grid,
 .grid-4,
 .grid-3,
 .process-grid,
 .specialty-grid,
 .form-grid,
 .form-grid.three,
 .chip-grid,
 .mini-steps,
 .quick-lane-grid {
 grid-template-columns: 1fr;
 }

  .vertical-word-frame {
    display: inline-grid;
    max-width: 100%;
  }

  .process-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .step-number {
    width: 76px;
    height: 76px;
    margin-bottom: 1rem;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

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

  .image-grid img:nth-child(2) {
    margin-top: 0;
  }

  .owner-portrait {
    min-height: 360px;
  }

  .symptom-flow,
  .symptom-grid,
  .footer-hours {
    grid-template-columns: 1fr;
  }

  .symptom-flow span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

.symptom-flow span:last-child {
 border-bottom: 0;
 }

 .hours-list li,
 .footer-bottom,
 .footer-hours li {
 flex-direction: column;
 }

 .footer-hours strong {
 text-align: left;
 }

  .map-frame {
 height: 280px;
 }

  .event-banner-track {
    font-size: 0.72rem;
    gap: 1rem;
  }

  .specialty-image {
  height: 160px;
  }

  .specialty-marquee {
    margin: 1.8rem 0 2.5rem;
  }

  .marquee-track span {
    font-size: 1.5rem;
  }

  .trust-head h2 {
    gap: 0.2em;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  .char,
  .page-transition,
  .preloader,
  .loading-bar,
  [data-animate] {
    transition: none !important;
  }

  .char {
    transform: translateY(0);
  }

  .event-banner,
  .event-banner-track,
  .marquee-track,
  .loader-logo {
    animation: none !important;
  }
}
