:root {
  --cream: #f3eddf;
  --paper: #fbf8f0;
  --ink: #28251f;
  --soft-ink: #6b665c;
  --leaf: #657056;
  --petal: #d7a7a4;
  --lavender: #9f98b8;
  --line: rgba(40, 37, 31, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1280px;
  --pad: clamp(18px, 4vw, 54px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(40,37,31,.15) .55px, transparent .55px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
  z-index: 20;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
  padding: 24px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.wordmark {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .13em;
  text-decoration: none;
}
.site-header nav { display: flex; gap: 22px; }
.site-header nav a {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover { border-color: var(--ink); }

.section-shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 86vh;
  padding: clamp(56px, 8vw, 116px) 0 clamp(70px, 10vw, 138px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}
.kicker {
  margin: 0 0 15px;
  color: var(--leaf);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .18em;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
  margin: 0;
}
h1 { font-size: clamp(72px, 10.5vw, 150px); }
h1 em { font-weight: 400; color: var(--leaf); }
h2 { font-size: clamp(50px, 6.4vw, 92px); }
.intro {
  max-width: 490px;
  margin: 30px 0 25px;
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.25;
}
.text-link { font-size: 13px; text-underline-offset: 5px; }
.hero-stage { position: relative; }
.hero-image {
  width: min(100%, 650px);
  margin-left: auto;
  background: var(--paper);
  padding: clamp(9px, 1.2vw, 15px);
  box-shadow: 0 20px 55px rgba(46,40,30,.13);
  transform: rotate(1.2deg);
  cursor: zoom-in;
}
.hero-image img { aspect-ratio: 1/1; object-fit: cover; }
.doodle-one {
  position: absolute;
  left: -22px;
  top: -44px;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 90px);
  color: var(--petal);
  transform: rotate(-12deg);
}
.scribble {
  margin: 16px 8% 0 auto;
  width: max-content;
  font-family: var(--serif);
  font-style: italic;
  color: var(--soft-ink);
  transform: rotate(-2deg);
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--leaf);
}
.marquee div { width: max-content; animation: drift 36s linear infinite; }
@keyframes drift { to { transform: translateX(-50%); } }

.work { padding: clamp(88px, 11vw, 155px) 0; }
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(42px, 6vw, 80px);
}
.section-note { max-width: 220px; color: var(--soft-ink); font-size: 13px; }
.masonry-ish {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}
.tile {
  grid-column: span 4;
  margin: 0;
  cursor: zoom-in;
}
.tile.wide { grid-column: span 6; }
.tile.tall { grid-column: span 3; }
.tile img {
  background: var(--paper);
  padding: 8px;
  border: 1px solid rgba(40,37,31,.09);
  box-shadow: 0 14px 28px rgba(44,39,31,.07);
}
.tile figcaption {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--soft-ink);
}
.tilt-left { transform: rotate(-1deg); }
.tilt-right { transform: rotate(1deg); }
.tile:hover { transform: translateY(-4px) rotate(0); transition: transform .25s ease; }

.studio-break {
  background: #31362c;
  color: #f7f0e2;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  min-height: 620px;
}
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-copy {
  padding: clamp(42px, 7vw, 95px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.studio-copy p {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.tiny-flower { color: #f1c0be; font-size: 45px; }

.about {
  padding: clamp(96px, 12vw, 170px) 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}
.portrait-wrap { position: relative; }
.portrait {
  margin: 0;
  padding: 10px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(42,37,30,.1);
  transform: rotate(-1.5deg);
}
.portrait img { aspect-ratio: 4/5; object-fit: cover; }
.portrait-label {
  display: block;
  margin: 13px 0 0 10px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--soft-ink);
}
.about-copy { max-width: 670px; }
.about-copy .big-copy {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.8vw, 37px);
  line-height: 1.2;
  color: var(--ink);
}
.about-copy > p:not(.kicker):not(.big-copy) { color: var(--soft-ink); max-width: 560px; }
.placeholder-note { font-size: 12px; border-left: 2px solid var(--petal); padding-left: 12px; }

.process {
  padding: 0 0 clamp(100px, 13vw, 180px);
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(35px, 7vw, 100px);
  align-items: center;
}
.process-image { margin: 0; }
.process-image img { aspect-ratio: 16/9; object-fit: cover; }

.contact {
  padding: clamp(85px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 36px;
}
.contact-links a {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  text-underline-offset: 8px;
}
.contact-note { color: var(--soft-ink); font-size: 11px; margin-top: 34px; }

footer {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--soft-ink);
  font-size: 11px;
}

.lightbox {
  border: 0;
  background: transparent;
  padding: 0;
  width: min(92vw, 1100px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgba(28,26,23,.87); backdrop-filter: blur(8px); }
.lightbox img { max-height: 88vh; width: auto; max-width: 100%; margin: auto; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 850px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-stage { max-width: 620px; margin: 0 auto; }
  .masonry-ish { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide, .tile.tall { grid-column: auto; }
  .tile:first-child { grid-column: 1 / -1; }
  .studio-break { grid-template-columns: 1fr; }
  .studio-photo { min-height: 460px; }
  .about, .process { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 520px; }
}

@media (max-width: 560px) {
  .site-header { align-items: flex-start; }
  .site-header nav { gap: 12px; }
  h1 { font-size: clamp(62px, 22vw, 100px); }
  .section-title-row { display: block; }
  .section-note { margin-top: 20px; }
  .masonry-ish { grid-template-columns: 1fr; }
  .tile:first-child { grid-column: auto; }
  .tile, .tilt-left, .tilt-right { transform: none; }
  .studio-photo { min-height: 330px; }
  .contact-links { flex-direction: column; gap: 15px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
}
