:root {
  color-scheme: light;
  --ink: #1d201d;
  --muted: #6d716a;
  --paper: #f0ede4;
  --accent: #2e6668;
  --line: #d6d2c8;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
}

.site-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(41%, 1.06fr) minmax(30rem, .94fr);
}

.image-panel {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  background: #526563;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 21, .22), transparent 35%, rgba(7, 21, 21, .58));
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 59% center;
  filter: saturate(.76) contrast(1.04);
}

.place-label, .photo-credit {
  z-index: 1;
  position: absolute;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.place-label { left: clamp(1.5rem, 3.4vw, 3rem); bottom: 2.7rem; margin: 0; }
.photo-credit { right: -2.2rem; bottom: 5.1rem; opacity: .8; text-decoration: none; transform: rotate(-90deg); transform-origin: center; }
.photo-credit:hover { opacity: 1; text-decoration: underline; }

.content-panel {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4.2vw, 4rem);
}

.site-header, footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: .98rem;
  font-weight: 400;
  letter-spacing: -.08em;
}

.status, .eyebrow, footer, .details {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.status i { width: .42rem; height: .42rem; border-radius: 50%; background: #d4834b; }

.main-copy { align-self: center; max-width: 37rem; padding: 4rem 0; }
.eyebrow { margin: 0 0 1.4rem; color: var(--accent); }

h1 {
  max-width: 9.5ch;
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.4rem, 6.8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

h1 em { color: var(--accent); font-weight: 400; }

.intro {
  max-width: 29rem;
  margin: 2.25rem 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
}

.body-copy {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: #4e534c;
  font-size: .92rem;
  line-height: 1.8;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.2rem;
  margin-top: 2.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.details span { display: inline-flex; align-items: center; gap: .42rem; }
.details span::before { content: "✦"; color: var(--accent); font-size: .55rem; }

footer { padding-top: 1.1rem; border-top: 1px solid var(--line); }
footer p { margin: 0; }

@media (max-width: 760px) {
  .site-shell { display: block; }
  .image-panel { min-height: 40svh; height: 40svh; }
  .image-panel img { object-position: 55% 60%; }
  .place-label { left: 1.4rem; bottom: 1.3rem; }
  .photo-credit { display: none; }
  .content-panel { min-height: 60svh; padding: 1.4rem; }
  .main-copy { padding: 3.5rem 0; }
  h1 { font-size: clamp(3.3rem, 14vw, 5.4rem); }
  .status { font-size: .54rem; }
  footer { align-items: flex-start; flex-direction: column; gap: .5rem; }
}
