/* ===== tokens ===== */
:root {
  --bg:        #f4ede2;
  --bg-alt:   #ebe2d4;
  --bg-deep:  #1a1715;
  --ink:      #1a1715;
  --ink-soft: #59504a;
  --ink-mute: #8b8079;
  --line:     #d9cfbf;
  --blush:    #d8b9b0;
  --rose:     #b87b75;

  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --hand:  "Caveat", "Brush Script MT", cursive;

  --max:   1320px;
  --gut:   clamp(20px, 4vw, 56px);
  --r:     2px;
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===== type system ===== */
.display-1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.display-2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96;
}
.display-1 em, .display-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.muted { color: var(--ink-soft); }
.muted a { border-bottom: 1px solid currentColor; }

/* ===== nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.nav.is-stuck { border-color: var(--line); }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand__mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--rose);
}
.brand__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ===== hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(32px, 6vw, 80px) var(--gut) clamp(60px, 9vw, 120px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero__type { position: relative; }
.hero__kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.hero__title {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-size: clamp(3.6rem, 11vw, 9.5rem);
  font-variation-settings: "opsz" 144;
}
.hero__title-l1 {
  display: block;
}
.hero__title-l2 {
  display: block;
  padding-left: 1.6em;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--ink-soft);
}
.hero__title-l2 em {
  font-style: italic;
  color: var(--rose);
}
.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 38ch;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  line-height: 1.55;
}
.hero__lede .loc {
  color: var(--ink);
  font-style: italic;
  font-family: var(--serif);
}
.hero__meta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: all 0.3s cubic-bezier(.7,0,.3,1);
}
.btn--primary {
  background: var(--bg-deep);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--bg-deep);
  color: var(--bg-deep);
}
.btn--ghost:hover {
  background: var(--bg-deep);
  color: var(--bg);
}
.hero__scribble {
  position: absolute;
  bottom: -40px;
  left: 0;
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--rose);
  transform: rotate(-4deg);
  opacity: 0.7;
}
.hero__scribble em { font-style: normal; }
.hero__avail {
  margin: 1.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-alt) 60%, transparent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6aa45e;
  box-shadow: 0 0 0 0 rgba(106,164,94,0.6);
  animation: pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(106,164,94,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(106,164,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(106,164,94,0); }
}

.hero__image {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.hero__image:hover img { transform: scale(1.05); }
.hero__image figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--hand);
  font-size: 1.15rem;
  color: #f4ede2;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

/* ===== ticker ===== */
.ticker {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
}
.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--ink-soft);
  animation: ticker-scroll 36s linear infinite;
  width: max-content;
}
.ticker__track > span:nth-child(2n) { color: var(--rose); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== stats ===== */
.stats { padding: clamp(48px, 7vw, 96px) var(--gut); }
.stats__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 60px);
  text-align: center;
}
.stats__cell {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stats__num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats__label {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== about ===== */
.about {
  padding: clamp(60px, 9vw, 130px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.about__copy p { font-size: 1.05rem; max-width: 56ch; }
.about__copy .display-2 { margin: 0.4rem 0 1.4rem; }
.link-arrow {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: gap 0.3s ease;
}
.link-arrow::after { content: " →"; transition: transform 0.3s; display: inline-block; }
.link-arrow:hover::after { transform: translateX(4px); }

.about__portrait { position: relative; }
.about__portrait img,
.about__portrait video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
  filter: saturate(0.92) contrast(1.02);
  display: block;
}
.about__caption {
  display: block;
  margin-top: 12px;
  font-family: var(--hand);
  font-size: 1.2rem;
  color: var(--rose);
}

/* ===== feature ===== */
.feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(60px, 9vw, 130px) var(--gut);
  align-items: center;
  background: var(--bg-deep);
  color: var(--bg);
}
.feature__img {
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r);
}
.feature__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.feature__img:hover img { transform: scale(1.04); }
.feature__copy .display-1 em { color: var(--blush); }
.feature__copy p { color: rgba(244,237,226,0.7); margin: 1rem 0 1.6rem; max-width: 36ch; }
.feature__like {
  display: inline-block;
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--blush);
}
.feature .section-label { color: var(--blush); }

