/* -------------------------------------------------------------------
   S/Y Carolina · October 2026
   Editorial single-page site — paper sections + black plate insertions
   ------------------------------------------------------------------- */

:root {
  /* Palette --------------------------------------------------------- */
  --paper:   #F5F1E8;   /* warm off-white background */
  --ink:     #1A1714;   /* warm near-black */
  --aegean:  #2E5266;   /* muted teal pulled from boat4 water */
  --faded:   #8A8275;   /* warm gray for metadata */
  --rule:    #C9C2B2;   /* hairline rule, paper-darkened */
  --deep:    #0A0A0A;   /* near-black for dark plates */
  --bone:    #CBC3B3;   /* faded bone for body text on dark */
  --ember:   #C9A66B;   /* warm gold accent for italic emphasis on dark */

  /* Type ------------------------------------------------------------ */
  /* TODO: swap to GT Sectra Display + Söhne when licensed. */
  --display:  "Fraunces", "Tiempos Headline", "Canela", Georgia, serif;
  --italic:   "Cormorant Garamond", "Tiempos Headline", Georgia, serif;
  --body:     "Inter", "Söhne", "Untitled Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Scale (fluid clamp) -------------------------------------------- */
  --t-meta:  clamp(11px, 0.7vw + 9px, 13px);
  --t-body:  clamp(16px, 0.4vw + 15px, 17px);
  --t-lead:  clamp(19px, 0.7vw + 17px, 22px);
  --t-h2:    clamp(28px, 2.4vw + 16px, 44px);
  --t-h1:    clamp(36px, 4.2vw + 16px, 64px);
  --t-display: clamp(56px, 9vw, 128px);

  /* Rhythm ---------------------------------------------------------- */
  --measure: 62ch;
  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --section-gap: clamp(4rem, 8vw, 8rem);
}

/* -------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
p { margin: 0 0 1em; }
em, i { font-style: italic; }

/* -------------------------------------------------------------------
   Page grid — single source of truth for content vs full-bleed
   ------------------------------------------------------------------- */

body {
  display: grid;
  grid-template-columns:
    [full-start] minmax(var(--gutter), 1fr)
    [content-start] min(var(--measure), 100% - calc(var(--gutter) * 2)) [content-end]
    minmax(var(--gutter), 1fr) [full-end];
  /* No row-gap — dark plates butt cleanly against adjacent sections.
     Warm-paper sections supply their own breathing room via padding. */
}

body > * { grid-column: content; }

.full-bleed { grid-column: full; }
.inset      { grid-column: full; padding-inline: clamp(2vw, 4vw, 6vw); }

/* -------------------------------------------------------------------
   Hero — magazine cover plate
   ------------------------------------------------------------------- */

.hero {
  grid-column: full;
  position: relative;
  margin-top: 0;
  isolation: isolate;
}

.hero__image {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 1080px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

/* Top vignette — anchors the masthead. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 28%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.18) 60%,
    rgba(0, 0, 0, 0)    100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Bottom vignette — anchors the title block. */
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.40) 38%,
    rgba(0, 0, 0, 0.08) 75%,
    rgba(0, 0, 0, 0)    100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Masthead — top-left wordmark + edition mark. */
.hero__masthead {
  position: absolute;
  top: clamp(1.4rem, 2.6vw, 2.25rem);
  left: clamp(1rem, 2.6vw, 2.25rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1vw, 0.9rem);
  font-family: var(--body);
  font-size: var(--t-meta);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.hero__brand {
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__rule {
  width: clamp(20px, 3vw, 36px);
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  display: inline-block;
}
.hero__edition {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* Title block — bottom-centered cover line. */
.hero__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(3rem, 9vh, 6.5rem);
  text-align: center;
  padding-inline: var(--gutter);
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--body);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--t-meta);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}
.hero__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(52px, 8.4vw, 116px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin: 0 0 clamp(1.4rem, 2.8vw, 2rem);
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.5);
  font-variation-settings: "opsz" 144;
}
.hero__name em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--paper);
}
.hero__dateline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 clamp(0.7rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.6);
}
.hero__dot { opacity: 0.55; }

@media (max-width: 700px) {
  .hero__image { height: 92vh; min-height: 520px; }
  .hero__masthead { gap: 0.5rem; }
  .hero__rule { width: 18px; }
  .hero__title { bottom: clamp(2rem, 6vh, 4rem); }
  .hero__eyebrow { letter-spacing: 0.28em; }
}

/* -------------------------------------------------------------------
   Corner invite link — persistent across all sections
   ------------------------------------------------------------------- */

