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

:root {
  --dark: #262626;
  --dark-2: #1c1c1c;
  --accent: #10a1dc;
  --accent-dark: #0c85b8;
  --accent-light: #4fc3f0;
  --accent-text: #0879ab;
  --white: #ffffff;
  --ivory: #fbfaf6;
  --grey-soft: #ececec;
  --grey-line: #dcdcdc;
  --text-body: #3a3a3a;
  --sec-y: 88px;
  --header-space: 52px;
  --copy-size: 1.0625rem;
  --copy-lh: 1.75;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 110px);
}

body {
  font-family: 'Roboto', sans-serif;
  color: #111111;
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  color: #111111;
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: var(--header-space);
}

.section-header--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--left {
  max-width: 640px;
  text-align: left;
}

.section-header--center .section-divider,
.section-header--center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-title-light {
  color: var(--white);
}

.section-divider-light {
  background: var(--accent-light);
}

.section-copy {
  max-width: 640px;
  color: var(--text-body);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.76);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.optional-text {
  color: #9aa3ad;
  font-weight: 400;
}

body.menu-open .nav {
  top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(16, 22, 27, 0.08);
  backdrop-filter: blur(12px);
}

body.menu-open .nav .nav-toggle span {
  background: var(--dark);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark-2);
  padding: 0 24px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: calc(6px + env(safe-area-inset-top, 0px)) 0 6px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.topbar-item:hover,
