@charset "UTF-8";
@font-face {
  font-family: "Aspekta";
  src: url("/fonts/aspekta/aspekta-main/fonts/variable/AspektaVF.woff2") format("woff2-variations");
  font-weight: 50 1000;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Exter";
  src: url("/fonts/exter/exter-black.woff2") format("woff2"), url("/fonts/exter/exter-black.ttf") format("truetype");
  font-weight: 900;
  font-display: block;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Aspekta", sans-serif;
  font-weight: 120;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #1a1a1a;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 767px) {
  body {
    font-size: 1rem;
  }
}

h1,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: normal;
}

h1 {
  margin-bottom: 20px;
}

h2 {
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b7355;
  font-family: "Exter", sans-serif;
  margin-bottom: 10px;
  font-weight: 650;
}

h3 {
  line-height: 1.3;
  font-size: 1.5rem;
  color: #b8a898;
  font-family: "Aspekta", sans-serif;
  margin-bottom: 10px;
  font-weight: 120;
}

h4 {
  line-height: 1.3;
  font-size: 1.2rem;
  font-family: "Exter", sans-serif;
}

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

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

ul {
  list-style: none;
}
ul li {
  padding-left: 1em;
  position: relative;
}
ul li::before {
  content: "·";
  font-family: "Exter", sans-serif;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: -16px;
  color: #1a1a1a;
}

li, p {
  text-align: justify;
}

p {
  margin-bottom: 8px;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid #e0dbd5;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26, 26, 26, 0.08);
  border-bottom-color: #666;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: "Exter", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  font-weight: 400;
}
.nav__logo b {
  position: relative;
  top: -2px;
}
.nav__list {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    height: 70px;
    padding-right: max(48px, (100vw - 1200px) / 2 + 48px);
    z-index: 1001;
  }
}
@media (max-width: 767px) {
  .nav__list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    gap: 0;
    padding: 0;
    z-index: 1001;
  }
  .nav__list.is-open {
    display: flex;
  }
}
.nav__item {
  padding-left: 0;
}
.nav__item::before {
  display: none;
}
@media (max-width: 767px) {
  .nav__item {
    width: 100%;
    text-align: center;
  }
  .nav__item:first-child .nav__link {
    border-top: 1px solid #e0dbd5;
  }
}
.nav__link {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.2s ease;
  padding: 4px 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #8b7355;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: #1a1a1a;
}
.nav__link:hover::after, .nav__link.active::after {
  transform: scaleX(1);
}
@media (max-width: 767px) {
  .nav__link {
    display: block;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0dbd5;
  }
  .nav__link::after {
    display: none;
  }
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.page-content {
  padding-top: 70px;
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #1a1a1a;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background: #f5f3f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease;
}
.hero__slide--active {
  opacity: 1;
  animation: hero-zoom 5s ease-in-out forwards;
}
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 26, 26, 0.42);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__inner {
  padding: 80px 0;
}
.hero__inner h2,
.hero__inner h3 {
  color: #ffffff;
}
.hero__inner h2 {
  font-size: clamp(0.9rem, 4.6vw, 1.65rem);
  margin-bottom: 0px;
}
.hero__inner h3 {
  font-size: clamp(1.4rem, 7vw, 40px);
}
@media (max-width: 767px) {
  .hero__inner {
    padding: 60px 0;
  }
}

.section {
  padding: 20px 0;
  text-align: center;
}
.section .section__text {
  text-align: center;
}
.section__header {
  margin-bottom: 20px;
}
.section__text {
  max-width: 800px;
  margin: 0 auto;
}
.section--dark {
  background: #1a1a1a;
  color: #ffffff;
}
.section--dark h2 {
  color: #ffffff;
}
.section--dark .section__text {
  color: rgba(255, 255, 255, 0.65);
}
.section--light {
  background: #ffffff;
}

.services-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
}
.services-tagline__static {
  flex-shrink: 0;
}
.services-tagline__word {
  position: relative;
  display: inline-block;
  width: 10em;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  height: 2.2em;
}

@keyframes word-roll-in {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes word-roll-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-110%);
    opacity: 0;
  }
}
.word-tick-exit, .word-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
}

