/* RTM Design — one look, three pages.
   Dark stone, bronze hairline, roman + grotesque. */

:root {
  --stone: #12100e;
  --stone-2: #1a1714;
  --ivory: #f3eee4;
  --ivory-dim: rgba(243, 238, 228, 0.64);
  --bronze: #b8956a;
  --bronze-line: rgba(184, 149, 106, 0.5);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: Figtree, ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--stone); }

body {
  min-height: 100vh;
  background: var(--stone);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bronze); }
a:focus-visible { outline: 1px solid var(--bronze); outline-offset: 3px; }

/* ——— chrome (every page) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.35rem 2.25rem 1.05rem;
  border-bottom: 1px solid var(--bronze-line);
  background: linear-gradient(to bottom, rgba(18,16,14,0.78), rgba(18,16,14,0.22) 72%, transparent);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
}

nav {
  display: flex;
  gap: 1.85rem;
}

nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

nav a[aria-current="page"] { color: var(--bronze); }

/* ——— splash field (index, and the contact page) ——— */
.field {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.field-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18,16,14,0.78) 0%, rgba(18,16,14,0.18) 48%, rgba(18,16,14,0.28) 100%);
  pointer-events: none;
}

.field--plain::after {
  background: radial-gradient(ellipse at 40% 70%, rgba(36,30,24,0.55), transparent 55%);
}

.field-copy {
  position: relative;
  z-index: 1;
  padding: 0 2.25rem 5.5rem;
  max-width: 40rem;
}

.lead {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.05rem, 3.6vw, 3.05rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.lead::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 1.2rem;
}

.sub {
  margin: 0.85rem 0 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ivory-dim);
  max-width: 28rem;
}

.quiet {
  display: inline-block;
  margin-top: 1.7rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.18rem;
}

.whisper {
  position: absolute;
  right: 2.25rem;
  bottom: 1.35rem;
  z-index: 1;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ——— work ——— */
.work {
  padding-top: 0;
}

.still {
  margin: 0;
}

.still img.bleed {
  width: 100%;
  height: 86vh;
  object-fit: cover;
  background: var(--stone-2);
}

.still img.wide {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.still img.sheet {
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  background: var(--stone);
}

.still figcaption,
.block-name {
  margin: 0;
  padding: 1rem 2.25rem 3.75rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--ivory-dim);
}

.walk {
  padding: 0 0 1rem;
}

.walk .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.walk iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.channel {
  padding: 1rem 2.25rem 4.5rem;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
}

.channel a { border-bottom: 1px solid var(--bronze-line); }

.page-foot {
  padding: 0 2.25rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ——— contact (same field as splash, no photograph) ——— */
.contact-copy .firm {
  margin: 0 0 1.35rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.contact-copy address {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.45;
  font-weight: 400;
}

.contact-copy address a {
  border-bottom: 1px solid var(--bronze-line);
}

.contact-copy address a:hover { color: var(--bronze); }

@media (max-width: 720px) {
  .site-header { padding: 1.05rem 1.15rem 0.85rem; }
  .field-copy { padding: 0 1.15rem 4.2rem; }
  .whisper { right: 1.15rem; bottom: 1.1rem; }
  .still figcaption,
  .block-name,
  .channel,
  .page-foot { padding-left: 1.15rem; padding-right: 1.15rem; }
  .still img.bleed { height: 70vh; }
}

.wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 5.6rem 8px 8px;
}
.wall figure { margin: 0; }
.wall img {
  width: 100%;
  height: 34vh;
  object-fit: cover;
  display: block;
  background: #1a1714;
}
.wall figcaption {
  display: none;
}
.wall .span-2 { grid-column: span 2; }
.wall .span-2 img { height: 48vh; }
@media (max-width: 720px) {
  .wall { grid-template-columns: repeat(2, 1fr); padding-top: 4.6rem; }
  .wall .span-2 { grid-column: span 2; }
  .wall img { height: 22vh; }
}

.stage-4 {
  min-height: 100vh;
  position: relative;
}
.hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--stone-2);
}
.hero-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero-4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,16,14,0.72) 0%, rgba(18,16,14,0.08) 42%, rgba(18,16,14,0.2) 100%);
  pointer-events: none;
}
.hero-4-copy {
  position: absolute;
  left: 1.8rem;
  bottom: 7.4rem;
  z-index: 2;
  max-width: 28rem;
}
.proofs {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.proofs a {
  display: block;
  overflow: hidden;
  background: var(--stone-2);
  height: 5.6rem;
  border: 1px solid rgba(184, 149, 106, 0.28);
}
.proofs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.proofs a:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
  .hero-4-copy { left: 1rem; bottom: 8.2rem; }
  .proofs { left: 0.7rem; right: 0.7rem; bottom: 0.7rem; gap: 0.4rem; }
  .proofs a { height: 3.6rem; }
}

