:root {
  --bg: #f2efe9;
  --surface: #fbf8f2;
  --surface-strong: #ffffff;
  --text: #1e1e1e;
  --muted: #666666;
  --accent: #202020;
  --accent-dark: #111111;
  --line: rgba(30, 30, 30, 0.12);
  --shadow: 0 20px 50px rgba(18, 18, 18, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1320px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Bricolage Grotesque", sans-serif;
  --header-offset: 77px;
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #2a2a2a #050505;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 100%);
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #050505;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2f2f2f 0%, #1b1b1b 100%);
  border: 2px solid #050505;
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #444444 0%, #242424 100%);
}

.home-page {
  background: #ffffff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: visible;
  background: #232323;
  border-bottom: 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  pointer-events: none;
  transition: transform 0.12s ease-out;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.header-inner {
  gap: 20px;
  padding: 6px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
}

.nav-link {
  border: 0;
  background: transparent;
  position: relative;
  padding: 6px 4px;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 22px);
  height: calc(100% + 10px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--surface-strong);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.95) 18%, rgba(255, 255, 255, 0.95) 82%, rgba(255, 255, 255, 0.16) 100%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.24);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  transform: translateY(-2px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-dropdown-label {
  position: relative;
  z-index: 1;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: rgba(29, 29, 29, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 901px) {
  .nav-dropdown-menu-products {
    grid-template-columns: minmax(0, 1fr) 248px;
    gap: 0 26px;
    min-width: 660px;
    padding: 16px;
  }

  .nav-products-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 2px 22px;
  }

  .nav-products-preview {
    display: grid;
    align-content: start;
    gap: 12px;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-products-preview-frame {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-products-preview-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.32s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-products-preview-img.is-swapping {
    opacity: 0;
    transform: scale(1.04);
  }

  .nav-products-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #141414;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }

  .nav-products-preview-btn i {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-products-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
  }

  .nav-products-preview-btn:hover i {
    transform: translateX(5px);
  }
}

.nav-product-thumb {
  display: none;
}

@media (max-width: 900px) {
  .nav-products-preview {
    display: none;
  }

  .nav-dropdown-menu-products {
    padding: 10px 0 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-products-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .nav-products-list .nav-dropdown-link {
    display: grid;
    gap: 10px;
    width: 100%;
    padding: 10px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }

  .nav-products-list .nav-dropdown-link::after {
    display: none;
  }

  .nav-products-list .nav-dropdown-link:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .nav-product-thumb {
    display: block;
    overflow: hidden;
    border-radius: 11px;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-product-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .site-nav .nav-link,
  .site-header .project-header-drawer .nav-link {
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    color: #ffffff;
  }

  .site-nav .nav-dropdown-link {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-nav {
    gap: 4px;
  }

  .nav-dropdown-menu {
    padding: 8px 0;
  }
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret,
.nav-dropdown.active .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-link {
  display: block;
  position: relative;
  width: fit-content;
  padding: 10px 12px 10px 0;
  border-radius: 10px;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-dropdown-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: calc(100% - 10px);
  height: 2px;
  border-radius: 999px;
  background: var(--surface-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown-link::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: calc(100% + 18px);
  height: calc(100% + 6px);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  color: var(--surface-strong);
  transform: translateX(8px);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.14);
}

.nav-dropdown-link:hover::before,
.nav-dropdown-link.active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-dropdown-link:hover::after,
.nav-dropdown-link.active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta {
  --header-cta-closed: 54px;
  --header-cta-open: 292px;
  --header-cta-current: var(--header-cta-closed);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: var(--header-cta-open);
  min-width: var(--header-cta-open);
  height: 40px;
  margin-left: 2px;
  padding: 0;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--header-cta-current);
  background: #ffffff;
  border: 2px solid #050505;
  border-radius: 999px;
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.1);
  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header-cta:hover::before {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  border-color: #050505;
}

.header-cta.is-open,
.header-cta:hover {
  --header-cta-current: var(--header-cta-open);
}

.header-cta-icon {
  position: absolute;
  left: calc(100% - var(--header-cta-current) + 12px);
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  font-size: 1.28rem;
  color: #050505;
  transform: translateY(-50%);
  transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta-text {
  position: absolute;
  left: calc(100% - var(--header-cta-current) + 50px);
  top: 50%;
  z-index: 1;
  display: inline-block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  color: #050505;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    left 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.15s steps(18, end),
    opacity 0.22s ease;
}

.header-cta.is-open .header-cta-text,
.header-cta:hover .header-cta-text {
  opacity: 1;
  width: 20.8ch;
  transform: translateY(-50%);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.social-link i {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  color: #ffffff;
}

.social-link:hover i {
  transform: rotate(360deg) scale(1.08);
}

.social-link[aria-label="Facebook"]:hover {
  background: #1877f2;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.35);
}

.social-link[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  box-shadow: 0 12px 24px rgba(221, 42, 123, 0.32);
}

.social-link[aria-label="Pinterest"]:hover {
  background: #e60023;
  box-shadow: 0 12px 24px rgba(230, 0, 35, 0.32);
}

.social-link[aria-label="TikTok"]:hover {
  background: #050505;
  box-shadow:
    -3px 3px 0 rgba(37, 244, 238, 0.72),
    3px -3px 0 rgba(254, 44, 85, 0.72),
    0 12px 24px rgba(0, 0, 0, 0.3);
}

.hero,
.page-hero {
  padding: 72px 0;
}

.home-slider {
  position: relative;
  padding: 0;
  background: #131313;
}

.home-slider-shell {
  position: relative;
  min-height: calc(100svh - var(--header-offset));
  background: #131313;
  overflow: hidden;
  isolation: isolate;
}

.home-slider-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 22%);
}

.home-slider-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: none;
}

.home-slider-stage {
  position: relative;
  min-height: inherit;
  perspective: 1800px;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateZ(0);
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}

.home-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.home-slide.is-entering,
.home-slide.is-leaving {
  visibility: visible;
}

.home-slide.is-entering {
  opacity: 1;
  z-index: 4;
}

.home-slide.is-leaving {
  opacity: 1;
  z-index: 3;
}

.home-slide-image,
.home-slide-overlay,
.home-slide-content {
  position: absolute;
  inset: 0;
}

.home-slide-image {
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
  filter: saturate(0.96) contrast(1.04);
  will-change: transform, clip-path, opacity, filter;
}

.home-slide.is-animating:not(.is-entering):not(.is-leaving) .home-slide-image {
  animation: slideZoom 7s ease forwards;
}

.home-slide.is-entering.is-forward .home-slide-image {
  animation: slideRevealForward 1.18s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.home-slide.is-entering.is-backward .home-slide-image {
  animation: slideRevealBackward 1.18s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.home-slide.is-leaving.is-forward .home-slide-image {
  animation: slideExitForward 0.9s cubic-bezier(0.55, 0, 0.16, 1) both;
}

.home-slide.is-leaving.is-backward .home-slide-image {
  animation: slideExitBackward 0.9s cubic-bezier(0.55, 0, 0.16, 1) both;
}

.home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.74) 0%, rgba(8, 8, 8, 0.48) 24%, rgba(8, 8, 8, 0.16) 48%, rgba(8, 8, 8, 0.06) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0) 100%);
  will-change: opacity, transform, clip-path;
}

.home-slide.is-entering.is-forward .home-slide-overlay {
  animation: overlayRevealForward 1.1s ease-out both;
}

.home-slide.is-entering.is-backward .home-slide-overlay {
  animation: overlayRevealBackward 1.1s ease-out both;
}

.home-slide.is-leaving .home-slide-overlay {
  animation: overlayFadeOut 1s ease both;
}

.home-slide::after {
  content: none;
  position: absolute;
  inset: 0;
  width: 24vw;
  min-width: 220px;
  max-width: 420px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.05) 70%, rgba(0, 0, 0, 0.16) 100%);
  backdrop-filter: blur(7px) saturate(1.1);
  transform: translateX(-140%) skewX(-14deg);
  opacity: 0;
}

.home-slide.is-animating::after {
  animation: slideSweep 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slide::before {
  content: none;
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 18%, rgba(255, 255, 255, 0.95) 82%, rgba(255, 255, 255, 0));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(255, 255, 255, 0.55),
    0 0 58px rgba(255, 255, 255, 0.22);
  transform: translateX(-140%);
  opacity: 0;
  z-index: 2;
}

.home-slide.is-animating::before {
  animation: slideDivider 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slide-content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, 760px);
  padding: 184px 54px 64px;
  color: #ffffff;
}

.home-slide-content > * {
  will-change: transform, opacity, filter;
}

.home-slide-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(44vw, 560px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.06) 100%);
  z-index: -1;
  will-change: transform, opacity;
}

.home-slide.is-entering .home-slide-content::before {
  animation: contentVeilIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-slide.is-leaving .home-slide-content::before {
  animation: contentVeilOut 0.9s ease both;
}

.home-slide.is-entering .home-slide-kicker {
  animation: contentLiftIn 0.8s 0.22s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.home-slide.is-entering .home-slide-content h1 {
  animation: contentLiftInStrong 0.96s 0.28s cubic-bezier(0.18, 1, 0.3, 1) both;
}

.home-slide.is-entering .home-slide-text {
  animation: contentLiftIn 0.84s 0.38s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.home-slide.is-entering .home-slide-link {
  animation: contentLiftIn 0.78s 0.48s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.home-slide.is-leaving .home-slide-kicker,
.home-slide.is-leaving .home-slide-content h1,
.home-slide.is-leaving .home-slide-text,
.home-slide.is-leaving .home-slide-link {
  animation: contentFadeOut 0.5s ease both;
}

.home-slide-kicker {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.home-slide-content h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.3vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}

.home-slide-text {
  max-width: 23ch;
  margin: 24px 0 0;
  font-size: clamp(0.94rem, 1.2vw, 1.22rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.home-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.home-slide-link::after {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: transform 0.28s ease, width 0.28s ease;
}

.home-slide-link:hover::after {
  width: 58px;
  transform: translateX(4px);
}

.home-products-intro {
  background: #ffffff;
  border-top: 1px solid rgba(20, 20, 20, 0.06);
}

.home-products-intro-inner {
  padding: 108px 0 118px;
}

.home-products-intro h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #171717;
}

.home-products-intro p {
  max-width: 980px;
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 1.8vw, 1.95rem);
  font-weight: 400;
  line-height: 1.45;
  color: #7a7a7a;
}

.home-products-grid {
  background: #ffffff;
  padding: 0 0 92px;
}

.home-products-grid-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  width: min(calc(100% - 32px), 1920px);
  margin: 0 auto;
  background: #e4ded5;
}

.home-product-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 420px;
  background: #111111;
  color: #ffffff;
  isolation: isolate;
  text-decoration: none;
}

.home-product-poster,
.home-product-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-product-poster {
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.home-product-overlay {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.14) 38%, rgba(6, 6, 6, 0.72) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.22) 0%, rgba(6, 6, 6, 0.05) 42%, rgba(6, 6, 6, 0.3) 100%);
  transition: background 0.42s ease;
  pointer-events: none;
}

