:root {
  --color-primary: #be3928;
  --color-primary-hover: #ae2b19;
  --color-ink: #000422;
  --color-ink-strong: #000739;
  --color-copy: #8e91aa;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f6fb;
  --color-border: rgba(0, 4, 34, 0.12);
  --color-shadow: rgba(2, 14, 64, 0.14);
  --container-width: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-surface-alt);
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--container-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section-space {
  padding: 6rem 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

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

.brand img {
  width: 120px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--color-surface);
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  transition:
    background-color var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-link.is-active {
  color: var(--color-primary);
}

.nav-link--button {
  appearance: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.7rem;
  min-width: 48px;
  min-height: 48px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-surface);
}

.nav-toggle span + span {
  margin-top: 4px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 4, 34, 0.78) 0%, rgba(0, 4, 34, 0.68) 42%, rgba(0, 4, 34, 0.22) 100%),
    url("./assets/images/hero-bg.png") center / cover no-repeat;
  color: var(--color-surface);
  overflow: hidden;
}

.page-about,
.page-services,
.page-projects,
.page-contact,
.page-showcase {
  background: var(--color-surface-alt);
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 4, 33, 0.36) 0%, rgba(0, 4, 33, 0.36) 100%),
    url("./assets/images/about-hero.jpg") center / cover no-repeat;
  color: var(--color-surface);
  text-align: center;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 12rem 0 9rem;
}

.about-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.15;
}

.about-hero-content p {
  margin: 1rem auto 0;
  max-width: 720px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
}

.about-intro {
  padding: 6.25rem 0 0;
  background: var(--color-surface);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-feature-media img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 30px -25px rgba(0, 0, 0, 0.18);
}

.about-intro-copy h2,
.about-values-heading h2,
.about-story-block h2,
.about-cta-copy h2 {
  margin: 0;
  color: #2b2c78;
  line-height: 1.25;
}

.about-intro-copy h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.about-intro-copy p,
.about-values-heading p,
.about-value-card p,
.about-story-block p,
.about-cta-copy p {
  color: var(--color-copy);
}

.about-intro-copy > p {
  margin: 1rem 0 0;
  font-size: 1.125rem;
}

.about-checklists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--color-copy);
}

.about-checklist li + li {
  margin-top: 0.75rem;
}

.about-check-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.about-check-icon svg,
.about-value-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-values {
  padding: 6.25rem 0 6.25rem;
  background: linear-gradient(180deg, rgb(255, 255, 255) 84%, rgb(243, 243, 243) 84%);
}

.about-values-heading {
  max-width: 767px;
  margin: 0 auto;
  text-align: center;
}

.about-values-symbol {
  width: 32px;
  margin: 0 auto 1.5rem;
}

.about-values-heading p {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 767px;
  margin: 2rem auto 0;
}

.about-value-card {
  padding: 1.5rem;
  border: 1px solid rgba(219, 221, 238, 0.41);
  background: var(--color-surface);
}

.about-value-icon {
  width: 22px;
  height: 22px;
  color: #333333;
}

.about-value-card h3 {
  margin: 1.5rem 0 0;
  color: #2b2c78;
}

.about-value-card p {
  margin: 0.5rem 0 0;
}

.about-experience {
  background: linear-gradient(180deg, rgb(243, 243, 243) 0%, rgb(243, 243, 243) 100%);
  padding-bottom: 0;
}

.about-experience-banner {
  position: relative;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(0, 4, 34, 0.24) 0%, rgba(0, 4, 34, 0.24) 100%),
    url("./assets/images/about-experience-bg.jpg") center / cover no-repeat;
}