/* ===== gallery ===== */
.gallery {
  padding: clamp(60px, 9vw, 130px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 880px;
}
.gallery__kicker {
  font-family: var(--hand);
  color: var(--blush);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.gallery__kicker em { font-style: italic; color: var(--blush); }
.gallery__head .display-1 {
  margin: 0;
  line-height: 0.95;
}
.gallery__head .display-1 em { color: var(--blush); }
.gallery__lede {
  margin: clamp(20px, 2.4vw, 32px) 0 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 640px;
}
.gallery__lede em { font-style: italic; color: var(--ink); }
.gallery__lede-divider {
  display: inline-block;
  margin: 0 0.5em;
  color: var(--blush);
}
.gallery__period { font-style: italic; color: var(--ink); }

/* ===== gallery editorial grid ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.6vw, 44px) clamp(16px, 2vw, 32px);
  align-items: start;
}

.tile {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font: inherit;
  color: inherit;
}

/* Editorial placement — each row contained, spans alternate to give rhythm. */
.tile:nth-child(1)  { grid-column: 1 / span 5;  }
.tile:nth-child(1)  .tile__frame { aspect-ratio: 4 / 5; }
.tile:nth-child(2)  { grid-column: 7 / span 4;  }
.tile:nth-child(2)  .tile__frame { aspect-ratio: 3 / 4; }
.tile:nth-child(3)  { grid-column: 1 / span 3;  }
.tile:nth-child(3)  .tile__frame { aspect-ratio: 1 / 1; }
.tile:nth-child(4)  { grid-column: 5 / span 4;  }
.tile:nth-child(4)  .tile__frame { aspect-ratio: 3 / 4; }
.tile:nth-child(5)  { grid-column: 10 / span 3; }
.tile:nth-child(5)  .tile__frame { aspect-ratio: 4 / 5; }
.tile:nth-child(6)  { grid-column: 3 / span 8;  }
.tile:nth-child(6)  .tile__frame { aspect-ratio: 16 / 10; }
.tile:nth-child(7)  { grid-column: 1 / span 4;  }
.tile:nth-child(7)  .tile__frame { aspect-ratio: 3 / 4; }
.tile:nth-child(8)  { grid-column: 6 / span 5;  }
.tile:nth-child(8)  .tile__frame { aspect-ratio: 4 / 5; }
.tile:nth-child(9)  { grid-column: 1 / span 3;  }
.tile:nth-child(9)  .tile__frame { aspect-ratio: 1 / 1; }
.tile:nth-child(10) { grid-column: 5 / span 4;  }
.tile:nth-child(10) .tile__frame { aspect-ratio: 3 / 4; }
.tile:nth-child(11) { grid-column: 10 / span 3; }
.tile:nth-child(11) .tile__frame { aspect-ratio: 1 / 1; }
.tile:nth-child(12) { grid-column: 3 / span 8;  }
.tile:nth-child(12) .tile__frame { aspect-ratio: 16 / 9; }

.tile__frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-alt);
  isolation: isolate;
  width: 100%;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 1px 0 rgba(26,23,21,0.04),
    0 18px 30px -22px rgba(26,23,21,0.4);
  transition: box-shadow 0.5s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.tile:hover .tile__frame {
  box-shadow:
    0 1px 0 rgba(26,23,21,0.06),
    0 30px 60px -28px rgba(26,23,21,0.55);
  transform: translateY(-4px);
}
.tile__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
  filter: saturate(0.95);
}
.tile:hover .tile__frame img { transform: scale(1.04); filter: saturate(1.05); }

.tile__num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--mono, ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: #f4ede2;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
  mix-blend-mode: difference;
}

.tile__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 2px;
}
.tile__cap {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile__meta {
  font-family: var(--mono, ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tile__meta::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-soft);
  display: inline-block;
  transition: width 0.5s cubic-bezier(.2,.8,.2,1), background-color 0.4s ease;
}
.tile:hover .tile__meta::before { width: 36px; background: var(--blush); }
.tile:hover .tile__meta { color: var(--ink); }

/* Tablet — collapse to 6-col with simpler rhythms. */
@media (max-width: 1080px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: clamp(18px, 3vw, 32px); }
  .tile { margin-top: 0 !important; }
  .tile:nth-child(1)  { grid-column: 1 / span 4; }
  .tile:nth-child(1)  .tile__frame { aspect-ratio: 4 / 5; }
  .tile:nth-child(2)  { grid-column: 5 / span 2; margin-top: clamp(40px, 6vw, 80px) !important; }
  .tile:nth-child(2)  .tile__frame { aspect-ratio: 3 / 4; }
  .tile:nth-child(3)  { grid-column: 1 / span 3; }
  .tile:nth-child(3)  .tile__frame { aspect-ratio: 1 / 1; }
  .tile:nth-child(4)  { grid-column: 4 / span 3; }
  .tile:nth-child(4)  .tile__frame { aspect-ratio: 3 / 4; }
  .tile:nth-child(5)  { grid-column: 1 / span 2; margin-top: clamp(30px, 4vw, 60px) !important; }
  .tile:nth-child(5)  .tile__frame { aspect-ratio: 4 / 5; }
  .tile:nth-child(6)  { grid-column: 3 / span 4; }
  .tile:nth-child(6)  .tile__frame { aspect-ratio: 5 / 4; }
  .tile:nth-child(7)  { grid-column: 1 / span 3; }
  .tile:nth-child(7)  .tile__frame { aspect-ratio: 3 / 4; }
  .tile:nth-child(8)  { grid-column: 4 / span 3; }
  .tile:nth-child(8)  .tile__frame { aspect-ratio: 1 / 1; }
  .tile:nth-child(9)  { grid-column: 1 / -1; }
  .tile:nth-child(9)  .tile__frame { aspect-ratio: 16 / 9; }
  .tile:nth-child(10) { grid-column: 1 / span 3; }
  .tile:nth-child(10) .tile__frame { aspect-ratio: 3 / 4; }
  .tile:nth-child(11) { grid-column: 4 / span 3; margin-top: clamp(30px, 4vw, 60px) !important; }
  .tile:nth-child(11) .tile__frame { aspect-ratio: 1 / 1; }
  .tile:nth-child(12) { grid-column: 1 / -1; }
  .tile:nth-child(12) .tile__frame { aspect-ratio: 21 / 9; }
}

