.sa-projects-theme,
.sa-projects-section {
  color: var(--sa-project-text, #f1ede5);
}
.sa-projects-theme {
  background: var(--sa-project-bg, #050505);
}
.sa-projects-section {
  background: var(--sa-project-section-bg, var(--sa-project-bg, #050505));
}
.sa-projects-container,
.sa-projects-section {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}
.sa-projects-section {
  padding: 72px 0 40px;
}
.sa-heading-block {
  margin-bottom: 36px;
}
.sa-heading-block.center { text-align: center; }
.sa-section-heading {
  font-size: clamp(30px, 3.2vw, var(--sa-project-heading-size, 56px));
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: .02em;
  margin: 0;
}
.sa-section-heading.small { font-size: clamp(24px, 2vw, 40px); }
.sa-section-line {
  display: inline-block;
  width: 68px;
  height: 1px;
  background: var(--sa-project-border, rgba(255,255,255,.14));
  margin-top: 14px;
}
.sa-project-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 48px;
}
.sa-project-filters a,
.sa-projects-button {
  text-decoration: none;
}
.sa-project-filters a {
  color: var(--sa-project-text);
  border: 1px solid var(--sa-project-border);
  padding: 12px 18px;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .25s ease;
}
.sa-project-filters a:hover,
.sa-project-filters a.is-active {
  border-color: var(--sa-project-accent);
  color: var(--sa-project-accent);
}
.sa-projects-grid {
  display: grid;
  gap: var(--sa-project-gap, 28px);
}
.sa-projects-grid.columns-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.sa-projects-grid.columns-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.sa-projects-grid.columns-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.sa-project-card {
  position: relative;
  display: block;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--sa-project-radius, 2px);
  background: #0b0b0b;
  color: var(--sa-project-text);
}
.sa-project-card-media,
.sa-project-card-media img,
.sa-project-card-placeholder {
  width: 100%;
  height: 100%;
}
.sa-project-card-media {
  position: absolute;
  inset: 0;
}
.sa-project-card-media img,
.sa-project-gallery-item img {
  object-fit: cover;
  display: block;
}
.sa-project-card-media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}
.sa-project-card-placeholder {
  background: linear-gradient(180deg, #1a1a1a, #090909);
}
.sa-project-card img {
  transition: transform .8s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card:hover img {
  transform: scale(1.035);
}
.sa-project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.04) 42%, rgba(0,0,0,.18) 100%);
  transition: background .35s ease;
}
.sa-project-card:hover .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12) 38%, rgba(0,0,0,.58) 100%);
}
.sa-project-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
  pointer-events: none;
}
.sa-project-card-meta-top,
.sa-single-submeta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--sa-project-muted);
  font-size: 13px;
}
.sa-project-card-meta-top { align-items: flex-start; justify-content: space-between; }
.sa-project-card-title,
.sa-single-title {
  font-size: clamp(20px, 1.55vw, var(--sa-project-title-size, 24px));
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 6px;
}
.sa-project-card-title {
  color: rgba(255,255,255,.92);
  transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card-subtitle {
  color: rgba(255,255,255,.82);
  font-size: var(--sa-project-subtitle-size, 13px);
  transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card-subtitle.small,
.sa-project-card-year { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1); }
.sa-project-card-meta-top,
.sa-project-card-meta-bottom {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card:hover .sa-project-card-meta-top,
.sa-project-card:hover .sa-project-card-meta-bottom,
.sa-project-card:focus-visible .sa-project-card-meta-top,
.sa-project-card:focus-visible .sa-project-card-meta-bottom {
  opacity: 1;
  transform: translateY(0);
}
.sa-project-card-meta-top { transition-delay: .02s; }
.sa-project-card-meta-bottom { align-self: flex-start; transition-delay: .06s; }
.sa-projects-button-wrap { text-align: center; margin-top: 32px; }
.sa-projects-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--sa-project-text);
  border: 1px solid var(--sa-project-border);
  padding: 18px 30px;
  transition: .25s ease;
  letter-spacing: .02em;
}
.sa-projects-button:hover {
  transform: translateY(-1px);
  border-color: var(--sa-project-accent);
  color: var(--sa-project-accent);
}
.sa-projects-button-arrow { font-size: 18px; }
.sa-projects-archive-wrap,
.sa-single-project-wrap { background: var(--sa-project-bg); color: var(--sa-project-text); min-height: 100vh; }
.sa-projects-archive-wrap { padding: 40px 0 90px; }
.sa-heading-block.archive { margin-top: 40px; }
.sa-single-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
}
.sa-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.44) 58%, rgba(5,5,5,1) 100%);
}
.hero-inner,
.sa-single-content-grid,
.similar-projects-section { position: relative; z-index: 2; }
.hero-inner { padding: 56px 0 62px; }
.sa-breadcrumb-link {
  color: var(--sa-project-muted);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
}
.sa-single-title-block { max-width: 920px; }
.sa-single-title {
  font-size: clamp(34px, 4.2vw, 58px);
  margin-bottom: 10px;
}
.sa-single-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
  gap: 54px;
  padding: 48px 0 84px;
}
.sa-content-block h2,
.sa-detail-card h2,
.sa-contact-card h3 {
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 300;
  margin: 0 0 26px;
}
.sa-content-text,
.sa-contact-card p,
.sa-detail-value,
.sa-detail-label { font-size: 14px; line-height: 1.8; }
.sa-detail-label,
.sa-contact-card p,
.sa-content-text,
.sa-gallery-link,
.sa-breadcrumb-link,
.sa-pagination,
.sa-projects-empty { color: var(--sa-project-muted); }
.sa-project-gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.sa-project-gallery-item {
  overflow: hidden;
  border-radius: var(--sa-project-radius, 2px);
}
.sa-project-gallery-item img { width: 100%; aspect-ratio: 1.12/1; object-fit: cover; }
.sa-elementor-project-content { margin-top: 30px; }
.sa-gallery-link-wrap { margin-top: 18px; }
.sa-detail-card,
.sa-contact-card {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--sa-project-border);
  margin-bottom: 34px;
}
.sa-detail-row { margin-bottom: 24px; }
.sa-detail-label { margin-bottom: 6px; }
.similar-projects-section { padding-bottom: 90px; }
.sa-pagination { text-align: center; margin-top: 38px; }
.sa-pagination .page-numbers { color: var(--sa-project-text); margin: 0 8px; text-decoration: none; }
@media (max-width: 1024px) {
  .sa-projects-grid.columns-4 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sa-single-content-grid { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 767px) {
  .sa-projects-container,
  .sa-projects-section { width: calc(100% - 28px); }
  .sa-projects-grid.columns-2,
  .sa-projects-grid.columns-3,
  .sa-projects-grid.columns-4,
  .sa-project-gallery-grid { grid-template-columns: 1fr; }
  .sa-project-card { min-height: 420px; }
  .sa-section-heading { font-size: 40px; }
  .sa-single-title { font-size: 38px; }
  .sa-project-card-meta-top,
  .sa-project-card-meta-bottom { opacity: 1; transform: none; }
  .sa-project-filters { justify-content: flex-start; }
}


.sa-projects-elementor-embed,
.sa-projects-section-embed {
  --sa-project-section-bg: transparent;
}
.sa-projects-elementor-embed .sa-projects-section,
.sa-projects-section.sa-projects-section-embed {
  background: transparent !important;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.sa-projects-elementor-embed .sa-heading-block {
  margin-bottom: 34px;
}
.sa-projects-elementor-embed .sa-projects-grid {
  align-items: stretch;
}
.sa-projects-elementor-embed .sa-project-card,
.sa-projects-section-embed .sa-project-card {
  min-height: 520px;
  background: transparent;
}
.sa-projects-elementor-embed .sa-project-card-overlay,
.sa-projects-section-embed .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,.06) 48%, rgba(0,0,0,.54) 100%);
}
.sa-projects-elementor-embed .sa-project-card:hover .sa-project-card-overlay,
.sa-projects-section-embed .sa-project-card:hover .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.04) 10%, rgba(0,0,0,.14) 44%, rgba(0,0,0,.72) 100%);
}
.sa-projects-elementor-embed .sa-project-card-title,
.sa-projects-elementor-embed .sa-project-card-subtitle,
.sa-projects-elementor-embed .sa-project-card-year,
.sa-projects-section-embed .sa-project-card-title,
.sa-projects-section-embed .sa-project-card-subtitle,
.sa-projects-section-embed .sa-project-card-year {
  color: rgba(255,255,255,.92);
}
@media (max-width: 1024px) {
  .sa-projects-elementor-embed .sa-projects-section,
  .sa-projects-section.sa-projects-section-embed {
    width: 100%;
  }
}