.about-experience-banner h2 {
  margin: 0;
  color: var(--color-surface);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.about-story {
  padding: 1.5rem 0;
  background: rgb(243, 243, 243);
}

.about-story-stack {
  max-width: 767px;
}

.about-story-block + .about-story-block {
  margin-top: 2.5rem;
}

.about-story-block p {
  margin: 0.85rem 0 0;
}

.about-cta {
  padding-top: 1.875rem;
  background: #000739;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 767px;
  padding-bottom: 1.75rem;
}

.about-cta-illustration {
  width: 100px;
  flex: 0 0 auto;
}

.about-cta-copy h2,
.about-cta-copy p,
.about-cta-copy strong {
  color: var(--color-surface);
}

.about-cta-copy p {
  margin: 0.85rem 0 0;
}

.services-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background:
    linear-gradient(180deg, rgba(0, 4, 33, 0.38) 0%, rgba(0, 4, 33, 0.38) 100%),
    url("./assets/images/services-hero.jpg") center / cover no-repeat;
  color: var(--color-surface);
  text-align: center;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 10rem 0 9.5rem;
}

.services-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
}

.services-hero-content p {
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-overview,
.services-detail-section,
.services-process {
  background: var(--color-surface);
}

.services-overview {
  padding: 6.25rem 0 2.5rem;
}

.services-intro,
.services-detail-panel,
.services-process-heading {
  max-width: 767px;
  margin: 0 auto;
}

.services-intro {
  text-align: center;
}

.services-symbol {
  width: 32px;
  margin: 0 auto 1.5rem;
}

.services-intro h2,
.services-detail-header h2,
.services-process-heading h2,
.services-testimonial-author h3 {
  margin: 0;
  color: #2b2c78;
  line-height: 1.25;
}

.services-intro h2,
.services-detail-header h2,
.services-process-heading h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.services-intro p,
.services-detail-summary,
.services-detail-body > p,
.services-checklist li,
.services-process-card p,
.services-testimonial-author p {
  color: var(--color-copy);
}

.services-intro p {
  margin: 1rem auto 0;
  font-size: 1.125rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.75rem;
}

.services-overview-card {
  padding: 2.5rem;
  border-radius: 4px;
  background: var(--color-surface);
  box-shadow: 0 32px 100px -24px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.services-overview-card:hover {
  box-shadow: 0 64px 100px -24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.services-overview-number,
.services-process-number {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
}

.services-overview-number {
  margin-bottom: 1.25rem;
}

.services-overview-card h3 {
  margin: 0;
  color: var(--color-ink-strong);
  font-size: 1.5rem;
}

.services-overview-card p {
  margin: 0.95rem 0 0;
  color: var(--color-copy);
  font-size: 1.0625rem;
}

.services-detail-section {
  padding: 0 0 5rem;
}

.services-detail-header {
  max-width: 767px;
}

.services-detail-header .services-symbol {
  margin: 0 0 1.5rem;
}

.services-detail-summary {
  margin: 1rem 0 0;
  font-size: 1.125rem;
}

.services-detail-body {
  max-width: 767px;
  margin-top: 2.5rem;
}

.services-detail-body > p {
  margin: 0;
  font-size: 1.0625rem;
}

.services-detail-checklists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.services-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services-checklist li + li {
  margin-top: 0.9375rem;
}

.services-check-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.services-check-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.services-process {
  padding: 1rem 0 6.25rem;
}

.services-process-heading {
  text-align: center;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.services-process-card h3 {
  margin: 0;
  color: var(--color-ink-strong);
  font-size: 1.5rem;
}

.services-process-card p {
  margin: 0.95rem 0 0;
}

.services-process-divider {
  width: 30%;
  margin: 0.75rem 0 0.9rem;
  border-top: 2px solid #333333;
}

.services-testimonial {
  background:
    url("./assets/images/services-testimonial-bg.png") center / cover no-repeat;
  padding: 6.5rem 0 4rem;
}

.services-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.services-testimonial-visual img {
  width: min(506px, 100%);
  margin: 0 auto;
}

.services-testimonial-copy {
  max-width: 560px;
  padding-left: 1rem;
}

.services-testimonial-kicker {
  margin: 0 0 1.25rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.services-testimonial-quote {
  margin: 0;
  color: #2b2c78;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

.services-testimonial-author {
  margin-top: 1.9rem;
}

.services-testimonial-author p {
  margin: 0.45rem 0 0;
  font-size: 1.0625rem;
}

.projects-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 4, 33, 0.12) 0%, rgba(0, 4, 33, 0.12) 100%),
    url("./assets/images/projects-hero.jpg") 59% 52% / cover no-repeat;
  color: var(--color-surface);
  text-align: center;
}

.projects-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 11.25rem 0 9.5rem;
}

.projects-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
}

.projects-hero-content p {
  margin: 1rem auto 0;
  max-width: 720px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.projects-featured,
.projects-feature-media,
.projects-feature-quote,
.projects-showcase {
  background: var(--color-surface);
}

.projects-featured {
  padding: 6.25rem 0 2.5rem;
}

.projects-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 33%) minmax(0, 67%);
  gap: 0;
  align-items: start;
}

