/* Escapes by Cindy — public site
   Verdant paper studio: cream paper, green invitation, khaki-gold signage. */

:root {
  --cream: #fbf8ef;
  --deep-cream: #f4edd0;
  --sheet: #fffdf7;
  --ink: #2b2b26;
  --soft: #5a574c;
  --gold: #b09f5c;
  /* Atmosphere green (FTR-family, not #24c168). Press/text deeper for AA on cream. */
  --green: #21a85a;
  --green-press: #157a42;
  --green-deep: #116b38;
  --green-wash: color-mix(in srgb, var(--green) 9%, var(--cream));
  --green-tint: color-mix(in srgb, var(--green) 14%, transparent);
  --rule: rgba(43, 43, 38, 0.14);
  --rule-soft: rgba(43, 43, 38, 0.09);
  --danger: #a23b2e;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Newsreader", Georgia, "Times New Roman", serif;
  --font-label: "Karla", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.25rem);
  --section-y: clamp(4.5rem, 10vw, 6rem);

  --shadow-photo: 0 30px 60px -28px rgba(43, 43, 38, 0.38);
  --shadow-sheet: 0 28px 60px -30px rgba(43, 43, 38, 0.32);
  --shadow-card: 0 18px 44px -22px rgba(43, 43, 38, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-press);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-deep);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--pad));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Labels (DESIGN: gold signage; caps tracked, slightly open) ——— */
.label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——— Type ——— */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

.display em,
.headline em,
.title em {
  font-style: italic;
  font-weight: 420;
  color: var(--gold);
}

.headline {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin: 0 0 0.35rem;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--soft);
  max-width: 42ch;
  margin: 0;
}

.soft {
  color: var(--soft);
}

.measure {
  max-width: 62ch;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  padding: 1rem 1.85rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

.btn-primary {
  background: var(--green-press);
  color: var(--sheet);
  border-color: var(--green-press);
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--sheet);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--soft);
  border-color: var(--rule);
}

.btn-ghost:hover {
  color: var(--green-press);
  border-color: var(--green);
  background: var(--green-wash);
  transform: none;
}

.btn-text {
  background: none;
  border: none;
  color: var(--green-press);
  padding: 0.5rem 0;
  letter-spacing: 0.12em;
}

.btn-text:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

/* ——— Mast ——— */
.mast {
  padding: 1.75rem 0 0;
}

.mast__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.35rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.wordmark em {
  font-style: italic;
  color: var(--gold);
  font-weight: 420;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.15rem;
  max-width: 42rem;
}

.nav a {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--green-press);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

/* ——— Foyer + fork ——— */
.foyer {
  padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(2.25rem, 5vw, 3.25rem);
}

.foyer__inner {
  max-width: 40rem;
}

.foyer .label {
  display: block;
  margin-bottom: 0.85rem;
}

.foyer .display {
  margin-bottom: 0.55rem;
  max-width: 16ch;
}

.foyer__promise {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--gold);
  margin: 0 0 1.15rem;
  max-width: 28ch;
  line-height: 1.25;
}

.foyer .lede {
  margin-bottom: 1.75rem;
}

.fork {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.fork__note {
  font-size: 0.95rem;
  color: var(--soft);
  font-style: italic;
  width: 100%;
  margin: 0.15rem 0 0;
}

/* ——— Photo band ——— */
.photo-band {
  position: relative;
  margin: 0;
  background: var(--deep-cream);
}

.photo-band__frame {
  position: relative;
  width: 100%;
  height: clamp(220px, 38vw, 440px);
  border-block: 1px solid color-mix(in srgb, var(--green) 35%, var(--gold));
  overflow: hidden;
  background: var(--deep-cream);
}

.photo-band__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 42%;
}

.photo-band__cap {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  padding: 0.85rem var(--pad) 1.35rem;
  max-width: calc(var(--wrap) + 2 * var(--pad));
  margin-inline: auto;
  width: 100%;
}

