/* ==========================================================================
   ON THE ROAD TALES — styles.css · v4
   ==========================================================================
   1. Tokens & reset
   2. Typography scale
   3. Shared utilities
   4. Header & nav
   5. Drawers
   6. Homepage
   7. Places page
   8. Archive page
   9. Post page
   10. Footer
   11. Responsive
   ========================================================================== */


/* ── 1. Tokens & reset ─────────────────────────────────────── */

:root {
  --bg:             #fafbfd;
  --surface:        #ffffff;
  --text:           #121417;
  --text-body:      #243041;
  --text-dark:      #1f2937;
  --muted:          #6b7280;
  --line:           #e6e9ef;
  --accent:         #2f9cf6;
  --accent-dark:    #1976d2;
  --accent-rgb:     47 156 246;
  --surface-tinted: #f4f8ff;
  --container:      1180px;
  --post-width:     740px;

  --hover-color:      var(--accent-dark);
  --transition-quick: 0.18s ease;
  --transition-img:   0.35s ease;
}

*    { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
p   { margin: 0; }

a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}


/* ── 2. Typography scale ───────────────────────────────────── */

h1, h2, h3, h4, h5, h6, blockquote {
  font-family: Newsreader, Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  color: var(--text);
}

h1 { font-size: clamp(34px, 5vw,   64px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); }
h4 { font-size: clamp(18px, 2vw,   26px); }

h1 a, h2 a, h3 a {
    text-decoration: none;
}

/* ── 3. Shared utilities ───────────────────────────────────── */

/* Strip underline from UI elements */
.nav a, .button, .brand, .brand *,
.icon-button, .drawer a, .site-footer a,
.place-featured, .place-tile, .posts-feature, .post-teaser, .about-link,
.ppl-hero-img, .ppl-state, .ppl-dest, .ppl-dest__link,
.ppl-dest__body h2 a, .ppl-other-list a, .ppl-recent__item, .ppl-links a,
.arc-post, .arc-filter a, .arc-dest-link {
  text-decoration: none;
}

/* Consistent hover colour for card headings */
.place-tile:hover h3,
.ppl-state:hover h3,
.ppl-dest__body h2 a:hover,
.ppl-other-list a:hover,
.post-teaser h3 a:hover,
.posts-feature__body h3 a:hover,
.arc-post:hover .arc-post__title,
.ppl-recent__item:hover .ppl-recent__title {
  color: var(--hover-color);
}

/* Consistent image zoom on hover */
.place-tile:hover .place-tile__image img,
.ppl-hero-img:hover img,
.ppl-state:hover .ppl-state__img img,
.ppl-dest:hover .ppl-dest__img img,
.posts-feature__image:hover img,
.arc-post:hover .arc-post__img img,
.ppl-recent__item:hover img {
  transform: scale(1.04);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 1000;
  border: 1px solid var(--line);
}
.skip-link:focus { left: 12px; }

.eyebrow, .post .eyebrow , .arc__head .eyebrow{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section { padding: 64px 0; }

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section__head a { font-size: 14px; font-weight: 700; white-space: nowrap; }

.post-count {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb) / 0.09);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}


/* ── 4. Header & nav ───────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 251, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 233, 239, 0.9);
}

.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  /*
  background: linear-gradient(135deg, #8fd0ff, #4aa0ff);
  color: white;
  box-shadow: 0 10px 24px rgba(var(--accent-rgb) / 0.22);
  font-size: 22px;
  */
}

.brand__text { font-size: 18px; color: var(--text); }

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: opacity var(--transition-quick), color var(--transition-quick);
}
.nav a:hover { opacity: 0.7; }
.nav a.is-active {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 20px rgba(var(--accent-rgb) / 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 52px;
  height: 52px;
  font-size: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--accent);
  cursor: pointer;
}
.icon-button.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-quick), opacity var(--transition-quick);
}
.button:hover { transform: translateY(-1px); opacity: 0.92; }

.button--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 28px rgba(var(--accent-rgb) / 0.18);
}
.button--secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.button--light {
  background: white;
  color: var(--accent-dark);
  font-weight: 800;
}


/* ── 5. Drawers ────────────────────────────────────────────── */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.drawer-backdrop.is-visible { opacity: 1; }