.projects-feature-intro {
  padding-right: 2rem;
}

.projects-feature-kicker {
  margin: 0;
  color: #2b2c78;
  font-size: 1.0625rem;
  font-weight: 700;
}

.projects-feature-intro h2,
.projects-card h3 {
  margin: 0;
  color: #2b2c78;
  line-height: 1.25;
}

.projects-feature-intro h2 {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.projects-feature-location {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.35rem;
  color: var(--color-copy);
}

.projects-feature-location strong {
  color: var(--color-ink-strong);
}

.projects-feature-location-icon,
.projects-check-icon,
.projects-quote-icon {
  color: var(--color-primary);
}

.projects-feature-location-icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.projects-feature-location-icon svg,
.projects-check-icon svg,
.projects-quote-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.projects-feature-summary,
.projects-card-description {
  margin: 0;
  color: var(--color-copy);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.projects-feature-summary {
  max-width: 767px;
}

.projects-feature-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.projects-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-copy);
}

.projects-feature-list li + li {
  margin-top: 1.6875rem;
}

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

.projects-check-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.projects-feature-media img {
  width: 100%;
  height: auto;
}

.projects-quote-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(94%, 1128px);
  min-height: 305px;
  margin: -1.25rem auto 0;
  padding: 2.5rem 5rem 2.5rem 2.5rem;
}

.projects-quote-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: #333333;
}

.projects-quote-copy {
  max-width: 920px;
}

.projects-quote-copy p {
  margin: 0;
  color: var(--color-copy);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.projects-quote-author {
  margin-top: 0.85rem !important;
}

.projects-quote-author strong,
.projects-card-person-name {
  color: var(--color-ink-strong);
}

.projects-quote-role,
.projects-card-person-role {
  margin-top: 0.25rem !important;
  color: #888888 !important;
  font-size: 1rem !important;
}

.projects-showcase {
  padding: 0 0 2.8rem;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.projects-showcase-column--left {
  padding-right: 40px;
}

.projects-showcase-column--right {
  padding-left: 40px;
}

.projects-card + .projects-card {
  margin-top: 5rem;
}

.projects-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.projects-card-copy {
  margin-top: 1.35rem;
}

.projects-card-category {
  margin: 0;
  color: #2b2c78;
  font-size: 1.0625rem;
}

.projects-card h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.projects-card-description {
  margin-top: 0.95rem;
}

.projects-card-testimonial {
  margin-top: 1.5rem;
  padding-left: 24px;
  border-left: 1px solid var(--color-primary);
}

.projects-card-testimonial-copy {
  margin: 0;
  color: var(--color-ink-strong);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.projects-card-person {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.75rem;
}

.projects-card-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.projects-card-person-name,
.projects-card-person-role {
  margin: 0;
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 490px;
  background:
    linear-gradient(180deg, rgba(0, 4, 33, 0.385) 0%, rgba(0, 4, 33, 0.385) 100%),
    url("./assets/images/contact-hero.jpg") 49% 34% / cover no-repeat;
  color: var(--color-surface);
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 4, 33, 0.385);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 10rem 0 9.5rem;
}

.contact-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
}

.contact-hero-content p {
  margin: 1rem auto 0;
  max-width: 720px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.showcase-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 4, 33, 0.472) 0%, rgba(0, 4, 33, 0.472) 100%),
    url("./assets/images/showcase-hero.jpg") 59% 52% / cover no-repeat;
  color: var(--color-surface);
  text-align: center;
}

