* { box-sizing: border-box; }

:root {
  --bg: #fff;
  --text: #111;
  --muted: #777;
  --line: #e9e9e9;
  --soft: #f5f5f3;
  --radius: 22px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project {
  display: block;
  color: inherit;
}

.project-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.project:hover .project-image img {
  transform: scale(1.025);
}

.project-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 2px 0;
}

.project-info h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.project-info p {
  margin: 5px 0 0;
  color: #888;
  font-size: 13px;
}

.project-info > span {
  font-size: 18px;
  transition: transform .2s ease;
}

.project:hover .project-info > span {
  transform: translate(3px, -3px);
}

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

.nav {
  height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.logo {
  font: 800 20px "Manrope", sans-serif;
  letter-spacing: -.06em;
}
.logo span { color: #888; }

nav { display: flex; gap: 30px; }
nav a {
  font-size: 14px;
  color: #555;
  transition: color .2s ease;
}
nav a:hover { color: #111; }

.hero {
  min-height: calc(100vh - 82px);
  padding: clamp(90px, 14vh, 170px) clamp(24px, 9vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  letter-spacing: -.055em;
}

h1 {
  max-width: 1050px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: .95;
  font-weight: 800;
}

h1 em, h2 em {
  font-style: normal;
  color: #aaa;
}

.intro {
  max-width: 560px;
  margin: 36px 0 34px;
  color: #666;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.section {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: 58px;
}

.section-head h2,
.about h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
}

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

.project-featured {
  grid-column: 1 / -1;
}

.project-visual {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  background: var(--soft);
}

.project-visual span {
  font: 700 12px "Manrope", sans-serif;
  background: rgba(255,255,255,.8);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.visual-one::after,
.visual-two::after,
.visual-three::after {
  content: "";
  position: absolute;
  width: 44%;
  height: 55%;
  border-radius: 50%;
  border: 1px solid #d6d6d2;
  left: 28%;
  top: 22%;
  box-shadow: 0 0 0 34px rgba(0,0,0,.025), 0 0 0 68px rgba(0,0,0,.018);
}

.visual-two { background: #f1f1ef; }
.visual-two::after {
  width: 36%;
  height: 36%;
  left: 32%;
  top: 32%;
  border-radius: 18%;
  transform: rotate(12deg);
}
.visual-three { background: #fafafa; }
.visual-three::after {
  width: 52%;
  height: 1px;
  left: 24%;
  top: 50%;
  border: 0;
  background: #cfcfca;
  box-shadow: 0 -70px 0 #e2e2de, 0 70px 0 #e2e2de;
}

.project-meta {
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.project-meta h3 {
  font-size: 20px;
  letter-spacing: -.035em;
}
.project-meta p {
  margin: 7px 0 0;
  color: #888;
  font-size: 13px;
}
.arrow { font-size: 20px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10vw;
  align-items: end;
}
.about-copy {
  margin: 0 0 28px;
  max-width: 480px;
  color: #666;
  font-size: 18px;
  line-height: 1.65;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #111;
  padding-bottom: 7px;
}
.text-link span { margin-left: 10px; }

.contact {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact h2 {
  max-width: 800px;
  font-size: clamp(48px, 8vw, 110px);
  line-height: .95;
}
.contact-link {
  width: fit-content;
  margin-top: 45px;
  font: 600 clamp(18px, 2.5vw, 28px) "Manrope", sans-serif;
  letter-spacing: -.035em;
  border-bottom: 1px solid #111;
  padding-bottom: 10px;
}
.contact-link span { margin-left: 18px; }

footer {
  padding: 24px clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #999;
  font-size: 12px;
}

@media (max-width: 700px) {
  .nav { height: 70px; }
  nav { gap: 16px; }
  nav a { font-size: 12px; }
  .hero { min-height: calc(100vh - 70px); padding-top: 80px; }
  .projects { grid-template-columns: 1fr; gap: 42px; }
  .project-featured { grid-column: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  footer { gap: 20px; flex-direction: column; }
}

.about-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
