@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --header-height: 72px;
  --color-primary: #0c0c0c;
  --color-accent: #d8b28c;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: #ffffff;
  background: var(--color-primary);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

site-header {
  display: block;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: 100%;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-layout {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(calc(100% - 112px), 1240px);
  height: 100%;
  margin: 0 auto;
}

.header-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 104px;
  height: 60px;
  overflow: hidden;
}

.header-brand img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 104px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 180ms ease, transform 240ms ease;
}

.header-brand:hover img,
.header-brand:focus-visible img {
  opacity: 0.82;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.site-nav > a,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease;
}

.site-nav > * {
  animation: header-item-enter 460ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.site-nav > :nth-child(1) {
  animation-delay: 80ms;
}

.site-nav > :nth-child(2) {
  animation-delay: 140ms;
}

.site-nav > :nth-child(3) {
  animation-delay: 200ms;
}

.site-nav > :nth-child(4) {
  animation-delay: 260ms;
}

.site-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--color-accent);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger:focus-visible::after,
.nav-dropdown-trigger.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  gap: 9px;
}

.nav-dropdown-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown.is-open > .nav-dropdown-trigger {
  color: var(--color-accent);
}

.nav-dropdown.is-open > .nav-dropdown-trigger .nav-dropdown-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 12;
  display: grid;
  width: 270px;
  padding: 18px;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 14px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
  content: "";
}

.nav-dropdown:hover > .nav-submenu,
.nav-dropdown.is-open > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown.is-closing > .nav-submenu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
}

.nav-submenu > p {
  margin: 0 10px 8px;
  color: #8a8179;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-submenu > a,
.nav-submenu-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 8px 10px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-submenu > :not(p) + :not(p) {
  border-top: 1px solid rgba(12, 12, 12, 0.07);
}

.nav-submenu > a > span,
.nav-nested-submenu > a > span {
  color: var(--color-accent);
  font-size: 16px;
}

.nav-submenu > a:hover,
.nav-submenu > a:focus-visible,
.nav-submenu > a[aria-current="page"],
.nav-submenu-trigger:hover,
.nav-submenu-trigger:focus-visible,
.nav-submenu-trigger.is-current,
.nav-submenu-group.is-open > .nav-submenu-trigger,
.nav-nested-submenu > a:hover,
.nav-nested-submenu > a:focus-visible {
  color: var(--color-primary);
  background: #f6f1ec;
  outline: none;
}

.nav-submenu-group {
  position: relative;
}

.nav-submenu-trigger {
  width: 100%;
}

.nav-submenu-chevron {
  width: 7px;
  height: 7px;
  margin-right: 3px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-submenu-group.is-open > .nav-submenu-trigger .nav-submenu-chevron {
  transform: rotate(225deg);
}

.nav-nested-submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 25px);
  z-index: 13;
  display: grid;
  width: 218px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-left-color: rgba(216, 178, 140, 0.72);
  border-radius: 14px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px) scale(0.985);
  transform-origin: left center;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
}

.nav-nested-submenu::before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 27px;
  height: 100%;
  content: "";
}

.nav-submenu-group.is-open > .nav-nested-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav-nested-submenu > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-nested-submenu > a + a {
  border-top: 1px solid rgba(12, 12, 12, 0.07);
}

.nav-submenu-group.is-open > .nav-nested-submenu > a {
  opacity: 1;
  transform: none;
}

.nav-submenu-group.is-open > .nav-nested-submenu > a:nth-child(2) {
  transition-delay: 35ms;
}

.nav-submenu-group.is-open > .nav-nested-submenu > a:nth-child(3) {
  transition-delay: 70ms;
}

@media (min-width: 901px) {
  .nav-submenu-group:hover > .nav-nested-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-submenu-group:hover > .nav-nested-submenu > a {
    opacity: 1;
    transform: none;
  }

  .nav-submenu-group:hover > .nav-nested-submenu > a:nth-child(2) {
    transition-delay: 35ms;
  }

  .nav-submenu-group:hover > .nav-nested-submenu > a:nth-child(3) {
    transition-delay: 70ms;
  }

  .nav-submenu-group:hover > .nav-submenu-trigger .nav-submenu-chevron {
    transform: rotate(225deg);
  }
}

.header-cta,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-cta {
  justify-self: end;
  min-width: 132px;
  min-height: 42px;
  padding: 0 20px;
  animation: header-item-enter 460ms cubic-bezier(0.22, 1, 0.36, 1) 320ms backwards;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(216, 178, 140, 0.28);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 9px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
  animation: header-item-enter 460ms cubic-bezier(0.22, 1, 0.36, 1) 120ms backwards;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.site-nav > .nav-mobile-cta {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 90svh;
  overflow: hidden;
  background: #252525;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.hero-poster {
  transform-origin: center;
  will-change: transform;
  transition: opacity 240ms ease;
  animation: hero-zoom 15s ease-in-out infinite alternate;
}

.hero.has-active-video .hero-poster {
  opacity: 0;
  transform: none;
  will-change: auto;
  animation: none;
}

.hero-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-shade {
  background-color: rgba(0, 0, 0, 0.18);
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 34%,
    rgba(0, 0, 0, 0.08) 68%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.13);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(calc(100% - 112px), 1240px);
  min-height: 90svh;
  margin: 0 auto;
  padding-top: var(--header-height);
}

.hero-content {
  width: min(510px, 44vw);
}

.hero-content::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--color-accent);
  content: attr(data-accent);
  transform-origin: left;
  animation: hero-accent-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) 380ms backwards;
}

.hero-content h1 {
  max-width: 510px;
  margin: 0;
  font-size: 62px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  animation: hero-copy-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) 440ms backwards;
}

.hero-title-main,
.hero-title-detail {
  display: block;
}

.hero-title-detail {
  max-width: 460px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 460px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  animation: hero-copy-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) 520ms backwards;
}

.hero-cta {
  min-height: 44px;
  padding: 0 22px;
  animation: hero-action-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) 720ms backwards;
}

.about {
  color: var(--color-primary);
  background: #ffffff;
}

.about-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 64px 0 50px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 132px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin: 0;
  padding: 0 11px;
  color: #364053;
  border: 1px solid #e4e8ed;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.about-heading h2 span,
.stat-value .stat-suffix {
  color: var(--color-accent);
}

.about-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(32px, 2.7vw, 40px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.about-summary {
  align-self: center;
}

.about-summary > p {
  max-width: 470px;
  margin: 0;
  color: #3d4758;
  font-size: 14px;
  line-height: 1.42;
}

.about-cta,
.faq-cta,
.locations-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 20px;
  padding: 5px 7px 5px 16px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 12px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.about-cta-icon,
.faq-cta-icon,
.locations-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.about-cta:hover,
.about-cta:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.locations-cta:hover,
.locations-cta:focus-visible,
.booking-seal:hover,
.booking-seal:focus-visible {
  transform: translateY(-2px);
}

.about-cta:hover,
.about-cta:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.locations-cta:hover,
.locations-cta:focus-visible {
  background: #242424;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.stat-card {
  min-height: 154px;
  padding: 30px 20px 22px;
  background: #f1f1f1d5;
  border-radius: 11px;
}

.stat-card p {
  margin: 0;
}

.stat-value {
  color: var(--color-primary);
  font-size: 44px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.stat-number {
  color: var(--color-primary);
  font: inherit;
}

.stat-card .stat-value + p {
  margin-top: 16px;
  color: #465164;
  font-size: 12px;
  line-height: 1.35;
}

.about-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(840px, 68%);
  margin: 28px auto 0;
}

.about-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: #dfe6ee;
  border-radius: 9px;
}

