* {
  box-sizing: border-box;
}

:root {
  --ink: #161616;
  --paper: #f7f5f0;
  --muted: #6f6c65;
  --white: #ffffff;
  --max: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 4vw, 68px);
  color: var(--white);
}

.brand {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.site-nav a:hover {
  opacity: 0.7;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #1b1b1b;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.05) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.4), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 7vw, 110px) clamp(70px, 10vw, 120px);
}

.kicker,
.section-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.gallery-intro h2,
.about h2,
.contact h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.hero-link {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px clamp(60px, 8vw, 100px);
  text-align: center;
}

.gallery-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.photo-story {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.photo-block {
  margin: 0 auto clamp(65px, 10vw, 135px);
  padding: 0 clamp(16px, 4vw, 56px);
}

.photo-block img {
  max-height: 88vh;
  object-fit: contain;
  margin: 0 auto;
}

.full-photo {
  max-width: 1500px;
}

.medium-photo {
  max-width: 1080px;
}

.portrait-photo {
  max-width: 820px;
}

.about {
  padding: clamp(100px, 14vw, 190px) 24px;
  background: #ece8df;
}

.about-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about h2,
.contact h2 {
  margin: 0 0 28px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.about p:not(.section-label) {
  margin: 10px auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact {
  padding: clamp(110px, 15vw, 200px) 24px;
  background: #181818;
  color: var(--white);
  text-align: center;
}

.contact a {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  text-underline-offset: 7px;
}

footer {
  padding: 30px 24px;
  background: #111;
  color: #aaa;
  text-align: center;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    right: 18px;
    flex-direction: column;
    gap: 16px;
    padding: 22px 26px;
    background: rgba(20,20,20,0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero > img {
    object-fit: contain;
    object-position: center;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .photo-block {
    margin-bottom: 72px;
    padding: 0 12px;
  }

  .photo-block img {
    max-height: none;
  }
}