.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(92vw, 420px);
  background: rgba(255,255,255,0.96);
  border-right: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  z-index: 200;
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(16px);
}
.drawer.is-open  { transform: translateX(0); }
.drawer--nav     { width: min(84vw, 320px); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.drawer__head strong { font-size: 18px; letter-spacing: 0.02em; }

.drawer__close {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.drawer__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.drawer__input {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font: inherit;
  outline: none;
  background: var(--bg);
}
.drawer__input:focus {
  border-color: rgba(var(--accent-rgb) / 0.45);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb) / 0.12);
}

.drawer__results       { display: grid; gap: 12px; }
.drawer__results-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 4px 0 2px;
}
.drawer__result {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}
.drawer__result strong { font-size: 15px; line-height: 1.2; }
.drawer__result span   { color: var(--muted); font-size: 14px; }

.drawer__nav { display: grid; gap: 8px; }
.drawer__nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}
.drawer__nav a:last-child { border-bottom: 0; }


/* ── 6. Homepage ───────────────────────────────────────────── */

/* Hero */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero:hover .hero__bg img { transform: scale(1.04); }

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 25, 0.72) 0%,
    rgba(10, 15, 25, 0.45) 55%,
    rgba(10, 15, 25, 0.15) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 72px;
}

.hero__content {
  max-width: 700px;
  display: grid;
  gap: 20px;
}
.hero__content .eyebrow { color: rgba(255,255,255,0.7); }

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  color: white;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero .button--secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(8px);
}
.hero .button--secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

/* Places grid */
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.place-featured {
  grid-column: 1 / -1;
  position: relative;
}

.place-featured__image,
.place-tile__image,
.posts-feature__image {
  overflow: hidden;
}

.place-featured__image img,
.place-tile__image img,
.posts-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}

.place-featured__image img { aspect-ratio: 21 / 10; }
.place-tile__image img     { aspect-ratio: 16 / 10; }
.posts-feature__image img  { aspect-ratio: 16 / 8.5; }

.place-featured__body {
  position: absolute;
  left: 24px; bottom: 24px;
  max-width: 420px;
  background: rgba(255,255,255,0.92);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  border-left: 3px solid rgba(var(--accent-rgb) / 0.55);
}
.place-featured__body p { color: var(--muted); margin-top: 8px; }

.place-featured h3 a,
.place-tile h3,
.place-tile h3 a { color: var(--text); }
.place-featured h3 a:hover { color: var(--hover-color); }

.place-featured h3,
.place-tile h3 {
    margin-top: 0.25em;
}

.place-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.place-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(var(--accent-rgb) / 0.12);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color var(--transition-quick), background var(--transition-quick);
}
.place-pill:hover {
  background: white;
  border-color: rgba(var(--accent-rgb) / 0.4);
}

.place-tile {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  color: inherit;
  transition: transform var(--transition-quick), box-shadow var(--transition-quick);
}
.place-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
}
.place-tile__body { padding: 18px 20px 22px; }
.place-tile p     { color: var(--muted); }