.invite-link {
  font-family: var(--body);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.invite-link:hover {
  color: var(--aegean);
  border-color: var(--aegean);
}

.invite-link--corner {
  position: fixed;
  top: clamp(1rem, 2.4vw, 2rem);
  right: clamp(1rem, 2.4vw, 2rem);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 10;
  color: #ffffff;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.invite-link--corner:hover {
  color: var(--ember);
  border-color: rgba(201, 166, 107, 0.6);
}

@media (max-width: 600px) {
  .invite-link--corner { font-size: 10px; padding: 0.4rem 0.65rem; }
}

/* -------------------------------------------------------------------
   Plate system — full-bleed dark sections inserted between paper
   ------------------------------------------------------------------- */

.plate {
  grid-column: full;
  width: 100%;
  background: var(--deep);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.plate__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 14rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}

/* ----- §02 · Title card "Four days at sea." ----- */

.plate--titlecard {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.plate--titlecard .plate__inner {
  padding-block: clamp(4rem, 10vh, 8rem);
}

.titlecard__h {
  font-family: var(--italic);
  font-weight: 300;
  font-style: italic;
  font-size: var(--t-display);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0;
}
.titlecard__h em {
  font-style: italic;
  color: var(--ember);
}

.titlecard__sub {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.75;
  max-width: 60ch;
  margin-inline: auto;
}
.titlecard__sub > span {
  white-space: nowrap;
}
.titlecard__sub-dot {
  color: var(--ember);
  opacity: 0.7;
}

/* ----- §04 · Cameo · Carlile full-screen split ----- */

.plate--cameo {
  background: #000000;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.cameo__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.cameo__portrait {
  position: relative;
  background: #000;
  overflow: hidden;
}
.cameo__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.04);
}

.cameo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
  background: #000;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.65;
  margin: 0;
}

.cameo__name {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  color: var(--paper);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
}
.cameo__name em {
  font-style: italic;
  color: var(--ember);
}
.cameo__creds {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  line-height: 1;
}

.cameo__line {
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone);
  max-width: 42ch;
  margin: 0;
}
.cameo__line em {
  font-style: italic;
  color: var(--paper);
}

.cameo__meta {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--paper);
  opacity: 0.85;
  border-top: 1px solid rgba(203, 195, 179, 0.18);
  padding-top: clamp(1rem, 1.6vw, 1.4rem);
  max-width: 40ch;
  margin: 0;
}

@media (max-width: 820px) {
  .cameo__inner {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
  }
  .cameo__text { padding: clamp(2rem, 8vw, 4rem) clamp(1.25rem, 6vw, 3rem); }
}

/* ----- §07 · Close · shot11-A blue-hour cove + invitation ----- */

.plate--close {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
}

.close__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* Two-layer veil: a gentle linear darkening top-to-bottom plus a focal
   radial pool behind the headline, so the image still breathes at the
   edges while the text sits on a legible field. */
.close__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%,
      rgba(0,0,0,0.62) 0%,
      rgba(0,0,0,0.28) 55%,
      rgba(0,0,0,0)    85%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.30) 30%,
      rgba(0,0,0,0.35) 65%,
      rgba(0,0,0,0.70) 100%);
  pointer-events: none;
}

.close__chrome {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh clamp(1.25rem, 6vw, 4rem);
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.close__h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  color: var(--paper);
  max-width: 18ch;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 28px rgba(0, 0, 0, 0.7);
}
.close__h em {
  font-style: italic;
  color: var(--ember);
}

.close__sub {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 18px rgba(0, 0, 0, 0.75);
}

.close__cta { margin: 0; }
.close__cta a {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--ember);
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  transition: color 280ms ease, letter-spacing 380ms ease;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 18px rgba(0, 0, 0, 0.7);
}
.close__cta a:hover {
  color: var(--ember);
  letter-spacing: 0.08em;
}

.close__foot {
  position: absolute;
  bottom: clamp(1rem, 2vh, 1.75rem);
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.55;
}

/* -------------------------------------------------------------------
   Section markers (§ 02 · The Frame)
   ------------------------------------------------------------------- */

.section-marker {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 2.5rem;
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
}
.section-marker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* -------------------------------------------------------------------
   Sections — warm paper, supply own breathing room via padding
   ------------------------------------------------------------------- */

.section {
  padding-block: calc(var(--section-gap) * 0.6);
}

.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 60ch;
  font-variation-settings: "opsz" 24;
}