.front {
  min-height: 100vh;
  background: #0c0b0a;
}
.front-hit {
  display: block;
  height: 100vh;
}
.front-hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% 0%;
}

/* ——— left contents window ——— */
.toc {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 12.75rem;
  z-index: 30;
  padding: 1.55rem 1.35rem 1.4rem;
  background: var(--stone);
  border-right: 1px solid var(--bronze-line);
  display: flex;
  flex-direction: column;
}

.toc .wordmark { font-size: 1.28rem; }
.toc .toc-label {
  margin: 2.1rem 0 0.7rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.toc nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.toc nav a {
  font-size: 1.02rem;
  font-weight: 500;
}

.has-toc .front,
.has-toc .work,
.has-toc .wall,
.has-toc .field,
.has-toc .walk,
.has-toc .page-foot,
.has-toc .about,
.has-toc .jobs,
.has-toc .contact-front {
  margin-left: 12.75rem;
}

.mark { display: none;
  position: fixed;
  top: 0.85rem;
  right: 1.05rem;
  z-index: 40;
  width: 13.5rem;
  line-height: 0;
  padding: 3px;
  background: #0c0b0a;
  box-shadow:
    0 0 0 1px var(--bronze),
    0 0 0 4px #0c0b0a,
    0 0 0 5px var(--bronze-line);
}
.mark img,
.mark svg {
  width: 100%;
  height: auto;
  display: block;
  outline: 1px solid rgba(184, 149, 106, 0.45);
  outline-offset: -1px;
}

.spine { display: none;
  position: fixed;
  top: 1.55rem;
  left: 12.75rem;
  right: 14.7rem;
  height: 1px;
  z-index: 35;
  background: var(--bronze);
  opacity: 0.55;
  pointer-events: none;
}
.spine::before,
.spine::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: var(--bronze);
}
.spine::before { left: 0; }
.spine::after { right: 0; }

@media (max-width: 720px) {
  .toc {
    position: sticky;
    top: 0;
    bottom: auto;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 1rem 1.15rem 0.85rem;
    border-right: 0;
    border-bottom: 1px solid var(--bronze-line);
  }
  .toc .toc-label { display: none; }
  .toc nav {
    flex-direction: row;
    gap: 1.2rem;
    margin: 0;
  }
  .has-toc .front,
  .has-toc .work,
  .has-toc .wall,
  .has-toc .field,
  .has-toc .walk,
  .has-toc .page-foot,
  .has-toc .about,
  .has-toc .jobs,
  .has-toc .contact-front {
    margin-left: 0;
  }
  .about { padding: 2.4rem 1.15rem 3rem; }
  .mark { display: none; width: 8.8rem; top: 0.55rem; right: 0.7rem; }
  .spine { display: none; display: none; }
}

.about {
  max-width: 42rem;
  padding: 4.2rem 3.2rem 5rem;
}
.about .lead {
  margin-bottom: 1.4rem;
}
.about p {
  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(243, 238, 228, 0.82);
}
.about .clients {
  margin-top: 1.7rem;
  color: var(--ivory-dim);
}