/* Posts feature */
.posts-feature {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.posts-feature__image { overflow: hidden; }
.posts-feature__body {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.posts-feature__body p     { color: var(--muted); max-width: 70ch; }
.posts-feature__body .meta { color: var(--muted); font-size: 13px; font-weight: 700; }
.posts-feature__body h3 a  { color: var(--text); }
.posts-feature__body h3 a:hover { color: var(--hover-color); }

/* Post teasers grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  align-items: start;
}

.post-teaser {
  display: grid;
  gap: 0;
  color: inherit;
}

.post-teaser__img {
  overflow: hidden;
  margin-bottom: 14px;
}
.post-teaser__img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}
.post-teaser:hover .post-teaser__img img { transform: scale(1.04); }

.post-teaser__body { display: grid; gap: 8px; }
.post-teaser h3    { color: var(--text); transition: color var(--transition-quick); }
.post-teaser:hover h3 { color: var(--hover-color); }
.post-teaser h3 a  { color: inherit; }
.post-teaser p     { color: var(--muted); font-size: 15px; max-width: 34ch; }

.post-teaser .post-location {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* About section */
/*
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
  */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.about-copy {
  max-width: 52ch;
  display: grid;
  gap: 14px;
}
.about-link { display: inline-flex; align-items: center; width: fit-content; }

.about-quote {
  border-left: 3px solid rgba(var(--accent-rgb) / 0.5);
  padding-left: 18px;
  align-self: center;
}

.about-quote blockquote {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.about-quote footer {
  margin-top: 12px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
}

/* Newsletter section */
.newsletter-section {
  background: var(--surface-tinted);
  padding: 48px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.newsletter-copy { display: grid; gap: 10px; max-width: 52ch; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.newsletter-form input {
  min-width: min(100%, 320px);
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
  outline: none;
}
.newsletter-form input:focus {
  border-color: rgba(var(--accent-rgb) / 0.45);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb) / 0.12);
}


/* ── 7. Places page ────────────────────────────────────────── */

.ppl__head {
  max-width: 680px;
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
}

.ppl__lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 58ch;
}

.ppl__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.ppl__main { display: grid; gap: 0; }

.ppl-hero-img { display: block; overflow: hidden; }
.ppl-hero-img img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}

.ppl-country { padding-bottom: 48px; }

.ppl-country__intro {
  padding: 24px 0 20px;
  max-width: 600px;
  display: grid;
  gap: 10px;
}
.ppl-country__intro p { color: var(--muted); }

.ppl-states {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.ppl-state {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background var(--transition-quick);
}

.ppl-state--more {
  grid-template-columns: 1fr;
  cursor: default;
}

.ppl-state__img {
  width: 120px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
}
.ppl-state__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}
.ppl-state:hover .ppl-state__img img { transform: scale(1.06); }

.ppl-state__body   { display: grid; gap: 4px; }
.ppl-state__body p { color: var(--muted); font-size: 14px; }
.ppl-state:hover h3 { color: var(--hover-color); }

.ppl-state__more-label {
  font-size: 12px; font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ppl-state__count {
  font-size: 12px; font-weight: 700;
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb) / 0.08);
  white-space: nowrap;
}

.ppl-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 40px;
  color: var(--muted);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ppl-divider::before,
.ppl-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.ppl-dest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.ppl-dest--flip     { direction: rtl; }
.ppl-dest--flip > * { direction: ltr; }

.ppl-dest__img { display: block; overflow: hidden; }
.ppl-dest__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}
.ppl-dest:hover .ppl-dest__img img { transform: scale(1.03); }

.ppl-dest__body        { display: grid; gap: 12px; }
.ppl-dest__body h2 a   { color: var(--text); }
.ppl-dest__body h2 a:hover { color: var(--hover-color); }
.ppl-dest__body p      { color: var(--muted); }

.ppl-dest__link {
  font-size: 14px; font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.ppl-dest__link:hover { text-decoration: underline; }

.ppl-others { padding-top: 4px; }

.ppl-other-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.ppl-other-list li { border-bottom: 1px solid var(--line); }
.ppl-other-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: color var(--transition-quick);
}
.ppl-other-list a:hover { color: var(--hover-color); }
.ppl-other__flag  { font-size: 20px; line-height: 1; }
.ppl-other__name  { flex: 1; }
.ppl-other__count { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Sidebar */
.ppl-sidebar {
  display: grid;
  gap: 0;
  position: sticky;
  top: 100px;
}

.ppl-widget {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.ppl-widget:first-child { border-top: 1px solid var(--line); }
.ppl-widget__label      { margin-bottom: 16px; }

.ppl-stats { list-style: none; margin: 0; padding: 0; }
.ppl-stats li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.ppl-stats li:last-child { border-bottom: none; padding-bottom: 0; }
.ppl-stats__n {
  font-family: Newsreader, Georgia, serif;
  font-size: 28px;
  color: var(--accent-dark);
  line-height: 1;
  min-width: 52px;
}
.ppl-stats__l { font-size: 13px; color: var(--muted); }

.ppl-recent       { display: grid; gap: 14px; }
.ppl-recent__item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.ppl-recent__item img {
  width: 64px; height: 48px;
  object-fit: cover; flex-shrink: 0;
  transition: opacity var(--transition-quick);
}
.ppl-recent__item:hover img { opacity: 0.82; }
.ppl-recent__title {
  font-size: 14px; font-weight: 600;
  color: var(--text); line-height: 1.35; margin: 0;
  transition: color var(--transition-quick);
}
.ppl-recent__meta { font-size: 12px; color: var(--muted); margin: 3px 0 0; }

/* Accent newsletter widget — shared by places + archive sidebars */
.ppl-widget--accent,
.arc-widget--accent {
  color: white;
  padding: 22px 18px;
  border: none;
}
.ppl-widget--accent { background: var(--accent-dark); margin: 0 -18px; }
.arc-widget--accent { background: var(--accent-dark); padding: 20px 16px; margin: 0 -16px; }
.ppl-widget--accent + .ppl-widget,
.arc-widget--accent + .arc-widget { border-top: none; }

.ppl-widget__nl-title,
.arc-nl-title {
  font-family: Newsreader, Georgia, serif;
  color: white;
  line-height: 1.15;
}
.ppl-widget__nl-title { font-size: 22px; margin: 6px 0 8px; }
.arc-nl-title         { font-size: 20px; margin: 4px 0 8px; }

.ppl-widget__nl-desc,
.arc-nl-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; }

.ppl-widget__nl-input,
.arc-nl-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: white; font: inherit; font-size: 14px; outline: none;
  padding: 0 14px;
}
.ppl-widget__nl-input { height: 42px; }
.arc-nl-input         { height: 40px; }
.ppl-widget__nl-input::placeholder,
.arc-nl-input::placeholder { color: rgba(255,255,255,0.5); }
.ppl-widget__nl-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.18); }
.arc-nl-input:focus         { border-color: rgba(255,255,255,0.55); }