.home-product-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -130%;
  z-index: 1;
  width: 56%;
  height: 150%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.04) 22%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.05) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
  pointer-events: none;
}

.home-product-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
}

.home-product-kicker {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.home-product-label {
  display: block;
  max-width: 9ch;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #ffffff;
  text-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.34s ease;
}

.home-product-description {
  display: block;
  max-width: 26ch;
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(10px);
  transition:
    max-height 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.36s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s ease;
}

.home-product-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.home-product-card:hover .home-product-poster {
  transform: scale(1.08);
  filter: brightness(0.88);
}

.home-product-card:hover .home-product-overlay {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.12) 0%, rgba(6, 6, 6, 0.16) 24%, rgba(6, 6, 6, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.18) 0%, rgba(6, 6, 6, 0.06) 42%, rgba(6, 6, 6, 0.36) 100%);
}

.home-product-card:hover::before {
  left: 142%;
  opacity: 1;
}

.home-product-card:hover .home-product-label {
  transform: translate3d(0, -4px, 0);
  letter-spacing: -0.05em;
}

.home-product-card:hover .home-product-kicker {
  transform: translate3d(0, -2px, 0);
  opacity: 1;
}

.home-product-card:hover .home-product-description {
  max-height: 160px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.home-product-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ===== Блок завантаження каталогу ===== */

.home-catalog {
  background: #1d1c1a;
  color: #ffffff;
}

.home-catalog + .home-finishes {
  padding-top: clamp(64px, 7vw, 104px);
}

.home-catalog-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(72px, 8vw, 116px) 0;
}

.home-catalog-copy .eyebrow {
  color: rgba(255, 255, 255, 0.46);
}

.home-catalog-copy h2 {
  margin: 18px 0 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-catalog-note {
  margin: 26px 0 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.62);
}

.home-catalog-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 82% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 62%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.home-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.home-catalog-card:hover::before {
  opacity: 1;
}

.home-catalog-file {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: clamp(84px, 8vw, 104px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-catalog-card:hover .home-catalog-file {
  transform: translateY(-4px) rotate(-3deg);
}

.home-catalog-sheet {
  display: block;
  width: 100%;
  height: auto;
}

.home-catalog-sheet-body {
  fill: #f4f1eb;
}

.home-catalog-sheet-fold {
  fill: #cfc9be;
}

.home-catalog-sheet-mark {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.02em;
  fill: #1b1b1b;
}

.home-catalog-arrow {
  position: absolute;
  right: -10px;
  bottom: -6px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #121212;
  font-size: 0.98rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42);
  animation: bf-catalog-pull 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.home-catalog-card:hover .home-catalog-arrow {
  animation: none;
  transform: translateY(4px) scale(1.08);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-catalog-action {
  display: grid;
  gap: 10px;
}

.home-catalog-action-label {
  position: relative;
  width: fit-content;
  padding-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.5vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.home-catalog-action-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-catalog-card:hover .home-catalog-action-label::after {
  transform: scaleX(1);
}

.home-catalog-action-meta {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes bf-catalog-pull {
  0%, 62%, 100% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(7px);
  }
  78% {
    transform: translateY(1px);
  }
  86% {
    transform: translateY(4px);
  }
}

@media (max-width: 900px) {
  .home-catalog-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .home-catalog-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-catalog-arrow {
    animation: none;
  }
}

.home-finishes {
  background: #ffffff;
  padding: 0 0 98px;
}

.home-finishes-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 42px;
  align-items: end;
}

.home-finishes-head h2 {
  margin: 14px 0 0;
  max-width: 11ch;
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.05em;
  color: #181818;
}

.home-finishes-note {
  max-width: 33ch;
  margin: 0 0 8px auto;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #7b7b7b;
}

.home-finishes-tabs {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.home-finishes-tab {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #c3c3c3;
  cursor: pointer;
  transition: color 0.28s ease;
}

.home-finishes-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: #2a2a2a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-finishes-tab:hover,
.home-finishes-tab.is-active {
  color: #232323;
}

.home-finishes-tab.is-active::after {
  transform: scaleX(1);
}

.home-finishes-panel {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.home-finishes-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.home-finishes-swatches {
  display: flex;
  gap: 3px;
  min-height: 620px;
}

.home-finish-swatch {
  position: relative;
  flex-grow: var(--swatch-flex);
  flex-basis: 0;
  flex-shrink: 1;
  overflow: hidden;
  background-color: var(--swatch-color);
  background-image:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.14)),
    var(--swatch-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  transition:
    flex-grow 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    filter 0.36s ease;
  cursor: pointer;
}

.home-finish-swatch::before,
.home-finish-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-finish-swatch::before {
  opacity: 0;
  transition: opacity 0.36s ease;
}

.home-finish-swatch::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.12) 100%);
}

.home-finish-swatch:hover {
  flex-grow: calc(var(--swatch-flex) + 0.8);
  transform: translateY(-10px);
  box-shadow: 0 26px 46px rgba(18, 18, 18, 0.18);
  filter: saturate(1.04);
  z-index: 1;
}

.home-finish-swatch:hover::before {
  opacity: 1;
}

.home-finish-label {
  position: absolute;
  left: 18px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--swatch-ink, #ffffff);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.home-finish-label span {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.home-finish-label strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.home-finish-swatch.is-metallic::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 10px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
}

.home-finish-swatch.is-structure-black::before,
.home-finish-swatch.is-textured-black::before,
.home-finish-swatch.is-textured-graphite::before,
.home-finish-swatch.is-textured-bronze::before,
.home-finish-swatch.is-textured-sand::before,
.home-finish-swatch.is-textured-olive::before,
.home-finish-swatch.is-textured-night::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 68% 34%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 42% 72%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16));
}

.home-finishes-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.home-finishes-footer p {
  max-width: 54ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: #777777;
}

.home-finishes-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 60px;
  padding: 0 28px;
  border: 1px solid rgba(25, 25, 25, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #272727 0%, #151515 100%);
  box-shadow: 0 18px 34px rgba(16, 16, 16, 0.12);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.home-finishes-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 38px rgba(16, 16, 16, 0.18);
  filter: brightness(1.04);
}

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

.home-keywords {
  background: #ffffff;
  padding: 0 0 92px;
}

.home-keywords-inner {
  position: relative;
  padding: 20px 0 0;
}

.home-keywords-title {
  max-width: 46ch;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.18;
  color: #111111;
}

.home-keywords-copy {
  position: relative;
  max-height: 255px;
  overflow: hidden;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: #1d1d1d;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-keywords-copy p {
  margin: 0 0 18px;
  max-width: 78ch;
}

.home-keywords-copy h3 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: #111111;
}

.home-keywords-copy h3:first-child {
  margin-top: 0;
}

.home-keywords-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.home-keywords.is-expanded .home-keywords-copy {
  max-height: 3200px;
}

.home-keywords.is-expanded .home-keywords-copy::after {
  opacity: 0;
}

.home-keywords-toggle {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #111111;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-keywords-toggle:hover {
  opacity: 0.72;
  transform: translateX(3px);
}

.home-contact {
  background: #313131;
  padding: 0;
}

.home-contact .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-contact-shell {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 25%),
    linear-gradient(180deg, #313131 0%, #272727 100%);
  box-shadow: none;
  color: #ffffff;
}

.home-contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  width: min(calc(100% - 72px), var(--container));
  margin: 0 auto;
  gap: 56px;
  align-items: start;
}

.home-contact-copy h2 {
  margin: 14px 0 0;
  max-width: 14ch;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.home-contact-intro {
  max-width: 42ch;
  margin: 26px 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.home-contact-steps {
  display: grid;
  gap: 34px;
  margin-top: 44px;
}

.home-contact-step {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 28px;
  align-items: start;
}

.home-contact-step-index {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
}

.home-contact-step p {
  max-width: 29ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #ffffff;
}

.home-contact-card {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 38%);
  pointer-events: none;
}

.home-contact-card-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.home-contact-card h3 {
  max-width: 16ch;
  margin: 14px 0 0;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.home-contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #1d1d1d;
  color: #ffffff;
  padding: 20px 22px;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.home-contact-form input::placeholder,
.home-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  outline: none;
  background: #202020;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.home-contact-form textarea {
  min-height: 164px;
  resize: vertical;
}

.home-contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.home-contact-submit,
.home-contact-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.home-contact-submit::after,
.home-contact-ghost::after {
  content: "\2197";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.home-contact-submit:hover::after,
.home-contact-ghost:hover::after {
  transform: translate(4px, -3px);
}

.home-contact-submit {
  flex: 1 1 240px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.16);
  color: #121212;
}

.home-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.22);
}

.home-contact-ghost {
  flex: 1 1 220px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

.home-contact-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.home-contact-meta {
  max-width: 42ch;
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.6);
}

.about-page {
  background: #ffffff;
}

.about-hero {
  position: relative;
  min-height: 24vh;
  overflow: hidden;
  background: #050505;
}