/* -------------------------------------------------------------------
   §02 · The boat & the route
   Section is promoted to full-width so imagery breathes; text inside
   stays at measure via inner max-widths.
   ------------------------------------------------------------------- */

.section--place {
  grid-column: full;
  padding-block: calc(var(--section-gap) * 0.7);
  padding-inline: var(--gutter);
}

.section--place > .place-head,
.section--place > .place-prose {
  max-width: var(--measure);
  margin-inline: auto;
}

.section--place > .place-lead,
.section--place > .place-grid,
.section--place > .place-beat {
  max-width: 1180px;
  margin-inline: auto;
}

.section--place > .place-beat + .place-prose {
  margin-top: clamp(1.25rem, 2.4vw, 1.75rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section--place > .place-beat + .place-prose:last-child {
  margin-bottom: 0;
}

.place-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.place-head .section-marker {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.place-caption {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-lead);
  line-height: 1.4;
  color: var(--ink);
  max-width: 38ch;
  margin: 0;
}
.place-caption em {
  font-style: italic;
  color: var(--aegean);
}

.place-lead {
  margin: 0 0 clamp(0.75rem, 1.6vw, 1.25rem);
}
.place-lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 78vh;
  object-fit: cover;
  display: block;
}

.place-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}
.place-grid__item { margin: 0; }
.place-grid__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.place-grid__item--tall img {
  /* boat1 is naturally portrait — let it run a touch taller for rhythm */
  aspect-ratio: 4 / 5;
  object-position: center 40%;
}

@media (max-width: 720px) {
  .place-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw, 1rem);
  }
  .place-grid__item img { aspect-ratio: 4 / 3; }
  .place-grid__item--tall img { aspect-ratio: 3 / 4; }
}

.place-prose p {
  font-size: var(--t-body);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0;
}

/* Story beats — each beat is a single editorial image with a small
   italic caption underneath; followed by a prose paragraph at measure. */
.place-beat {
  margin: 0;
}
.place-beat img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 78vh;
  object-fit: cover;
  display: block;
}
.place-beat--map img {
  /* The hand-drawn chart needs the whole image visible — no cropping. */
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--paper);
  max-height: 82vh;
}
.place-figcaption {
  margin: clamp(0.65rem, 1.2vw, 1rem) 0 0;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 0.4vw + 14px, 18px);
  line-height: 1.4;
  color: var(--faded);
  text-align: left;
  letter-spacing: 0.005em;
}
.place-figcaption span {
  color: var(--ember);
  margin-right: 0.6em;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* -------------------------------------------------------------------
   §02 · Editorial variant — three beats, three layouts
   Used on index-editorial.html. Three beats with distinct registers:
     · spread-right (text | image-bleeds-right)
     · full-bleed   (cinematic image, caption below)
     · spread-left  (image-bleeds-left | text)
   ------------------------------------------------------------------- */

.section--place.section--editorial {
  padding-inline: 0;
  padding-block: calc(var(--section-gap) * 0.85);
}

.section--editorial > .place-head {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section--editorial > .place-head .place-caption {
  font-size: clamp(22px, 0.7vw + 19px, 28px);
  line-height: 1.35;
  max-width: 32ch;
}

/* Asymmetric spread — image bleeds one edge of the viewport, text in narrow
   column on the other. The section--editorial container has no horizontal
   padding, so a 100%-wide grid child reaches the viewport edge. */
.place-spread {
  display: grid;
  align-items: center;
  gap: 0;
  margin: 0 0 clamp(4.5rem, 9vw, 7.5rem);
  width: 100%;
}
.place-spread:last-child { margin-bottom: 0; }

/* Text-left | Image-right (bleeds right edge) */
.place-spread--right {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
}
/* Image-left (bleeds left edge) | Text-right */
.place-spread--left {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
}

.place-spread__image { margin: 0; min-width: 0; }
.place-spread__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 88vh;
  object-fit: cover;
  display: block;
}
/* Map: don't crop the chart, sit it on the warm paper */
.place-spread--map .place-spread__image img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--paper);
}

.place-spread__text {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  max-width: 42ch;
  min-width: 0;
}
.place-spread--right .place-spread__text {
  /* anchor text inside the page gutter on the left, breathe toward the image */
  justify-self: end;
  padding-left: var(--gutter);
  padding-right: clamp(1.5rem, 3vw, 3rem);
}
.place-spread--left .place-spread__text {
  justify-self: start;
  padding-right: var(--gutter);
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.place-spread__eyebrow {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faded);
  margin: 0;
}
.place-spread__caption {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 1.6vw + 20px, 46px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
  max-width: 18ch;
}
.place-spread__caption em { color: var(--aegean); }
.place-spread__prose {
  font-size: var(--t-body);
  line-height: 1.7;
  margin: 0;
  max-width: 38ch;
  color: var(--ink);
}