.ppl-widget__nl-btn,
.arc-nl-btn {
  width: 100%;
  border-radius: 999px;
  background: white; color: var(--accent-dark);
  font: inherit; font-size: 14px; font-weight: 800;
  border: none; cursor: pointer;
  transition: opacity var(--transition-quick);
}
.ppl-widget__nl-btn { padding: 11px; transition: opacity var(--transition-quick), transform var(--transition-quick); }
.arc-nl-btn         { padding: 10px; }
.ppl-widget__nl-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.arc-nl-btn:hover         { opacity: 0.9; }

.arc-nl-form { display: grid; gap: 8px; margin-top: 14px; }

.ppl-links     { display: grid; gap: 2px; }
.ppl-links a {
  display: block; padding: 9px 4px;
  font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition-quick);
}
.ppl-links a:last-child { border-bottom: none; }
.ppl-links a:hover      { color: var(--hover-color); }


/* ── 8. Archive page ───────────────────────────────────────── */

.arc { padding: 40px 0 80px; }

.arc__head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  display: grid;
  gap: 10px;
}
.arc__head p { color: var(--muted); font-size: 18px; max-width: 68ch; }

.arc__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.arc-filter {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px; font-weight: 700;
  color: var(--text);
  transition: border-color var(--transition-quick), color var(--transition-quick), background var(--transition-quick);
}
.arc-filter:hover,
.arc-filter.is-active {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(var(--accent-rgb) / 0.06);
}

.arc__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}

.arc-list { display: grid; gap: 0; }

.arc-list--wide .arc-post           { grid-template-columns: 380px 1fr; gap: 40px; }
.arc-list--wide .arc-post__img,
.arc-list--wide .arc-post__img img  { width: 380px; }
.arc-list--wide .arc-post__desc     { font-size: 17px; max-width: 66ch; }

.arc-post {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background var(--transition-quick);
}
.arc-post:first-child { border-top: 1px solid var(--line); }

.arc-post__img { overflow: hidden; flex-shrink: 0; }
.arc-post__img img {
  width: 300px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-img);
}

.arc-post__body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 4px;
}
.arc-post__location {
  font-size: 12px; font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.arc-post__title {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--transition-quick);
}
.arc-post__desc { color: var(--muted); font-size: 16px; max-width: 60ch; line-height: 1.6; }

.arc-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 0;
}

.arc-widget {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.arc-widget:first-child { border-top: 1px solid var(--line); }
.arc-widget__label      { margin-bottom: 14px; }

.arc-dest-list { display: grid; gap: 4px; }

.arc-dest-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px; font-weight: 600;
  transition: color var(--transition-quick);
}
.arc-dest-link:last-child { border-bottom: none; }
.arc-dest-link:hover      { color: var(--hover-color); }