.about-hero-media,
.about-hero-overlay,
.about-hero-inner {
  position: absolute;
  inset: 0;
}

.about-hero-media {
  background-image: url("../img/%D0%BF%D1%80%D0%BE%20%D0%BD%D0%B0%D1%81.PNG");
  background-position: center center;
  background-size: cover;
  transform: scale(1.04);
}

.about-hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.56) 50%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.34) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px 0;
  gap: 14px;
}

.about-hero-inner > * {
  justify-self: center;
}

.about-hero-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-hero h1 {
  max-width: none;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.about-story {
  position: relative;
  padding: 36px 0 88px;
  margin-top: 0;
  z-index: 2;
}

.about-page .site-footer {
  background: #0b0b0b;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.about-page .footer-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.about-story-panel {
  display: grid;
  gap: 34px;
  padding: 48px 0 54px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.88fr);
  gap: 36px;
  align-items: start;
}

.about-story-content {
  display: grid;
  gap: 34px;
}

.about-story-head {
  display: grid;
  gap: 14px;
  max-width: 940px;
}

.about-story-head h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.1vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-story-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 900px;
}

.about-story-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #555555;
}

.about-story-copy strong {
  color: #171717;
  font-weight: 800;
}

.about-story-video-inline {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 6px;
}

.about-story-video-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.about-story-video-head p:last-child {
  margin: 0;
  max-width: 42ch;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-story-actions {
  display: flex;
  flex-wrap: wrap;
  padding-top: 8px;
}

.about-story-button {
  min-height: 58px;
  padding: 0 26px;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.about-story-visual {
  position: relative;
  margin: 0;
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.about-story-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  background: #0f0f0f;
  box-shadow: 0 24px 54px rgba(18, 18, 18, 0.16);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}

.about-story-video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
}

.about-story-video-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
  transition: inset 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.about-story-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
  transition: background 0.55s ease;
}

.about-story-video-shell:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 72px rgba(18, 18, 18, 0.22);
}

.about-story-video-shell:hover::before {
  inset: 22px;
}

.about-story-video-shell:hover::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.about-story-video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.58);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.32s ease;
}

.about-story-video-shell:hover .about-story-video-badge {
  transform: translateY(4px);
  background: rgba(12, 12, 12, 0.72);
}

.about-story-video-preview {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.about-story-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  transition: background 0.55s ease;
}

.about-story-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-story-video-play::before,
.about-story-video-play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.44);
  animation: aboutPlayPulse 2.2s ease-out infinite;
}

.about-story-video-play::after {
  animation-delay: 1.1s;
}

.about-story-video-play-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.32s ease;
}

.about-story-video-play-core i {
  margin-left: 4px;
  font-size: 1.35rem;
  color: #111111;
}

.about-story-video-shell:hover .about-story-video-preview {
  transform: scale(1.05);
  filter: contrast(1.03) saturate(1.02);
}

.about-story-video-shell:hover .about-story-video-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.about-story-video-shell:hover .about-story-video-play-core {
  transform: scale(1.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.about-story-video-trigger:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.22);
  outline-offset: 4px;
}

.about-story-visual img {
  width: 100%;
  height: min(760px, 100%);
  min-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(18, 18, 18, 0.16);
}

.about-story-visual figcaption {
  max-width: 22ch;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
  color: #766b5f;
}

.about-lead {
  padding: 24px 0 64px;
  background: linear-gradient(180deg, #2f2f2f 0%, #2b2b2b 100%);
}

.about-lead-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: 28px;
  min-height: 760px;
  padding: 42px 0 28px;
  background: transparent;
  border: 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
}

.about-lead-panel::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.035) calc(25% - 1px),
      rgba(255, 255, 255, 0.035) 25%
    );
  pointer-events: none;
}

.about-lead-panel::after {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02));
  opacity: 0.7;
  pointer-events: none;
}

.about-lead-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 820px;
  padding: 10px 0;
}

.about-lead-copy .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.about-lead-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-lead-copy p {
  margin: 0;
  max-width: 28ch;
  font-size: 1.18rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
}

.about-lead-copy strong {
  color: #ffffff;
  font-weight: 800;
}

.about-lead-quote {
  max-width: 30ch;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.about-lead-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 340px;
  min-height: 98px;
  margin-top: 18px;
  padding: 0 44px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: transparent;
  transition: transform 0.38s ease, background 0.38s ease, color 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.about-lead-button:hover {
  transform: translateY(-4px);
  background: #ffffff;
  color: #1c1c1c;
  border-color: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.12);
}

.about-lead-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  align-items: end;
  justify-items: center;
}

.about-lead-portrait {
  position: relative;
  width: min(100%, 660px);
  align-self: end;
}

.about-lead-portrait::before {
  content: "";
  position: absolute;
  inset: 10% 10% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 70%);
  filter: blur(26px);
  opacity: 0.18;
  transform: scale(0.92);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease;
  pointer-events: none;
}

.about-lead-portrait::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0) 72%);
  filter: blur(14px);
  opacity: 0.52;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease;
  pointer-events: none;
}

.about-lead-portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 0 6px rgba(255, 255, 255, 0.96))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.34));
  transform: translateY(0) scale(1);
  transform-origin: center bottom;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.about-lead-panel:hover .about-lead-portrait::before {
  transform: scale(1.06) translateY(-8px);
  opacity: 0.34;
}

.about-lead-panel:hover .about-lead-portrait::after {
  transform: scaleX(1.08);
  opacity: 0.72;
}

.about-lead-panel:hover .about-lead-portrait img {
  transform: translateY(-16px) scale(1.05) rotate(-1deg);
  filter:
    drop-shadow(0 0 0 6px rgba(255, 255, 255, 1))
    drop-shadow(0 32px 60px rgba(0, 0, 0, 0.44));
}

.about-lead-visual figcaption {
  position: absolute;
  left: 24px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  text-align: left;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.about-lead-panel:hover .about-lead-visual figcaption {
  transform: translateY(-6px);
}

.about-lead-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-lead-role {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: 18px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.84);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.video-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
}

.video-modal-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes aboutPlayPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.88);
  }

  70% {
    opacity: 0;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.slider-scroll-cue {
  position: absolute;
  left: 34px;
  bottom: 26px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-scroll-line {
  position: relative;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.slider-scroll-line::after {
  content: none;
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: scrollLine 1.8s ease-in-out infinite;
}

.slider-scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: scrollArrow 1.8s ease-in-out infinite;
}

.home-slider-nav {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.home-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-slider-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.home-slider-pagination {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.home-slider-dot {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 10px;
  min-width: 86px;
  padding: 18px 18px 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, background 0.35s ease;
}

.home-slider-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slider-dot.is-active::before,
.home-slider-dot:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.home-slider-dot:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.home-slider-dot-index,
.home-slider-dot-label {
  position: relative;
  z-index: 1;
}

.home-slider-dot-index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-slider-dot-label {
  font-size: 0.96rem;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.28s ease, max-width 0.36s ease;
}

.home-slider-dot.is-active {
  min-width: 256px;
  color: #ffffff;
}

.home-slider-dot.is-active .home-slider-dot-label {
  opacity: 1;
  max-width: 180px;
}

.home-slider-dot.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.94);
  transform-origin: left center;
  animation: sliderProgress 5.8s linear forwards;
}

.hero-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d6d58;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-text,
.feature-card p,
.contact-list,
.contact-form span {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--surface-strong);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-card,
.feature-card,
.contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.features,
.contacts-section {
  padding: 24px 0 72px;
}

.features-alt {
  padding-top: 0;
}

.section-heading {
  margin-bottom: 24px;
}

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

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

.feature-card,
.contact-card {
  padding: 28px;
}

.feature-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.page-hero-compact {
  padding-bottom: 16px;
}

.contact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(188, 108, 37, 0.5);
  box-shadow: 0 0 0 4px rgba(188, 108, 37, 0.12);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.contacts-page {
  background: #313131;
}

.contact-showcase {
  padding: 64px 0 72px;
  color: #ffffff;
}

.contact-showcase-head {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.contacts-page .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.contact-showcase-head h1 {
  max-width: 16ch;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.contact-form-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 2.1fr);
  gap: 28px;
}

.contact-form-stack {
  display: grid;
  gap: 22px;
}

.contact-form-showcase label {
  display: grid;
  gap: 0;
}

.contact-form-showcase span {
  display: none;
}

.contact-form-showcase input,
.contact-form-showcase textarea {
  width: 100%;
  padding: 26px 28px;
  color: #ffffff;
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow: none;
}

.contact-form-showcase input::placeholder,
.contact-form-showcase textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.contact-form-showcase input:focus,
.contact-form-showcase textarea:focus {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.contact-form-message textarea {
  min-height: 100%;
  resize: vertical;
}

.contact-form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
}

.contact-disclaimer {
  max-width: 1100px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-disclaimer-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 800;
}

.contact-disclaimer p {
  margin: 0;
  line-height: 1.6;
}

.contact-submit {
  min-width: 188px;
  min-height: 88px;
  padding: 0 28px;
  border: 0;
  background: #f2f2f2;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-submit:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.contact-map-block {
  margin-top: 52px;
}

.contact-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.contact-map-head h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.15;
}

.route-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-display);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.route-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.contact-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.contacts-page .site-footer {
  background: #0b0b0b;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.contacts-page .footer-inner p {
  color: rgba(255, 255, 255, 0.78);
}

body.project-modal-open {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.56);
  backdrop-filter: blur(9px);
}

.project-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 30px 30px 28px;
  background: rgba(251, 248, 242, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
}

.project-modal.is-open .project-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.project-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.project-modal-close:hover {
  transform: rotate(90deg);
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.18);
}

.project-modal-brand {
  position: absolute;
  top: 22px;
  right: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.project-modal-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: saturate(0) contrast(1.2);
  opacity: 0.9;
}

.project-modal-head {
  display: grid;
  gap: 12px;
  padding-right: 170px;
}

.project-modal-head p {
  margin: 0;
}