.showcase-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 11.25rem 0 9.5rem;
}

.showcase-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
}

.showcase-hero-content p {
  margin: 1rem auto 0;
  max-width: 620px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.showcase-intro,
.showcase-gallery {
  background: var(--color-surface);
}

.showcase-intro {
  padding: 4.5rem 0 2.75rem;
}

.showcase-intro-shell {
  width: min(100%, 996px);
  margin: 0 auto;
  text-align: center;
}

.showcase-intro-symbol {
  width: 30px;
  height: 30px;
  margin: 0 auto 1.5rem;
}

.showcase-intro-shell h2 {
  margin: 0;
  color: #2b2c78;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.25;
}

.showcase-intro-shell p {
  margin: 1.5rem 0 0;
  color: var(--color-copy);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.showcase-gallery {
  padding: 0 0 2.8rem;
}

.showcase-gallery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.showcase-gallery-item {
  overflow: hidden;
}

.showcase-gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-page-main,
.contact-map {
  background: var(--color-surface);
}

.contact-page-main {
  position: relative;
  z-index: 2;
  padding: 6.25rem 0 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: stretch;
}

.contact-page-info {
  padding-bottom: 0.625rem;
}

.contact-page-intro {
  padding: 0 5rem 1.875rem 0;
}

.contact-page-intro h2,
.contact-info-content h3 {
  margin: 0;
  color: #2b2c78;
  line-height: 1.25;
}

.contact-page-intro h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.contact-page-lead,
.contact-page-copy,
.contact-info-content p {
  color: var(--color-copy);
}

.contact-page-lead {
  margin: 0.625rem 0 0;
}

.contact-page-copy {
  margin: 1.25rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-info-card--full {
  padding-bottom: 2.125rem;
}

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

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f3f3;
  color: var(--color-primary);
}

.contact-info-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-info-content h3 {
  font-size: 1rem;
}

.contact-info-content p {
  margin: 0.3125rem 0 0;
  font-size: 1.0625rem;
}

.contact-info-content a {
  color: inherit;
  text-decoration: none;
}

.contact-page-form {
  position: relative;
  align-self: start;
  padding: 1.5rem 4rem;
  border-radius: 4px;
  background: var(--color-surface);
  box-shadow: 0 100px 100px -40px rgba(0, 0, 0, 0.16);
}

.contact-form-name-group,
.field--contact,
.field--contact-name {
  margin: 0 0 1.5rem;
}

.contact-form-legend,
.field--contact .field-label {
  display: block;
  margin: 0 0 0.55rem;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form-required {
  color: var(--color-primary);
}

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

.field--contact-name,
.field--contact {
  gap: 0.35rem;
}

.field--contact-name input,
.field--contact input,
.field--contact select,
.field--contact textarea {
  border-radius: 4px;
  border-color: rgba(15, 23, 42, 0.12);
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.field--contact-name input,
.field--contact input,
.field--contact select {
  height: 40px;
  padding: 0.75rem 1rem;
}

.field--contact textarea {
  min-height: 160px;
  padding: 0.75rem 1rem;
}

.field--contact-name input:focus,
.field--contact input:focus,
.field--contact select:focus,
.field--contact textarea:focus {
  border-color: #046bd2;
  box-shadow: none;
}

.field--contact.is-invalid input,
.field--contact.is-invalid select,
.field--contact.is-invalid textarea,
.field--contact-name.is-invalid input {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(190, 57, 40, 0.08);
}

.contact-form-sublabel {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-actions {
  margin-top: 0;
}

.contact-submit {
  width: auto;
  min-width: 170px;
  border-radius: 4px;
  box-shadow: none;
  padding: 0.95rem 1.875rem;
}

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

.contact-map-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(245, 246, 251, 0) 0%, rgba(245, 246, 251, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 12rem 0 10rem;
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.section-kicker {
  color: var(--color-primary);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-heading h2,
.team-copy h2,
.cta-copy h2,
.contact-panel h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  max-width: 760px;
}

.hero-copy {
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.hero-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-meta-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: 0 18px 36px rgba(190, 57, 40, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-hover);
}

.button-full {
  width: 100%;
}

.estimate-section {
  position: relative;
  z-index: 2;
  margin-top: -8rem;
  padding-bottom: 2rem;
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel,
.form-card,
.service-card,
.reason-card,
.team-copy,
.testimonial-carousel,
.cta-copy,
.cta-image-wrap {
  border-radius: var(--radius-lg);
}

.contact-panel {
  padding: 2.5rem;
  background:
    radial-gradient(circle at top right, rgba(190, 57, 40, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(0, 7, 57, 0.98) 0%, rgba(0, 4, 34, 0.98) 100%);
  color: var(--color-surface);
  box-shadow: 0 30px 70px var(--color-shadow);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  margin: 2rem 0 0;
}

.contact-list-item + .contact-list-item {
  margin-top: 1.25rem;
}

.contact-list dt {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list dd a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-list dd a + a {
  margin-left: 0.85rem;
}

.form-card {
  padding: 2rem;
  background: var(--color-surface);
  box-shadow: 0 30px 70px var(--color-shadow);
}

.form-card--dark {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

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

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field-label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fbfcff;
  color: var(--color-ink);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(190, 57, 40, 0.55);
  box-shadow: 0 0 0 4px rgba(190, 57, 40, 0.1);
  outline: none;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(190, 57, 40, 0.08);
}

.form-card--dark .field input,
.form-card--dark .field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-surface);
}

.form-card--dark .field input::placeholder,
.form-card--dark .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.form-card--dark .field input:focus,
.form-card--dark .field textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.field-error {
  min-height: 1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.form-card--dark .field-error {
  color: #ffd2cd;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.form-card--dark .form-status {
  color: rgba(255, 255, 255, 0.86);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p:last-child {
  margin-top: 0.9rem;
  color: var(--color-copy);
}

.services-grid,
.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  box-shadow: 0 20px 44px rgba(2, 14, 64, 0.08);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(190, 57, 40, 0.08);
  color: var(--color-primary);
  font-weight: 800;
}

.service-card h3,
.reason-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-card p,
.reason-card p {
  margin: 0.9rem 0 0;
  color: var(--color-copy);
}

.why-section {
  background: linear-gradient(180deg, #f5f6fb 0%, #eff2fa 100%);
}

.reasons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-card {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 4, 34, 0.05);
  box-shadow: 0 18px 38px rgba(2, 14, 64, 0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.team-copy {
  padding: 2.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 24px 52px rgba(2, 14, 64, 0.08);
}

.team-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.team-quote {
  margin: 1.4rem 0 0;
  color: var(--color-copy);
  font-size: 1.06rem;
}

.team-author {
  margin: 1.1rem 0 0;
  font-weight: 700;
}

.team-image-wrap {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(190, 57, 40, 0.06) 0%, rgba(0, 7, 57, 0.04) 100%);
  box-shadow: 0 24px 52px rgba(2, 14, 64, 0.08);
}

.team-image-wrap img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
}

.testimonials-section {
  background: var(--color-surface);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 100%);
  box-shadow: 0 24px 52px rgba(2, 14, 64, 0.08);
}

.carousel-control {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(0, 4, 34, 0.08);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-ink);
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: translateY(-1px);
  outline: none;
}

.carousel-viewport {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial-copy {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-ink-strong);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person h3,
.testimonial-person p {
  margin: 0;
}

.testimonial-person p {
  color: var(--color-copy);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 4, 34, 0.18);
}

.carousel-dot.is-active {
  background: var(--color-primary);
}

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

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(190, 57, 40, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(0, 7, 57, 0.98) 0%, rgba(0, 4, 34, 0.98) 100%);
  box-shadow: 0 30px 70px rgba(2, 14, 64, 0.18);
}

.cta-copy {
  padding: 1rem 0.5rem 1rem 1rem;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-copy a {
  color: var(--color-surface);
}

.cta-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.cta-image-wrap img {
  width: min(420px, 100%);
  height: auto;
}

.site-footer {
  padding: 1.6rem 0 2rem;
}

.site-footer--about {
  padding: 2.8rem 0;
  background: #f9f9f9;
  border-top: 1px solid rgba(0, 4, 34, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-copy);
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

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

.home-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.home-modal.is-hidden {
  display: none;
}

.home-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 37, 0.58);
  backdrop-filter: blur(4px);
}

.home-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 90vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: 0 42px 110px rgba(5, 14, 42, 0.34);
}

.home-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111111;
}

.home-modal__close svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.home-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 53.6%) minmax(420px, 46.4%);
  align-items: stretch;
}

.home-modal__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px clamp(25px, 4%, 40px) 24px clamp(25px, 4%, 40px);
  background: #ffffff;
}