.word-tick {
  animation: word-roll-in 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.word-tick-exit {
  animation: word-roll-out 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services__intro {
  max-width: 720px;
  margin: 0 auto;
  scroll-margin-top: 70px;
}
.services__intro ul {
  margin-top: 4px;
  margin-bottom: 8px;
}
.services__intro ul.list--no-bullet {
  list-style: none;
  padding-left: 0;
}
.services__intro ul.list--no-bullet li {
  padding-left: 0;
}
.services__intro ul.list--no-bullet li::before {
  content: none;
}
.services__intro h2,
.services__intro h3,
.services__intro h4,
.services__intro h5 {
  margin-top: 32px;
}
.services__intro h2:first-child,
.services__intro h3:first-child,
.services__intro h4:first-child,
.services__intro h5:first-child {
  margin-top: 0;
}
.services__intro h5 {
  font-family: "Exter", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: left;
}
.services__intro h2 {
  font-family: "Exter", sans-serif;
  text-transform: uppercase;
  padding-top: 20px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

a:has(> .service-card) {
  display: block;
  text-decoration: none;
}
a:has(> .service-card):hover .service-card img, a:has(> .service-card):focus .service-card img {
  transform: scale(1.04);
}

.services__intro .service-card {
  margin-bottom: 10px;
}

.service-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0dbd5;
  overflow: hidden;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.service-card__text {
  font-size: clamp(12px, 1.6vw, 18px);
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .service-card__text {
    font-size: 1rem;
  }
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 767px) {
  .projects__grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e0dbd5;
}
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card__image {
  transform: scale(1.05);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 32px;
  text-align: center;
}
.project-card:hover .project-card__overlay {
  opacity: 1;
}
@media (max-width: 767px) {
  .project-card__overlay {
    background: rgba(26, 26, 26, 0.4);
    opacity: 1;
  }
}
.project-card__title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 500;
}
.project-card__category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8a898;
}

.contact-teaser p {
  text-align: center;
}
.contact-teaser {
  max-width: 700px;
  margin: 0 auto;
}
.contact-teaser__email {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #ffffff;
  display: block;
  margin: 32px 0;
  transition: color 0.2s ease;
}
.contact-teaser__email:hover {
  color: #b8a898;
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 0 40px 0;
}
.site-footer p {
  text-align: center;
}
.site-footer > .section {
  margin: 0;
  padding: 60px 0 40px 0;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
  }
}
.site-footer__copy {
  margin: auto;
  font-size: 0.85rem;
}

