:root {
  --paper: #fbfaf6;
  --cream: #f4eee4;
  --linen: #e7dccb;
  --stone: #b9ad9c;
  --ink: #141210;
  --soft-ink: #514a42;
  --muted: #8a8174;
  --sage: #465848;
  --line: rgba(20, 18, 16, 0.14);
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--paper), var(--cream) 46%, var(--paper));
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(20, 18, 16, 0.22) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(20, 18, 16, 0.38);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, background 160ms ease;
  backdrop-filter: blur(6px);
}

.cursor.is-hovering {
  width: 66px;
  height: 66px;
  background: rgba(231, 220, 203, 0.35);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 58px);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.72);
  border-bottom: 1px solid rgba(20, 18, 16, 0.08);
  backdrop-filter: blur(18px);
}

.wordmark,
.nav {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  gap: 28px;
  padding: 118px clamp(18px, 6vw, 86px) 72px;
}

.hero-logo {
  width: min(340px, 66vw);
  padding: clamp(8px, 2vw, 18px);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-logo:hover {
  transform: translateY(-4px) scale(1.015);
}

.hero-logo img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.hero-kicker,
.section-number {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 1000px;
  text-align: center;
  font-size: clamp(46px, 9vw, 128px);
}

h2 {
  font-size: clamp(38px, 7vw, 96px);
}

p {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-image {
  width: min(1180px, 100%);
  margin-top: 18px;
  overflow: hidden;
  background: var(--linen);
  clip-path: inset(0 0 0 0);
}

.hero-image img {
  aspect-ratio: 2.5 / 1;
  height: auto;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.intro,
.featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 8vw, 118px);
  align-items: center;
  padding: clamp(80px, 12vw, 170px) clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.intro-title,
.featured-copy {
  display: grid;
  gap: 22px;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.about {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(320px, 1fr);
  gap: clamp(30px, 8vw, 118px);
  align-items: center;
  padding: clamp(80px, 12vw, 170px) clamp(18px, 6vw, 86px);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.about-portrait {
  align-self: center;
  display: grid;
  align-items: end;
  overflow: visible;
  min-height: 520px;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), rgba(231, 220, 203, 0.42));
}

.about-portrait img {
  width: min(100%, 560px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.04);
  mix-blend-mode: multiply;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.featured {
  background: #fffdf8;
}

.featured-media {
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(20, 18, 16, 0.12);
  clip-path: inset(0 0 0 0);
}

.featured-media img {
  aspect-ratio: 2.1 / 1;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 1000ms ease;
}

.featured-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.gallery-card {
  min-height: 66vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--paper);
  overflow: hidden;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 650ms ease;
}

.gallery-card:nth-child(2) {
  transition-delay: 90ms;
}

.gallery-card:nth-child(3) {
  transition-delay: 180ms;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(20, 18, 16, 0.13);
}

.gallery-card img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card div {
  padding: 22px;
  background: rgba(251, 250, 246, 0.94);
}

.gallery-card p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.gallery-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.statement {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 170px) clamp(18px, 8vw, 130px);
  background: var(--linen);
}

.statement p {
  max-width: 1040px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.98;
  text-align: center;
}

.contact {
  display: grid;
  place-items: center;
  min-height: 90vh;
  padding: clamp(80px, 12vw, 160px) 18px;
  background: var(--paper);
}

.contact-inner {
  width: min(720px, 100%);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.contact-inner img {
  width: min(260px, 64vw);
}

.contact a {
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.socials a {
  margin-top: 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition: opacity 950ms ease, transform 950ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 950ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-image.reveal,
.featured-media.reveal,
.gallery-card.reveal {
  transform: translateY(46px) scale(0.985);
  clip-path: inset(9% 0 9% 0);
}

.hero-image.reveal.is-visible,
.featured-media.reveal.is-visible,
.gallery-card.reveal.is-visible {
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(-0.8%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.8%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: grid;
    justify-items: end;
    gap: 8px;
  }

  .hero {
    min-height: 92vh;
    align-content: end;
  }

  .intro,
  .about,
  .featured,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .featured-media img {
    aspect-ratio: 1.25 / 1;
  }

  .gallery-card {
    min-height: auto;
  }

  .gallery-card img {
    min-height: 360px;
  }

  .about-portrait img {
    max-height: none;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 560px) {
  .wordmark {
    max-width: 132px;
    line-height: 1.25;
  }

  .hero-logo {
    width: min(290px, 78vw);
  }

  dl div {
    display: grid;
  }

  dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
