:root {
  --blue: #3088ff;
  --blue-dark: #1468d7;
  --ink: #443737;
  --dark: #10121e;
  --dark-soft: #1a1d2d;
  --light: #f3f3f3;
  --white: #ffffff;
  --muted: #6f6565;
  --line: #dedada;
  --container: 1180px;
  --radius-large: 30px;
  --radius-medium: 18px;
  --shadow: 0 24px 60px rgba(16, 18, 30, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 24px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  color: var(--white);
  font-size: 55px;
  line-height: 72px;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.3;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(16, 18, 30, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  max-width: 390px;
  gap: 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.brand img {
  width: 102px;
  height: auto;
  flex: 0 0 auto;
  filter: brightness(1.15);
}

.primary-nav {
  display: flex;
  margin-left: auto;
  gap: 25px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 25px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(48, 136, 255, 0.22);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 128px) 0 112px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(48, 136, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--dark) 0%, #171b2e 100%);
}

.hero::after {
  position: absolute;
  width: 540px;
  height: 540px;
  right: -300px;
  bottom: -330px;
  content: "";
  border: 1px solid rgba(48, 136, 255, 0.38);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.eyebrow,
.section-label {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 26px;
}

.hero-image {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-image::before {
  position: absolute;
  inset: 28px -20px -20px 28px;
  z-index: -1;
  content: "";
  border: 2px solid rgba(48, 136, 255, 0.62);
  border-radius: var(--radius-large);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 19px;
}

figcaption {
  padding: 13px 7px 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.planning-section {
  padding: 110px 0;
}

.planning-grid,
.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(52px, 8vw, 100px);
}

.planning-copy,
.project-copy {
  color: var(--muted);
}

.planning-copy a,
.project-copy a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration-color: rgba(48, 136, 255, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.service-focus {
  padding: 110px 0;
  background: var(--light);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-intro > p:not(.section-label) {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 40px;
  color: var(--white);
  border-radius: var(--radius-medium);
}

.service-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -110px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.interior-card {
  background: var(--blue);
}

.exterior-card {
  background: var(--dark);
}

.service-card h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.service-card p {
  color: rgba(255, 255, 255, 0.83);
}

.service-card ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 23px;
}

.service-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.card-index {
  display: inline-block;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.preparation-section {
  padding: 120px 0;
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 9vw, 110px);
}

.prep-copy > p:not(.section-label) {
  color: var(--muted);
}

.process-list {
  margin: 40px 0 0;
  padding: 0;
  counter-reset: item;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 0 0 25px;
  column-gap: 16px;
  counter-increment: item;
}

.process-list li::before {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  content: counter(item);
  font-size: 0.78rem;
  font-weight: 700;
  place-items: center;
}

.process-list strong {
  color: var(--ink);
}

.process-list span {
  color: var(--muted);
}

.color-panel {
  padding: 38px;
  background: var(--light);
  border-radius: var(--radius-large);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 38px;
  gap: 12px;
}

.swatch {
  display: block;
  min-height: 105px;
  border-radius: 12px;
}

.swatch-blue { background: #7b93a8; }
.swatch-gray { background: #d2ccc5; }
.swatch-green { background: #9db2a0; }
.swatch-cream { background: #eee2ca; }

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

.project-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--dark);
}

.project-section h2 {
  color: var(--white);
}

.project-copy {
  color: rgba(255, 255, 255, 0.72);
}

.project-copy a {
  color: #79b4ff;
}

.why-section {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(54px, 8vw, 100px);
}

.why-heading h2 {
  max-width: 560px;
}

.usp-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.usp-list li {
  position: relative;
  min-height: 118px;
  padding: 27px 24px 24px 54px;
  color: var(--ink);
  background: var(--light);
  border-radius: 14px;
  font-weight: 600;
}

.usp-list li::before {
  position: absolute;
  top: 29px;
  left: 22px;
  width: 17px;
  height: 10px;
  content: "";
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.faq-section {
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading > p:not(.section-label) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 2px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  font-weight: 500;
  place-items: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.faq-list details p a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration-color: rgba(48, 136, 255, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.location-section {
  padding: 105px 0;
  background: var(--light);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 72px;
}

.map-wrap {
  overflow: hidden;
  min-height: 480px;
  background: #e5e5e5;
  border: 10px solid var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.location-copy > p:not(.section-label) {
  color: var(--muted);
}

.area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 13px 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.area-links a::after {
  color: var(--blue);
  content: "›";
  font-size: 1.45rem;
  line-height: 1;
}

.area-links a:hover,
.area-links a:focus-visible {
  color: var(--blue-dark);
  border-color: var(--blue);
}

.cta-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(48, 136, 255, 0.32), transparent 28%),
    var(--dark);
}

.cta-inner {
  max-width: 850px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p:not(.section-label) {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 74px 0 28px;
  color: #c5c7d1;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(190px, 0.55fr) minmax(180px, 0.55fr);
  gap: 70px;
}

.footer-brand img {
  width: 154px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.15);
}

.site-footer h2 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 13px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--blue);
}

.footer-business-name {
  max-width: 430px;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 700;
}

.footer-intro {
  max-width: 390px;
  margin-bottom: 18px;
  color: #a8aab7;
}

.footer-phone,
.site-footer a {
  color: #d7d9e1;
  text-decoration-color: rgba(48, 136, 255, 0.64);
  text-underline-offset: 4px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #79b4ff;
}

.social-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 17px 0 13px;
  gap: 9px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--blue-dark);
}

.social-links svg {
  display: block;
  max-width: 20px;
  max-height: 20px;
  flex: 0 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

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

  .header-inner .button-small {
    margin-left: auto;
  }

  .hero-grid,
  .prep-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-image {
    max-width: 680px;
  }

  .faq-grid {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    max-width: 235px;
    font-size: 0.7rem;
  }

  .brand img {
    width: 72px;
  }

  .header-inner .button-small {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.2;
  }

  .hero,
  .planning-section,
  .service-focus,
  .preparation-section,
  .project-section,
  .why-section,
  .faq-section,
  .location-section,
  .cta-section {
    padding: 76px 0;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-image::before {
    display: none;
  }

  .planning-grid,
  .project-grid,
  .faq-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .usp-list,
  .area-links {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 30px;
  }

  .card-index {
    margin-bottom: 44px;
  }

  .faq-heading {
    position: static;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