.project-modal-head h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.project-modal-note {
  color: #6f6f6f;
  font-size: 0.98rem;
  line-height: 1.6;
}

.project-modal-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.project-modal-form label {
  display: grid;
  gap: 8px;
}

.project-modal-form span {
  color: #6c6254;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-modal-form input,
.project-modal-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #171717;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.project-modal-form input:focus,
.project-modal-form textarea:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.34);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
  background: #ffffff;
}

.project-modal-form textarea {
  min-height: 132px;
  resize: vertical;
}

.project-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.project-modal-meta {
  max-width: 28ch;
  color: #777777;
  font-size: 0.92rem;
  line-height: 1.55;
}

.project-modal-submit {
  min-width: 220px;
  min-height: 56px;
  border: 0;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.project-modal-submit:hover {
  background: #000000;
  transform: translateY(-2px);
}

.home-blank {
  min-height: calc(100vh - 360px);
  background: #ffffff;
}

.site-footer-home {
  border-top: 0;
  background: #050505;
  color: #ffffff;
}

.footer-home-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr 1fr 1.6fr;
  gap: 28px;
  padding: 44px 0 28px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
}

.footer-brand {
  gap: 16px;
}

.footer-column {
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  width: 96px;
  height: 96px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-name,
.footer-title,
.branch-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand-name {
  font-size: 1.35rem;
}

.footer-note,
.footer-address p,
.branch-item p,
.footer-bottom-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-menu {
  display: grid;
  gap: 10px;
}

.footer-menu a,
.footer-download {
  width: fit-content;
  color: #ffffff;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-menu a:hover,
.footer-download:hover {
  opacity: 0.76;
  transform: translateX(4px);
}

.footer-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-address {
  display: grid;
  gap: 6px;
}

.footer-title-small {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-branches {
  gap: 16px;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.branch-item {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-item h3 {
  font-size: 0.95rem;
}

.footer-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-rail {
  position: fixed;
  right: 0;
  top: auto;
  bottom: 26px;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: none;
}

.floating-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 58px;
  height: 60px;
  margin-left: auto;
  padding: 0 22px 0 12px;
  background: rgba(23, 23, 23, 0.96);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-link:hover {
  width: 242px;
  transform: translateX(-10px) scale(1.04);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.floating-link:hover::before {
  opacity: 1;
}

.floating-link-icon,
.floating-link-text {
  position: relative;
  z-index: 1;
}

.floating-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  font-size: 1.95rem;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-link-text {
  margin-left: 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-link:hover .floating-link-text {
  opacity: 1;
  transform: translateX(0);
}

.floating-link:hover .floating-link-icon {
  transform: scale(1.14);
}

.floating-link-maps::before {
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.12), rgba(52, 168, 83, 0.16));
}

.floating-link-maps .floating-link-icon {
  background: linear-gradient(180deg, #4285f4 0%, #34a853 34%, #fbbc05 68%, #ea4335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.floating-link-youtube::before {
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.16), rgba(255, 90, 90, 0.08));
}

.floating-link-youtube .floating-link-icon {
  color: #ff2020;
}

.floating-link-phone::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.floating-link-phone .floating-link-icon {
  color: #ffffff;
  transform-origin: 50% 62%;
  animation: bf-phone-ring 4.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

.floating-link-phone::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 66%);
  opacity: 0;
  pointer-events: none;
  animation: bf-phone-halo 4.2s ease-out infinite;
}

.floating-link-phone:hover .floating-link-icon,
.floating-link-phone:hover::after {
  animation: none;
}

@keyframes bf-phone-ring {
  0%, 60%, 88%, 100% {
    transform: rotate(0deg) scale(1);
  }
  64% {
    transform: rotate(-13deg) scale(1.06);
  }
  68% {
    transform: rotate(11deg) scale(1.06);
  }
  72% {
    transform: rotate(-9deg) scale(1.05);
  }
  76% {
    transform: rotate(7deg) scale(1.03);
  }
  80% {
    transform: rotate(-4deg) scale(1.02);
  }
}

@keyframes bf-phone-halo {
  0%, 58% {
    opacity: 0;
    transform: scale(0.55);
  }
  66% {
    opacity: 1;
    transform: scale(0.85);
  }
  94%, 100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-link-phone .floating-link-icon,
  .floating-link-phone::after {
    animation: none;
  }
}

.floating-link-telegram::before {
  background: linear-gradient(90deg, rgba(34, 158, 217, 0.18), rgba(34, 158, 217, 0.06));
}

.floating-link-telegram .floating-link-icon {
  color: #229ed9;
}

.scroll-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px 10px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.96);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.scroll-top:hover::before {
  opacity: 1;
}

.scroll-top-icon,
.scroll-top-text {
  position: relative;
  z-index: 1;
}

.scroll-top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b0b0b;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-top-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-top:hover .scroll-top-icon {
  transform: translateY(-2px) rotate(-10deg);
}

@keyframes slideZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes slideRevealForward {
  0% {
    clip-path: inset(0 0 0 100%);
    transform: scale(1.12) translateX(3.5%) rotate(0.2deg);
    filter: saturate(0.88) contrast(1.04) brightness(0.9);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1.08) translateX(0) rotate(0);
    filter: saturate(0.98) contrast(1.04) brightness(1);
  }
}

@keyframes slideRevealBackward {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.12) translateX(-3.5%) rotate(-0.2deg);
    filter: saturate(0.88) contrast(1.04) brightness(0.9);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1.08) translateX(0) rotate(0);
    filter: saturate(0.98) contrast(1.04) brightness(1);
  }
}

@keyframes slideExitForward {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0.64;
  }
}

@keyframes slideExitBackward {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 100%);
    opacity: 0.64;
  }
}

@keyframes overlayRevealForward {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    transform: translateX(28px);
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes overlayRevealBackward {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(-28px);
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.82;
  }
}

@keyframes contentVeilIn {
  0% {
    opacity: 0;
    transform: translateX(-54px) scaleX(1.08);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes contentVeilOut {
  0% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(18px) scaleX(0.98);
  }
}

@keyframes contentLiftIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes contentLiftInStrong {
  0% {
    opacity: 0;
    transform: translate3d(0, 56px, 0) scale(0.96);
    filter: blur(16px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes contentFadeOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    filter: blur(8px);
  }
}

@keyframes sliderProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 0;
  }
}