/* ——— Destination intro ——— */
.dest {
  padding: var(--section-y) 0;
}

.dest__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 3.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.dest__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.dest__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dest__meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 0;
}

.dest__meta span:first-child::before {
  display: none;
}

.dest__copy p {
  margin: 0 0 1rem;
  color: var(--soft);
  max-width: 48ch;
}

.dest__copy p:last-child {
  margin-bottom: 0;
}

.subhead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.subhead__bar {
  width: 3px;
  height: 12px;
  background: var(--green);
  flex-shrink: 0;
}

.subhead .headline {
  margin: 0;
}

/* ——— Sample day sheet ——— */
.sample {
  padding: var(--section-y) 0;
  background: var(--green-wash);
  border-block: 1px solid var(--green-tint);
}

.sample__sheet {
  background: var(--sheet);
  border: 1px solid color-mix(in srgb, var(--green) 18%, var(--rule));
  box-shadow: var(--shadow-sheet);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 3px solid var(--green);
}

.sample__day {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--rule);
}

.sample__day em {
  font-style: italic;
  color: var(--gold);
  font-weight: 420;
}

.sample__route {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 1.75rem;
}

.stop {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px dotted var(--rule);
}

.stop:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stop__time {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-press);
  padding-top: 0.3rem;
}

.stop__body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.stop__body p {
  margin: 0;
  color: var(--soft);
  font-size: 0.98rem;
  max-width: 58ch;
}

.stop__note {
  margin-top: 0.55rem !important;
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
}

.sample__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

/* ——— Inside / inventory ——— */
.inside {
  padding: var(--section-y) 0;
  background: var(--deep-cream);
  border-block: 1px solid var(--rule-soft);
}

.inside__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 4rem;
}

.inside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.inside__list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.inside__list li:first-child {
  border-top: 1px solid var(--rule);
}

.inside__list b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}

.inside__list span {
  color: var(--soft);
  font-size: 0.98rem;
}

/* ——— Suitability ——— */
.fit {
  padding: var(--section-y) 0;
}

.fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.fit__card {
  background: var(--sheet);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
}

.fit__card--yes {
  border-color: color-mix(in srgb, var(--green) 32%, var(--rule));
  background: color-mix(in srgb, var(--green) 5%, var(--sheet));
}

.fit__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.fit__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit__card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  color: var(--soft);
  border-bottom: 1px solid var(--rule-soft);
}

.fit__card li:last-child {
  border-bottom: 0;
}

.fit__card--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1.5px solid var(--green);
  border-radius: 0;
}

.fit__card--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 1.5px;
  background: var(--soft);
}

/* ——— Photo pair ——— */
.gallery {
  padding: 0 0 var(--section-y);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery figure {
  margin: 0;
}

.gallery__mat {
  background: var(--cream);
  padding: 6px;
  box-shadow: var(--shadow-photo);
  border: 1px solid var(--rule-soft);
}

.gallery__mat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
  margin-top: 0.65rem;
}

/* ——— Buy strip (light — green invitation, not ink invert) ——— */
.buy {
  padding: var(--section-y) 0;
  background: var(--green-wash);
  color: var(--ink);
  border-block: 1px solid var(--green-tint);
}

.buy .headline {
  color: var(--ink);
}

.buy .headline em {
  color: var(--green-press);
}

.buy p {
  color: var(--soft);
  max-width: 48ch;
  margin: 0 0 1.5rem;
}

.buy__note {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--soft);
  margin: 1rem 0 0;
}

.buy__status {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-press);
  background: color-mix(in srgb, var(--green) 12%, var(--sheet));
  border: 1px solid color-mix(in srgb, var(--green) 28%, transparent);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
}

/* ——— Custom (Plan Your Escape UI; page deferred under deferred/plan/) ——— */
.custom {
  padding: var(--section-y) 0;
}