.about-image-placeholder img,
.process-card-media img,
.project-media-placeholder img,
.why-us-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder img {
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-placeholder:hover img {
  transform: scale(1.025);
}

.booking-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  color: var(--color-accent);
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.booking-seal:hover,
.booking-seal:focus-visible {
  transform: translate(-50%, calc(-50% - 2px));
}

.booking-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.booking-seal text {
  fill: currentColor;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.035em;
}

.booking-seal-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 76px;
  height: 44px;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.booking-seal-logo img {
  display: block;
  width: 76px;
  height: auto;
}

.services {
  color: var(--color-primary);
  background: #f6f1ec;
}

.services-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 64px;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-header h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.services-header h2 span {
  color: var(--color-accent);
}

.services-header > p:last-child {
  max-width: 660px;
  margin: 16px 0 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.services-list {
  margin-top: 48px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 230px 175px minmax(260px, 1fr) 44px;
  align-items: center;
  gap: 34px;
  min-height: 146px;
  padding: 22px 20px;
  overflow: hidden;
  background: #f6f1ec;
  border-bottom: 1px dashed rgba(12, 12, 12, 0.2);
  border-radius: 13px;
  contain: paint;
  isolation: isolate;
  transition: border-color 220ms ease;
}

.service-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--color-primary);
  border-radius: inherit;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.65, 0, 0.35, 1);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item:hover,
.service-item:focus-within,
.service-item:focus-visible {
  border-color: transparent;
  outline: none;
}

.service-item:hover::before,
.service-item:focus-within::before,
.service-item:focus-visible::before {
  transform: scaleX(1);
}

.service-media-placeholder {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.08);
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 9px;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.service-media-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item:hover .service-media-placeholder img,
.service-item:focus-within .service-media-placeholder img,
.service-item:focus-visible .service-media-placeholder img {
  transform: scale(1.045);
}

.service-item:hover .service-media-placeholder,
.service-item:focus-within .service-media-placeholder,
.service-item:focus-visible .service-media-placeholder {
  background: rgba(216, 178, 140, 0.22);
  border-color: rgba(216, 178, 140, 0.38);
}

.service-item h3,
.service-item p {
  margin: 0;
}

.service-item h3 {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

.service-item > p {
  max-width: 430px;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.72;
  transition: color 180ms ease;
}

.service-item:hover h3,
.service-item:focus-within h3,
.service-item:focus-visible h3,
.service-item:hover > p,
.service-item:focus-within > p,
.service-item:focus-visible > p {
  color: #ffffff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  justify-self: end;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.service-link:hover,
.service-link:focus-visible,
.service-item:hover .service-link,
.service-item:focus-visible .service-link {
  color: var(--color-primary);
  background: #ffffff;
  transform: translateY(-2px) rotate(4deg);
}

.services-header h2[data-reveal] {
  --reveal-delay: 70ms;
}

.services-header > p:last-child[data-reveal] {
  --reveal-delay: 140ms;
}

.service-item:nth-child(2) {
  --reveal-delay: 70ms;
}

.service-item:nth-child(3) {
  --reveal-delay: 140ms;
}

.service-item:nth-child(4) {
  --reveal-delay: 210ms;
}

.service-page {
  background: #ffffff;
}

.service-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

.service-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 76svh;
  color: #ffffff;
  background: var(--color-primary);
}

.service-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 12, 12, 0.9) 0%,
    rgba(12, 12, 12, 0.7) 48%,
    rgba(12, 12, 12, 0.5) 100%
  );
  content: "";
  pointer-events: none;
}

.service-hero-backdrop {
  position: absolute;
  z-index: 0;
  inset: -36px;
  width: calc(100% + 72px);
  height: calc(100% + 72px);
  object-fit: cover;
  filter: blur(28px) saturate(0.8);
  opacity: 0.7;
  transform: scale(1.06);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
  width: min(calc(100% - 112px), 1240px);
  min-height: 76svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 64px;
}