.topbar-item:active {
  color: var(--accent-light);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-note svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.topbar.hidden {
  transform: translate3d(0, -100%, 0);
}

body.menu-open .topbar {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.nav {
  position: fixed;
  top: var(--bar-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-line);
  transform: translateY(0);
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(16, 32, 43, 0.08);
}

.nav.bar-hidden {
  top: env(safe-area-inset-top, 0px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #2b2b2b;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta,
.nav.scrolled .nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 24px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:active {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-header {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 64px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.62) 0%,
    rgba(10, 10, 10, 0.34) 55%,
    rgba(10, 10, 10, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.375rem, 4.6vw, 3.875rem);
  color: var(--white);
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero h1 em,
.section-title em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-wave {
  display: block;
  width: 200px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--accent-light);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Cabin', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 22, 27, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(16, 32, 43, 0.3);
}

.btn-outline-dark:hover,
.btn-outline-dark:active {
  border-color: var(--accent);
  color: var(--accent-text);
  transform: translateY(-2px);
}

.services {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

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

.services-more {
  margin-top: 36px;
}

.services-banner {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 16/5;
}

.services-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.services-banner-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  gap: 10px;
}

.services-banner-title {
  font-family: 'Cabin', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.services-banner-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.services-banner .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.services-banner-image {
  position: relative;
  overflow: hidden;
}

.services-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 22, 27, 0.92) 0%,
    rgba(16, 22, 27, 0.5) 50%,
    rgba(16, 22, 27, 0.12) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(16, 22, 27, 0.95) 0%,
    rgba(16, 22, 27, 0.55) 50%,
    rgba(16, 22, 27, 0.18) 100%
  );
}

.service-card h3 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-top: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover .service-card-arrow {
  background: var(--accent);
  transform: translateX(4px);
}

.about {
  padding: var(--sec-y) 0;
  background: var(--grey-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  z-index: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  color: var(--text-body);
  font-size: var(--copy-size);
  margin-bottom: 20px;
  line-height: var(--copy-lh);
}

.about-signature {
  margin-top: 32px;
}

.about-signature-name {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--dark);
}

.about-signature-title {
  font-size: 0.875rem;
  color: var(--accent-text);
  font-weight: 500;
  margin-top: 2px;
}

.about-cta-btn {
  margin-top: 24px;
  color: var(--dark);
  border-color: rgba(24, 32, 38, 0.3);
}

.about-cta-btn:hover,
.about-cta-btn:active {
  border-color: var(--accent);
  color: var(--accent-text);
}

.about-stats {
  display: flex;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-line);
  overflow: hidden;
}

.about-stat-card {
  flex: 1;
  padding: 0 24px;
  border-left: 1px solid var(--grey-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-stat-card:first-child {
  padding-left: 0;
  border-left: none;
}

.about-stat-number {
  font-family: 'Cabin', sans-serif;
  font-size: 1.75rem;
  color: var(--accent-text);
  font-weight: 800;
  line-height: 1;
}

.about-stat-number-text {
  color: var(--dark);
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.45;
}

.gallery {
  padding: var(--sec-y) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item--desktop-extra {
  display: none;
}

@media (min-width: 1025px) {
  .gallery-item--desktop-extra {
    display: block;
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 27, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(16, 22, 27, 0.3);
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:active {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-nav:hover,
.lightbox-nav:active {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.contact {
  padding: var(--sec-y) 0;
  background: var(--grey-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 22, 27, 0.06);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-info-label {
  font-size: 0.875rem;
  color: var(--accent-text);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-value {
  color: var(--dark);
  font-size: 1rem;
}

.contact-info-value a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover,
.contact-info-value a:active {
  color: var(--accent-text);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9375rem;
  color: #111111;
  background: #f2f2f2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 161, 220, 0.12);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa3ad;
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

#contact-form {
  max-width: 100%;
  min-width: 0;
}

.ms-recaptcha-notice {
  text-align: center;
}

@media (max-width: 640px) {
  .contact-grid > div,
  .contact-page-grid > div {
    min-width: 0;
    max-width: 100%;
  }
}

.info-band {
  padding: calc(var(--sec-y) - 16px) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.info-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.info-band-content {
  max-width: 640px;
}

.info-band-content .section-header {
  margin-bottom: 0;
}

.info-band-cta {
  flex-shrink: 0;
}

.btn-band {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--accent-light);
  padding: 14px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.btn-band:hover,
.btn-band:active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-band svg {
  width: 16px;
  height: 16px;
}

.footer {
  padding: 64px 0 32px;
  background: var(--dark-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover,
.footer-contact-item a:active {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

  .container {
    padding: 0 32px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
  }

  .info-band-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  .info-band-content {
    max-width: 100%;
  }

  .info-band-content .section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .info-band-content .section-divider,
  .info-band-content .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stat-card {
    padding: 0 16px;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1160px) {
  .nav {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(16, 22, 27, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav .nav-toggle span {
    background: var(--dark);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, calc(100vw - 48px));
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 28px 28px;
    gap: 0;
    box-shadow: -18px 0 36px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1002;
    border-left: 1px solid rgba(16, 22, 27, 0.08);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--grey-line);
    list-style: none;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
  }

  .mobile-menu-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--grey-soft);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: var(--dark);
    transition: background-color 0.2s ease;
    flex-shrink: 0;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:active {
    background: var(--grey-line);
  }

  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
  }

  .nav-links > li:not(.mobile-menu-header) > a,
  .nav.scrolled .nav-links > li:not(.mobile-menu-header) > a {
    color: var(--dark);
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 16px 0;
    border-bottom: 1px solid #eef1f4;
    display: block;
    width: 100%;
  }

  .nav-links > li:not(.mobile-menu-header) > a.nav-cta,
  .nav.scrolled .nav-links > li:not(.mobile-menu-header) > a.nav-cta {
    color: var(--white);
    background: var(--accent);
    text-align: center;
    margin-top: 20px;
    padding: 15px 24px;
    border-bottom: none;
    border-radius: var(--radius);
  }

  .nav-links > li:not(.mobile-menu-header) > a.nav-cta:hover,
  .nav-links > li:not(.mobile-menu-header) > a.nav-cta:active {
    background: var(--accent-dark);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
}

@media (max-width: 900px) {
  .fade-in-left,
  .fade-in-right {
    transform: translateY(30px);
  }

  .fade-in-left.visible,
  .fade-in-right.visible {
    transform: translateY(0);
  }

  .services-banner {
    aspect-ratio: auto;
  }

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

  .services-banner-text-col {
    padding: 28px 24px;
    text-align: center;
    align-items: center;
  }

  .services-banner .btn {
    align-self: center;
  }

  .services-banner-image {
    height: 220px;
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .service-card {
    aspect-ratio: 4/3;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

    .about-stat-number {
    font-size: 1.375rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
    max-height: 50vw;
  }
}

@media (max-width: 640px) {
  :root {
    --sec-y: 64px;
    --header-space: 40px;
    --copy-size: 1rem;
  }

  .hero-content {
    padding: 150px 0 80px;
  }

  .nav-inner {
    height: 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .info-band-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links a {
    display: block;
    padding: 6px 0;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-prev {
    left: 8px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .lightbox-next {
    right: 8px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .about-stat-card {
    padding: 0 12px;
  }

  .about-stat-number {
    font-size: 1.125rem;
  }

  .about-stat-label {
    font-size: 0.6875rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (hover: none) {
  a, button {
    -webkit-tap-highlight-color: transparent;
  }

  .service-card:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .gallery-item-overlay {
    background: rgba(16, 22, 27, 0.1);
  }

  .gallery-item-overlay svg {
    opacity: 0.5;
    transform: scale(1);
  }

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

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .lightbox {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(0, 0, 0, 0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 27, 0.34);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.subpage-hero .section-bg-img { opacity: 1; }
.contact-hero .section-bg-img { opacity: 1; }

.subpage-hero::after,
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.86) 0%, rgba(12, 12, 12, 0.6) 55%, rgba(12, 12, 12, 0.38) 100%);
}

.info-band .section-bg-img,
.services-cta .section-bg-img,
.stats-section .section-bg-img,
.cta-section .section-bg-img { opacity: 0.1; }

.subpage-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--dark);
  overflow: hidden;
}

.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero .section-header { margin-bottom: 0; }
.subpage-hero .section-copy { max-width: 560px; }

.contact-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--dark);
  overflow: hidden;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero .section-header {
  margin-bottom: 0;
}

.contact-hero .section-copy {
  max-width: 560px;
}

.contact-page-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-sidebar-title {
  font-family: 'Cabin', sans-serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 32px;
}

.contact-sidebar-text {
  color: var(--text-body);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  margin-bottom: 36px;
}

.contact-hours {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-line);
}

.contact-hours-title {
  font-family: 'Cabin', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--grey-line);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-day {
  font-weight: 500;
  color: var(--dark);
}

.contact-map {
  margin-top: 36px;
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

.service-detail {
  padding: calc(var(--sec-y) * 0.72) 0;
}

.service-detail:nth-child(odd) {
  background: var(--ivory);
}

.service-detail:nth-child(even) {
  background: var(--grey-soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--white);
  border: 1px solid var(--grey-line);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail:nth-child(even) .service-detail-image-wrapper {
  position: relative;
}

.service-detail-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.service-detail-content .section-divider {
  margin-bottom: 24px;
}

.service-detail-content p {
  color: var(--text-body);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  margin-bottom: 16px;
}

.service-detail-content p:last-of-type {
  margin-bottom: 32px;
}

.service-detail-content .btn {
  margin-top: 8px;
}

.services-cta {
  padding: var(--sec-y) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.services-cta-inner .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 18px;
}

.services-cta-inner p {
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-inner .section-divider {
  background: var(--accent-light);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.story {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
  z-index: 0;
}

.story-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content .section-header {
  margin-bottom: 24px;
}

.story-text {
  color: var(--text-body);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  margin-bottom: 16px;
}

.story-signature {
  margin-top: 36px;
}

.story-signature-name {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--dark);
}

.story-signature-title {
  font-size: 0.875rem;
  color: var(--accent-text);
  font-weight: 500;
  margin-top: 2px;
}

.values {
  padding: var(--sec-y) 0;
  background: var(--grey-soft);
}

.values-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.values-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-line);
}

.value-row:first-child {
  padding-top: 0;
}

.value-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(10, 124, 176, 0.1);
  color: var(--accent-text);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
}

.value-row h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-row p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.stats-section {
  padding: var(--sec-y) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-card-value {
  font-family: 'Cabin', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card-value--text {
  font-size: 1.75rem;
  color: var(--white);
}

.stat-card-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.services-overview {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

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

.service-overview-card {
  background: var(--grey-soft);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 22, 27, 0.08);
}

.service-overview-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-overview-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cta-section {
  padding: var(--sec-y) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: left;
  max-width: 720px;
  position: relative;
}

.cta-inner .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-inner .section-divider {
  background: var(--accent-light);
}

.cta-inner .section-copy {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 32px;
}

.projekt-gallery {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .values-split {
    gap: 40px;
  }

  .contact-page-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .service-detail-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .subpage-hero { padding: 160px 0 72px; }
  .contact-hero { padding: 160px 0 72px; }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }

  .service-detail-image-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-detail:nth-child(even)   .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

    .values-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-image {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page-grid > :last-child {
    order: -1;
  }
}

@media (max-width: 640px) {
  .subpage-hero { padding: 150px 0 56px; }
  .contact-hero { padding: 150px 0 56px; }

    .stat-card {
    padding: 32px 20px;
  }

  .stat-card-value {
    font-size: 2.25rem;
  }

  .service-overview-card {
    padding: 24px;
  }

  .contact-sidebar-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-hours-row {
    font-size: 0.875rem;
  }
}

@media (hover: none) {
  .service-overview-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.mobile-menu-logo img {
  display: block;
  width: auto;
  height: 28px;
}

.section-title-light em {
  color: var(--accent-light);
}

.env-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.env-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 44px;
}

.env-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(16, 32, 43, 0.05);
}

.env-chip .proof-check {
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
}

.env-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: 0 12px 32px rgba(16, 32, 43, 0.1);
}

.env-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.env-footnote {
  text-align: center;
  color: var(--text-body);
  font-size: var(--copy-size);
  max-width: 560px;
  margin: 36px auto 0;
}

.why-band {
  padding: var(--sec-y) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-band .container {
  position: relative;
  z-index: 1;
}

.why-band-wave {
  display: block;
  width: 220px;
  height: 32px;
  margin: 0 auto 8px;
  color: var(--accent-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 960px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(61, 179, 226, 0.14);
  color: var(--accent-light);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
}

.why-item h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.montage-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.montage-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.montage-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 32px rgba(16, 32, 43, 0.1);
}

.montage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-rows {
  margin-top: 8px;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-line);
}

.step-row:last-child {
  border-bottom: none;
}

.step-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(10, 124, 176, 0.1);
  color: var(--accent-text);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
}

.step-row h3 {
  font-size: 1.1875rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-row p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.montage-content .btn {
  margin-top: 28px;
}

.quotes-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(16, 32, 43, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 32, 43, 0.09);
}

.quote-mark {
  display: block;
  font-family: 'Cabin', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 14px;
}

.quote-card blockquote {
  font-size: 1.0625rem;
  color: var(--dark);
  line-height: 1.65;
  font-weight: 500;
}

.quote-source {
  margin-top: 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-text);
}

.price-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.price-table-wrapper {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(16, 32, 43, 0.06);
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.price-table th {
  font-family: 'Cabin', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  color: var(--white);
  background: var(--dark);
  padding: 16px 22px;
  white-space: nowrap;
}

.price-table td {
  padding: 15px 22px;
  font-size: 0.9375rem;
  color: var(--text-body);
  border-top: 1px solid var(--grey-line);
  white-space: nowrap;
}

.price-table td:first-child {
  font-weight: 700;
  color: var(--dark);
  font-family: 'Cabin', sans-serif;
}

.price-table tbody tr:nth-child(even) {
  background: var(--grey-soft);
}

.price-terms {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-term {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--grey-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.price-term p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.price-term p strong {
  color: var(--dark);
}

.color-section {
  padding: var(--sec-y) 0;
  background: var(--grey-soft);
}

.color-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.color-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 32px rgba(16, 32, 43, 0.1);
}

.color-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 30px;
}

.delivery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.delivery-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 10px;
  padding: 34px 38px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.delivery-card h3 {
  font-size: 1.375rem;
  color: #111111;
  margin-bottom: 8px;
}

.delivery-card-copy {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.delivery-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.delivery-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.delivery-list .proof-check {
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .montage-grid,
  .color-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {

    .hero {
    min-height: 74vh;
    padding: 108px 0 56px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-item:last-child {
    border-bottom: none;
  }

  .montage-grid,
  .color-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .montage-image,
  .color-image {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    width: 100%;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .price-terms {
    grid-template-columns: 1fr;
  }

  .delivery-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .quote-card {
    padding: 28px;
  }

    .env-chip {
    font-size: 0.875rem;
    padding: 10px 14px;
  }

  .env-photo {
    aspect-ratio: 16/10;
  }

  .price-table th,
  .price-table td {
    padding: 12px 16px;
  }
}

@media (hover: none) {
  .quote-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(16, 32, 43, 0.05);
  }
}

.values .service-overview-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111111;
}

.proof-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(16, 161, 220, 0.12);
  color: var(--accent-text);
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.8125rem;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grey-soft);
}

.split-band-panel {
  display: flex;
  align-items: center;
  padding: 80px 48px;
}

.split-band:not(.split-band--flip) .split-band-panel {
  justify-content: flex-start;
  padding-left: max(24px, calc((100vw - 1152px) / 2));
}

.split-band--flip .split-band-panel {
  justify-content: flex-end;
  padding-right: max(24px, calc((100vw - 1152px) / 2));
}

.split-band-inner {
  max-width: 552px;
  width: 100%;
  margin: 0;
}

.split-band-inner .section-header {
  margin-bottom: 28px;
}

.split-band-media {
  position: relative;
  min-height: 520px;
}

.split-band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-band--flip .split-band-media {
  order: -1;
}

.split-list {
  list-style: none;
  margin: 4px 0 22px;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #111111;
}

.split-band-footnote {
  color: var(--text-body);
  font-size: 1rem;
}

.split-band-panel .btn {
  margin-top: 26px;
}

.benefits-section {
  padding: var(--sec-y) 0;
  background: var(--ivory);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
}

.benefit-item {
  text-align: left;
}

.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(16, 161, 220, 0.12);
  color: var(--accent);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 14px;
}

.benefit-item h3 {
  font-size: 1.1875rem;
  color: #111111;
  margin-bottom: 6px;
}

.benefit-item p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 300px;
}

.quote-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.quote-card--accent .quote-mark {
  color: var(--white);
}

.quote-card--accent blockquote {
  color: var(--white);
}

.quote-card--accent .quote-source {
  color: rgba(255, 255, 255, 0.88);
}

.contact-sub {
  font-size: 1.375rem;
  color: #111111;
  margin-bottom: 14px;
}

.contact-company {
  margin: 26px 0 22px;
}

.contact-company p {
  color: var(--text-body);
  line-height: 1.65;
}

.contact-company .contact-company-name {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  color: #111111;
}

.contact-links a {
  display: inline-block;
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-links a:hover,
.contact-links a:active {
  color: var(--accent-dark);
}

.contact-links span {
  display: block;
}

@media (max-width: 900px) {
  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band-media {
    min-height: 300px;
    order: -1;
  }

  .split-band-panel,
  .split-band:not(.split-band--flip) .split-band-panel,
  .split-band--flip .split-band-panel {
    justify-content: flex-start;
    padding: 56px 24px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.obj-left {
  object-position: left center;
}

.services-banner-image img {
  object-position: right center;
}

.service-card--wide {
  aspect-ratio: 16/9;
}

.benefit-check svg {
  width: 22px;
  height: 22px;
}

.img-caption {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.color-grid .section-header {
  margin-bottom: 24px;
}

.table-hint {
  display: none;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.footer-contact-item a {
  padding: 6px 0;
}

.contact-links a {
  padding: 8px 0;
  margin-bottom: 2px;
}

@media (min-width: 641px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
  }

  .quote-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin: 0;
  }

  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-detail-image-wrapper {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .benefit-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
  }

  .benefit-check {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .benefit-item h3,
  .benefit-item p {
    grid-column: 2;
  }

  .table-hint {
    display: block;
  }

  .footer-links a {
    padding: 10px 0;
  }
}

@media (max-width: 900px) {
  .delivery-duo {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    padding: 26px 24px;
  }
}
