:root {
  --bg: #f6f6f6;
  --surface: #ffffff;
  --text: #1b0f08;
  --muted: #5a4b40;
  --accent: #91b2dd;
  --accent-2: #b2c9e7;
  --line: #e8dfd9;
  --shadow: 0 8px 22px rgba(38, 21, 11, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% 12%, #d9e6f8 0%, transparent 36%),
              radial-gradient(circle at 92% 85%, #e8effa 0%, transparent 36%),
              var(--bg);
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.2px;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1040px, 94vw);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.65;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -45px;
  right: -55px;
  background: linear-gradient(135deg, #b2c9e7, #91b2dd);
}

.shape-2 {
  width: 140px;
  height: 140px;
  bottom: 7%;
  left: -30px;
  background: linear-gradient(135deg, #6f95c9, #91b2dd);
  opacity: 0.48;
}

.hero {
  padding: 46px 0 32px;
  background: linear-gradient(180deg, #edf3fc 0%, rgba(237, 243, 252, 0) 100%);
  border-bottom: 1px solid #d7e4f5;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 22px;
}

.hero-logo-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #dce6f4;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 6px;
}

.hero-subline {
  font-family: "League Spartan", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #638abb;
  margin-bottom: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}

.brand-logo-wordmark {
  width: min(100%, 620px);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1f3e69;
  background: #dbe7f8;
  border: 1px solid #b7cceb;
  padding: 7px 12px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.06;
  margin-bottom: 10px;
}

.tagline {
  margin-top: 3px;
  font-family: "League Spartan", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #6d95cb;
  font-weight: 700;
}

.lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-family: "League Spartan", sans-serif;
  border-radius: 10px;
  padding: 10px 15px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.btn-primary {
  color: #102a4e;
  background: linear-gradient(130deg, #7ea3d2, #a8c1e4);
  box-shadow: 0 8px 20px rgba(126, 163, 210, 0.38);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  padding: 38px 0;
}

.section h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 14px;
  color: #1f3e69;
}

.section h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #91b2dd, #b2c9e7);
}

.service-group-title {
  grid-area: regular-title;
  margin: 0 0 12px;
  font-size: 1.02rem;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #365f96;
}

.construction-group-title {
  grid-area: construction-title;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-areas:
    "regular-title construction-title"
    "regular-grid construction";
  column-gap: 16px;
  row-gap: 12px;
  align-items: stretch;
}

.service-grid {
  grid-area: regular-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid #dce6f4;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  box-shadow: inset 0 3px 0 #b9cfe9, var(--shadow);
}

.card h3 {
  font-size: 1.06rem;
  margin-bottom: 5px;
}

.card p {
  color: var(--muted);
}

.construction-service {
  grid-area: construction;
  margin-top: 0;
  background: linear-gradient(180deg, #eef4fc 0%, #ffffff 100%);
  border: 1px solid #bfd2ea;
  border-radius: 14px;
  padding: 16px;
  box-shadow: inset 0 3px 0 #91b2dd, var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.construction-service p {
  color: var(--muted);
  margin-bottom: 0;
}

.construction-list {
  margin: 0;
  padding-left: 18px;
  color: #3b536f;
}

.construction-list li {
  margin-bottom: 4px;
}

.construction-btn {
  font-size: 0.95rem;
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: center;
}

.pricing-body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 12px;
  align-items: start;
}

.tax-note {
  display: inline-flex;
  align-items: center;
  margin: -2px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #b7cceb;
  background: #dbe7f8;
  font-size: 0.92rem;
  color: #234a7a;
  font-weight: 700;
}

.pricing-note {
  color: var(--muted);
  margin-bottom: 10px;
}

.quote-note {
  margin-top: 10px;
  color: #365f96;
  font-size: 0.93rem;
  font-weight: 600;
}

.clean-list {
  margin: 0;
  padding-left: 19px;
  color: var(--text);
}

.clean-list li {
  margin-bottom: 4px;
}

.clean-list li::marker {
  color: var(--accent);
}

.pricing .price-card {
  background: linear-gradient(160deg, #91b2dd, #b2c9e7);
  color: #1b0f08;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(126, 163, 210, 0.34);
  height: 100%;
}

.pricing .price-card.second {
  background: linear-gradient(160deg, #26150b, #1b0f08);
  color: #ffffff;
}

.pricing .price-card.second .per-hour,
.pricing .price-card.second .small {
  color: #f6f0ec;
}

.price {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  line-height: 1;
  margin-bottom: 4px;
}

.per-hour {
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.small {
  font-size: 0.9rem;
  opacity: 0.96;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 360ms ease;
}

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

.gallery-grid figcaption {
  padding: 9px 11px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-card {
  background: var(--surface);
  border: 1px solid #dce6f4;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  box-shadow: inset 0 3px 0 #b9cfe9, var(--shadow);
}

.contact-card p + p {
  margin-top: 8px;
}

.contact-card a {
  color: #365f96;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid #d7e4f5;
  text-align: center;
  padding: 14px 10px 20px;
  color: #435f84;
  font-size: 0.88rem;
  background: #edf3fc;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "regular-title"
      "regular-grid"
      "construction-title"
      "construction";
  }

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

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

  .pricing-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 620px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .hero-logo-wrap {
    padding: 0;
  }

  .hero-copy {
    padding: 14px;
  }

  .brand-logo-wordmark {
    width: min(100%, 290px);
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .section {
    padding: 30px 0;
  }

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

  .gallery-grid img {
    height: 190px;
  }
}