.service-hero-content {
  max-width: 650px;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-breadcrumb a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.service-breadcrumb a:hover,
.service-breadcrumb a:focus-visible {
  color: #ffffff;
  text-decoration-color: currentColor;
}

.service-hero-content h1 {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(50px, 6.1vw, 76px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.service-hero-content h1 span {
  color: var(--color-accent);
}

.service-hero-content > p {
  max-width: 540px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.service-hero-placeholder,
.service-hero-media {
  width: 100%;
  min-height: 420px;
  background: #181818;
  border: 1px solid rgba(216, 178, 140, 0.2);
  border-radius: 28px;
}

.service-hero-media {
  position: relative;
  z-index: 0;
  display: block;
  height: 420px;
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, filter, transform;
}

.service-hero-visual {
  position: relative;
  min-width: 0;
}

.service-hero-open {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 28px;
  cursor: zoom-in;
}

.service-hero-open:hover .service-hero-media {
  transform: scale(1.025);
}

.service-hero-open:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.service-hero-expand {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  padding: 9px 12px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  pointer-events: none;
}

.service-hero-controls {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-hero-counter {
  min-width: 64px;
  margin: 0;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 12, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}

.service-hero-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.service-hero-arrow:hover {
  color: var(--color-primary);
  background: #ffffff;
}

.service-hero-arrow--previous:hover {
  transform: translateX(-2px);
}

.service-hero-arrow--next:hover {
  transform: translateX(2px);
}

.service-hero-arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.service-hero-media--outgoing {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 0;
  pointer-events: none;
}

.service-hero-visual.is-transitioning .service-hero-media:not(.service-hero-media--outgoing) {
  z-index: 2;
}

.service-hero-visual.is-forward .service-hero-media:not(.service-hero-media--outgoing) {
  animation: service-hero-image-in-forward 900ms cubic-bezier(0.77, 0, 0.18, 1) both;
}

.service-hero-visual.is-backward .service-hero-media:not(.service-hero-media--outgoing) {
  animation: service-hero-image-in-backward 900ms cubic-bezier(0.77, 0, 0.18, 1) both;
}

.service-hero-visual.is-forward .service-hero-media--outgoing {
  animation: service-hero-image-out-forward 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-hero-visual.is-backward .service-hero-media--outgoing {
  animation: service-hero-image-out-backward 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-hero.is-transitioning .service-hero-backdrop {
  animation: service-hero-backdrop-shift 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes service-hero-image-in-forward {
  from {
    clip-path: inset(0 0 0 100%);
    filter: brightness(0.82) saturate(0.88);
    transform: scale(1.055) translateX(1.5%);
  }

  to {
    clip-path: inset(0);
    filter: brightness(1) saturate(1);
    transform: scale(1) translateX(0);
  }
}

@keyframes service-hero-image-in-backward {
  from {
    clip-path: inset(0 100% 0 0);
    filter: brightness(0.82) saturate(0.88);
    transform: scale(1.055) translateX(-1.5%);
  }

  to {
    clip-path: inset(0);
    filter: brightness(1) saturate(1);
    transform: scale(1) translateX(0);
  }
}

@keyframes service-hero-image-out-forward {
  from {
    filter: brightness(1) saturate(1);
    transform: scale(1) translateX(0);
  }

  to {
    filter: brightness(0.72) saturate(0.8);
    transform: scale(1.035) translateX(-1.2%);
  }
}

@keyframes service-hero-image-out-backward {
  from {
    filter: brightness(1) saturate(1);
    transform: scale(1) translateX(0);
  }

  to {
    filter: brightness(0.72) saturate(0.8);
    transform: scale(1.035) translateX(1.2%);
  }
}

@keyframes service-hero-backdrop-shift {
  from {
    opacity: 0.42;
    transform: scale(1.1);
  }

  to {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

.service-details {
  color: var(--color-primary);
  background: #ffffff;
}

.service-details-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 76px 0;
}

.service-details-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 132px;
}

.service-details-heading .section-label {
  justify-self: start;
}

.service-details-heading h2 {
  grid-column: 1;
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-details-heading h2 span {
  color: var(--color-accent);
}

.service-details-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  display: grid;
  gap: 10px;
  max-width: 650px;
  margin: 0 0 4px;
}

.service-details-copy p {
  margin: 0;
  color: #49443f;
  font-size: 15px;
  line-height: 1.45;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-benefits article {
  min-height: 210px;
  padding: 26px;
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.07);
  border-radius: 18px;
}

.service-benefits article[id] {
  scroll-margin-top: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-benefits article[id]:target {
  border-color: rgba(216, 178, 140, 0.72);
  box-shadow: 0 18px 42px rgba(12, 12, 12, 0.09);
}

.service-benefits article:nth-child(2) {
  --reveal-delay: 70ms;
}

.service-benefits article:nth-child(3) {
  --reveal-delay: 140ms;
}

.service-benefits span {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 750;
}

.service-benefits h3 {
  margin: 46px 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-benefits p {
  margin: 0;
  color: #5c5650;
  font-size: 12px;
  line-height: 1.55;
}

.service-gallery {
  color: var(--color-primary);
  background: #f6f1ec;
}

.service-gallery-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 76px 0;
}

.service-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 132px;
}

.service-gallery-header .section-label {
  justify-self: start;
}

.service-gallery-header h2 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.service-gallery-header h2 span {
  color: var(--color-accent);
}

.service-gallery-header > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: #49443f;
  font-size: 14px;
  line-height: 1.6;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 120px;
  gap: 18px;
  margin-top: 48px;
}

.service-gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.07);
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 22px;
}

.service-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.service-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.service-gallery-trigger::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  place-items: center;
  backdrop-filter: blur(8px);
  content: "↗";
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-gallery-trigger:hover::after,
.service-gallery-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-gallery-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -4px;
}

.service-gallery-item:hover img {
  transform: scale(1.035);
}

.service-gallery-item--feature {
  grid-column: span 7;
  grid-row: span 4;
}

.service-gallery-item--portrait {
  grid-column: span 5;
  grid-row: span 2;
  --reveal-delay: 70ms;
}

.service-gallery-item--landscape {
  grid-column: span 3;
  grid-row: span 2;
  --reveal-delay: 140ms;
}

.service-gallery-item--square {
  grid-column: span 2;
  grid-row: span 2;
  --reveal-delay: 210ms;
}

.service-gallery-item--wide {
  grid-column: span 8;
  grid-row: span 3;
}

.service-gallery-item--tall {
  grid-column: span 4;
  grid-row: span 3;
}

.service-gallery-item--standard {
  grid-column: span 4;
  grid-row: span 2;
}

.service-gallery-item--panorama {
  grid-column: span 12;
  grid-row: span 5;
}

.service-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(8, 8, 8, 0.97);
  border: 0;
}

.service-lightbox[open] {
  animation: service-lightbox-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-lightbox.is-closing {
  animation: service-lightbox-out 220ms ease both;
}

.service-lightbox::backdrop {
  background: rgba(8, 8, 8, 0.86);
}

.service-lightbox[open]::backdrop {
  animation: service-lightbox-backdrop-in 280ms ease both;
}

.service-lightbox.is-closing::backdrop {
  animation: service-lightbox-backdrop-out 220ms ease both;
}

.service-lightbox-layout {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 64px 92px;
  align-items: center;
  justify-content: center;
  animation: service-lightbox-content-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-lightbox.is-closing .service-lightbox-layout {
  animation: service-lightbox-content-out 200ms ease both;
}

.service-lightbox-figure {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.service-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 128px);
  transition: opacity 180ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-lightbox.is-changing .service-lightbox-image {
  opacity: 0;
  transform: scale(0.985);
}

.service-lightbox-toolbar {
  position: absolute;
  z-index: 1;
}

.service-lightbox-toolbar {
  top: 20px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-lightbox-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.service-lightbox-close,
.service-lightbox-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease;
}

.service-lightbox-close svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.service-lightbox-close:hover,
.service-lightbox-arrow:hover {
  color: var(--color-primary);
  background: var(--color-accent);
}

.service-lightbox-close:focus-visible,
.service-lightbox-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.service-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.service-lightbox-arrow--previous {
  left: 24px;
}

.service-lightbox-arrow--next {
  right: 24px;
}

@keyframes service-lightbox-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes service-lightbox-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes service-lightbox-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes service-lightbox-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes service-lightbox-content-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes service-lightbox-content-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
}

html.has-service-lightbox {
  overflow: hidden;
}

.service-related {
  color: var(--color-primary);
  background: #ffffff;
}

.service-related-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 76px 0;
}

.service-related-layout > .section-label {
  justify-self: start;
}

.service-related-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 72px;
  margin-top: 24px;
}

.service-related-heading h2,
.service-related-heading p {
  margin: 0;
}

.service-related-heading h2 {
  max-width: 710px;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.service-related-heading p {
  max-width: 480px;
  color: #5c5650;
  font-size: 14px;
  line-height: 1.6;
}

.service-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.service-related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 22px 24px;
  border: 1px solid rgba(12, 12, 12, 0.14);
  border-radius: 18px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-related-links a span:last-child {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
}

.service-related-links a:hover,
.service-related-links a:focus-visible {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.service-final-cta {
  padding: 76px 56px;
  color: #ffffff;
  background: #f6f1ec;
}

.service-final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  width: min(100%, 1240px);
  min-height: 270px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--color-primary);
  border-radius: 28px;
}

.service-cta-kicker {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-final-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.service-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 6px 7px 6px 20px;
  color: var(--color-primary);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.service-page-cta > span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 18px;
}

.service-page-cta:hover,
.service-page-cta:focus-visible {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.process {
  color: var(--color-primary);
  background: #ffffff;
}

.process-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-header h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.process-header h2 span {
  color: var(--color-accent);
}

.process-header > p:last-child {
  max-width: 640px;
  margin: 16px 0 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  contain: paint;
  transform: translateY(0);
}

.process-card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 0.96 / 1;
  min-height: 300px;
  overflow: hidden;
  color: #ffffff;
  border: 2px solid rgba(216, 178, 140, 0.62);
  border-radius: 16px;
}

.process-card-media,
.process-card-media::after {
  position: absolute;
  inset: 0;
}

.process-card-media {
  background: #5c5147;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card-media::after {
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.08) 0%,
    rgba(12, 12, 12, 0.14) 42%,
    rgba(12, 12, 12, 0.42) 100%
  );
  content: "";
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card:hover .process-card-media {
  transform: scale(1.025);
}

.process-card-content {
  position: relative;
  z-index: 1;
}

.process-step {
  align-self: center;
  margin: 0 0 14px;
  padding: 9px 14px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 142px;
  margin: 0 12px 12px;
  padding: 24px 18px 22px;
  background: rgba(12, 12, 12, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.process-card-content h3,
.process-card-content p {
  margin: 0;
}

.process-card-content h3 {
  font-size: 17px;
  font-weight: 550;
  line-height: 1.2;
}

.process-card-content p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.process-header h2[data-reveal] {
  --reveal-delay: 70ms;
}

.process-header > p:last-child[data-reveal] {
  --reveal-delay: 140ms;
}

.process-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.process-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.process-card:nth-child(4) {
  --reveal-delay: 240ms;
}

.projects {
  color: var(--color-primary);
  background: #f6f1ec;
}

.projects-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 70px;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.projects-header h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.projects-header h2 span {
  color: var(--color-accent);
}

.projects-header > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.project-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 2.6 / 1;
  min-height: 400px;
  margin-top: 48px;
  overflow: hidden;
  color: #ffffff;
  background: #5b5148;
  border-radius: 32px;
  contain: paint;
}

.project-media-placeholder,
.project-shade {
  position: absolute;
  inset: 0;
}

.project-media-placeholder {
  background: #5b5148;
  transform: scale(1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-media-placeholder img {
  object-position: center 55%;
}

.project-shade {
  background: linear-gradient(
    90deg,
    rgba(12, 12, 12, 0.78) 0%,
    rgba(12, 12, 12, 0.48) 38%,
    rgba(12, 12, 12, 0.08) 72%
  );
}

.project-feature:hover .project-media-placeholder {
  transform: scale(1.025);
}

.project-content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: 0 0 34px 34px;
}

.project-content h3,
.project-content p {
  margin: 0;
}

.project-content h3 {
  font-size: 25px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.project-content > p {
  max-width: 560px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  margin-top: 24px;
  padding: 5px 7px 5px 18px;
  color: var(--color-primary);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 550;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.project-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 18px;
}

.project-cta:hover,
.project-cta:focus-visible {
  color: var(--color-primary);
  background: var(--color-accent);
  transform: translateY(-2px);
}

.project-cta:hover .project-cta-icon,
.project-cta:focus-visible .project-cta-icon {
  background: #ffffff;
}

.project-service-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--color-primary);
  font-size: 11px;
}

.project-service-links > span {
  color: var(--color-primary);
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-service-links a {
  color: var(--color-primary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.28);
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease;
}

.project-service-links a:hover,
.project-service-links a:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.projects-header h2[data-reveal] {
  --reveal-delay: 70ms;
}

.projects-header > p:last-child[data-reveal] {
  --reveal-delay: 140ms;
}

.project-feature[data-reveal] {
  --reveal-delay: 90ms;
}

.why-us {
  color: var(--color-primary);
  background: #ffffff;
}

.why-us-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 80px;
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.why-us-visual {
  position: relative;
  min-height: 438px;
}

.why-us-media {
  position: absolute;
  display: block;
  overflow: hidden;
  background: #e7e3df;
  border: 1px solid rgba(12, 12, 12, 0.07);
  border-radius: 16px;
}

.why-us-media--large img {
  object-position: center 62%;
}

.why-us-media--large {
  top: 0;
  bottom: 0;
  left: 0;
  width: 76%;
}

.why-us-media--small {
  top: 32%;
  right: 0;
  width: 45%;
  aspect-ratio: 0.92 / 1;
  background: #f1eeeb;
  border: 5px solid #ffffff;
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.09);
}

.why-us-content h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.why-us-content h2 span {
  color: var(--color-accent);
}

.why-us-summary {
  max-width: 560px;
  margin: 18px 0 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.why-us-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.why-us-benefit {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 14px 8px 8px;
  background: #f1f1f1d5;
  border-radius: 11px;
}

.why-us-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  background: rgba(216, 178, 140, 0.24);
  border: 1px solid rgba(216, 178, 140, 0.72);
  border-radius: 12px;
}

.why-us-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.why-us-benefit h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.25;
}

.why-us-content h2[data-reveal] {
  --reveal-delay: 70ms;
}

.why-us-summary[data-reveal] {
  --reveal-delay: 120ms;
}

.why-us-benefit:nth-child(1) {
  --reveal-delay: 150ms;
}

.why-us-benefit:nth-child(2) {
  --reveal-delay: 200ms;
}

.why-us-benefit:nth-child(3) {
  --reveal-delay: 250ms;
}

.why-us-benefit:nth-child(4) {
  --reveal-delay: 300ms;
}

.testimonials {
  color: var(--color-primary);
  background: #f6f1ec;
}

.testimonials-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.testimonials-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: 132px;
}