.sa-projects-section.sa-projects-section-embed {
  width: 100%;
  max-width: 100%;
}
.sa-projects-grid.columns-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.sa-projects-grid.columns-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.sa-projects-grid.columns-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
.sa-projects-grid.layout-masonry {
  grid-auto-flow: dense;
}
.sa-projects-grid.layout-masonry .sa-project-card:nth-child(3n+2) {
  min-height: 620px;
}
.sa-projects-grid.layout-pattern {
  grid-template-columns: repeat(6, minmax(0,1fr));
  grid-auto-flow: dense;
}
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(1),
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(2) {
  grid-column: span 3;
}
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(n+3) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:first-child {
  grid-column: span 4;
  grid-row: span 2;
}
.sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:not(:first-child) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(-n+3) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(n+4) {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .sa-projects-grid.layout-pattern {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .sa-projects-grid.layout-pattern .sa-project-card,
  .sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:first-child,
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(1),
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(2),
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(n+3),
  .sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(-n+3),
  .sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(n+4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 767px) {
  .sa-projects-grid.layout-pattern,
  .sa-projects-grid.columns-2,
  .sa-projects-grid.columns-3,
  .sa-projects-grid.columns-4,
  .sa-projects-grid.columns-5,
  .sa-projects-grid.columns-6 {
    grid-template-columns: repeat(1, minmax(0,1fr));
  }
}