.contact-front {
  position: relative;
  min-height: 100vh;
  background: #0c0b0a;
}
.contact-front > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 60% 45%;
  display: block;
}
.contact-card {
  position: absolute;
  left: 1.6rem;
  top: 1.6rem;
  bottom: auto;
  z-index: 2;
  width: 20.5rem;
  padding: 1.2rem 1.3rem 1.15rem;
  background: rgba(18, 16, 14, 0.82);
  border: 1px solid var(--bronze-line);
}
.contact-card .firm {
  margin: 0 0 0.45rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.contact-card .phone {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
}
.contact-card .phone a { border-bottom: 1px solid var(--bronze-line); }
.contact-card .po {
  margin: 0.25rem 0 0.85rem;
  font-size: 0.86rem;
  color: var(--ivory-dim);
}
.ask label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.ask input[type="text"],
.ask input[type="email"],
.ask input[type="tel"],
.ask textarea {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid var(--bronze-line);
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}
.ask textarea { resize: vertical; min-height: 3.2rem; }
.ask input:focus,
.ask textarea:focus {
  outline: none;
  border-bottom-color: var(--bronze);
}
.ask .hp {
  position: absolute;
  left: -10000px;
  height: 0;
  overflow: hidden;
}
.ask .gate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.88rem;
  color: var(--ivory);
}
.ask .gate input { accent-color: var(--bronze); }
.ask button {
  display: inline-block;
  margin-top: 0.95rem;
  padding: 0.45rem 0;
  border: 0;
  border-bottom: 1px solid var(--bronze);
  background: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
}
.ask button:hover { color: var(--bronze); }

@media (max-width: 720px) {
  .has-toc .about {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about { padding: 0; max-width: none; }
  .about-art {
    display: block;
    min-height: 36vh;
  }
  .about-art img {
    min-height: 36vh;
    height: 36vh;
  }
  .about-frame {
    padding: 1.55rem 1.15rem 1.8rem;
    min-height: auto;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    border-top: 1px solid var(--bronze);
    border-bottom: 1px solid var(--bronze);
  }
  .contact-card {
    top: 1rem;
    left: 1rem;
    right: auto;
    bottom: auto;
    width: min(20.5rem, calc(100% - 2rem));
    max-width: none;
  }
  .front-hit {
    height: calc(100dvh - 3.4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0b0a;
  }
  .front-hit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* ——— about: art | statement | art ——— */
.has-toc .about {
  max-width: none;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(22rem, 28rem) 1fr;
  align-items: stretch;
  padding: 0;
}
.about-art {
  margin: 0;
  min-height: 100vh;
  background: #0c0b0a;
  overflow: hidden;
}
.about-art img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}
.about-art--left {
  background: #d4c7b0;
}
.about-art--left img {
  object-fit: cover;
  object-position: left top;
}
.about-art--right img {
  object-fit: cover;
  object-position: 42% 55%;
}
.about-frame {
  position: relative;
  max-width: none;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.1rem 2.15rem 3.2rem;
  border-left: 1px solid var(--bronze);
  border-right: 1px solid var(--bronze);
  box-shadow:
    -6px 0 0 0 var(--stone),
    -7px 0 0 0 var(--bronze),
    6px 0 0 0 var(--stone),
    7px 0 0 0 var(--bronze);
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/contact.png) center / cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.about-frame > * { position: relative; z-index: 1; }
.about .lead { margin: 0; }
.about .clients { margin-top: 0; }
.about .blurb {
  margin-top: 0;
  color: var(--ivory-dim);
  font-size: 0.98rem;
}

/* ——— contact card contrast ——— */
.contact-card {
  background: rgba(12, 11, 10, 0.9);
}

/* ——— projects: still left, sheet + copy right ——— */
.jobs {
  padding: 3.6rem 0 0;
}
.job {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: 70vh;
  border-bottom: 1px solid var(--bronze-line);
}
.job-still {
  background: var(--stone-2);
  min-height: 70vh;
}
.job-still img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
}
.job-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem 2.5rem 2.8rem;
  background: #1a1714;
}
.job-sheet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}
.job-copy > *:not(.job-sheet) { position: relative; z-index: 1; }
.job-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.job-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.job-copy p {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  color: rgba(243, 238, 228, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}
.job-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin-top: 1.35rem;
}
.job-links a {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 0.12rem;
}
.jobs + .page-foot { padding-top: 2.2rem; }
.jobs-note {
  max-width: 34rem;
  padding-left: 2.5rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
  line-height: 1.55;
}
.jobs-note p { margin: 0; }
.jobs-note .jobs-place {
  margin-top: 1.15rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.jobs-note a { border-bottom: 1px solid var(--bronze); }

@media (max-width: 900px) {
  .job { grid-template-columns: 1fr; min-height: 0; }
  .job-still, .job-still img { min-height: 46vh; }
}

/* phone last so stacked About art wins over the desktop min-height */
@media (max-width: 720px) {
  .about-art,
  .about-art img {
    min-height: 36vh;
    height: 36vh;
  }
  .about-frame { min-height: auto; }
}