.testimonials-label {
  color: #364053;
}

.testimonials-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.testimonials-heading h2 span {
  color: var(--color-accent);
}

.testimonials-intro {
  margin-top: 55px;
}

.testimonials-intro > p {
  max-width: 455px;
  margin: 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.testimonial-arrow--next,
.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--color-primary);
  background: var(--color-accent);
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
}

.testimonial-arrow span {
  margin-top: -2px;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
}

.testimonials-viewport {
  margin-top: 48px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: grid;
  grid-auto-columns: calc((100% - 24px) / 3);
  grid-auto-flow: column;
  gap: 12px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 197px;
  padding: 21px 17px 16px;
  background: #ffffff;
  border: 1px solid #e4e8ed;
  border-radius: 13px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 11px 0 10px;
  color: #465164;
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.35;
}

.testimonial-author {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px dashed #e5e7ea;
}

.testimonial-avatar {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.testimonial-author cite,
.testimonial-author p {
  margin: 0;
}

.testimonial-author cite {
  display: block;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-author p {
  margin-top: 3px;
  color: #596174;
  font-size: 11px;
  line-height: 1.2;
}

.testimonials-heading h2[data-reveal] {
  --reveal-delay: 70ms;
}

.testimonials-intro > p[data-reveal] {
  --reveal-delay: 100ms;
}

.testimonial-controls[data-reveal] {
  --reveal-delay: 170ms;
}

.testimonials-viewport[data-reveal] {
  --reveal-delay: 120ms;
}

.faq {
  color: var(--color-primary);
  background: #ffffff;
}

.faq-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-header h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.faq-header h2 span {
  color: var(--color-accent);
}

.faq-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 48px;
  margin-top: 48px;
}

.faq-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  isolation: isolate;
}

.faq-aside::after {
  position: absolute;
  z-index: 0;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.82));
  content: "";
  pointer-events: none;
}

.faq-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.faq-aside h3 {
  position: absolute;
  z-index: 1;
  bottom: 92px;
  left: 24px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 18px rgba(12, 12, 12, 0.34);
}

.faq-cta {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e8ed;
  border-radius: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(216, 178, 140, 0.72);
}

.faq-item.is-open {
  border-color: rgba(216, 178, 140, 0.86);
  box-shadow: 0 12px 32px rgba(12, 12, 12, 0.05);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 60px;
  padding: 10px 13px 10px 18px;
  color: var(--color-primary);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-question > span:first-child {
  font-size: 13px;
  font-weight: 550;
  line-height: 1.35;
}

.faq-toggle {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-toggle {
  color: #ffffff;
  background: var(--color-primary);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-panel > div {
  overflow: hidden;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  margin: 0;
  padding: 0 66px 18px 18px;
  color: #514c46;
  font-size: 12px;
  line-height: 1.48;
}

.faq-header h2[data-reveal] {
  --reveal-delay: 70ms;
}

.faq-image[data-reveal] {
  --reveal-delay: 70ms;
}

.faq-aside h3[data-reveal] {
  --reveal-delay: 120ms;
}

.faq-cta[data-reveal] {
  --reveal-delay: 170ms;
}

.faq-item:nth-child(2) {
  --reveal-delay: 50ms;
}

.faq-item:nth-child(3) {
  --reveal-delay: 100ms;
}

.faq-item:nth-child(4) {
  --reveal-delay: 150ms;
}

.faq-item:nth-child(5) {
  --reveal-delay: 200ms;
}

.faq-item:nth-child(6) {
  --reveal-delay: 250ms;
}

.locations {
  color: var(--color-primary);
  background: #f6f1ec;
}

.locations-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.locations-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: 132px;
}

.locations-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.locations-heading h2 span {
  color: var(--color-accent);
}

.locations-intro {
  margin-top: 55px;
}

.locations-intro > p {
  max-width: 470px;
  margin: 0;
  color: #49443f;
  font-size: 13px;
  line-height: 1.45;
}

.locations-cta {
  margin-top: 0;
  border: 0;
  cursor: pointer;
}

.locations-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.locations-cta-icon {
  color: var(--color-primary);
}

.locations-cta-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.locations-list {
  margin-top: 48px;
}

.location-item {
  overflow: hidden;
  border-top: 1px dashed rgba(12, 12, 12, 0.18);
  border-bottom: 1px dashed rgba(12, 12, 12, 0.18);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.location-item:hover,
.location-item:focus-within,
.location-item.is-open {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(216, 178, 140, 0.9);
}

.location-item h3 {
  margin: 0;
}

.location-question {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 78px;
  padding: 10px 12px;
  color: var(--color-primary);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.location-question > span:nth-child(2) {
  font-size: 14px;
  font-weight: 550;
  line-height: 1.3;
}

.location-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
}

.location-pin svg {
  display: block;
  width: 19px;
  height: 19px;
}

.location-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  justify-self: end;
  color: var(--color-primary);
  border: 1px solid rgba(12, 12, 12, 0.15);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 220ms ease;
}

.location-toggle::before {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.location-item.is-open .location-toggle {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: rotate(180deg);
}

.location-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-panel > div {
  overflow: hidden;
}

.location-item.is-open .location-panel {
  grid-template-rows: 1fr;
}

.location-details {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.25fr);
  gap: 48px;
  margin: 0 12px 16px 70px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e4e8ed;
  border-radius: 13px;
}

.location-details > p {
  margin: 0;
  color: #514c46;
  font-size: 12px;
  line-height: 1.5;
}

.location-details dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.location-details dt,
.location-details dd {
  margin: 0;
}

.location-details dt {
  color: #69635d;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-details dd {
  margin-top: 7px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.4;
}

.location-details dd a,
.footer-contact a {
  transition: color 160ms ease;
}

.location-details dd a:hover,
.location-details dd a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-accent);
}

.locations-heading h2[data-reveal] {
  --reveal-delay: 70ms;
}

.locations-intro > p[data-reveal] {
  --reveal-delay: 100ms;
}

.locations-cta[data-reveal] {
  --reveal-delay: 160ms;
}

.locations-facebook-cta[data-reveal] {
  --reveal-delay: 210ms;
}