.page-banner {
  padding: 30px 0 25px;
  background: #ffffff;
}
.page-banner__title {
  font-family: "Exter", sans-serif;
  font-size: clamp(1.125rem, 2.25vw, 1.969rem);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section.about-content {
  padding-bottom: 0;
}
.section.about-content .container {
  padding-bottom: 0;
}
.section.about-content .about-content__grid {
  row-gap: 0;
}
.section.about-content .about-content__text {
  padding-bottom: 40px;
}

.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text photo" "contact contact";
  column-gap: 60px;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .about-content__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "photo" "contact";
  }
}
.about-content__text {
  grid-area: text;
}
.about-content__text .page-banner__title {
  margin-bottom: 20px;
}
.about-content__photo {
  grid-area: photo;
}
.about-content__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-content__sidebar {
  grid-area: contact;
}
.about-content__sidebar .sidebar-block {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e0dbd5;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .about-content__sidebar .sidebar-block {
    padding: 16px;
  }
}
.about-content__sidebar .sidebar-block__columns {
  display: grid;
  grid-template-columns: calc(50% + 6px) 1fr;
  gap: 24px;
}
@media (max-width: 767px) {
  .about-content__sidebar .sidebar-block__columns {
    grid-template-columns: 1fr;
  }
}
.about-content__sidebar .sidebar-block h5 {
  font-family: "Exter", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content__sidebar .sidebar-block .location-list {
  display: grid;
  grid-template-columns: max-content min-content 1fr;
  column-gap: 6px;
  row-gap: 2px;
}
.about-content__sidebar .sidebar-block a {
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about-content__sidebar .sidebar-block a .social-icon {
  width: 14px;
  height: 14px;
}
.about-content__sidebar .sidebar-block a:hover {
  color: #1a1a1a;
}

a.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-detail__hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}
.project-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.project-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.project-detail__category {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8a898;
  margin-bottom: 10px;
}
.project-detail__title {
  font-family: "Exter", sans-serif;
  font-size: clamp(1rem, 3vw, 2rem);
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}
.project-detail__description {
  max-width: 760px;
  margin: 0 auto;
}
.project-detail__description ul {
  margin-top: 4px;
  margin-bottom: 8px;
}
.project-detail__description ul.list--no-bullet {
  list-style: none;
  padding-left: 0;
}
.project-detail__description ul.list--no-bullet li {
  padding-left: 0;
}
.project-detail__description ul.list--no-bullet li::before {
  content: none;
}
.project-detail__description h2,
.project-detail__description h3,
.project-detail__description h4,
.project-detail__description h5 {
  margin-top: 32px;
}
.project-detail__description h2:first-child,
.project-detail__description h3:first-child,
.project-detail__description h4:first-child,
.project-detail__description h5:first-child {
  margin-top: 0;
}
.project-detail__description h5 {
  font-family: "Exter", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: left;
}
.project-detail__description a {
  color: #8b7355;
  text-decoration: underline;
}
.project-detail__description a:hover {
  color: #1a1a1a;
}
.project-detail__back {
  display: inline-block;
  color: #8b7355;
  text-decoration: none;
  transition: color 0.2s ease;
  margin: 40px 0 20px 0;
}
.project-detail__back:hover {
  color: #b8a898;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
}
.project-gallery__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
  width: 100%;
}
.project-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.project-gallery__img:hover {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 16px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  user-select: none;
}
.lightbox__arrow:hover {
  opacity: 1;
}
.lightbox__arrow--prev {
  left: 16px;
}
.lightbox__arrow--next {
  right: 16px;
}
.lightbox__arrow[disabled] {
  opacity: 0.15;
  cursor: default;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #e0dbd5;
}
.blog-post:first-child {
  padding-top: 0;
}
.blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .blog-post {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 36px 0;
  }
}
@media (max-width: 767px) {
  .blog-post__text {
    order: 2;
  }
}
.blog-post__title {
  font-family: "Exter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .blog-post__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .blog-post__image {
    order: 1;
  }
}
.blog-post__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .blog-post__image img {
    height: 220px;
  }
}

.blog-post__title-link {
  text-decoration: none;
  color: inherit;
}
.blog-post__title-link:hover .blog-post__title {
  color: #8b7355;
}
.blog-post__title-link .blog-post__title {
  transition: color 0.2s ease;
}

a.blog-post__image {
  display: block;
  overflow: hidden;
}
a.blog-post__image img {
  transition: transform 0.35s ease;
}
a.blog-post__image:hover img {
  transform: scale(1.03);
}

.blog-post-detail {
  padding: 40px 0 0 0;
}
@media (max-width: 767px) {
  .blog-post-detail {
    padding: 24px 0 56px;
  }
}
.blog-post-detail__back {
  display: inline-block;
  color: #8b7355;
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 20px;
}
.blog-post-detail__back:hover {
  color: #b8a898;
}
.blog-post-detail__content {
  max-width: 720px;
}
.blog-post-detail__content ul {
  margin-top: 4px;
  margin-bottom: 8px;
}
.blog-post-detail__content ul.list--no-bullet {
  list-style: none;
  padding-left: 0;
}
.blog-post-detail__content ul.list--no-bullet li {
  padding-left: 0;
}
.blog-post-detail__content ul.list--no-bullet li::before {
  content: none;
}
.blog-post-detail__content h2,
.blog-post-detail__content h3,
.blog-post-detail__content h4,
.blog-post-detail__content h5 {
  margin-top: 32px;
}
.blog-post-detail__content h2:first-child,
.blog-post-detail__content h3:first-child,
.blog-post-detail__content h4:first-child,
.blog-post-detail__content h5:first-child {
  margin-top: 0;
}
.blog-post-detail__content h5 {
  font-family: "Exter", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: left;
}
.blog-post-detail__hero {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-post-detail__hero {
    height: 200px;
  }
}
.blog-post-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
