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

:root {
  --dark: #191b1f;
  --dark-2: #101216;
  --accent: #b8402f;
  --accent-dark: #96301f;
  --accent-light: #e0a99e;
  --accent-text: #96301f;
  --white: #ffffff;
  --grey-soft: #f4f5f7;
  --grey-line: #e3e6ea;
  --text-body: #414b56;
  --sec-y: 88px;
  --header-space: 52px;
  --copy-size: 1.0625rem;
  --copy-lh: 1.75;
  --radius: 6px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', 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(2rem, 4vw, 3rem);
  color: var(--dark);
  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;
}

.campaign-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark-2);
  color: var(--white);
  text-align: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 24px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-bar:hover {
  color: var(--accent-light);
}

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

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

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);
}

.nav {
  position: fixed;
  top: var(--bar-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transform: translateY(0);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.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 { background: rgba(255, 255, 255, 0.97); box-shadow: 0 1px 20px rgba(16, 22, 27, 0.08); }
.nav .nav-links a:not(.nav-cta) { color: var(--dark); }
.nav .nav-toggle span { background: var(--dark); }
.nav-logo img { height: 50px; width: auto; display: block; }
.mobile-menu-logo img { height: 44px; width: auto; display: block; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-chevron { transition: transform 0.2s ease; }
.nav-dropdown li { display: block; }
.nav-dropdown a::after { display: none; }
.nav-dropdown-first a { font-weight: 700; }
@media (min-width: 901px) {
  .nav-item-dropdown { position: relative; }
  .nav-item-dropdown:hover .nav-chevron,
  .nav-item-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
  .nav-item-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
  .nav-dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin: 0; padding: 8px; list-style: none; min-width: 266px;
    background: #fff; border: 1px solid var(--grey-line); border-radius: 12px;
    box-shadow: 0 20px 44px -20px rgba(16, 22, 27, 0.4);
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
  }
  .nav-item-dropdown:hover .nav-dropdown,
  .nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown a { display: block; padding: 10px 13px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--dark); white-space: nowrap; letter-spacing: 0; }
  .nav-dropdown a:hover { background: var(--grey-soft); color: var(--accent); }
  .nav-dropdown-sep { height: 1px; background: var(--grey-line); margin: 6px 9px; padding: 0; }
}
@media (max-width: 900px) {
  .nav-item-dropdown { position: static; }
  .nav-item-dropdown::before { display: none; }
  .nav-links > li.nav-item-dropdown > .nav-dropdown-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
  }
  .nav-chevron { display: inline-block; width: 18px; height: 18px; flex-shrink: 0; color: #8a929c; transition: transform 0.25s ease; }
  .nav-item-dropdown.open > .nav-dropdown-toggle .nav-chevron { transform: rotate(180deg); color: var(--accent); }
  .nav-links > li.nav-item-dropdown.open > .nav-dropdown-toggle { border-bottom-color: transparent; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; min-width: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.32s ease;
    background: var(--grey-soft); border-radius: 12px;
    margin: 0; padding: 0 10px;
  }
  .nav-item-dropdown.open > .nav-dropdown { max-height: 520px; margin: 2px 0 14px; padding: 7px 10px; }
  .nav-dropdown a {
    display: block; padding: 12px 12px; font-size: 0.97rem; font-weight: 500;
    color: #4a505a; border-bottom: none; border-radius: 8px;
    white-space: normal; letter-spacing: 0;
  }
  .nav-dropdown a:active { background: #fff; color: var(--accent); }
  .nav-dropdown-first a { color: var(--accent); font-weight: 700; }
  .nav-dropdown-sep { display: none; }
}
.footer-logo-mark { display: inline-block; }
.footer-logo-mark img { height: 62px; width: auto; display: block; }
.contact-map { margin-top: 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-line); line-height: 0; }
.contact-map iframe { width: 100%; height: 240px; border: 0; display: block; }
.footer-social { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; color: #fff; font-weight: 600; font-size: 0.9rem; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social:hover { color: var(--accent-light); }

.wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3125rem;
  letter-spacing: -0.015em;
  color: var(--white);
  transition: color 0.2s ease;
}

.wordmark-mark {
  color: var(--accent-light);
}

.nav.scrolled .wordmark {
  color: var(--dark);
}

.nav.scrolled .wordmark-mark {
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
  color: var(--dark);
}

.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: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  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(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.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: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  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(
    135deg,
    rgba(16, 22, 27, 0.88) 0%,
    rgba(16, 22, 27, 0.62) 50%,
    rgba(16, 22, 27, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 160px 0 80px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  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);
}

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

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

.services-banner {
  margin-top: 24px;
  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: 'Manrope', 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: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  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-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: 8px 0 0 0;
  z-index: -1;
}

.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: 'Manrope', 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: 'Manrope', 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: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(16, 22, 27, 0.06);
}

.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: 12px 16px;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 122, 109, 0.1);
}

.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: 'DM Sans', 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-wordmark {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
}

.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) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .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: 900px) {
  .fade-in-left,
  .fade-in-right {
    transform: translateY(30px);
  }

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

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

  .nav .wordmark {
    color: var(--dark);
  }

  .nav .wordmark-mark {
    color: var(--accent);
  }

  .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-logo .wordmark {
    color: var(--dark);
    font-size: 1.125rem;
  }

  .mobile-menu-logo .wordmark-mark {
    color: var(--accent);
  }

  .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: 600;
    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;
  }

  .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-image-accent {
    display: none;
  }

  .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;
  }

  .campaign-bar {
    font-size: 0.7rem;
    padding: 8px 16px;
    white-space: normal;
  }

  .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;
  }

  .campaign-bar,
  .nav,
  .nav-toggle span,
  .nav-links,
  .nav-links a,
  .nav-links a::after,
  .nav-links a.nav-cta,
  .service-card img,
  .service-card-overlay,
  .gallery-item img,
  .gallery-item-overlay,
  .gallery-item-overlay svg,
  .lightbox,
  .lightbox img,
  .lightbox-close,
  .lightbox-nav,
  .btn,
  .btn-band,
  .contact-info-value a,
  .footer-links a,
  .footer-contact-item a,
  .form-group input,
  .form-group textarea,
  .mobile-menu-close {
    transition: none;
    animation: 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: 0.14; }
.contact-hero .section-bg-img { opacity: 0.18; }

.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(--grey-soft);
}

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

.contact-sidebar-title {
  font-family: 'Manrope', 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: 'Manrope', 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: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 24px rgba(16, 22, 27, 0.06);
}

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

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

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

.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: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.service-detail-image-accent {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: 8px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.service-detail:nth-child(even) .service-detail-image-accent {
  left: auto;
  right: -14px;
  border-left: none;
  border-right: 3px solid var(--accent);
  border-radius: 0 8px 0 0;
}

.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(--white);
}

.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-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: 8px 0 0 0;
  z-index: -1;
}

.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: 'Manrope', 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(14, 122, 109, 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: 'Manrope', 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.6);
  font-weight: 500;
}

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

.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: center;
  max-width: 640px;
  margin: 0 auto;
  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);
  margin-left: auto;
  margin-right: auto;
}

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

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

@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) .service-detail-image-accent {
    left: -14px;
    right: auto;
    border-right: none;
    border-left: 3px solid var(--accent);
    border-radius: 8px 0 0 0;
  }

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

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

  .story-image-accent {
    display: none;
  }

  .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; }

  .service-detail-image-accent {
    display: none;
  }

  .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;
  }
}