.home-modal__copy h2 {
  max-width: 560px;
  margin: 0;
  color: #27272b;
  font-size: clamp(3rem, 3.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-modal__title-line {
  display: block;
}

.home-modal__lead {
  max-width: 560px;
  margin: 15px 0 0;
  color: #3d3d42;
  font-size: clamp(1.125rem, 1.35vw, 1.35rem);
  line-height: 1.25;
  font-weight: 300;
}

.home-modal__form {
  margin-top: 22px;
}

.home-modal__field {
  margin-bottom: 0.95rem;
}

.home-modal__field .field-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #232326;
}

.home-modal__field input,
.home-modal__field textarea {
  border-radius: 8px;
  border-color: rgba(17, 24, 39, 0.22);
  background: #ffffff;
  padding: 0.82rem 1rem;
  font-size: 0.98rem;
  box-shadow: none;
}

.home-modal__field input {
  min-height: 44px;
}

.home-modal__field textarea {
  min-height: 102px;
  resize: vertical;
}

.home-modal__required {
  color: #d9362b;
}

.home-modal__field .field-error {
  min-height: 0;
  line-height: 1.25;
}

.home-modal__actions {
  margin-top: 0.2rem;
}

.home-modal__submit {
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: none;
}

.home-modal__form .form-status {
  min-height: 0;
  margin-top: 0.5rem;
  color: #232326;
}

.home-modal__media {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e0c7 0%, #d8d0b2 100%);
}

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

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: min(320px, calc(100% - 2rem));
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(0, 7, 57, 0.95);
  color: var(--color-surface);
  box-shadow: 0 20px 44px rgba(2, 14, 64, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .hero {
    min-height: 720px;
  }

  .estimate-grid,
  .team-grid,
  .cta-grid,
  .services-grid,
  .reasons-grid,
  .about-values-grid,
  .services-cards,
  .services-testimonial-grid,
  .projects-feature-grid,
  .projects-showcase-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .cta-copy,
  .team-copy {
    padding: 1.8rem;
  }

  .contact-panel {
    order: -1;
  }

  .about-intro-grid,
  .about-checklists,
  .services-detail-checklists {
    grid-template-columns: 1fr;
  }

  .about-feature-media img {
    min-height: 480px;
  }

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

  .services-testimonial-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .projects-feature-intro,
  .projects-showcase-column--left,
  .projects-showcase-column--right,
  .contact-page-intro {
    padding-left: 0;
    padding-right: 0;
  }

  .projects-showcase-column--right {
    margin-top: 5rem;
  }

  .contact-page-main {
    padding-top: 5rem;
  }

  .home-modal {
    padding: 1rem;
  }

  .home-modal__dialog {
    width: min(720px, calc(100vw - 2rem));
  }

  .home-modal__content {
    grid-template-columns: 1fr;
  }

  .home-modal__copy {
    padding: 26px 24px 24px;
  }

  .home-modal__copy h2 {
    max-width: 100%;
    font-size: clamp(2.5rem, 7vw, 3.6rem);
    line-height: 1;
  }

  .home-modal__lead {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .home-modal__form {
    margin-top: 18px;
  }

  .home-modal__media {
    display: none;
  }

  .showcase-gallery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page-form {
    max-width: 100%;
    margin-top: 2rem;
    padding: 1.5rem 2.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .projects-quote-panel {
    width: min(calc(100% - 2rem), 1128px);
    padding: 2rem 2.5rem;
  }
}

@media (max-height: 760px) {
  .home-modal {
    padding: 1rem;
  }

  .home-modal__dialog {
    width: min(720px, calc(100vw - 2rem));
  }

  .home-modal__content {
    grid-template-columns: 1fr;
  }

  .home-modal__copy {
    padding: 26px 24px 24px;
  }

  .home-modal__copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 6vw, 3.2rem);
    line-height: 1;
  }

  .home-modal__lead {
    max-width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .home-modal__form {
    margin-top: 1rem;
  }

  .home-modal__field textarea {
    min-height: 92px;
  }

  .home-modal__media {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 4.5rem 0;
  }

  .container {
    width: min(var(--container-width), calc(100% - 1.25rem));
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.625rem;
    left: 0.625rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.65rem;
    border-radius: 22px;
    background: rgba(0, 7, 57, 0.96);
    box-shadow: 0 22px 48px rgba(2, 14, 64, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero {
    min-height: 680px;
    background-position: 64% center;
  }

  .home-modal__close {
    top: 0.65rem;
    right: 0.65rem;
    width: 48px;
    height: 48px;
  }

  .home-modal__close svg {
    width: 28px;
    height: 28px;
  }

  .home-modal__copy {
    padding: 4rem 1.25rem 1.35rem;
  }

  .home-modal__copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .home-modal__lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .home-modal__form {
    margin-top: 1.25rem;
  }

  .home-modal__field {
    margin-bottom: 0.85rem;
  }

  .home-modal__field textarea {
    min-height: 96px;
  }

  .about-hero {
    min-height: 460px;
    background-position: center;
  }

  .services-hero {
    min-height: 460px;
    background-position: center;
  }

  .projects-hero {
    min-height: 460px;
    background-position: center;
  }

  .contact-hero {
    min-height: 460px;
    background-position: center;
  }

  .showcase-hero {
    min-height: 460px;
    background-position: center;
  }

  .hero-content {
    padding: 9rem 0 9rem;
  }

  .about-hero-content {
    padding: 9rem 0 7rem;
  }

  .services-hero-content {
    padding: 9rem 0 7rem;
  }

  .projects-hero-content {
    padding: 9rem 0 7rem;
  }

  .contact-hero-content {
    padding: 9rem 0 7rem;
  }

  .showcase-hero-content {
    padding: 9rem 0 7rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .estimate-section {
    margin-top: -5rem;
  }

  .contact-panel,
  .form-card,
  .team-copy,
  .testimonial-carousel {
    padding: 1.5rem;
  }

  .about-intro {
    padding-top: 4rem;
  }

  .services-overview {
    padding-top: 4rem;
  }

  .projects-featured {
    padding-top: 4rem;
  }

  .contact-page-main {
    padding-top: 4rem;
  }

  .showcase-intro {
    padding-top: 4rem;
  }

  .about-values,
  .about-story {
    padding-left: 0;
    padding-right: 0;
  }

  .services-overview-card {
    padding: 1.75rem;
  }

  .services-detail-section {
    padding-bottom: 4rem;
  }

  .services-process {
    padding-bottom: 4rem;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-testimonial {
    padding: 4rem 0 3rem;
    background-position: center;
  }

  .services-testimonial-copy {
    padding-left: 0;
  }

  .services-testimonial-quote {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .about-values-grid {
    margin-top: 1.5rem;
  }

  .about-value-card {
    padding: 1.35rem;
  }

  .about-experience-banner {
    padding: 1.5rem;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-quote-panel {
    width: calc(100% - 1.25rem);
    min-height: auto;
    margin-top: 0;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-showcase {
    padding-bottom: 2rem;
  }

  .contact-page-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }

  .contact-form-name-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-frame {
    height: 420px;
  }

  .showcase-gallery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-showcase-column--right,
  .projects-card + .projects-card {
    margin-top: 3.75rem;
  }

  .projects-card-testimonial {
    padding-left: 20px;
  }

  .form-grid--two,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .carousel-viewport {
    min-height: 300px;
  }

  .cta-grid {
    padding: 1.25rem;
  }

  .cta-copy {
    padding: 0.5rem;
  }
}
