:root {
  --ink: #151512;
  --paper: #f2f0ea;
  --line: rgba(21, 21, 18, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, "PingFang SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }

.site-header,
.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px;
}
.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: #fff;
}
.mark {
  display: block;
  width: 66px;
  text-decoration: none;
}
.mark img { width: 100%; height: auto; }
.site-header .mark img { filter: invert(1); }
.site-header nav { display: flex; align-items: center; }
.site-header nav { gap: 30px; }
.site-header nav a,
.scroll,
.detail-nav a {
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.booking-button span { transition: transform 0.25s ease; }
@media (hover: hover) { .booking-button:hover span { transform: translate(2px, -2px); } }

.hero {
  position: relative;
  min-height: 640px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 40%, rgba(0, 0, 0, 0.34));
}
.hero-copy { position: absolute; left: 34px; bottom: 86px; }
.hero-copy p,
.eyebrow,
.section-heading {
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-copy p { margin: 0 0 22px; letter-spacing: 0.2em; }
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}
.hero-meta {
  position: absolute;
  right: 34px;
  bottom: 91px;
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 35px;
}

.work { padding: 120px 34px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  margin-bottom: 58px;
  border-top: 1px solid var(--line);
}
.section-heading p { margin: 0; }
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 20px;
}
.project.wide { grid-column: 1 / -1; }
.project a { color: inherit; text-decoration: none; }
.image-wrap { aspect-ratio: 4 / 5; overflow: hidden; background: #ddd; }
.wide .image-wrap { aspect-ratio: 16 / 9; }
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
@media (hover: hover) { .project:hover img { transform: scale(1.015); } }
.project-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 13px;
}
.project-caption h2 { margin: 0; font-size: 18px; font-weight: 400; letter-spacing: -0.025em; }
.project-caption p { margin: 0; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }

.about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 130px 34px 170px;
  border-top: 1px solid var(--line);
}
.eyebrow { margin: 0; }
.about h2 {
  margin: 0 0 65px;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}
.about div > p {
  max-width: 700px;
  margin: 0 0 0 auto;
  font-size: 20px;
  line-height: 1.45;
}
footer { padding: 95px 34px 30px; background: #171713; color: #f2f0ea; }
.footer-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin: 85px 0 130px;
}
.email {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: inherit;
  font-size: clamp(42px, 7vw, 110px);
  letter-spacing: -0.06em;
  text-decoration: none;
}
.booking-button-footer {
  flex: 0 0 auto;
  min-width: 176px;
  padding: 18px 22px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-row p { margin: 0; }
.footer-row a { color: inherit; text-decoration: none; }

.detail { min-height: 100vh; background: var(--paper); }
.detail-nav a { letter-spacing: 0.14em; }
.detail-nav .mark { text-transform: none; }
.project-intro { padding: 130px 34px 100px; }
.project-intro > p { margin: 0; font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase; }
.project-intro h1 {
  margin: 42px 0 110px;
  font-size: clamp(64px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}
.project-info {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 15vw;
  margin-left: 25%;
}
.project-info > p { margin: 0; font-size: 19px; line-height: 1.45; }
.project-info dl { margin: 0; }
.project-info dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.project-info dt { letter-spacing: 0.12em; text-transform: uppercase; }
.project-info dd { margin: 0; }
.story { padding: 0 34px; }
.story figure { margin: 0 0 34px; overflow: hidden; background: #ddd; }
.story figure img { width: 100%; height: 100%; object-fit: cover; }
.story .landscape { aspect-ratio: 16 / 10; }
.story .portrait { width: 66%; aspect-ratio: 4 / 5; margin: 130px auto; }
.next {
  display: flex;
  justify-content: space-between;
  padding: 90px 34px 40px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.next p { margin: 0; }
.next a { color: inherit; text-decoration: none; }

.not-found { display: grid; min-height: 100vh; padding: 34px; place-content: center; text-align: center; }
.not-found h1 { margin: 0; font-size: clamp(90px, 18vw, 240px); font-weight: 400; letter-spacing: -0.08em; }
.not-found p { margin: 20px 0 38px; }
.not-found a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }

@media (max-width: 700px) {
  .site-header { padding: 22px 18px; }
  .mark { width: 60px; }
  .site-header nav { gap: 14px; }
  .hero-copy { left: 18px; bottom: 110px; }
  .hero h1 { font-size: 56px; }
  .hero-meta { display: none; }
  .scroll { right: auto; left: 18px; }
  .work { padding: 78px 18px; }
  .section-heading { margin-bottom: 34px; }
  .project-grid { display: block; }
  .project { margin-bottom: 55px; }
  .wide .image-wrap, .image-wrap { aspect-ratio: 4 / 5; }
  .about { display: block; padding: 80px 18px 95px; }
  .about .eyebrow { margin-bottom: 60px; }
  .about h2 { margin-bottom: 44px; font-size: 49px; }
  .about div > p { font-size: 17px; }
  footer { padding: 72px 18px 24px; }
  .footer-actions { display: block; margin: 58px 0 90px; }
  .email { font-size: 40px; }
  .booking-button-footer { width: 100%; margin-top: 42px; }
  .footer-row { grid-template-columns: 1fr auto; row-gap: 20px; }
  .footer-row p:nth-child(2) { display: none; }
  .detail-nav { padding: 22px 18px; }
  .project-intro { padding: 90px 18px 75px; }
  .project-intro h1 { margin: 32px 0 70px; font-size: 60px; }
  .project-info { display: block; margin: 0; }
  .project-info > p { margin-bottom: 55px; font-size: 17px; }
  .story { padding: 0 18px; }
  .story figure { margin-bottom: 18px; }
  .story .landscape, .story .portrait { width: 100%; aspect-ratio: 4 / 5; margin: 18px 0; }
  .next { padding: 65px 18px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .image-wrap img { transition: none; }
}
