* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  background: #f6f3ee;
  color: #222;
  letter-spacing: 0.08em;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  height: 90px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f7f2;
}

.logo-small {
  font-size: 28px;
  letter-spacing: 0.45em;
  font-weight: 300;
}

.nav {
  display: flex;
  gap: 42px;
  font-size: 11px;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.75;
  letter-spacing: 0.18em;
  transition: opacity 0.4s ease;
}

.nav a:hover {
  opacity: 0.4;
}

.menu-lines {
  display: flex;
  gap: 10px;
}

.menu-lines span {
  width: 22px;
  height: 2px;
  background: #222;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 610px;
  background: #f9f7f2;
}

.hero-text {
  padding: 140px 7vw;
}

.hero-text h1 {
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 200;
  letter-spacing: 0.30em;
  line-height: 0.9;
  margin-bottom: 80px;
}

.subtitle,
.section-label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 0.9;
}

.line {
  width: 45px;
  height: 1px;
  background: #999;
  margin: 28px 0;
}

.intro {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin-bottom: 42px;
  max-width: 320px;
}

.link-arrow {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.4s ease;
}

.link-arrow span {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.link-arrow:hover span {
  transform: translateX(8px);
}

.hero-image {
  background:
    linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.10)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  filter: grayscale(35%);
}

.projects-about {
  display: grid;
  grid-template-columns: 1fr 380px;
  padding: 52px 6vw 70px;
 gap: 70px;
  background: #efebe5;
}

.project-grid {
  margin-top: 28px;
  display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.project-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.project-img:hover {
  filter: grayscale(15%);
  transform: scale(1.04);
}

.img-1 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80");
}

.img-2 {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=80");
}

.img-3 {
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=900&q=80");
}

article h3 {
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 13px;
}

article p {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.bottom {
  margin-top: 34px;
}

.about {
  border-left: 1px solid #bcb6ad;
  padding-left: 70px;
}

.circle {
  width: 42px;
  height: 42px;
  border: 2px solid #222;
  border-radius: 50%;
  margin-bottom: 26px;
}

.about h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 18px;
}

.about p {
  max-width: 260px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

.service-list {
  border-top: 1px solid #bbb;
  max-width: 380px;
}

.service-list div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #d1cbc3;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

footer {
  height: 70px;
  border-top: 1px solid #c6c0b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  background: #f9f7f2;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 70px 6vw;
  }

  .hero-text h1 {
    font-size: 72px;
    margin-bottom: 50px;
  }

  .hero-image {
    height: 420px;
  }

  .projects-about {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .about {
    border-left: none;
    border-top: 1px solid #bcb6ad;
    padding-left: 0;
    padding-top: 40px;
  }

  footer {
    height: auto;
    padding: 28px 6vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 500px) {
  .logo-small {
    font-size: 20px;
  }

  .hero-text h1 {
    font-size: 54px;
    letter-spacing: 0.25em;
  }

  .hero-image {
    height: 320px;
  }
}
html {
  scroll-behavior: smooth;
}
.logo-circle {
  width: 35px;
  height: 35px;
  border: 2px solid #222;
  border-radius: 50%;
}
.hero-text {
  animation: fadeUp 1.2s ease;
}

.hero-image {
  animation: fadeImage 1.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeImage {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-year {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.55;
}.projects-page {
  padding: 120px 7vw 160px;
  background: #f9f7f2;
  min-height: 100vh;
}

.projects-page-header {
  max-width: 620px;
  margin-bottom: 90px;
}

.projects-page-header h1 {
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
}

.projects-page-header p:last-child {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.9;
  max-width: 420px;
}

.projects-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 34px;
}

.project-large-image {
  height: 340px;
  background-size: cover;
  background-position: center;
  filter: grayscale(80%);
 transition:
  transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
  filter 1.2s ease;
}

.project-large:hover .project-large-image {
  transform: scale(1.03);
  filter: grayscale(10%);
}

.project-large-info {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #cbc4ba;

  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.project-large-info h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.project-large-info p {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.large-1 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80");
}

.large-2 {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=80");
}

.large-3 {
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1400&q=80");
}

.large-4 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=80");
}

@media (max-width: 900px) {
  .projects-grid-large {
    grid-template-columns: 1fr;
  }

  .project-large-image {
    height: 380px;
  }
}

@media (max-width: 500px) {
  .projects-page {
    padding: 100px 6vw 70px;
  }

  .projects-page-header h1 {
    font-size: 54px;
  }

  .project-large-image {
    height: 280px;
  }
}
.projects-ending {
  margin-top: 120px;
  padding-top: 50px;
  border-top: 1px solid #d8d2ca;

  max-width: 520px;
}

.projects-ending p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;

  opacity: 0.75;
}

.about-hero {
  padding: 140px 7vw 100px;
  background: #f9f7f2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
}

.about-hero-title h1 {
  margin-top: 24px;
  max-width: 620px;

  font-size: clamp(42px, 5vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.04em;
}


.about-hero-text {
  padding-top: 110px;
}

.about-hero-text p {
  max-width: 460px;
  margin-bottom: 34px;

  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.about-wide-image {
  height: 680px;

  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80");

  background-size: cover;
  background-position: center;
  filter: grayscale(45%);
}

.about-values {
  padding: 110px 7vw 150px;
  background: #efebe5;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.about-value {
  border-top: 1px solid #cbc4ba;
  padding-top: 28px;
}

.about-value span {
  display: block;
  margin-bottom: 42px;

  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.about-value h3 {
  margin-bottom: 20px;

  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.about-value p {
  max-width: 330px;

  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  opacity: 0.75;
}.contact-page {
  min-height: calc(100vh - 90px);
  padding: 140px 7vw 120px;
  background: #f9f7f2;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
  align-items: start;
}

.contact-title h1 {
  margin-top: 24px;
  max-width: 620px;

  font-size: clamp(48px, 6vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.contact-info {
  padding-top: 108px;
}

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;

  padding: 28px 0;
  border-bottom: 1px solid #d5cec5;
}

.contact-row:first-child {
  border-top: 1px solid #d5cec5;
}

.contact-row span {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.contact-row a {
  font-size: 18px;
  letter-spacing: 0.02em;
  transition: opacity 0.4s ease;
}

.contact-row a:hover {
  opacity: 0.45;
}

.contact-socials {
  display: flex;
  gap: 18px;
}

.contact-note {
  padding: 90px 7vw 130px;
  background: #efebe5;

  display: flex;
  justify-content: flex-end;
}

.contact-note p {
  max-width: 560px;

  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  opacity: 0.8;
}.service-item {
  border-bottom: 1px solid #d1cbc3;
}

.service-toggle {
  width: 100%;
  padding: 18px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: none;
  border: none;
  cursor: pointer;

  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #222;
}

.service-toggle b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.service-item.active b {
  transform: rotate(45deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;

  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;

  opacity: 0.7;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;

  padding: 0;
}

.service-item.active .service-content {
  max-height: 140px;
  padding: 0 0 22px;
}.services-page {
  padding: 140px 7vw 160px;
  background: #f9f7f2;
  min-height: calc(100vh - 90px);
}

.services-title h1 {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.services-list-large {
  margin-top: 110px;
  border-top: 1px solid #d5cec5;
}

.service-large {
  display: grid;
  grid-template-columns: 100px 260px 1fr;
  gap: 50px;
  padding: 42px 0;
  border-bottom: 1px solid #d5cec5;
}

.service-large span {
  font-size: 12px;
  opacity: 0.5;
}

.service-large h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.service-large p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  opacity: 0.75;
}