/* Mobile — single column stack. */
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 24px; }
  .tile,
  .tile:nth-child(n) { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .tile .tile__frame,
  .tile:nth-child(n) .tile__frame { aspect-ratio: 4 / 5 !important; }
  .tile:nth-child(6) .tile__frame,
  .tile:nth-child(8) .tile__frame,
  .tile:nth-child(12) .tile__frame { aspect-ratio: 16 / 10 !important; }
}

@media (prefers-reduced-motion: reduce) {
  .tile,
  .tile__frame,
  .tile__frame img { transition: none; }
}

/* ===== quote ===== */
.quote {
  padding: clamp(60px, 9vw, 130px) var(--gut);
  text-align: center;
  background: var(--bg-alt);
}
.quote p {
  margin: 0 auto 1rem;
  max-width: 18ch;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.quote p em { color: var(--rose); font-style: italic; }
.quote__attr {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== press / collabs ===== */
.press {
  padding: clamp(40px, 6vw, 80px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.press__row {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 32px);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.press__name em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.press__div {
  color: var(--ink-mute);
  font-style: italic;
}

/* ===== contact ===== */
.contact {
  padding: clamp(60px, 9vw, 140px) var(--gut);
  max-width: 920px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.contact .display-1 { margin: 0.6rem 0 1.2rem; }
.contact__lede {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--ink-soft);
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px clamp(16px, 2.4vw, 28px);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
  width: 100%;
  font-size: 1rem;
  font-family: var(--serif);
  font-weight: 400;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 8px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 28px;
}
.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.btn--lg { padding: 16px 28px; font-size: 0.95rem; }
.contact__fallback {
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.contact__fallback a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

/* form success / pending state */
.contact__form.is-sending button[type=submit] { opacity: 0.6; pointer-events: none; }
.contact__success {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  text-align: center;
}
.contact__success em { color: var(--rose); }

/* ===== footer ===== */
.foot {
  padding: 36px var(--gut) 24px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.foot__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot__row--small { font-size: 0.74rem; opacity: 0.7; margin-top: 12px; }
.foot a { border-bottom: 1px solid currentColor; }

/* ===== lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.94);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4vw;
  animation: fade-in 0.3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2rem;
  color: #f4ede2;
  line-height: 1;
}
.lightbox__inner {
  margin: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  max-height: 88vh;
  background: var(--bg);
  padding: clamp(18px, 2vw, 28px);
  border-radius: var(--r);
}
.lightbox__inner img {
  max-height: 84vh;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.lightbox__inner figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 8px;
}
.lightbox__inner figcaption p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
}
.lightbox__meta {
  display: flex;
  gap: 22px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }

/* ===== reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== responsive ===== */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
  .hero__title { font-size: clamp(3.4rem, 16vw, 6rem); }
  .hero__title-l2 { padding-left: 0.4em; }
  .hero__scribble { position: static; margin-top: 28px; display: block; }
  .about__grid,
  .feature {
    grid-template-columns: 1fr;
  }
  .stats__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .tile { grid-column: span 6 !important; aspect-ratio: 4/5 !important; }
  .tile:nth-child(odd) { grid-column: span 3 !important; aspect-ratio: 1/1 !important; }
  .tile:nth-child(even) { grid-column: span 3 !important; aspect-ratio: 1/1 !important; }
  .lightbox__inner { grid-template-columns: 1fr; }
  .nav__links { gap: 16px; font-size: 0.82rem; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__submit { flex-direction: column; align-items: stretch; text-align: center; }
}