.locations-instagram-cta[data-reveal] {
  --reveal-delay: 260ms;
}

.location-item[data-reveal] {
  --reveal-delay: 120ms;
}

[data-reveal] {
  --reveal-delay: 0ms;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 160ms ease,
    background-color 160ms ease;
  transition-delay: var(--reveal-delay), var(--reveal-delay), 0ms, 0ms;
}

.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  translate: 0 24px;
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

.about-heading h2[data-reveal] {
  --reveal-delay: 70ms;
}

.about-summary > p[data-reveal] {
  --reveal-delay: 90ms;
}

.about-cta[data-reveal] {
  --reveal-delay: 160ms;
}

.stat-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.stat-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.stat-card:nth-child(4) {
  --reveal-delay: 240ms;
}

.about-image-placeholder:nth-of-type(2) {
  --reveal-delay: 100ms;
}

.booking-seal[data-reveal] {
  --reveal-delay: 180ms;
}

@keyframes header-item-enter {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-action-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-accent-enter {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.legal-page {
  color: var(--color-primary);
  background: #ffffff;
}

.legal-hero {
  min-height: 470px;
  color: #ffffff;
  background: var(--color-primary);
}

.legal-hero-layout,
.legal-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
}

.legal-hero-layout {
  padding: calc(var(--header-height) + 92px) 0 88px;
}

.legal-hero .section-label {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 30px 0 24px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-hero h1 span {
  color: var(--color-accent);
}

.legal-hero-layout > p:not(.section-label, .legal-updated) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.legal-updated {
  margin: 28px 0 0;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content {
  padding: 76px 0 84px;
  background: #ffffff;
}

.legal-layout {
  display: block;
}

.legal-document {
  width: min(100%, 920px);
  margin: 0 auto;
  min-width: 0;
}

.legal-document > section {
  scroll-margin-top: 24px;
  padding: 0 0 52px;
}

.legal-document > section + section {
  padding-top: 52px;
  border-top: 1px solid rgba(12, 12, 12, 0.09);
}

.legal-document > section:last-child {
  padding-bottom: 0;
}

.legal-section-number {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.legal-document h2 {
  margin: 0 0 22px;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-document h3 {
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.legal-document section > p,
.legal-document section > ul {
  max-width: 760px;
  color: #5f5a55;
  font-size: 14px;
  line-height: 1.8;
}

.legal-document section > p {
  margin: 0 0 18px;
}

.legal-document section > p:last-child,
.legal-document section > ul:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document section a {
  color: #8b6748;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(139, 103, 72, 0.38);
  text-underline-offset: 3px;
}

.legal-document section a:hover,
.legal-document section a:focus-visible {
  color: var(--color-primary);
  text-decoration-color: var(--color-accent);
}

.legal-purpose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.legal-purpose-list article {
  padding: 22px;
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.06);
  border-radius: 16px;
}

.legal-purpose-list h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.legal-purpose-list p {
  margin: 0;
  color: #655f59;
  font-size: 12px;
  line-height: 1.65;
}

.legal-cookie-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.legal-cookie-summary > div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #f6f1ec;
  border-radius: 14px;
}

.legal-cookie-summary span {
  color: #7c756e;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-cookie-summary strong {
  font-size: 15px;
  font-weight: 750;
}

.legal-cookie-table-wrap {
  max-width: 100%;
  margin: 28px 0 22px;
  overflow-x: auto;
  border: 1px solid rgba(12, 12, 12, 0.09);
  border-radius: 16px;
}

.legal-cookie-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.55;
}

.legal-cookie-table th,
.legal-cookie-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(12, 12, 12, 0.08);
}

.legal-cookie-table th {
  color: #8a8179;
  background: #f6f1ec;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-cookie-table tr:last-child td {
  border-bottom: 0;
}

.legal-cookie-table code {
  color: var(--color-primary);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 750;
}

.cookie-banner {
  position: fixed;
  right: 56px;
  bottom: 28px;
  left: 56px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 28px;
  color: var(--color-primary);
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(12, 12, 12, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  max-width: 680px;
}

.cookie-eyebrow {
  margin: 0 0 9px;
  color: #8a8179;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner h2,
.cookie-dialog h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.cookie-banner-copy > p:last-child,
.cookie-dialog-intro {
  margin: 13px 0 0;
  color: #655f59;
  font-size: 12px;
  line-height: 1.65;
}

.cookie-banner a {
  color: #76563c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(126px, 1fr));
  gap: 8px;
  margin-left: 36px;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  outline: none;
  transform: translateY(-1px);
}

.cookie-button--quiet {
  grid-column: 1 / -1;
  color: var(--color-primary);
  background: transparent;
  border-color: rgba(12, 12, 12, 0.25);
}

.cookie-dialog {
  width: min(calc(100% - 64px), 680px);
  max-height: min(760px, calc(100dvh - 64px));
  padding: 0;
  color: var(--color-primary);
  background: #ffffff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(12, 12, 12, 0.28);
}

.cookie-dialog::backdrop {
  background: rgba(12, 12, 12, 0.72);
}

.cookie-dialog-card {
  padding: 32px;
}

.cookie-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-dialog-close {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0 0 2px;
  color: var(--color-primary);
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 50%;
  font: inherit;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.cookie-dialog-close:hover,
.cookie-dialog-close:focus-visible {
  background: var(--color-accent);
  outline: none;
}

.cookie-dialog-intro {
  max-width: 560px;
  margin-bottom: 26px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 15px;
}

.cookie-option + .cookie-option {
  margin-top: 10px;
}

.cookie-option h3,
.cookie-option strong {
  display: block;
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 750;
}

.cookie-option p,
.cookie-option small {
  display: block;
  margin: 0;
  color: #655f59;
  font-size: 11px;
  line-height: 1.55;
}

.cookie-required {
  flex: 0 0 auto;
  color: #76563c;
  font-size: 10px;
  font-weight: 750;
}

.cookie-option--toggle {
  position: relative;
  cursor: pointer;
}

.cookie-option--toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-toggle {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 26px;
  background: #b8b1aa;
  border-radius: 999px;
  transition: background-color 160ms ease;
}

.cookie-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  transition: transform 160ms ease;
}

.cookie-option--toggle input:checked + .cookie-toggle {
  background: var(--color-primary);
}

.cookie-option--toggle input:checked + .cookie-toggle::after {
  transform: translateX(20px);
}

.cookie-option--toggle input:focus-visible + .cookie-toggle {
  outline: 3px solid rgba(216, 178, 140, 0.55);
  outline-offset: 3px;
}

.cookie-dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

quote-popup {
  display: contents;
}

.quote-dialog {
  width: min(calc(100% - 64px), 760px);
  max-height: min(860px, calc(100dvh - 48px));
  padding: 0;
  color: var(--color-primary);
  background: #ffffff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(12, 12, 12, 0.34);
}

.quote-dialog[open] {
  animation: quote-dialog-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quote-dialog::backdrop {
  background: rgba(12, 12, 12, 0.76);
}

@keyframes quote-dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.975);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-form {
  padding: 36px;
}

.quote-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.quote-eyebrow {
  margin: 0 0 10px;
  color: #8a8179;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-dialog h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.quote-dialog h2 span {
  color: var(--color-accent);
}

.quote-dialog-close {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0 0 2px;
  color: var(--color-primary);
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 50%;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.quote-dialog-close:hover,
.quote-dialog-close:focus-visible {
  background: var(--color-accent);
  outline: none;
  transform: rotate(5deg);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.quote-field {
  display: grid;
  gap: 8px;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field > span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.quote-field input,
.quote-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--color-primary);
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quote-field textarea {
  min-height: 102px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.5;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #8a8179;
  opacity: 1;
}

.quote-field input:focus,
.quote-field textarea:focus {
  background: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(216, 178, 140, 0.24);
  outline: none;
}

.quote-service-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-service-picker legend {
  margin: 0 0 9px;
  padding: 0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.quote-service-select {
  position: relative;
  display: block;
}

.quote-service-select::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.quote-service-select select {
  width: 100%;
  min-height: 46px;
  padding: 0 44px 0 14px;
  color: var(--color-primary);
  appearance: none;
  background: #f6f1ec;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.quote-service-select select:focus {
  background: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(216, 178, 140, 0.24);
  outline: none;
}

.quote-privacy {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  color: #655f59;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.quote-privacy input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-primary);
}

.quote-privacy input:focus-visible {
  outline: 3px solid rgba(216, 178, 140, 0.55);
  outline-offset: 2px;
}

.quote-privacy a {
  color: #76563c;
  font-weight: 700;
  text-underline-offset: 3px;
}

.quote-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quote-submit:hover,
.quote-submit:focus-visible {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
  outline: none;
  transform: translateY(-1px);
}

site-footer {
  display: block;
}

.not-found-page {
  min-height: 100vh;
  background: var(--color-primary);
}

.not-found-page .site-header {
  background: var(--color-primary);
}

.not-found {
  display: grid;
  min-height: 720px;
  padding: calc(var(--header-height) + 72px) 56px 76px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 28%, rgba(216, 178, 140, 0.16), transparent 32%),
    var(--color-primary);
}

.not-found-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.not-found-code {
  margin: 34px 0 0;
  color: transparent;
  font-size: clamp(108px, 19vw, 248px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(216, 178, 140, 0.55);
}

.not-found h1 {
  max-width: 760px;
  margin: 52px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.not-found-layout > p:not(.section-label, .not-found-code) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.not-found-secondary {
  padding: 12px 2px;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  transition: color 160ms ease;
}

.not-found-secondary:hover,
.not-found-secondary:focus-visible {
  color: #ffffff;
}

.site-footer {
  color: #ffffff;
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-layout {
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding: 54px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: end;
  gap: 108px;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  display: block;
  width: 170px;
  height: 100px;
  margin-bottom: 26px;
  overflow: hidden;
  transition: opacity 180ms ease, transform 240ms ease;
}

.footer-brand img {
  display: block;
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}

.footer-brand:hover img,
.footer-brand:focus-visible img {
  transform: scale(1.015);
}

.footer-top h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.footer-top-content > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.42;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 20px;
  padding: 5px 7px 5px 16px;
  color: var(--color-primary);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 550;
  transition: background-color 160ms ease, transform 160ms ease;
}

.footer-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-cta:hover .footer-cta-icon,
.footer-cta:focus-visible .footer-cta-icon {
  background: #ffffff;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) 0.62fr 0.72fr minmax(250px, 1.05fr);
  align-items: start;
  gap: 48px;
  margin-top: 42px;
}

.footer-columns h3,
.footer-columns p {
  margin: 0;
}

.footer-columns h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-about > p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 5px;
}

.footer-nav a,
.footer-nav button {
  color: rgba(255, 255, 255, 0.67);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 11px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav button:hover,
.footer-nav button:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.35;
}

.footer-contact p > span:first-child {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.footer-about .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease,
    border-color 160ms ease, transform 160ms ease;
}

.footer-social-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-about .footer-social-link:hover,
.footer-about .footer-social-link:focus-visible {
  color: var(--color-primary);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.footer-top-content > p[data-reveal] {
  --reveal-delay: 70ms;
}

.footer-top h2[data-reveal] {
  --reveal-delay: 70ms;
}

.footer-cta[data-reveal] {
  --reveal-delay: 130ms;
}

.footer-columns > :nth-child(2) {
  --reveal-delay: 70ms;
}

.footer-columns > :nth-child(3) {
  --reveal-delay: 140ms;
}

.footer-columns > :nth-child(4) {
  --reveal-delay: 210ms;
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .header-layout,
  .hero-layout,
  .about-layout,
  .services-layout,
  .service-hero-layout,
  .service-details-layout,
  .service-gallery-layout,
  .service-related-layout,
  .process-layout,
  .projects-layout,
  .why-us-layout {
    width: calc(100% - 64px);
  }

  .testimonials-layout {
    width: calc(100% - 64px);
  }

  .faq-layout {
    width: calc(100% - 64px);
  }

  .locations-layout {
    width: calc(100% - 64px);
  }

  .footer-layout {
    width: calc(100% - 64px);
  }

  .not-found {
    padding-right: 32px;
    padding-left: 32px;
  }

  .legal-hero-layout,
  .legal-layout {
    width: calc(100% - 64px);
  }

  .cookie-banner {
    right: 32px;
    left: 32px;
    width: calc(100% - 64px);
  }

  .header-layout {
    grid-template-columns: 1fr auto;
  }

  html.has-mobile-nav,
  html.has-mobile-nav body {
    overflow: hidden;
  }

  html.has-mobile-nav .site-header {
    position: fixed;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(14px);
  }

  .header-brand {
    width: 92px;
    height: 54px;
  }

  .header-brand img {
    width: 92px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    margin: 0;
    transform: translateX(-50%);
    transition: top 180ms ease, opacity 140ms ease, transform 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 19px;
  }

  .nav-toggle span:nth-child(3) {
    top: 25px;
  }

  .nav-toggle[aria-expanded="true"] {
    color: var(--color-primary);
    background: var(--color-accent);
    border-color: var(--color-accent);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1),
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 19px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.35);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    height: calc(100svh - var(--header-height));
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px 32px max(28px, env(safe-area-inset-bottom));
    background: rgba(12, 12, 12, 0.97);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 180ms ease;
  }

  .site-nav.is-open {
    gap: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav > a,
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 56px;
    padding: 0 2px;
    font-size: 17px;
    font-weight: 650;
    animation: none;
  }

  .site-nav > a:not(.nav-mobile-cta),
  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav > a.is-active {
    color: var(--color-accent);
  }

  .site-nav > a::after,
  .nav-dropdown-trigger::after {
    display: none;
  }

  .site-nav.is-open > a,
  .site-nav.is-open .nav-dropdown {
    animation: header-item-enter 360ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .site-nav.is-open > :nth-child(2) {
    animation-delay: 50ms;
  }

  .site-nav.is-open > :nth-child(3) {
    animation-delay: 100ms;
  }

  .site-nav.is-open > :nth-child(4) {
    animation-delay: 150ms;
  }

  .site-nav.is-open > :nth-child(5) {
    animation-delay: 200ms;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    text-align: left;
  }

  .nav-dropdown .nav-submenu {
    position: static;
    display: grid;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    overflow: hidden;
    background: transparent;
    border-color: transparent;
    border-width: 0;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      margin 260ms cubic-bezier(0.22, 1, 0.36, 1),
      padding 260ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 180ms ease,
      border-color 180ms ease,
      border-width 180ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-dropdown.is-open > .nav-submenu {
    max-height: 600px;
    margin: 6px 0 14px;
    padding: 14px;
    background: #f6f1ec;
    border-color: rgba(12, 12, 12, 0.08);
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown.is-closing > .nav-submenu {
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    background: transparent;
    border-color: transparent;
    border-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu > p {
    margin: 2px 10px 7px;
  }

  .nav-submenu > a,
  .nav-submenu-trigger {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 13px;
    animation: none;
  }

  .nav-submenu-trigger {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-submenu-chevron {
    margin-right: 5px;
    transform: rotate(135deg);
  }

  .nav-submenu-group.is-open > .nav-submenu-trigger .nav-submenu-chevron {
    transform: rotate(315deg);
  }

  .nav-nested-submenu {
    position: static;
    display: grid;
    width: auto;
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    background: transparent;
    border-color: transparent;
    border-width: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
    transition:
      max-height 240ms cubic-bezier(0.22, 1, 0.36, 1),
      margin 240ms cubic-bezier(0.22, 1, 0.36, 1),
      padding 240ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 180ms ease,
      border-color 180ms ease,
      border-width 180ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-nested-submenu::before {
    display: none;
  }

  .nav-submenu-group.is-open > .nav-nested-submenu,
  .nav-submenu-group.is-open:hover > .nav-nested-submenu {
    max-height: 180px;
    margin: 4px 0 8px;
    padding: 6px 10px;
    background: #ffffff;
    border-color: rgba(12, 12, 12, 0.08);
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-nested-submenu > a {
    min-height: 42px;
    padding: 7px 8px;
  }

  .site-nav > .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin-top: 20px;
    padding: 0 18px;
    color: var(--color-primary);
    background: var(--color-accent);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
  }

  .nav-mobile-cta > span:last-child {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    background: #ffffff;
    border-radius: 50%;
    font-size: 16px;
  }

  .hero-content {
    width: min(500px, 68vw);
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .about-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-gallery {
    width: min(840px, 100%);
  }

  .service-item {
    grid-template-columns: 190px 145px minmax(220px, 1fr) 40px;
    gap: 24px;
  }

  .service-hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
    gap: 40px;
  }

  .service-hero-placeholder {
    min-height: 360px;
  }

  .service-hero-media {
    height: 360px;
    min-height: 360px;
  }

  .service-details-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .service-details-copy {
    grid-column: 1;
    grid-row: auto;
    margin: 24px 0 0;
  }

  .service-gallery-header {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 48px;
  }

  .service-gallery-grid {
    grid-auto-rows: 105px;
  }

  .service-related-heading {
    gap: 48px;
  }

  .service-final-cta {
    padding-right: 32px;
    padding-left: 32px;
  }

  .service-final-cta-layout {
    padding: 42px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .process-card-visual {
    aspect-ratio: 1.08 / 1;
  }

  .project-feature {
    aspect-ratio: 2.1 / 1;
    min-height: 380px;
    border-radius: 28px;
  }

  .why-us-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
  }

  .why-us-visual {
    min-height: 390px;
  }

  .why-us-media--large {
    left: 0;
    width: 76%;
  }

  .testimonials-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .testimonials-intro {
    margin-top: 50px;
  }

  .testimonials-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .faq-content {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 32px;
  }

  .locations-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .locations-intro {
    margin-top: 50px;
  }

  .location-details {
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 56px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 60px;
  }

  .header-layout,
  .hero-layout,
  .about-layout,
  .services-layout,
  .service-hero-layout,
  .service-details-layout,
  .service-gallery-layout,
  .service-related-layout,
  .process-layout,
  .projects-layout,
  .why-us-layout {
    width: calc(100% - 40px);
  }

  .testimonials-layout {
    width: calc(100% - 40px);
  }

  .faq-layout {
    width: calc(100% - 40px);
  }

  .locations-layout {
    width: calc(100% - 40px);
  }

  .footer-layout {
    width: calc(100% - 40px);
  }

  .not-found {
    min-height: 640px;
    padding: calc(var(--header-height) + 56px) 20px 56px;
  }

  .not-found-code {
    margin-top: 28px;
  }

  .not-found h1 {
    margin-top: 38px;
  }

  .legal-hero-layout,
  .legal-layout {
    width: calc(100% - 40px);
  }

  .cookie-banner {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    width: calc(100% - 40px);
    padding: 22px;
  }

  .cookie-banner-actions {
    margin: 22px 0 0;
  }

  .cookie-dialog {
    width: calc(100% - 40px);
    max-height: calc(100dvh - 40px);
  }

  .cookie-dialog-card {
    padding: 24px 20px;
  }

  .cookie-dialog-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-dialog {
    width: calc(100% - 40px);
    max-height: calc(100dvh - 16px);
  }

  .quote-form {
    padding: 18px 18px 16px;
  }

  .quote-dialog-heading {
    gap: 18px;
  }

  .quote-dialog h2 {
    font-size: 30px;
  }

  .quote-form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 14px;
  }

  .quote-field--full {
    grid-column: auto;
  }

  .quote-field {
    gap: 5px;
  }

  .quote-field input,
  .quote-service-select select {
    min-height: 42px;
  }

  .quote-field textarea {
    height: 66px;
    min-height: 66px;
    resize: none;
  }

  .quote-service-picker legend {
    margin-bottom: 6px;
  }

  .quote-privacy {
    margin-top: 10px;
    line-height: 1.4;
  }

  .quote-form-actions {
    margin-top: 12px;
  }

  .quote-submit {
    min-height: 44px;
  }

  .quote-form-actions,
  .quote-submit {
    width: 100%;
  }

  .legal-hero {
    min-height: 420px;
  }

  .legal-hero-layout {
    padding: calc(var(--header-height) + 62px) 0 62px;
  }

  .legal-hero h1 {
    margin: 26px 0 20px;
    font-size: 43px;
  }

  .legal-hero-layout > p:not(.section-label, .legal-updated) {
    font-size: 13px;
  }

  .legal-content {
    padding: 48px 0 56px;
  }

  .legal-document > section {
    padding-bottom: 42px;
  }

  .legal-document > section + section {
    padding-top: 42px;
  }

  .legal-document h2 {
    font-size: 29px;
  }

  .legal-document section > p,
  .legal-document section > ul {
    font-size: 13px;
  }

  .legal-purpose-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-nav {
    right: 0;
    left: 0;
    padding: 16px 20px max(24px, env(safe-area-inset-bottom));
  }

  .hero-media {
    object-position: 62% 50%;
  }

  .hero-shade {
    background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 42%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .hero-layout {
    align-items: flex-end;
    padding-top: var(--header-height);
    padding-bottom: 54px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 350px;
    font-size: 40px;
    line-height: 1;
  }

  .hero-title-detail {
    max-width: 330px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-content p {
    max-width: 350px;
    margin: 18px 0 24px;
    font-size: 13px;
  }

  .about-layout {
    padding: 40px 0;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-summary {
    align-self: start;
  }

  .about-heading h2 {
    font-size: 31px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-seal {
    width: 104px;
    height: 104px;
  }

  .booking-seal-logo {
    width: 62px;
    height: 36px;
  }

  .booking-seal-logo img {
    width: 62px;
  }

  .services-layout {
    padding: 56px 0 48px;
  }

  .services-header h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .services-header > p:last-child {
    font-size: 12px;
  }

  .services-list {
    margin-top: 36px;
  }

  .service-item {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 18px;
    min-height: 0;
    padding: 20px;
  }

  .service-media-placeholder {
    grid-column: 1 / -1;
  }

  .service-item h3 {
    grid-column: 1;
    font-size: 21px;
  }

  .service-item > p {
    grid-column: 1;
  }

  .service-link {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero::after {
    background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.84) 0%,
      rgba(12, 12, 12, 0.7) 52%,
      rgba(12, 12, 12, 0.62) 100%
    );
  }

  .service-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding: calc(var(--header-height) + 52px) 0 56px;
  }

  .service-hero-content h1 {
    margin-top: 22px;
    font-size: 42px;
  }

  .service-hero-content > p {
    margin: 20px 0 26px;
    font-size: 13px;
  }

  .service-hero-placeholder {
    min-height: 240px;
    border-radius: 22px;
  }

  .service-hero-media {
    height: 240px;
    min-height: 240px;
    border-radius: 22px;
  }

  .service-hero-open {
    border-radius: 22px;
  }

  .service-hero-expand {
    top: 12px;
    right: 12px;
  }

  .service-hero-controls {
    right: 12px;
    bottom: 12px;
  }

  .service-hero-counter {
    min-width: 58px;
    padding: 10px 11px;
  }

  .service-hero-arrow {
    width: 42px;
    height: 42px;
  }

  .service-details-layout {
    padding: 56px 0;
  }

  .service-details-heading h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .service-details-copy p {
    font-size: 13px;
  }

  .service-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .service-benefits article {
    min-height: 180px;
    padding: 22px;
  }

  .service-benefits h3 {
    margin-top: 34px;
  }

  .service-gallery-layout {
    padding: 56px 0;
  }

  .service-gallery-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-gallery-header h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .service-gallery-header > p {
    font-size: 13px;
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
    gap: 12px;
    margin-top: 36px;
  }

  .service-gallery-item {
    border-radius: 16px;
  }

  .service-gallery-trigger::after {
    right: 10px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    opacity: 1;
    transform: none;
  }

  .service-gallery-item--feature {
    grid-column: span 2;
    grid-row: span 3;
  }

  .service-gallery-item--portrait {
    grid-column: span 1;
    grid-row: span 2;
  }

  .service-gallery-item--landscape {
    grid-column: span 1;
    grid-row: span 2;
  }

  .service-gallery-item--square {
    grid-column: span 2;
    grid-row: span 2;
  }

  .service-gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .service-gallery-item--tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .service-gallery-item--standard {
    grid-column: span 1;
    grid-row: span 2;
  }

  .service-gallery-item--panorama {
    grid-column: span 2;
    grid-row: span 3;
  }

  .service-related-layout {
    padding: 56px 0;
  }

  .service-related-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .service-related-heading h2 {
    font-size: 32px;
  }

  .service-related-heading p {
    font-size: 13px;
  }

  .service-related-links {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .service-related-links a {
    min-height: 76px;
    padding: 18px 20px;
    border-radius: 16px;
  }

  .service-lightbox-layout {
    padding: max(70px, calc(54px + env(safe-area-inset-top))) 16px
      max(74px, calc(58px + env(safe-area-inset-bottom)));
  }

  .service-lightbox-image {
    max-height: calc(100dvh - 160px);
  }

  .service-lightbox-toolbar {
    top: max(14px, env(safe-area-inset-top));
    right: 16px;
    left: 16px;
  }

  .service-lightbox-close,
  .service-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .service-lightbox-arrow {
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: none;
  }

  .service-lightbox-arrow--previous {
    left: 16px;
  }

  .service-lightbox-arrow--next {
    right: 16px;
  }

  .service-final-cta {
    padding: 56px 20px;
  }

  .service-final-cta-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 36px 24px;
    border-radius: 22px;
  }

  .service-final-cta h2 {
    font-size: 30px;
  }

  .service-page-cta {
    justify-self: start;
  }

  .process-layout {
    padding: 56px 0;
  }

  .process-header h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .process-header > p:last-child {
    font-size: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .process-card-visual {
    aspect-ratio: 1.12 / 1;
  }

  .projects-layout {
    padding: 56px 0 48px;
  }

  .projects-header h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .projects-header > p:last-child {
    font-size: 12px;
  }

  .project-feature {
    aspect-ratio: auto;
    min-height: 440px;
    margin-top: 36px;
    border-radius: 24px;
  }

  .project-shade {
    background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.08) 0%,
      rgba(12, 12, 12, 0.28) 38%,
      rgba(12, 12, 12, 0.88) 100%
    );
  }

  .project-content {
    max-width: none;
    padding: 0 24px 24px;
  }

  .project-content h3 {
    font-size: 22px;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }

  .why-us-visual {
    width: 100%;
    min-height: 360px;
  }

  .why-us-media--large {
    left: 0;
    width: 74%;
  }

  .why-us-content h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .why-us-summary {
    font-size: 12px;
  }

  .why-us-benefits {
    margin-top: 30px;
  }

  .testimonials-layout {
    padding: 56px 0 48px;
  }

  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonials-intro {
    margin-top: 0;
  }

  .testimonials-heading h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .testimonials-intro > p {
    font-size: 12px;
  }

  .testimonial-controls {
    margin-top: 18px;
  }

  .testimonials-viewport {
    margin-top: 36px;
  }

  .testimonials-track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .testimonial-card {
    min-height: 210px;
    padding: 22px 18px 17px;
  }

  .testimonial-card blockquote {
    font-size: 11px;
  }

  .faq-layout {
    padding: 56px 0;
  }

  .faq-header h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 36px;
  }

  .faq-aside {
    overflow: visible;
    border-radius: 0;
  }

  .faq-aside::after {
    display: none;
  }

  .faq-image {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .faq-aside h3 {
    position: static;
    margin-top: 24px;
    color: var(--color-primary);
    font-size: 29px;
    text-shadow: none;
  }

  .faq-cta {
    position: static;
    margin-top: 22px;
  }

  .faq-question {
    gap: 14px;
    min-height: 62px;
    padding-left: 15px;
  }

  .faq-panel p {
    padding-right: 18px;
    padding-left: 15px;
  }

  .locations-layout {
    padding: 56px 0;
  }

  .locations-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .locations-heading h2 {
    margin-top: 20px;
    font-size: 32px;
  }

  .locations-intro {
    margin-top: 0;
  }

  .locations-intro > p {
    font-size: 12px;
  }

  .locations-list {
    margin-top: 36px;
  }

  .location-question {
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    gap: 11px;
    min-height: 74px;
  }

  .location-question > span:nth-child(2) {
    font-size: 13px;
  }

  .location-details {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0 0 14px;
    padding: 20px;
  }

  .location-details dl {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-layout {
    padding: 48px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    width: 146px;
    height: 86px;
    margin-bottom: 22px;
  }

  .footer-brand img {
    width: 146px;
  }

  .footer-top h2 {
    font-size: 32px;
  }

  .footer-top-content > p {
    font-size: 12px;
  }

  .footer-columns {
    gap: 36px 28px;
    margin-top: 38px;
  }
}

@media (max-width: 420px) {
  .locations-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .locations-actions .locations-cta {
    justify-content: space-between;
    width: 100%;
  }

  .legal-cookie-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-button--quiet {
    grid-column: auto;
  }

  .cookie-option {
    align-items: flex-start;
    gap: 14px;
  }

  .quote-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 12px);
    border-radius: 20px;
  }

  .quote-form {
    padding: 16px 14px 14px;
  }

  .quote-dialog h2 {
    font-size: 28px;
  }

  .quote-dialog-close {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .site-nav > a,
  .nav-dropdown-trigger {
    min-height: 52px;
    font-size: 16px;
  }

  .nav-dropdown.is-open > .nav-submenu {
    margin-bottom: 10px;
    padding: 12px;
  }

  .nav-submenu > a,
  .nav-submenu-trigger {
    min-height: 44px;
    font-size: 12px;
  }

  .nav-nested-submenu > a {
    min-height: 40px;
  }

  .site-nav > .nav-mobile-cta {
    min-height: 50px;
    margin-top: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 132px;
  }

  .why-us-visual {
    min-height: 310px;
  }

  .why-us-media--large {
    left: 0;
    width: 74%;
  }

  .why-us-media--small {
    width: 48%;
  }

  .why-us-benefits {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a::after,
  .nav-submenu,
  .nav-nested-submenu,
  .nav-dropdown-chevron,
  .nav-submenu-chevron,
  .nav-submenu-trigger,
  .nav-submenu > a,
  .nav-nested-submenu > a,
  .header-cta,
  .hero-cta,
  .service-breadcrumb a,
  .service-related-links a,
  .service-page-cta,
  .about-cta,
  .faq-cta,
  .locations-cta,
  .footer-cta,
  .cookie-button,
  .cookie-dialog-close,
  .cookie-toggle,
  .cookie-toggle::after,
  .quote-dialog-close,
  .quote-field input,
  .quote-field textarea,
  .quote-service-select select,
  .quote-submit,
  .booking-seal,
  .service-item,
  .service-item::before,
  .service-media-placeholder,
  .service-media-placeholder img,
  .about-image-placeholder img,
  .service-link,
  .process-card,
  .process-card-media,
  .project-media-placeholder,
  .project-cta,
  .project-service-links a {
    transition: none;
  }

  .service-gallery-item img {
    transition: none;
  }

  .service-benefits article[id] {
    transition: none;
  }

  .service-hero-backdrop,
  .service-hero-media,
  .service-hero-arrow,
  .hero-video,
  .service-gallery-trigger::after,
  .service-lightbox-image,
  .service-lightbox-close,
  .service-lightbox-arrow {
    transition: none;
  }

  .service-lightbox[open],
  .service-lightbox.is-closing,
  .service-lightbox[open]::backdrop,
  .service-lightbox.is-closing::backdrop,
  .service-lightbox-layout,
  .service-lightbox.is-closing .service-lightbox-layout {
    animation: none;
  }

  .quote-dialog[open] {
    animation: none;
  }

  .testimonial-arrow {
    transition: none;
  }

  .faq-item,
  .faq-toggle,
  .faq-toggle::after,
  .faq-panel {
    transition: none;
  }

  .location-item,
  .location-toggle,
  .location-panel {
    transition: none;
  }

  .footer-brand,
  .footer-brand img,
  .footer-nav a,
  .footer-social-link,
  .footer-contact a,
  .location-details dd a {
    transition: none;
  }

  .site-nav a,
  .nav-submenu,
  .nav-dropdown-chevron,
  .header-cta,
  .nav-toggle,
  .hero-media,
  .hero-content::before,
  .hero-content h1,
  .hero-content p,
  .hero-cta,
  .site-nav.is-open a {
    animation: none;
  }

  .hero-media {
    transform: none;
  }

  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }
}