@keyframes scrollArrow {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.8;
  }

  50% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-offset: 143px;
  }

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

  .hero-grid,
  .contacts-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-home-grid,
  .branches-grid {
    grid-template-columns: 1fr;
  }

  .home-slider {
    padding: 0;
  }

  .home-slider-shell {
    min-height: calc(100svh - var(--header-offset));
  }

  .home-slide-content {
    width: min(100%, 700px);
    padding: 184px 28px 124px;
  }

  .home-slide-text {
    max-width: 28ch;
  }

  .home-products-intro-inner {
    padding: 76px 0 84px;
  }

  .home-products-intro p {
    max-width: 760px;
  }

  .home-finishes {
    padding-bottom: 84px;
  }

  .home-products-grid-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .home-product-card {
    min-height: 360px;
  }

  .home-product-content {
    padding: 18px 18px 20px;
  }

  .home-product-kicker {
    font-size: 0.7rem;
  }

  .home-product-label {
    max-width: 10ch;
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  }

  .home-product-description {
    max-width: 28ch;
    font-size: 0.9rem;
  }

  .home-finishes-head,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-finishes-head {
    gap: 24px;
  }

  .home-finishes-head h2 {
    max-width: 12ch;
  }

  .home-finishes-note {
    max-width: 52ch;
    margin-left: 0;
  }

  .home-finishes-swatches {
    min-height: 540px;
  }

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

  .home-contact {
    padding-bottom: 0;
  }

  .home-contact-shell {
    padding: 52px 0 60px;
  }

  .home-contact-copy h2 {
    max-width: 14ch;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  }

  .home-contact-step {
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .home-contact-card {
    max-width: 760px;
  }

  .home-contact-card h3 {
    max-width: 17ch;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  }

  .home-keywords {
    padding-bottom: 74px;
  }

  .home-keywords-copy {
    max-height: 235px;
  }

  .about-hero {
    min-height: 20vh;
  }

  .about-story {
    margin-top: 0;
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .about-story-panel {
    padding: 38px 0 42px;
  }

  .about-story-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-story-visual {
    max-width: 520px;
  }

  .about-story-video-shell {
    aspect-ratio: 16 / 8.4;
  }

  .about-lead {
    padding-bottom: 78px;
  }

  .about-lead-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 32px 30px 18px;
  }

  .about-lead-copy {
    max-width: none;
  }

  .about-lead-copy h2 {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .about-lead-copy p,
  .about-lead-quote {
    max-width: none;
  }

  .about-lead-button {
    min-width: 300px;
    min-height: 82px;
  }

  .about-lead-portrait {
    width: min(100%, 560px);
  }

  .about-lead-visual figcaption {
    left: 12px;
    bottom: 18px;
  }

  .home-slider-nav {
    right: 22px;
    left: 22px;
    bottom: 22px;
    justify-content: space-between;
  }

  .home-slider-pagination {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-slider-pagination::-webkit-scrollbar {
    display: none;
  }

  .home-slider-dot.is-active {
    min-width: 210px;
  }

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

  .contact-form-footer,
  .contact-map-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-submit {
    min-height: 72px;
  }

  .site-nav {
    margin-left: 0;
    justify-content: flex-start;
  }

  .header-cta {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    padding-right: 18px;
    --header-cta-current: 100%;
  }

  .header-cta::before {
    width: 100%;
  }

  .header-cta,
  .header-cta.is-open,
  .header-cta:hover {
    width: 100%;
    min-width: 0;
  }

  .header-cta-icon {
    left: 14px;
  }

  .header-cta-text {
    left: 46px;
    width: auto;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    transition: none;
  }

  .project-modal-dialog {
    width: min(100%, 620px);
  }

  .project-modal-brand {
    width: 80px;
    height: 80px;
    right: 72px;
  }

  .project-modal-brand img {
    width: 50px;
    height: 50px;
  }

  .project-modal-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-modal-submit {
    min-width: 0;
    width: 100%;
  }

  .nav-dropdown-menu {
    left: 0;
    min-width: 210px;
  }

  .floating-link {
    width: 54px;
    height: 56px;
  }

  .floating-link:hover {
    width: 220px;
  }

  h1 {
    max-width: none;
  }

  .hero-card img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 171px;
  }

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

  .home-blank {
    min-height: 40vh;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .header-cta {
    height: 38px;
    padding-left: 12px;
  }

  .header-cta-text {
    margin-left: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  .project-modal {
    padding: 14px;
  }

  .project-modal-dialog {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .project-modal-brand {
    top: 18px;
    right: 60px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .project-modal-brand img {
    width: 36px;
    height: 36px;
  }

  .project-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .project-modal-head {
    gap: 10px;
    padding-right: 96px;
  }

  .project-modal-head h2 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .project-modal-note,
  .project-modal-meta {
    font-size: 0.9rem;
  }

  .project-modal-form {
    margin-top: 20px;
    gap: 14px;
  }

  .project-modal-form input,
  .project-modal-form textarea {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .project-modal-submit {
    min-height: 52px;
    font-size: 0.82rem;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-dialog {
    padding: 12px;
    border-radius: 18px;
  }

  .video-modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.active .nav-dropdown-menu {
    display: grid;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .home-slider {
    padding: 0;
  }

  .home-slider-shell {
    min-height: calc(100svh - var(--header-offset));
  }

  .home-slide-content {
    width: 100%;
    padding: 144px 22px 138px;
  }

  .home-slide-content h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .home-slide-text {
    max-width: none;
    margin-top: 18px;
    font-size: 1rem;
  }

  .home-slide-link {
    margin-top: 28px;
    font-size: 0.96rem;
  }

  .home-products-intro-inner {
    padding: 56px 0 62px;
  }

  .home-products-intro h2 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .home-products-intro p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-products-grid {
    padding-bottom: 56px;
  }

  .home-products-grid-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 20px), 1920px);
  }

  .home-product-card {
    min-height: 250px;
  }

  .home-product-content {
    gap: 8px;
    padding: 14px 14px 16px;
  }

  .home-product-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .home-product-label {
    max-width: 8ch;
    font-size: clamp(1.12rem, 5vw, 1.6rem);
    line-height: 0.98;
  }

  .home-product-description {
    max-width: none;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .home-finishes {
    padding-bottom: 62px;
  }

  .home-finishes-head {
    gap: 18px;
  }

  .home-finishes-head h2 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1;
  }

  .home-finishes-note {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .home-finishes-tabs {
    gap: 24px;
    margin-top: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-finishes-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-finishes-tab {
    padding-bottom: 14px;
    white-space: nowrap;
    font-size: 0.94rem;
  }

  .home-finishes-panel {
    margin-top: 24px;
  }

  .home-finishes-swatches {
    min-height: 340px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .home-finishes-swatches::-webkit-scrollbar {
    display: none;
  }

  .home-finish-swatch {
    min-width: 108px;
  }

  .home-finish-label {
    left: 12px;
    bottom: 14px;
    gap: 12px;
  }

  .home-finish-label span {
    font-size: 0.72rem;
  }

  .home-finish-label strong {
    font-size: 0.84rem;
  }

  .home-finishes-footer {
    gap: 18px;
    margin-top: 18px;
  }

  .home-finishes-footer p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .home-finishes-cta {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .home-keywords {
    padding-bottom: 56px;
  }

  .home-keywords-copy {
    max-height: 210px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .home-keywords-copy::after {
    height: 82px;
  }

  .home-keywords-toggle {
    margin-top: 18px;
    font-size: 1.24rem;
  }

  .home-contact {
    padding-bottom: 0;
  }

  .home-contact-shell {
    padding: 36px 0 42px;
    border-radius: 0;
  }

  .home-contact-grid {
    width: min(calc(100% - 32px), var(--container));
  }

  .home-contact-copy h2 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .home-contact-intro {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .home-contact-steps {
    gap: 24px;
    margin-top: 28px;
  }

  .home-contact-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-contact-step-index {
    font-size: 3rem;
    -webkit-text-stroke-width: 1.2px;
  }

  .home-contact-step p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .home-contact-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .home-contact-card h3 {
    max-width: none;
    font-size: clamp(1.1rem, 6.2vw, 1.45rem);
  }

  .home-contact-form {
    margin-top: 22px;
    gap: 14px;
  }

  .home-contact-form input,
  .home-contact-form textarea {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .home-contact-form textarea {
    min-height: 138px;
  }

  .home-contact-actions {
    flex-direction: column;
    gap: 12px;
  }

  .home-contact-submit,
  .home-contact-ghost {
    flex: 0 0 56px;
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 0.8rem;
    letter-spacing: 0.055em;
  }

  .home-contact-meta {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .about-hero-inner {
    gap: 10px;
  }

  .about-hero-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .about-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .about-story {
    margin-top: 0;
    padding-top: 22px;
    padding-bottom: 52px;
  }

  .about-story-panel {
    gap: 26px;
    padding: 28px 0 30px;
    border-radius: 0;
  }

  .about-story-layout,
  .about-story-content {
    gap: 26px;
  }

  .about-story-head {
    gap: 12px;
  }

  .about-story-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .about-story-copy p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .about-story-video-head p:last-child {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .about-story-visual {
    max-width: none;
  }

  .about-story-visual img {
    min-height: 380px;
    border-radius: 20px;
  }

  .about-story-video-shell {
    border-radius: 20px;
    aspect-ratio: 16 / 9;
  }

  .about-story-video-shell::before {
    inset: 12px;
    border-radius: 16px;
  }

  .about-story-video-badge {
    top: 14px;
    left: 14px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .about-story-video-play {
    width: 84px;
    height: 84px;
  }

  .about-story-video-play-core {
    width: 62px;
    height: 62px;
  }

  .about-story-video-play-core i {
    font-size: 1rem;
  }

  .about-story-visual figcaption {
    max-width: none;
    margin-left: 0;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .about-story-button {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .about-lead {
    padding-bottom: 56px;
  }

  .about-lead-panel {
    gap: 20px;
    padding: 24px 22px 14px;
  }

  .about-lead-copy {
    gap: 16px;
  }

  .about-lead-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .about-lead-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .about-lead-quote {
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .about-lead-button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 0 24px;
    font-size: 0.92rem;
  }

  .about-lead-portrait {
    width: min(100%, 420px);
  }

  .about-lead-visual figcaption {
    position: static;
    margin-top: 8px;
    justify-self: start;
  }

  .about-lead-name {
    font-size: 1rem;
  }

  .about-lead-role {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .slider-scroll-cue {
    left: 22px;
    bottom: 28px;
  }

  .slider-scroll-line {
    width: 54px;
  }

  .home-slider-nav {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 12px;
  }

  .home-slider-arrow {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .home-slider-pagination {
    gap: 8px;
  }

  .home-slider-dot {
    min-width: 68px;
    padding: 14px 14px 12px;
  }

  .home-slider-dot.is-active {
    min-width: 148px;
  }

  .home-slider-dot-label {
    font-size: 0.82rem;
  }

  .contact-showcase {
    padding-top: 48px;
  }

  .contact-showcase-head {
    margin-bottom: 32px;
  }

  .contact-form-showcase input,
  .contact-form-showcase textarea {
    padding: 20px 18px;
  }

  .contact-map-frame iframe {
    height: 320px;
  }

  .floating-rail {
    right: 0;
    gap: 10px;
  }

  .floating-link {
    width: 50px;
    height: 52px;
    padding-left: 10px;
    padding-right: 14px;
  }

  .floating-link:hover {
    width: 168px;
    transform: translateX(-6px) scale(1.03);
  }

  .floating-link-icon {
    min-width: 26px;
    font-size: 1.7rem;
  }

  .floating-link-text {
    margin-left: 12px;
    font-size: 0.88rem;
  }

  .scroll-top {
    left: 14px;
    bottom: 14px;
    min-height: 52px;
    padding-right: 14px;
  }

  .scroll-top-icon {
    width: 34px;
    height: 34px;
  }

  .scroll-top-text {
    font-size: 0.82rem;
  }

  .footer-home-grid {
    padding-top: 34px;
  }

  .footer-bottom-line {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }

  .hero,
  .page-hero,
  .features,
  .contacts-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

.feature-card,
  .contact-card {
    padding: 22px;
  }
}

.projects-page {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 18%),
    linear-gradient(180deg, #faf7f1 0%, #f0ece4 100%);
}

.projects-hero {
  position: relative;
  padding: 78px 0 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, #fbf9f5 0%, #f5f0e8 100%);
}

.projects-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 32px), var(--container));
  height: 1px;
  background: rgba(24, 24, 24, 0.14);
  transform: translateX(-50%);
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.projects-hero-copy {
  display: grid;
  gap: 18px;
}

.projects-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.55vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #181818;
}

.projects-hero-text {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}

.projects-hero-text p {
  margin: 0;
  color: rgba(30, 30, 30, 0.8);
  font-size: 1.06rem;
  line-height: 1.78;
}

.projects-hero-link,
.projects-closing-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1b1b1b;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.35s ease, letter-spacing 0.35s ease, transform 0.35s ease;
}

.projects-hero-link::after,
.projects-closing-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease, transform 0.35s ease;
}

.projects-hero-link:hover,
.projects-closing-link:hover {
  gap: 18px;
  letter-spacing: 0.06em;
  transform: translateX(6px);
}

.projects-hero-link:hover::after,
.projects-closing-link:hover::after {
  width: 70px;
  transform: translateX(4px);
}

.projects-gallery {
  width: min(calc(100% - 32px), 1680px);
  margin: 0 auto;
  padding: 34px 0 44px;
}

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

.projects-card {
  --cursor-x: 50%;
  --cursor-y: 50%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #111111;
  isolation: isolate;
}

.projects-card-wide {
  min-height: 560px;
}

.projects-card-tall {
  min-height: 560px;
}

.projects-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  cursor: pointer;
}

.projects-card-media,
.projects-card-media img,
.projects-card-overlay {
  position: absolute;
  inset: 0;
}

.projects-card-media {
  overflow: hidden;
}

.projects-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s ease;
}

.projects-card-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.02) 32%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.18) 100%);
  transition: background 0.7s ease, opacity 0.7s ease;
}

.projects-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
  padding: 28px 28px 28px;
  transition: transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-card-content::before {
  content: "";
  position: absolute;
  left: 28px;
  width: 68px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: opacity 0.55s ease, transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-card-index {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease, letter-spacing 0.45s ease, opacity 0.45s ease;
  transition-delay: 0s;
}

.projects-card h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-wrap: balance;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), text-shadow 0.7s ease, letter-spacing 0.5s ease;
  transition-delay: 0.04s;
}

.projects-card-note {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.45;
  opacity: 0.92;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease, opacity 0.45s ease;
  transition-delay: 0.08s;
}

.projects-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.45s ease, letter-spacing 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
  transition-delay: 0.12s;
}

.projects-card-cta::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 0.45s ease, transform 0.45s ease;
}

.projects-card:hover .projects-card-media img,
.projects-card:focus-within .projects-card-media img {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.02);
}

.projects-card:hover .projects-card-content,
.projects-card:focus-within .projects-card-content {
  transform: translateY(-10px);
}

.projects-card:hover .projects-card-content::before,
.projects-card:focus-within .projects-card-content::before {
  opacity: 0.92;
  transform: scaleX(1);
}

.projects-card:hover .projects-card-overlay,
.projects-card:focus-within .projects-card-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.06) 28%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.28) 100%);
}

