/* Birch & Twine — magazine spread, giant type, linen. No photo-overlay hero. */
:root {
  --linen: #efe8dc;
  --ink: #2c2418;
  --clay: #8c5a3c;
  --fade: #6a5a48;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Manrope, "Helvetica Neue", sans-serif;
  background: var(--linen);
  color: var(--ink);
  line-height: 1.5;
}
a { color: var(--clay); }
img { max-width: 100%; display: block; }
figure { margin: 0; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 8px; background: #fff; padding: 8px; z-index: 20; }

.colophon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 20px 40px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mark { text-decoration: none; color: inherit; font-weight: 500; }
.colophon nav { display: flex; gap: 22px; }
.colophon a { text-decoration: none; color: inherit; }
.where { margin: 0; color: var(--fade); }

.spread {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px 48px;
  align-items: end;
  padding: 8px 40px 20px;
  min-height: 560px;
}
.spread-type { padding-bottom: 24px; }
.spread h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 11vw, 8.6rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.spread p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  max-width: 26ch;
  margin: 0;
  color: var(--fade);
}
.spread-still img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 30%;
}
.spread-still figcaption,
.look figcaption {
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fade);
}

.look {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  grid-auto-rows: 220px;
  gap: 14px 14px;
  padding: 12px 40px 40px;
}
.look figure { display: flex; flex-direction: column; }
.look img { width: 100%; flex: 1; height: 0; object-fit: cover; }
.look .wide { grid-column: span 2; }

.room {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  padding: 8px 40px 48px;
}
.room img { width: 100%; height: 420px; object-fit: cover; }
.room h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 10px;
}
.room p { margin: 0 0 12px; max-width: 36ch; }

.meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 8px 40px 48px;
}
.meta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 8px;
}
.meta p { margin: 0; max-width: 34ch; }

.ig {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 40px 48px;
}
.ig img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.foot {
  padding: 8px 40px 40px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .colophon nav, .where { display: none; }
  .spread, .look, .room, .meta { grid-template-columns: 1fr; }
  .spread { min-height: 0; padding: 12px 22px 24px; }
  .spread h1 { font-size: clamp(3.6rem, 18vw, 5.4rem); }
  .spread-still img { height: 320px; }
  .look { grid-auto-rows: 180px; padding: 8px 22px 28px; }
  .look .wide { grid-column: auto; }
  .room, .meta, .ig, .foot, .colophon { padding-left: 22px; padding-right: 22px; }
  .room img { height: 240px; }
  .ig { grid-template-columns: 1fr 1fr; }
}