.custom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3.5rem;
  align-items: start;
}

.custom__panel {
  background: var(--sheet);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
}

.custom__panel .label {
  display: block;
  margin-bottom: 0.75rem;
}

.custom__panel p {
  margin: 0 0 1rem;
  color: var(--soft);
}

.custom__panel p:last-of-type {
  margin-bottom: 1.25rem;
}

.disclosure {
  font-size: 0.9rem;
  color: var(--soft);
  border-top: 1px solid var(--rule-soft);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* Inquiry form */
.form {
  display: grid;
  gap: 1.15rem;
}

.field label {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 0.65rem 0.75rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form__status {
  font-size: 0.95rem;
  color: var(--soft);
  min-height: 1.4em;
}

.form__status[data-state="ok"] {
  color: var(--green-press);
}

.form__status[data-state="err"] {
  color: var(--danger);
}

/* ——— About ——— */
.about {
  padding: var(--section-y) 0;
  background: var(--deep-cream);
  border-top: 1px solid var(--rule-soft);
  /* No bottom rule — Field Notes follows; avoid a false “top rule” on the next band */
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about__pic {
  position: relative;
  max-width: 320px;
}

.about__mat {
  background: var(--cream);
  padding: 8px;
  box-shadow: var(--shadow-photo);
  border: 1px solid var(--rule-soft);
}

.about__mat img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about__keyline {
  position: absolute;
  inset: 12px -8px -8px 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.about__copy p {
  color: var(--soft);
  max-width: 48ch;
  margin: 0 0 1rem;
}

.about__sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 1.25rem;
  color: var(--ink);
}

/* ——— Field Notes ——— */
.notes {
  padding: var(--section-y) 0;
  border-top: none;
}

.notes__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: end;
  border-top: none;
  padding-top: 0;
}

.notes__copy p {
  color: var(--soft);
  max-width: 42ch;
  margin: 0.75rem 0 0;
}

.notes-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  max-width: 28rem;
  transition: border-color 0.15s ease;
}

.notes-form:focus-within {
  border-bottom-color: var(--green);
}

.notes-form input {
  flex: 1 1 12rem;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  color: var(--ink);
}

.notes-form input::placeholder {
  color: rgba(93, 90, 78, 0.65);
}

.notes-form input:focus {
  outline: none;
}

.notes-form button {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--green-press);
  cursor: pointer;
  padding: 0.75rem 0 0.75rem 1rem;
  white-space: nowrap;
}

.notes-form button:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

.notes__status {
  font-size: 0.9rem;
  color: var(--soft);
  margin: 0.65rem 0 0;
  min-height: 1.3em;
}

.notes__status[data-state="ok"] {
  color: var(--green-press);
}

.notes__status[data-state="err"] {
  color: var(--danger);
}

/* ——— Footer ——— */
.foot {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3rem;
}

.foot__brand-block {
  margin-bottom: 1.75rem;
}

.foot__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.foot__brand em {
  font-style: italic;
  color: var(--gold);
}

.foot__tagline {
  margin: 0;
  color: var(--soft);
  font-size: 0.95rem;
  max-width: 36ch;
}

/* Baseline bar: doors left, socials right — same line, not stacked */
.foot__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  min-width: 0;
}

.foot__nav a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
}

.foot__nav a:hover {
  color: var(--green-press);
}

.foot__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
}

.foot__social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--soft);
  text-decoration: none;
  border-radius: 0;
}

.foot__social a:hover {
  color: var(--green-press);
}

.foot__social svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foot__social svg.icon-fill {
  fill: currentColor;
  stroke: none;
}

/* ——— Shop issue shelf ——— */
.shop {
  padding: var(--section-y) 0;
}

.shop__intro {
  margin-bottom: 2rem;
  max-width: 48ch;
}

.shop__intro .headline {
  margin-bottom: 0.75rem;
}