.projects-card:hover .projects-card-index,
.projects-card:focus-within .projects-card-index {
  color: #ffffff;
  letter-spacing: 0.22em;
  opacity: 1;
  transform: translateY(-10px);
}

.projects-card:hover h2,
.projects-card:focus-within h2 {
  transform: translateY(-14px);
  letter-spacing: -0.058em;
  text-shadow: 0 18px 24px rgba(0, 0, 0, 0.24);
}

.projects-card:hover .projects-card-note,
.projects-card:focus-within .projects-card-note {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: translateY(-10px);
}

.projects-card:hover .projects-card-cta,
.projects-card:focus-within .projects-card-cta {
  gap: 20px;
  letter-spacing: 0.11em;
  transform: translateY(-8px);
}

.projects-card:hover .projects-card-cta::after,
.projects-card:focus-within .projects-card-cta::after {
  width: 74px;
  transform: translateX(6px);
}

.projects-closing {
  padding: 18px 0 86px;
}

.projects-closing-panel {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: 42px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.projects-closing-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.projects-closing-panel p:last-of-type {
  margin: 0;
  color: rgba(30, 30, 30, 0.8);
  font-size: 1.05rem;
  line-height: 1.76;
}

@media (max-width: 1180px) {
  .projects-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  }

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

  .projects-card,
  .projects-card-wide,
  .projects-card-tall {
    grid-column: span 1;
    min-height: 520px;
  }
}

@media (max-width: 960px) {
  .projects-hero {
    padding: 56px 0 38px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }

  .projects-card,
  .projects-card-wide,
  .projects-card-tall {
    grid-column: span 1;
    min-height: 520px;
  }

  .projects-card h2 {
    max-width: 12ch;
    font-size: clamp(1.6rem, 4.4vw, 2.35rem);
  }
}

@media (max-width: 720px) {
  .projects-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.6rem, 8.4vw, 2.4rem);
  }

  .projects-hero-text p,
  .projects-closing-panel p:last-of-type {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .projects-gallery {
    width: min(calc(100% - 20px), 1680px);
    padding-top: 22px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .projects-card,
  .projects-card-wide,
  .projects-card-tall {
    min-height: 430px;
  }

  .projects-card-content {
    padding: 24px 20px 24px;
  }

  .projects-card-note {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .projects-closing {
    padding-bottom: 60px;
  }
}

.architects-page {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 16%),
    linear-gradient(180deg, #f9f6f0 0%, #f0ebe3 100%);
}

.architects-page .site-footer {
  background: #121212;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.architects-page .footer-inner p {
  color: rgba(255, 255, 255, 0.7);
}

.architects-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, #faf7f1 0%, #f1ece4 100%);
}

.architects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.66), transparent 22%);
  pointer-events: none;
}

.architects-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 56px;
  align-items: center;
}

.architects-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.architects-hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  color: rgba(30, 30, 30, 0.76);
  font-size: 1.08rem;
  line-height: 1.76;
}

.architects-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
  margin-top: 30px;
}

.architects-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #151515;
  transition: gap 0.34s ease, transform 0.34s ease, letter-spacing 0.34s ease;
}

.architects-inline-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width 0.34s ease, transform 0.34s ease;
}

.architects-inline-link:hover {
  gap: 18px;
  transform: translateX(6px);
  letter-spacing: 0.07em;
}

.architects-inline-link:hover::after {
  width: 66px;
  transform: translateX(4px);
}

.architects-hero-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.architects-hero-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(30, 30, 30, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.architects-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 1px;
  background: #1b1b1b;
}

.architects-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 34px;
}

.architects-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 32px;
  background: #111111;
  box-shadow: 0 32px 70px rgba(15, 15, 15, 0.16);
}

.architects-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.architects-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.architects-hero-note {
  position: absolute;
  left: 0;
  bottom: 96px;
  max-width: 280px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0.96) 0%, rgba(16, 16, 16, 0.96) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.architects-hero-note p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.64;
}

.architects-hero-note-kicker {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.architects-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.architects-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.06);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #161616;
}

.architects-value {
  padding: 20px 0 28px;
}

.architects-value-shell {
  display: grid;
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.architects-value-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: end;
}

.architects-value-intro .eyebrow,
.architects-value-intro h2 {
  grid-column: 1;
}

.architects-value-intro h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.architects-value-intro p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 8px auto;
  max-width: 35ch;
  color: rgba(30, 30, 30, 0.74);
  font-size: 1.03rem;
  line-height: 1.72;
}

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

.architects-value-card,
.architects-library-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.54) 100%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 44px rgba(18, 18, 18, 0.08);
}

.architects-value-card {
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 28px;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.architects-value-card::before,
.architects-library-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.architects-value-card:hover,
.architects-library-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(18, 18, 18, 0.12);
}

.architects-value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #161616;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.architects-value-card h3,
.architects-library-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #151515;
}

.architects-value-card p:last-child,
.architects-library-card p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(30, 30, 30, 0.74);
  line-height: 1.72;
}

.architects-library {
  padding: 26px 0 36px;
}

.architects-library-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.architects-library-copy {
  display: grid;
  gap: 18px;
  align-self: start;
  padding-top: 14px;
}

.architects-library-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3.8vw, 3.6rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.architects-library-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 34ch;
  color: rgba(30, 30, 30, 0.74);
  font-size: 1.04rem;
  line-height: 1.74;
}

.architects-library-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.architects-library-card {
  display: grid;
  gap: 16px;
  min-height: 246px;
  padding: 28px;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.architects-library-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7d6d58;
}

.architects-collab {
  padding: 24px 0 30px;
}

.architects-collab-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 22%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 25%),
    linear-gradient(180deg, #232323 0%, #111111 100%);
  box-shadow: 0 34px 64px rgba(10, 10, 10, 0.18);
  color: #ffffff;
}

.architects-collab-copy {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-bottom: 34px;
}

.architects-collab-copy .eyebrow,
.architects-cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.architects-collab-copy h2,
.architects-cta-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #ffffff;
}

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

.architects-collab-step {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 26px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.architects-collab-step-index {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.architects-collab-step h3 {
  font-size: 1.18rem;
  line-height: 1.06;
  color: #ffffff;
}

.architects-collab-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.architects-cta {
  padding: 12px 0 88px;
}

.architects-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding-top: 38px;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
}

.architects-cta-copy {
  display: grid;
  gap: 16px;
}

.architects-cta-copy p:last-child {
  margin: 0;
  max-width: 48ch;
  color: rgba(30, 30, 30, 0.74);
  font-size: 1.03rem;
  line-height: 1.72;
}

.architects-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  justify-content: flex-end;
}

.architects-inline-link-light {
  color: #161616;
}

@media (max-width: 1180px) {
  .architects-hero-grid,
  .architects-library-grid,
  .architects-value-intro,
  .architects-cta-panel {
    grid-template-columns: 1fr;
  }

  .architects-hero-grid,
  .architects-library-grid {
    gap: 34px;
  }

  .architects-value-intro p:last-child {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
  }

  .architects-value-grid,
  .architects-collab-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architects-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .architects-hero {
    padding: 56px 0 40px;
  }

  .architects-hero-visual {
    padding-left: 0;
  }

  .architects-hero-note {
    position: static;
    max-width: none;
  }

  .architects-hero-tags {
    justify-content: flex-start;
  }

  .architects-library-cards,
  .architects-value-grid,
  .architects-collab-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .architects-hero,
  .architects-value,
  .architects-library,
  .architects-collab,
  .architects-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .architects-hero-copy h1,
  .architects-value-intro h2,
  .architects-library-copy h2,
  .architects-collab-copy h2,
  .architects-cta-copy h2 {
    max-width: none;
  }

  .architects-hero-text,
  .architects-library-copy p:not(.eyebrow),
  .architects-value-intro p:last-child,
  .architects-cta-copy p:last-child,
  .architects-hero-list li,
  .architects-value-card p:last-child,
  .architects-library-card p:last-child,
  .architects-collab-step p {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .architects-hero-actions,
  .architects-cta-actions {
    align-items: flex-start;
  }

  .architects-hero-actions .button,
  .architects-cta-actions .button {
    width: 100%;
  }

  .architects-collab-panel {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .architects-value-card,
  .architects-library-card,
  .architects-collab-step {
    min-height: auto;
    padding: 24px 22px;
  }

.architects-cta {
    padding-bottom: 60px;
  }
}

.architects-page {
  background: #f7f7f4;
}

.architects-luxe-hero {
  position: relative;
  min-height: calc(100svh - 145px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  color: #ffffff;
  background: #101010;
}

.architects-luxe-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: architectsImageSettle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.architects-luxe-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.46) 44%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.architects-luxe-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: architectsLineReveal 1.2s ease 0.7s forwards;
}

.architects-luxe-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 64px;
}

