:root {
  --bg: #ffffff;
  --bg-soft: #f3f4f6;
  --panel: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #262626;
  --line: #d4d4d4;
  --accent: #000000;
  --accent-deep: #171717;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid #262626;
}

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

.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
}

.nav a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.btn {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  color: #000;
  background: #fff;
  transition: transform 0.16s ease, background 0.16s ease;
}

.btn:hover { transform: translateY(-2px); background: #e5e5e5; }
.btn:focus-visible { outline: 2px solid #000; outline-offset: 2px; }
.btn-call { white-space: nowrap; }

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-small { padding: 4.5rem 0 2.5rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: inherit;
  margin-bottom: 0.35rem;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.05;
  margin: 0 0 0.8rem;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: inherit;
  max-width: 62ch;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.hero-card h2 {
  text-align: center;
}

.hero-card ul { margin: 0; padding-left: 1.2rem; }
.hero-card li { margin: 0.5rem 0; color: #262626; }

.hero-image-panel {
  padding: 0;
  overflow: hidden;
  min-height: 360px;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 3.4rem 0;
}

.section-alt { padding: 3.4rem 0; }

main > section {
  position: relative;
}

main > section > .container {
  position: relative;
  z-index: 1;
}

main > section:nth-of-type(odd) {
  background: #000;
  color: #fff;
}

main > section:nth-of-type(even) {
  background: #fff;
  color: #000;
}

main > section:nth-of-type(odd) .eyebrow { color: #d4d4d4; }
main > section:nth-of-type(even) .eyebrow { color: #525252; }
main > section:nth-of-type(odd) .lead { color: #e5e5e5; }
main > section:nth-of-type(even) .lead { color: #262626; }
main > section:nth-of-type(odd) a:not(.btn) { color: #fff; }
main > section:nth-of-type(even) a:not(.btn) { color: #000; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.card p { color: var(--ink-soft); margin: 0; }

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 1.25rem;
}

.services-grid .card h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  margin-bottom: 0.55rem;
}

.services-grid .service-summary {
  line-height: 1.5;
}

.services-grid .best-for {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #e5e5e5;
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.location-grid iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-list li { margin: 0.45rem 0; }
.contact-list a { color: #111; }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

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

.service-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.service-item ul { margin: 0.8rem 0; }
.best-for { color: var(--ink-soft); margin: 0; }

form {
  display: grid;
  gap: 0.6rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #a3a3a3;
  border-radius: 10px;
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.small {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: #525252;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.center { text-align: center; margin-top: 1.25rem; }

.site-footer {
  background: #000;
  color: #e5e5e5;
  border-top: 1px solid #262626;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.8rem 0;
}

.site-footer a { color: #fff; }

.site-header .btn-call {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.site-header .btn-call:hover {
  background: #e5e5e5;
}

@media (max-width: 900px) {
  .hero-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .brand,
  .btn-call { width: 100%; text-align: center; }

  .hero { padding-top: 4rem; }

  .hero-image-panel,
  .hero-image-panel img {
    min-height: 240px;
  }

  .container {
    width: min(1120px, 92%);
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }
}