.arc-dest-link__img {
  width: 52px; height: 38px;
  overflow: hidden; flex-shrink: 0;
}
.arc-dest-link__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--transition-img);
}
.arc-dest-link:hover .arc-dest-link__img img { transform: scale(1.06); }

.arc-dest-link__name  { flex: 1; }
.arc-dest-link__count { font-size: 12px; color: var(--muted); }

.arc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.arc-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: border-color var(--transition-quick), color var(--transition-quick);
}
.arc-page-btn:hover     { border-color: var(--accent); color: var(--accent-dark); }
.arc-page-btn.is-active { background: var(--accent); color: white; border-color: transparent; }
.arc-page-btn--wide     { width: auto; padding: 0 16px; }


/* ── 9. Post page ──────────────────────────────────────────── */
.post {
    max-width: var(--post-width);
    margin: 0 auto;
    padding: 0 24px;
}

.post__header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: none;
}

.post__header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 14px;
}

.post__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.post__breadcrumb a        { color: var(--accent-dark); text-decoration: none; }
.post__breadcrumb a:hover  { text-decoration: underline; }
.post__breadcrumb span     { color: var(--line); }

.post__category { margin: 0; }

.post .post__dek {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.post__place-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb) / 0.08);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-quick);
}
.post__place-tag:hover { background: rgba(var(--accent-rgb) / 0.16); }
.post__meta-sep        { color: var(--line); }

/* Tags */
.post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.post__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition-quick), color var(--transition-quick), background var(--transition-quick);
}
.post__tag:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(var(--accent-rgb) / 0.05);
}

/* Hero image */
.post__hero-wrap { position: relative; background: var(--line); }

.post__hero-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.post__hero-caption {
  position: absolute;
  bottom: 16px; right: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  max-width: 50ch;
  text-align: right;
}

/* Body text column */
.post__body {
  max-width: var(--post-width);
  margin: 0 auto;
  padding: 0 24px;
  display: block;
}

.post__body:first-of-type { padding-top: 40px; }

.post__body > * + * { margin-top: 1.2em; }

.post__intro {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}

.post p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-body);
  margin-top: 1.2em;
}
/*.post__body p:first-child { margin-top: 0; }*/

/* Heading margin overrides (sizes from global scale) */
.post h2 { margin-top: 1.5em; }
.post h3 { margin-top: 1.2em; }

.post ul,
.post ol {
  padding-left: 1.4em;
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-body);
  display: grid;
  gap: 8px;
}

/* Pull quote */
.post__pullquote, .post blockquote {
  margin: 8px 0;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface-tinted);
  line-height: 1.25;
  color: var(--text-dark);
  
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--text-dark);
  font-style: normal;
}



/* Figures — live outside .post__body, no width constraint */
.post__figure {
  margin: 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.post__figure img {
  width: auto;
  height: auto;
  max-width: 100vw;
  display: block;
}

figcaption {
  max-width: var(--post-width);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

/* Video */
.video-wrap {
  position: relative;
  width: 70vw;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Info box */
.post__infobox {
  padding: 22px 24px;
  border-left: 3px solid rgba(var(--accent-rgb) / 0.45);
  background: var(--surface-tinted);
  display: grid;
  gap: 12px;
}

.post__infobox ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}

.post__infobox li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.post__infobox li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* Post Footer */
.post__footer {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    margin-top: 40px;
}

.post__footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.post__footer-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
}

.post__share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.post__share-btns   { display: flex; gap: 8px; }

.post__share-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--transition-quick), color var(--transition-quick);
}
.post__share-btn:hover { border-color: var(--accent); color: var(--accent-dark); }


/* Prev/next */
.post__prevnext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    
    border: 1px solid var(--line);
    margin-bottom: 60px;
}

.post__prevnext-item--next:only-child {
    grid-column: 2;
}

.post__prevnext-item + .post__prevnext-item {
    border-left: 1px solid var(--line);
}

.post__prevnext-item {
  display: grid; gap: 6px;
  padding: 18px 20px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition-quick);
}
.post__prevnext-item:hover        { background: var(--surface-tinted); }
.post__prevnext-item--next        { text-align: right; }