.shop__intro p {
  margin: 0;
  color: var(--soft);
}

.issue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.issue-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule-soft);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}

.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px -22px rgba(43, 43, 38, 0.4);
  color: inherit;
}

.issue-card__img {
  background: var(--deep-cream);
  padding: 6px;
  border-bottom: 1px solid var(--rule-soft);
}

.issue-card__img img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.issue-card__body {
  padding: 1.5rem 1.4rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.issue-card__chip {
  align-self: flex-start;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-press);
  background: color-mix(in srgb, var(--green) 12%, var(--sheet));
  border: 1px solid color-mix(in srgb, var(--green) 28%, transparent);
  padding: 0.3rem 0.55rem;
}

.issue-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.issue-card__route {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0;
}

.issue-card__blurb {
  margin: 0;
  color: var(--soft);
  font-size: 0.98rem;
  flex: 1;
}

.issue-card__cta {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-press);
  margin-top: 0.5rem;
}

.issue-card:hover .issue-card__cta {
  text-decoration: underline;
}

/* ——— Field Notes page ——— */
.field-notes__intro {
  margin-bottom: 0;
  max-width: 52ch;
}

.field-notes__intro p {
  color: var(--soft);
  margin: 0.75rem 0 0;
}

.field-notes__subscribe {
  border-top: 1px solid var(--rule-soft);
  margin-top: 0.5rem;
}

.field-notes__reading {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-soft);
}

.field-notes__reading .headline {
  margin-bottom: 0.75rem;
}

.field-notes__empty {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  background: var(--sheet);
  border: 1px solid var(--rule);
  max-width: 42ch;
}

/* ——— Explore destinations (deferred; keep styles for unlinked draft) ——— */
.explore {
  padding: var(--section-y) 0;
}

.explore__intro {
  margin-bottom: 2.25rem;
  max-width: 52ch;
}

.explore__intro p {
  color: var(--soft);
  margin: 0.75rem 0 0;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.dest-panel {
  background: var(--sheet);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dest-panel__img {
  background: var(--deep-cream);
  padding: 6px;
}

.dest-panel__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.dest-panel__body {
  padding: 1.5rem 1.4rem 1.65rem;
}

.dest-panel__body .headline {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}

.dest-panel__body p {
  color: var(--soft);
  margin: 0 0 1.15rem;
  max-width: 42ch;
}

/* ——— Page intro (inner pages) ——— */
.page-intro {
  padding: clamp(2.75rem, 7vw, 4rem) 0 2rem;
}

.page-intro .label {
  display: block;
  margin-bottom: 0.85rem;
}

.page-intro .display,
.page-intro .headline {
  margin-bottom: 1rem;
}

.page-intro .lede,
.page-intro > p {
  color: var(--soft);
  max-width: 48ch;
  margin: 0;
}

/* ——— About page (full) ——— */
.about-page {
  padding: 0 0 var(--section-y);
}

.about-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-page__story p {
  color: var(--soft);
  max-width: 58ch;
  margin: 0 0 1.1rem;
}

.about-page__story h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.about-page .about__pic {
  max-width: 380px;
}

/* ——— Close CTA band ——— */
.close-cta .fork {
  margin-top: 0.25rem;
}

/* ——— Responsive ——— */
@media (min-width: 700px) {
  .stop {
    grid-template-columns: 6.5rem 1fr;
  }

  .fit__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .notes__box {
    grid-template-columns: 1.1fr 1fr;
  }



  .issue-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 920px) {
  .dest__head {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: end;
  }

  .inside__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: start;
  }

  .inside__list li {
    grid-template-columns: 11rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }

  .custom__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4rem;
  }

  .about-page__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4rem;
  }
}

@media (max-width: 560px) {
  .fork {
    flex-direction: column;
    align-items: stretch;
  }

  .fork .btn {
    width: 100%;
  }

  .stop {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .stop__time {
    padding-top: 0;
  }
}
