:root {
  --magenta: #b0006d;
  --cyan: #0ba8c7;
  --green: #73bd2f;
  --orange: #f05a12;
  --yellow: #f4b400;
  --ink: #171717;
  --ink-soft: #454545;
  --muted: #737373;
  --line: #e8e2d9;
  --paper: #fffdf8;
  --surface: #f7f3ec;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 104px;
  padding: 12px 5.8vw;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(232, 226, 217, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 112px;
}

.brand img {
  width: 112px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 2px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--green), var(--orange), var(--yellow));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--magenta);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(176, 0, 109, 0.2);
  font-size: 15px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 104px);
  padding: 68px 5.8vw 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(11, 168, 199, 0.1), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, var(--white) 50%, #f6f9f4 100%);
}

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

.service-area,
.section-label {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.specialty-copy h2,
.feature-copy h2,
.review-heading h2,
.project-text h2,
.media-heading h2,
.about-copy h2,
.neighbor-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 680px;
  font-size: 72px;
}

.hero h1::after {
  display: block;
  width: 190px;
  height: 7px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--green), var(--orange), var(--yellow));
  border-radius: 999px;
  content: "";
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 16px 30px rgba(176, 0, 109, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ece6dd;
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(260px, calc(100% - 48px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-left: 7px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.hero-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.color-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 10px;
}

.color-strip span {
  display: block;
}

.magenta {
  background: var(--magenta);
}

.cyan {
  background: var(--cyan);
}

.green {
  background: var(--green);
}

.orange {
  background: var(--orange);
}

.yellow {
  background: var(--yellow);
}

.section,
.specialty-section,
.feature-section,
.review-section,
.project-section,
.media-section,
.about-section,
.neighbor-section,
.contact-section,
.site-footer {
  padding-right: 5.8vw;
  padding-left: 5.8vw;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-section h2,
.section-heading h2,
.specialty-copy h2,
.feature-copy h2,
.review-heading h2,
.project-text h2,
.media-heading h2,
.about-copy h2,
.neighbor-section h2,
.contact-section h2 {
  font-size: 48px;
}

.intro-section p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.icon-magenta {
  color: var(--magenta);
  background: rgba(176, 0, 109, 0.09);
}

.icon-cyan {
  color: var(--cyan);
  background: rgba(11, 168, 199, 0.1);
}

.icon-green {
  color: var(--green);
  background: rgba(115, 189, 47, 0.12);
}

.icon-orange {
  color: var(--orange);
  background: rgba(240, 90, 18, 0.11);
}

.icon-yellow {
  color: #b37a00;
  background: rgba(244, 180, 0, 0.16);
}

.specialty-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specialty-copy {
  max-width: 780px;
}

.specialty-copy p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.specialty-list {
  padding-top: 10px;
  border-top: 6px solid var(--magenta);
}

.specialty-list h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.specialty-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.specialty-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  content: "";
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--ink);
  color: var(--white);
}

.feature-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: #2b2b2b;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-copy h2,
.feature-copy p,
.feature-copy li {
  color: var(--white);
}

.feature-copy p:not(.section-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.46em;
  left: 6px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 7px;
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow);
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-item {
  min-height: 230px;
  padding: 42px;
  background: var(--white);
}

.proof-item span {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
}

.proof-item strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
}

.proof-item p {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--muted);
}

.review-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--paper);
}

.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.review-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.review-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.08);
}

.review-card span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--ink);
  background: rgba(244, 180, 0, 0.18);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.project-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(90deg, rgba(244, 180, 0, 0.12), transparent 45%),
    var(--surface);
}

.project-card {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.project-text {
  max-width: 720px;
}

.project-text p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.media-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--white);
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.media-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.media-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.media-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
  content: "";
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms ease;
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}

.media-card-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
}

.media-card-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.play-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--magenta);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(176, 0, 109, 0.32);
}

.play-mark svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transform: translateX(2px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 60px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--white);
}

.about-copy p:not(.section-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.about-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-list div:last-child {
  border-bottom: 0;
}

.about-list strong {
  color: var(--magenta);
}

.about-list span {
  color: var(--ink-soft);
}

.neighbor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.neighbor-section p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 78px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(176, 0, 109, 0.95), rgba(11, 168, 199, 0.92) 45%, rgba(115, 189, 47, 0.88) 100%),
    var(--magenta);
}

.contact-section .section-label,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section p:not(.section-label) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--white);
  background: #101010;
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 70px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media img {
    min-height: 500px;
  }

  .service-grid,
  .review-grid,
  .proof-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 88px;
    padding: 10px 22px;
  }

  .brand,
  .brand img {
    width: 86px;
  }

  .brand img {
    height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero,
  .section,
  .specialty-section,
  .feature-section,
  .review-section,
  .project-section,
  .media-section,
  .about-section,
  .neighbor-section,
  .contact-section,
  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    gap: 34px;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .intro-section,
  .section-heading,
  .specialty-section,
  .feature-section,
  .review-heading,
  .project-section,
  .media-heading,
  .about-section,
  .neighbor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section h2,
  .section-heading h2,
  .specialty-copy h2,
  .feature-copy h2,
  .review-heading h2,
  .project-text h2,
  .media-heading h2,
  .about-copy h2,
  .neighbor-section h2,
  .contact-section h2 {
    font-size: 36px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .media-card,
  .media-card-large {
    grid-row: auto;
    min-height: 360px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .service-grid,
  .review-grid,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .proof-item {
    min-height: auto;
    padding: 30px 24px;
  }

  .project-section {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card-large {
    min-height: 320px;
  }

  .about-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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