.post__prevnext-dir {
  font-size: 12px; font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.post__prevnext-title {
  font-family: Newsreader, Georgia, serif;
  font-size: 17px; line-height: 1.2;
  color: var(--text);
}
.post__prevnext-item:hover .post__prevnext-title { color: var(--accent-dark); }

/* Related */
.post__related {
  padding: 52px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

/* Comments */
.post__comments {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 52px 0 64px;
}

.post__comments-inner {
  max-width: var(--post-width);
  display: grid;
  gap: 32px;
}

.post__comments-inner h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post__comments-count {
  font-family: Inter, sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--muted);
}

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

.post__comment {
  display: flex; gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.post__comment:first-child { border-top: 1px solid var(--line); }

.post__comment--reply {
  padding-left: 52px;
  background: var(--bg);
  padding-right: 16px;
}

.post__comment-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7e3ff, #86bff5);
  color: #1565c0;
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.post__comment--reply .post__comment-avatar {
  background: linear-gradient(135deg, #8fd0ff, #4aa0ff);
  color: white;
}

.post__comment-body  { flex: 1; display: grid; gap: 8px; }

.post__comment-head {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
}

.post__comment-author { font-size: 14px; font-weight: 700; color: var(--text); }

.post__comment-badge {
  font-size: 11px; font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb) / 0.1);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post__comment-time {
  font-size: 12px; color: var(--muted);
  font-weight: 500; margin-left: auto;
}

.post__comment-body p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-body);
}

.post__comment-reply-btn {
  align-self: start;
  background: none; border: none; padding: 0;
  font: inherit; font-size: 13px; font-weight: 700;
  color: var(--accent-dark); cursor: pointer;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.post__comment-reply-btn:hover { opacity: 0.7; }

/* Comment form */
.post__comment-form       { padding-top: 8px; }
.post__comment-form-title { margin: 0 0 20px; }

.post__comment-form-fields { display: grid; gap: 16px; }

.post__form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post__form-group { display: grid; gap: 6px; }

.post__form-label {
  font-size: 13px; font-weight: 700;
  color: var(--text);
}

.post__form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit; font-size: 15px;
  color: var(--text);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition-quick), box-shadow var(--transition-quick);
}
.post__form-input:focus {
  border-color: rgba(var(--accent-rgb) / 0.5);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb) / 0.1);
  background: white;
}
.post__form-input::placeholder { color: var(--muted); }

.post__form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.post__form-submit { justify-self: start; padding: 14px 28px; }
.post__form-note   { color: var(--muted); font-weight: 400; }


/* ── 10. Footer ────────────────────────────────────────────── */

.site-footer {
  background: var(--text-dark);
  color: rgb(209, 213, 219);
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}

.site-footer__inner {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px; flex-wrap: wrap;
}

.site-footer a       { color: #93c5fd; text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer strong  { color: white; }

.footer-nav         { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a       { color: #cbd5e1; font-size: 14px; }
.footer-nav a:hover { color: white; }


/* ── About page ──────────────────────────────────────────── */

/* Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.about-intro__text {
  display: grid;
  gap: 20px;
}
.about-intro__text h1 {
  margin-top: 6px;
}
.about-intro__text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.about-intro__img {
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-intro__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Story */
.about-story-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.about-story {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0 80px;
  align-items: start;
}
.about-story .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}
.about-story__left { padding-top: 4px; }
.about-story h2 {
  margin-bottom: 0;
}
.about-story-cols {
  display: grid;
  gap: 20px;
  padding-top: 4px;
}
.about-story-cols p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* Philosophy */
.about-philosophy-section {
  border-top: 1px solid var(--line);
  background: var(--surface-tinted);
}
.about-philosophy {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0 80px;
  align-items: start;
}

.about-philosophy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.about-philosophy h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  margin: 0;
}
.about-philosophy p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  align-self: center;
}