/* Full-bleed cinematic image with caption below at measure */
.place-fullbleed {
  margin: 0 0 clamp(4.5rem, 9vw, 7.5rem);
}
.place-fullbleed img {
  width: 100%;
  height: clamp(440px, 78vh, 820px);
  object-fit: cover;
  display: block;
}
.place-fullbleed__caption {
  margin: clamp(1.75rem, 3.5vw, 3rem) auto 0;
  max-width: 62ch;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.6vw, 1.4rem);
}
.place-fullbleed__eyebrow {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faded);
  margin: 0;
}
.place-fullbleed__line {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 1.8vw + 22px, 52px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
  max-width: 22ch;
}
.place-fullbleed__line em { color: var(--aegean); }
.place-fullbleed__prose {
  font-size: var(--t-body);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0;
  color: var(--ink);
}

/* Mobile: collapse spreads to single column, image first then text */
@media (max-width: 820px) {
  .place-spread,
  .place-spread--right,
  .place-spread--left {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  .place-spread--right .place-spread__image,
  .place-spread--left .place-spread__image {
    grid-row: 1;
  }
  .place-spread--right .place-spread__text,
  .place-spread--left .place-spread__text {
    justify-self: stretch;
    max-width: none;
  }
  .place-spread__image img {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
  .place-spread--map .place-spread__image img {
    aspect-ratio: 3 / 2;
  }
  .place-fullbleed img { height: clamp(380px, 62vh, 560px); }
}

.placeholder {
  background: rgba(46, 82, 102, 0.07);
  padding: 0 0.25em;
  border-bottom: 1px dashed var(--aegean);
  color: var(--aegean);
  font-style: italic;
}

/* -------------------------------------------------------------------
   §04 · Practicalities
   ------------------------------------------------------------------- */

.practicalities {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.practicalities__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}
.practicalities__row:last-child {
  border-bottom: 1px solid var(--rule);
}
.practicalities dt {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
  padding-top: 0.35rem;
}
.practicalities dd {
  margin: 0;
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 600px) {
  .practicalities__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* -------------------------------------------------------------------
   Apply page (kept on warm paper for now)
   ------------------------------------------------------------------- */

.page-narrow .section,
.page-narrow .footer { row-gap: clamp(2rem, 5vw, 4rem); }

.back-link {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
  text-decoration: none;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  display: inline-block;
}
.back-link:hover { color: var(--aegean); }

.apply-header { padding-top: clamp(2rem, 5vw, 4rem); }
.apply-header .dateline__line {
  text-align: left;
  margin-bottom: 1.5rem;
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
}

.apply-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-h1);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 144;
}

.apply-intro {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-lead);
  line-height: 1.45;
  max-width: 52ch;
  font-variation-settings: "opsz" 24;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 56ch;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faded);
}
.field .optional { text-transform: none; letter-spacing: 0; font-style: italic; }

.field input,
.field textarea {
  font-family: var(--body);
  font-size: var(--t-body);
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease;
}
.field textarea {
  resize: vertical;
  border: 1px solid var(--rule);
  padding: 0.75rem;
  line-height: 1.55;
  background: rgba(255,255,255,0.4);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--aegean);
}

.submit {
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 1rem;
  transition: background-color 200ms ease;
}
.submit:hover { background: var(--aegean); }
.submit:disabled { opacity: 0.5; cursor: progress; }

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.apply-error {
  color: #8a1c1c;
  font-size: var(--t-meta);
  margin: 0.5rem 0 0;
}

/* -------------------------------------------------------------------
   Thanks page
   ------------------------------------------------------------------- */

.page-thanks { min-height: 100vh; }
.thanks {
  padding-top: clamp(6rem, 16vw, 12rem);
  text-align: center;
}
.thanks .dateline__line {
  margin-bottom: 2.5rem;
  font-family: var(--body);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
}
.thanks__body {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto 3rem;
  font-variation-settings: "opsz" 144;
}
.thanks__return a {
  font-size: var(--t-body);
  font-family: var(--body);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.thanks__return a:hover {
  color: var(--aegean);
  border-color: var(--aegean);
}

/* Apply / thanks pages should not inherit body row-gap quirks */
.page-narrow .footer {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  margin-top: clamp(3rem, 6vw, 6rem);
}
.page-narrow .footer p {
  margin: 0;
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded);
}

/* -------------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