.architects-luxe-hero-copy {
  max-width: 760px;
}

.architects-luxe-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.architects-luxe-hero .architects-luxe-kicker {
  color: rgba(255, 255, 255, 0.66);
  animation: architectsFadeUp 0.9s ease 0.12s both;
}

.architects-luxe-hero h1 {
  max-width: 9ch;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  animation: architectsFadeUp 0.9s ease 0.24s both;
}

.architects-luxe-hero-copy p:not(.architects-luxe-kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.72;
  animation: architectsFadeUp 0.9s ease 0.36s both;
}

.architects-luxe-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 210px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  color: #161616;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  transition: transform 0.36s ease, background 0.36s ease, color 0.36s ease, border-color 0.36s ease, box-shadow 0.36s ease;
  animation: architectsFadeUp 0.9s ease 0.48s both;
}

.architects-luxe-button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: 0;
  width: 48%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 48%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.architects-luxe-button:hover {
  transform: translateY(-4px);
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.3);
}

.architects-luxe-button:hover::before {
  left: 130%;
}

.architects-luxe-logo-mark {
  justify-self: center;
  width: 380px;
  max-width: 100%;
  opacity: 0;
  transform: translate3d(24px, 18px, 0) scale(0.94);
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.36));
  animation: architectsLogoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.architects-luxe-logo-mark img {
  display: block;
  width: 100%;
}

.architects-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
  background: #f5f5f2;
  color: #171717;
}

.architects-premium-side {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  color: rgba(20, 20, 20, 0.46);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.architects-premium-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 54px;
  align-items: center;
}

.architects-premium-copy {
  position: relative;
  z-index: 3;
  padding-left: 56px;
}

.architects-premium-copy .architects-luxe-kicker,
.architects-studio-copy .architects-luxe-kicker,
.architects-luxe-cta .architects-luxe-kicker {
  color: rgba(20, 20, 20, 0.52);
}

.architects-premium h2,
.architects-studio h2,
.architects-luxe-cta h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #161616;
}

.architects-premium h2 {
  position: relative;
  width: min(1080px, calc(100vw - 150px));
  max-width: none;
  color: #161616;
  text-shadow: none;
  display: grid;
  gap: 0;
}

.architects-title-line {
  display: block;
  white-space: nowrap;
}

.architects-title-dark {
  color: #161616;
}

.architects-title-light {
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.architects-premium-copy p:not(.architects-luxe-kicker),
.architects-studio-copy p {
  margin: 28px 0 0;
  color: rgba(24, 24, 24, 0.72);
  font-size: 1.04rem;
  line-height: 1.74;
}

.architects-luxe-line-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #151515;
  transition: gap 0.34s ease, transform 0.34s ease;
}

.architects-luxe-line-link::after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  transition: width 0.34s ease;
}

.architects-luxe-line-link:hover {
  gap: 22px;
  transform: translateX(6px);
}

.architects-luxe-line-link:hover::after {
  width: 86px;
}

.architects-premium-media {
  position: relative;
  overflow: hidden;
  height: clamp(560px, 54vw, 760px);
  min-height: 0;
  margin: 0;
  box-shadow: 0 34px 72px rgba(12, 12, 12, 0.16);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.58s ease;
}

.architects-premium-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.architects-premium-media::after {
  content: "";
  position: absolute;
  inset: -18% auto -18% -32%;
  z-index: 2;
  width: 24%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-15deg);
  opacity: 0;
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.architects-premium-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.03);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

.architects-premium-media:hover {
  transform: translateY(-10px);
  box-shadow: 0 44px 94px rgba(12, 12, 12, 0.22);
}

.architects-premium-media:hover::after {
  left: 112%;
  opacity: 1;
}

.architects-premium-media:hover img {
  filter: grayscale(0) contrast(1.03) saturate(1.08);
  transform: scale(1.07);
}

.architects-studio {
  padding: 104px 0 92px;
  background: #111111;
  color: #ffffff;
}

.architects-studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.architects-studio-media {
  overflow: hidden;
  margin: 0;
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.36);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.58s ease;
}

.architects-studio-media img {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  animation: architectsSlowDrift 9s ease-in-out infinite alternate;
}

.architects-studio-media:hover {
  transform: translateY(-8px);
  box-shadow: 0 52px 100px rgba(0, 0, 0, 0.46);
}

.architects-studio-copy .architects-luxe-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.architects-studio h2 {
  color: #ffffff;
}

.architects-studio-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.architects-studio-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.architects-studio-list span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 10px 14px 10px 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.36s ease, background 0.36s ease;
}

.architects-studio-list span::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.36s cubic-bezier(0.22, 1, 0.36, 1), background 0.36s ease;
}

.architects-studio-list span:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
}

.architects-studio-list span:hover::before {
  width: 66px;
  background: rgba(255, 255, 255, 0.86);
}

.architects-luxe-cta {
  padding: 90px 0 104px;
  background: #f7f7f4;
}

.architects-luxe-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  padding-top: 44px;
}

.architects-luxe-cta h2 {
  max-width: 900px;
  margin-top: 16px;
  font-size: 3.15rem;
}

.architects-luxe-button-dark {
  margin-top: 0;
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.architects-luxe-button-dark:hover {
  background: #ffffff;
  color: #111111;
}

@keyframes architectsFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes architectsLogoReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes architectsLineReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes architectsImageSettle {
  to {
    transform: scale(1);
  }
}

@keyframes architectsSlowDrift {
  from {
    transform: scale(1.04) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(8px, 0, 0);
  }
}

@media (max-width: 1180px) {
  .architects-luxe-hero h1 {
    font-size: 4rem;
  }

  .architects-luxe-logo-mark {
    width: 300px;
  }

  .architects-premium h2 {
    width: auto;
    color: #161616;
    text-shadow: none;
  }

  .architects-title-line {
    white-space: normal;
  }

  .architects-title-light {
    color: #161616;
    text-shadow: none;
  }

  .architects-premium-grid,
  .architects-studio-grid,
  .architects-luxe-cta-inner {
    grid-template-columns: 1fr;
  }

  .architects-premium-copy {
    padding-left: 0;
  }

  .architects-premium-side {
    display: none;
  }

  .architects-luxe-cta-inner {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .architects-luxe-hero {
    min-height: calc(100svh - 120px);
  }

  .architects-luxe-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .architects-luxe-hero h1 {
    max-width: 8ch;
    font-size: 3rem;
  }

  .architects-luxe-logo-mark {
    justify-self: start;
    width: 210px;
  }

  .architects-premium,
  .architects-studio,
  .architects-luxe-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .architects-premium h2,
  .architects-studio h2,
  .architects-luxe-cta h2 {
    font-size: 2.35rem;
  }

  .architects-premium-media {
    height: clamp(460px, 72vw, 620px);
    min-height: 0;
  }

  .architects-premium-media img {
    min-height: 0;
  }

  .architects-studio-media img {
    min-height: 360px;
  }

  .architects-luxe-button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .architects-luxe-hero h1 {
    font-size: 2.45rem;
  }

  .architects-luxe-hero-copy p:not(.architects-luxe-kicker),
  .architects-premium-copy p:not(.architects-luxe-kicker),
  .architects-studio-copy p {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .architects-premium h2,
  .architects-studio h2,
  .architects-luxe-cta h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .architects-luxe-hero-bg,
  .architects-luxe-hero .architects-luxe-kicker,
  .architects-luxe-hero h1,
  .architects-luxe-hero-copy p:not(.architects-luxe-kicker),
  .architects-luxe-button,
  .architects-luxe-logo-mark,
  .architects-luxe-hero::after,
  .architects-studio-media img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.objects-page {
  background: #ffffff;
}

.objects-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(35, 35, 35, 0.98);
  backdrop-filter: blur(10px);
}

.objects-page .site-header::before {
  opacity: 0;
}

.objects-hero {
  padding: 0;
  background: #ffffff;
}

.objects-hero-shell {
  min-height: clamp(620px, calc(100svh - var(--header-offset)), 980px);
  background: #0d0d0d;
}

.objects-page .home-slider-shell::before,
.objects-page .home-slider-shell::after {
  display: none;
}

.objects-page .home-slide-image {
  transform: scale(1.03);
  filter: saturate(0.88) contrast(1.04) brightness(0.78);
}

.objects-page .home-slide.is-animating:not(.is-entering):not(.is-leaving) .home-slide-image {
  animation: objectSlideZoom 7s ease forwards;
}

.objects-page .home-slide-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0) 22%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.04) 38%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0) 30%);
}

.objects-page .home-slide-content {
  display: none;
}

.objects-slider-nav {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 20px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  transform: translateX(-50%);
}

.objects-page .home-slider-arrow {
  display: none;
}

.objects-page .home-slider-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  overflow: visible;
}