/* Crew */
.about-crew-section {
  border-top: 1px solid var(--line);
}
.about-crew-section > .container > .eyebrow {
  margin-bottom: 24px;
}
.about-crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.crew-card {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-top: 2px solid var(--accent);
  align-content: start;
}
.crew-card__role {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0;
  min-height: 2.4em;
}
.crew-card__body h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 0 0 10px;
}
.crew-card__body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .about-intro       { grid-template-columns: 1fr 280px; gap: 40px; }
  .about-story       { grid-template-columns: 1fr; }
  .about-philosophy  { grid-template-columns: 1fr; }
  .about-philosophy  { grid-template-columns: 1fr; gap: 20px; }
  .about-philosophy .eyebrow { margin-bottom: 0; }
}
@media (max-width: 720px) {
  .about-intro       { grid-template-columns: 1fr; }
  .about-intro__img  { position: static; }
  .about-intro__img img { aspect-ratio: 4 / 3; }
  .about-crew        { grid-template-columns: 1fr; gap: 0; }
  .crew-card         { border-top: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
}

/* ── Error page (404) ──────────────────────────────────────── */

.error-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.error-hero__text {
  display: grid;
  gap: 16px;
}

.error-hero__dek {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}

.error-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.error-code {
  background: var(--text-dark);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.error-code__number {
  font-family: Newsreader, Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #e5e7eb;
}

.error-code__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.error-posts .post-teaser h3 {
    font-size: clamp(15px, 1.6vw, 19px);
}

@media (max-width: 720px) {
  .error-hero {
    grid-template-columns: 1fr;
  }
  .error-code {
    display: none;
  }
}

/* ── 11. Responsive ────────────────────────────────────────── */

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    grid-template-areas: "brand actions" "nav nav";
    padding: 14px 0 0;
  }
  .brand          { grid-area: brand; }
  .nav            { display: none; }
  .header-actions { grid-area: actions; justify-self: end; }
  .icon-button.nav-toggle { display: inline-block; }

  .hero__grid,
  .about-grid,
  .newsletter-grid { grid-template-columns: 1fr; }

  .places-grid    { grid-template-columns: 1fr; }
  .place-featured { grid-column: auto; }
  .post-grid      { grid-template-columns: 1fr; }
  .newsletter-form { justify-content: flex-start; }

  .ppl__layout    { grid-template-columns: 1fr; }
  .ppl-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .ppl-widget--accent { grid-column: 1 / -1; margin: 0; }

  .arc__layout    { grid-template-columns: 1fr; }
  .arc-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .arc-widget--accent { grid-column: 1 / -1; margin: 0; }
  
  .post-teaser p { max-width: none;}
}

@media (max-width: 720px) {
  .section        { padding: 52px 0; }
  .hero__grid     { min-height: 70vh; padding-bottom: 52px; }
  .hero__content  { max-width: none; }

  .place-featured__body {
    position: static; max-width: none;
    background: transparent; padding: 16px 0 0;
  }
  .place-chips        { margin-top: 10px; }
  .newsletter-form input { min-width: 100%; }

  .ppl-dest       { grid-template-columns: 1fr; }
  .ppl-dest--flip { direction: ltr; }
  .ppl-state      { grid-template-columns: 80px 1fr auto; gap: 14px; }
  .ppl-state__img { width: 80px; height: 56px; }
  .ppl-sidebar    { grid-template-columns: 1fr; }

  .arc-post       { grid-template-columns: 140px 1fr; gap: 18px; padding: 20px 0; }
  .arc-post__img,
  .arc-post__img img { width: 140px; }
  .arc-list--wide .arc-post { grid-template-columns: 140px 1fr; }
  .arc-list--wide .arc-post__img,
  .arc-list--wide .arc-post__img img { width: 140px; }
  .arc-sidebar    { grid-template-columns: 1fr; }

  .post__hero-img { aspect-ratio: 4 / 3; }
  .post__hero-caption {
    position: static;
    color: var(--muted);
    text-shadow: none;
    padding: 8px 16px 0;
    font-size: 12px;
    text-align: left;
  }
  .post__byline   { flex-direction: column; }
  .post__share    { text-align: left; }
  .post__prevnext { grid-template-columns: 1fr; }
  .post__prevnext-item--next { text-align: left; }
  .post__form-row--two       { grid-template-columns: 1fr; }
  .post__comment--reply      { padding-left: 20px; }
}

@media (max-width: 620px) {
  .nav                    { display: none; }
  .icon-button.nav-toggle { display: grid; }

  .site-header__inner {
    grid-template-columns: auto auto;
    grid-template-areas: "brand actions";
    min-height: 68px;
    padding: 0;
  }
}
