* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e5e3df;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* NAV */

.nav {
  height: 76px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  background: rgba(239, 238, 232, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.logo {
  font-size: 14px;
  letter-spacing: -0.04em;
}

.nav nav {
  display: flex;
  gap: 64px;
  font-size: 14px;
}

.nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin-left: auto;
}

/* HERO */

.hero {
  min-height: 650px;
  padding: 90px 64px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 400;
  max-width: 850px;
  margin: 0 0 140px;
}


.hero-copy em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.arrow-link {
  font-size: 16px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
}

.arrow-link span {
  font-size: 32px;
  line-height: 0;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait {
  position: static;
  width: 950px;
  height: 650px;
  object-fit: cover
}



/* TICKER */

.ticker {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  overflow: hidden;
  white-space: nowrap;
  font-size: 15px;
  padding: 14px 0;
  background: #f6f5f1;
}

.ticker div {
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

/* FEATURE PANEL */

.feature-panel {
  margin: 24px;
  background: #fbfaf7;
  padding: 44px 66px 34px;
}

.feature-meta {
  display: flex;
  gap: 42px;
  font-size: 13px;
  font-weight: 700;
}

.feature-note {
  font-size: 14px;
  margin: 0 0 44px;
}

.feature-images {
  display: grid;
  grid-template-columns: 40px 1fr 0.9fr 1fr 40px;
  align-items: center;
  gap: 54px;
}

.feature-images button {
  border: 0;
  background: #fff;
  font-size: 34px;
  cursor: pointer;
  height: 60px;
}

.img-large {
  height: 430px;
}

.img-mid {
  height: 430px;
}

/* SPLIT SECTION */

.split-section {
  margin: 0 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f8f7f2;
}

.selected-list,
.about-card {
  padding: 54px 64px;
}

.about-card {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}

.section-heading h2,
.about-card h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.section-heading a {
  font-size: 34px;
}

.selected-list > a {
  display: grid;
  grid-template-columns: 48px 1fr 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 20px 0;
  align-items: center;
}

.selected-list p {
  margin: 0;
}

.selected-list small {
  text-align: right;
}

.about-card > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  margin: 34px 0;
}

.about-card img {
  height: 230px;
}

.about-card p {
  font-size: 18px;
  line-height: 1.35;
  margin: 10px 0 0;
  max-width: 320px;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 13px;
}

/* PAGES */

.page {
  padding: 90px 64px;
}

.page h1,
.about-page h1 {
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.09em;
  font-weight: 400;
  margin: 0 0 60px;
}

.intro {
  font-size: 22px;
}


/* GALLERY */

.masonry {
  columns: 3 260px;
  column-gap: 20px;
}

.masonry img {
  margin: 0 0 20px;
  break-inside: avoid;
}

/* VIDEO */

.video-list article {
  display: grid;
  grid-template-columns: 60px 260px 1fr;
  gap: 34px;
  align-items: start;
}

.video-list span {
  font-size: 24px;
}

.video-list video {
  width: 100%;
  height:  100x;
  object-fit: cover;
}

.video-list h2 {
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.06em;
  margin: 0;
}

.video-list p {
  font-size: 18px;
  max-width: 380px;
}

/* ABOUT PAGE */

.about-page {
  padding: 110px 64px;
}

.about-page h1 {
  font-size: clamp(48px, 7vw, 100px);
  max-width: 1100px;
}

.about-page em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.about-page img {
  width: 360px;
  height: 450px;
  margin: 40px 0;
}

.about-page p {
  font-size: 28px;
  line-height: 1.2;
  max-width: 700px;
}

.contact-links {
  display: flex;
  gap: 40px;
  font-size: 22px;
  margin-top: 50px;
}

/* MAGAZINE OVERLAY */

.magazine-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.magazine-overlay.active {
  display: flex;
}

.magazine-spread {
  display: flex;
  align-items: center;
  justify-content: center;
}

.magazine-page {
  height: 84vh;
  width: auto;
  max-width: 42vw;
  object-fit: contain;
  background: white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.magazine-spread.single-page .magazine-page {
  max-width: 55vw;
}

.left-page {
  border-right: 1px solid #ddd;
}

.right-page {
  border-left: 1px solid #ddd;
}

.close-mag {
  position: fixed;
  top: 28px;
  right: 38px;
  font-size: 55px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  z-index: 100000;
}

.page-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 90px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  z-index: 100000;
}

.page-btn.left {
  left: 60px;
}

.page-btn.right {
  right: 60px;
}

/* MOBILE */

@media (max-width: 800px) {
  .nav {
    padding: 0 20px;
    gap: 24px;
  }

  .nav nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 54px 22px;
  }

  .hero-copy h1 {
    margin-bottom: 50px;
  }

  .hero-art {
    min-height: 360px;
  }

  .portrait {
    right: 0;
    width: 600px;
    height: 500px;
  }

  .stamp {
    right: 160px;
    top: 190px;
    width: 170px;
    height: 190px;
  }

  .feature-panel {
    margin: 12px;
    padding: 28px 18px;
  }

  .feature-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-images button {
    display: none;
  }

  .img-large,
  .img-mid {
    height: auto;
  }

  .split-section {
    grid-template-columns: 1fr;
    margin: 12px;
  }

  .about-card {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .selected-list,
  .about-card {
    padding: 34px 22px;
  }

  .about-card > div {
    grid-template-columns: 1fr;
  }

  .page,
  .about-page {
    padding: 54px 22px;
  }

  .work-index a {
    grid-template-columns: 45px 1fr;
  }

  .work-index small {
    display: none;
  }

  .work-index strong {
    font-size: 32px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .video-list article {
    grid-template-columns: 1fr;
  }

  .video-list h2 {
    font-size: 38px;
  }

  footer {
    padding: 22px;
    display: block;
  }

  .magazine-page {
    max-width: 90vw;
    height: auto;
    max-height: 80vh;
  }

  .magazine-spread {
    flex-direction: column;
  }

  .page-btn {
    font-size: 50px;
  }

  .page-btn.left {
    left: 16px;
  }

  .page-btn.right {
    right: 16px;
  }

  .close-mag {
    top: 18px;
    right: 24px;
    font-size: 42px;
  }
}

.about-page {
  padding: 100px 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 100px;
  align-items: start;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-label {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 30px;
}

.about-content h1 {
  font-size: clamp(52px, 6vw, 90px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 400;
  margin: 0 0 40px;
  max-width: 800px;
}

.about-content p {
  font-size: 22px;
  line-height: 1.4;
  max-width: 600px;
  margin-bottom: 24px;
}

.contact-links {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}

.contact-links a {
  font-size: 18px;
}

.contact-links a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 500px;
  }

  .about-content h1 {
    font-size: 48px;
  }

  .about-content p {
    font-size: 18px;
  }

}

/* WORKS PROJECT PAGE */

.works-page {
  padding: 70px 18px 18px;
  background: #e5e3df;
  min-height: 100vh;
}

.project-header {
  text-align: left;
  color: rgb(0, 0, 0);
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 55px;
}

.project-header h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}

.project-header h1 span {
  font-style: italic;
  font-size: 30px
}

.project-header p {
  font-size: 20px;
  line-height: 1.05;
  margin: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.project-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 800px) {
  .works-page {
    padding: 40px 10px 10px;
  }

  .project-header {
    text-align: left;
    margin-bottom: 35px;
  }

  .project-header h1 {
    font-size: 28px;
  }

  .project-header p {
    font-size: 20px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}