.objects-page .home-slider-dot {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.objects-page .home-slider-dot::before,
.objects-page .home-slider-dot::after {
  display: none;
}

.objects-page .home-slider-dot:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.objects-page .home-slider-dot.is-active {
  width: 38px;
  min-width: 38px;
  background: #ffffff;
  color: #111111;
  text-shadow: none;
}

.objects-page .home-slider-dot-label {
  display: none;
}

.objects-page .home-slider-dot-index {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.objects-intro {
  padding: 58px 0 80px;
  background: #ffffff;
}

.objects-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 46px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.objects-intro-copy h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.objects-intro-text {
  max-width: 38ch;
  margin: 0 0 8px auto;
  color: rgba(30, 30, 30, 0.74);
  font-size: 1.05rem;
  line-height: 1.76;
}

.objects-intro-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.objects-intro-card {
  display: grid;
  gap: 10px;
  min-height: 144px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(252, 249, 242, 0.98) 0%, rgba(245, 239, 230, 0.96) 100%);
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: 0 18px 36px rgba(18, 18, 18, 0.06);
}

.objects-intro-label {
  color: #7d6d58;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.objects-intro-card strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.06;
  color: #161616;
}

@keyframes objectSlideZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 1180px) {
  .objects-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .objects-intro-text {
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .objects-intro-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .objects-hero-shell {
    min-height: 64svh;
  }

  .objects-slider-nav {
    bottom: 14px;
  }

  .objects-page .home-slider-pagination {
    gap: 10px;
  }

  .objects-page .home-slider-dot,
  .objects-page .home-slider-dot.is-active {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .objects-intro {
    padding: 40px 0 56px;
  }

  .objects-intro-copy h2 {
    max-width: none;
  }

  .objects-intro-text {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .objects-intro-card {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 24px;
  }
}

.service-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 18%),
    linear-gradient(180deg, #f8f4ed 0%, #f0ece4 100%);
}

.service-hero-strip {
  min-height: 24vh;
}

.service-hero-media {
  background-image: url("../img/%D0%B1%D0%B0%D0%BD%D0%B5%D1%803.jpg");
  background-position: center center;
  background-size: cover;
}

.service-intro-reference {
  padding: 14px 0 8px;
  background: #fbf8f2;
}

.service-intro-reference-shell {
  padding-top: 14px;
  border-top: 1px solid rgba(24, 24, 24, 0.12);
}

.service-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(24, 24, 24, 0.4);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-breadcrumbs a {
  transition: color 0.24s ease;
}

.service-breadcrumbs a:hover {
  color: #181818;
}

.service-intro-reference-copy {
  display: grid;
  gap: 14px;
  max-width: 1120px;
}

.service-intro-reference-copy h2 {
  margin: 0;
  max-width: 16.5ch;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.15vw, 3.15rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #181818;
}

.service-intro-reference-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 52ch;
  color: rgba(30, 30, 30, 0.74);
  font-size: 0.98rem;
  line-height: 1.66;
}

.service-intro-wrap {
  background: #313131;
}

.service-intro {
  padding-top: 36px;
  padding-bottom: 58px;
}

.service-intro-visual img {
  min-height: 560px;
  object-position: center center;
}

.service-hero {
  position: relative;
  padding: 78px 0 54px;
}

.service-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 32px), var(--container));
  height: 1px;
  background: rgba(24, 24, 24, 0.12);
  transform: translateX(-50%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 42px;
  align-items: end;
}

.service-hero-copy {
  display: grid;
  gap: 18px;
}

.service-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #181818;
}

.service-hero-copy p {
  margin: 0;
  max-width: 36ch;
  color: rgba(30, 30, 30, 0.8);
  font-size: 1.04rem;
  line-height: 1.76;
}

.service-hero-visual {
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-hero-visual img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.12);
}

.service-hero-visual figcaption {
  max-width: 32ch;
  color: rgba(30, 30, 30, 0.56);
  font-size: 0.82rem;
  line-height: 1.62;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-inline-link,
.service-consult-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.36s ease, transform 0.36s ease, letter-spacing 0.36s ease, opacity 0.36s ease;
}

.service-inline-link::after,
.service-consult-secondary::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width 0.36s ease, transform 0.36s ease;
}

.service-inline-link:hover,
.service-consult-secondary:hover {
  gap: 18px;
  transform: translateX(6px);
  letter-spacing: 0.07em;
}

.service-inline-link:hover::after,
.service-consult-secondary:hover::after {
  width: 70px;
  transform: translateX(4px);
}

.service-inline-link-light {
  color: #ffffff;
}

.service-benefits {
  padding: 38px 0 28px;
}

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

.service-benefit-card {
  position: relative;
  padding: 28px 24px 26px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, border-color 0.42s ease;
}

.service-benefit-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, rgba(26, 26, 26, 0.18));
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(17, 17, 17, 0.14);
}

.service-benefit-card:hover::before {
  transform: scaleX(1);
}

.service-benefit-index {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.44);
}

.service-benefit-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-benefit-card p:last-child {
  margin: 0;
  color: rgba(30, 30, 30, 0.72);
  line-height: 1.68;
}

.service-story {
  padding: 2px 0 28px;
}

.service-story-shell {
  width: min(calc(100% - 32px), 1680px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.service-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
  background: #fbf8f2;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.05);
}

.service-story-row.is-dark {
  background: #2f2f2f;
  color: #ffffff;
}

.service-story-media {
  position: relative;
  overflow: hidden;
}

.service-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  transition: opacity 0.72s ease, background 0.72s ease;
}

.service-story-row.is-dark .service-story-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
}

.service-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}

.service-story-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 54px 54px 56px;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-story-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.service-story-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 34ch;
  color: rgba(30, 30, 30, 0.72);
  font-size: 1.04rem;
  line-height: 1.78;
}

.service-story-row.is-dark .service-story-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-story-row:hover .service-story-media img {
  transform: scale(1.06);
  filter: contrast(1.02) saturate(1.02);
}

.service-story-row:hover .service-story-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
}

.service-story-row.is-dark:hover .service-story-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.service-story-row:hover .service-story-copy {
  transform: translateY(-8px);
}

.service-process {
  padding: 30px 0 34px;
}

.service-process-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 26px;
}

.service-process-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

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

.service-process-card {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 24px;
  background: #202020;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), background 0.42s ease;
}

.service-process-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.1));
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-process-card:hover {
  transform: translateY(-8px);
  background: #161616;
}

.service-process-card:hover::before {
  transform: scaleX(1);
}

.service-process-index {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.service-process-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-process-card p:last-child {
  margin: 0;
  max-width: 27ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.service-consult {
  padding: 26px 0 86px;
}

.service-consult-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 42px 42px 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #1a1a1a 0%, #090909 100%);
  color: #ffffff;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.18);
}

.service-consult-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.service-consult-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.service-consult-copy p:last-child {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.78;
}

.service-consult-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.service-consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 286px;
  min-height: 62px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
  color: #111111;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.service-consult-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(255, 255, 255, 0.12);
  background: #f7f4ee;
}

.service-consult-secondary {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1180px) {
  .service-intro-reference-copy h2 {
    max-width: 15ch;
  }

  .service-intro-visual img {
    min-height: 440px;
  }

  .service-hero-grid,
  .service-story-row,
  .service-consult-panel {
    grid-template-columns: 1fr;
  }

  .service-hero-copy h1 {
    max-width: 11ch;
  }

  .service-hero-visual img {
    min-height: 520px;
  }

  .service-benefits-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-story-row {
    min-height: 0;
  }

  .service-story-media {
    min-height: 480px;
  }
}

@media (max-width: 780px) {
  .service-intro-reference {
    padding: 16px 0 14px;
  }

  .service-intro-reference-shell {
    padding-top: 12px;
  }

  .service-breadcrumbs {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .service-intro-reference-copy {
    gap: 14px;
  }

  .service-intro-reference-copy h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .service-intro {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .service-intro-visual img {
    min-height: 360px;
  }

  .service-hero {
    padding: 54px 0 40px;
  }

  .service-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .service-hero-copy p,
  .service-intro-reference-copy p:not(.eyebrow),
  .service-story-copy p:not(.eyebrow),
  .service-consult-copy p:last-child {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .service-hero-visual img {
    min-height: 400px;
    border-radius: 24px;
  }

  .service-story-shell {
    width: min(calc(100% - 20px), 1680px);
    gap: 14px;
  }

  .service-story-copy {
    padding: 30px 22px 32px;
  }

  .service-story-copy h2,
  .service-process-head h2,
  .service-consult-copy h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .service-story-media {
    min-height: 320px;
  }

  .service-consult {
    padding-bottom: 60px;
  }

  .service-consult-panel {
    padding: 30px 22px;
  }

  .service-consult-button {
    width: 100%;
    min-width: 0;
  }
}

.site-header .project-header-drawer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.site-header .project-header-drawer .site-nav {
  margin-left: auto;
}

.site-header .project-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
}

.site-header .project-mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header.is-mobile-menu-open .project-mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-menu-open .project-mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-menu-open .project-mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 10px 0 12px;
  }

  .site-header .project-mobile-menu-toggle {
    display: inline-flex;
  }

  .site-header .project-header-drawer {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    padding: 6px 0 10px;
  }

  .site-header.is-mobile-menu-open .project-header-drawer {
    display: grid;
    gap: 16px;
  }

  .site-header .project-header-drawer .site-nav {
    display: grid;
    gap: 6px;
    width: 100%;
    margin-left: 0;
    justify-items: start;
  }

  .site-header .project-header-drawer .nav-dropdown {
    width: 100%;
  }

  .site-header .project-header-drawer .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .site-header .project-header-drawer .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .site-header .project-header-drawer .nav-dropdown.is-open .nav-dropdown-menu,
  .site-header .project-header-drawer .nav-dropdown.active .nav-dropdown-menu {
    display: grid;
  }

  .site-header .project-header-drawer .nav-link {
    font-size: 0.94rem;
    letter-spacing: 0.04em;
  }

  .site-header .project-header-drawer .social-links {
    display: flex;
    gap: 12px;
  }

  .site-header .project-header-drawer .header-cta {
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .site-header .project-mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .site-header .project-mobile-menu-toggle span {
    width: 20px;
  }

  .site-header .project-header-drawer {
    padding-bottom: 12px;
  }

  .site-header .project-header-drawer .site-nav {
    gap: 2px;
  }

  .site-header .project-header-drawer .nav-link {
    font-size: 0.88rem;
  }
}

.trends-hero-media {
  background-image: url("../img/highline/IMG_6428.jpg");
  background-position: center 35%;
  background-size: cover;
}

.trends-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.trends-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.trends-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 2px;
  background: currentColor;
  opacity: 0.65;
}

.trends-list strong {
  font-weight: 700;
}
