:root {
  --bg: #f4f7fb;
  --ink: #14141a;
  --muted: #4a5261;
  --card: #ffffff;
  --line: #dae0ea;
  --header-bg: rgba(244, 247, 251, 0.85);
  --bg-spot-1: #dfe8ff;
  --bg-spot-2: #d8fbf8;
  --accent: #0052ff;
  --accent-2: #00a6a6;
  --shadow: 0 12px 34px rgba(20, 20, 26, 0.08);
  --radius: 18px;
}

[data-theme="dark"] {
  --bg: #0e1118;
  --ink: #e8eefb;
  --muted: #a2afc8;
  --card: #151b27;
  --line: #2a3447;
  --header-bg: rgba(14, 17, 24, 0.86);
  --bg-spot-1: rgba(26, 54, 100, 0.3);
  --bg-spot-2: rgba(18, 81, 81, 0.26);
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, var(--bg-spot-1) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, var(--bg-spot-2) 0%, transparent 30%),
    var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.nav-item-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.85;
  flex: 0 0 auto;
}

.main-nav a:hover {
  color: var(--ink);
}

.theme-switch-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.42rem;
}

.theme-mode-text {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.theme-toggle-switch {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.theme-toggle-track {
  width: 46px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 86%, var(--line));
  display: inline-flex;
  align-items: center;
  padding: 2px;
  transition: background 180ms ease, border-color 180ms ease;
}

.theme-toggle-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--muted);
  transform: translateX(0);
  transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle-switch.is-on .theme-toggle-track {
  background: color-mix(in srgb, var(--accent) 36%, var(--card));
  border-color: color-mix(in srgb, var(--accent) 65%, var(--line));
}

.theme-toggle-switch.is-on .theme-toggle-thumb {
  transform: translateX(22px);
  background: #fff;
}

.theme-toggle-switch:hover .theme-toggle-track {
  border-color: var(--accent);
}

.mock-menu {
  position: relative;
}

.mock-menu-button {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  cursor: pointer;
}

.mock-menu-button:hover {
  border-color: var(--accent);
}

.mock-menu-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
}

.mock-menu-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
}

.mock-menu-caret {
  color: var(--muted);
  font-size: 0.7rem;
}

.mock-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  width: 200px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: none;
  z-index: 30;
}

.mock-menu-panel.is-open {
  display: block;
}

.mock-menu-caption {
  margin: 0.25rem 0.45rem 0.35rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mock-menu-item {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
  padding: 0.46rem 0.5rem;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  cursor: pointer;
}

.mock-menu-item:hover {
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
}

.mock-menu-item.danger {
  color: #d34d4d;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.hero-profile {
  margin: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    0 14px 34px rgba(0, 82, 255, 0.2),
    0 6px 24px rgba(0, 166, 166, 0.2);
}

.hero-profile a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.hero-profile img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  filter: saturate(1.04) contrast(1.02);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-profile a:hover {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 16px 24px rgba(0, 82, 255, 0.28));
}

.hero-profile a:hover img {
  transform: scale(1.02);
  box-shadow: 0 0 0 4px rgba(0, 166, 166, 0.2);
}

.hero-profile a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  max-width: 14ch;
  margin: 0;
}

.hero-copy {
  max-width: 60ch;
  color: var(--muted);
  margin: 1.2rem 0 2rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
}

.last-updated {
  margin: 0.95rem 0 0;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.hero-contact a {
  text-decoration: none;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: color-mix(in srgb, var(--card) 70%, transparent);
}

.hero-contact a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.social-link {
  width: 38px;
  height: 38px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.changelog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

.changelog-card h1,
.changelog-card h2 {
  margin: 0.3rem 0 0.7rem;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
}

.changelog-card ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.changelog-card li {
  margin-bottom: 0.35rem;
}

.section {
  padding: 2rem 0 5rem;
}

#latest.section {
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 2.5rem;
}

#latest.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92%);
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent) 22%);
}

.whoami-copy {
  margin: 0 0 3.2rem;
}

.whoami-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

.whoami-copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  max-width: 88ch;
}

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

.whoami-divider {
  border-top: 1px solid color-mix(in srgb, var(--line) 76%, var(--accent) 24%);
  margin: 0 0 1.2rem;
}

.section-divider {
  border-top: 1px solid color-mix(in srgb, var(--line) 76%, var(--accent) 24%);
  margin: 0.6rem 0 3.6rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.list-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discover-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.post-search {
  min-width: 230px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.post-search:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
  outline-offset: 1px;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.clear-filters-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  cursor: pointer;
}

.clear-filters-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.clear-tags-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  cursor: pointer;
}

.clear-tags-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.tag-filter-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  cursor: pointer;
  text-transform: lowercase;
}

.tag-filter-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.tag-filter-btn.is-active {
  background: color-mix(in srgb, var(--accent) 14%, var(--card));
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  color: var(--ink);
}

.random-post-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  cursor: pointer;
}

.random-post-btn:hover {
  border-color: var(--accent);
}

.legacy-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.legacy-toggle input {
  accent-color: var(--accent);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  background: color-mix(in srgb, var(--accent) 14%, var(--card));
  color: var(--ink);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow);
}

.journey-cta-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.journey-cta-btn:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 22%, var(--card));
}

.journey-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.journey-title-icon-alt {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #2dd4bf, #60a5fa 55%, #a855f7);
  color: #0b0f1b;
}

.journey-title-icon-alt svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.meta {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.no-results {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--card) 78%, transparent);
}

.local-area-section {
  padding-top: 0;
}

.local-area-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
}

.local-area-card h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.map-embed-wrap {
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--line) 70%, transparent);
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-link-row {
  margin: 0.75rem 0 0;
}

.map-link-row a {
  color: var(--accent);
  text-decoration: none;
}

.map-link-row a:hover {
  text-decoration: underline;
}

.distance-tool {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.distance-tool h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.distance-tool .meta {
  margin: 0.4rem 0 0.65rem;
}

.distance-form {
  margin: 0;
}

.distance-label {
  display: inline-block;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
}

.distance-controls {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.distance-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.58rem 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.distance-input:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
  outline-offset: 1px;
}

.mode-label {
  margin: 0;
  white-space: nowrap;
}

.distance-select {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.58rem 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.distance-select:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
  outline-offset: 1px;
}

.distance-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.56rem 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
}

.distance-btn:hover {
  border-color: var(--accent);
}

.directions-status {
  margin: 0.55rem 0 0;
  min-height: 1.2em;
}

.now-card {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 14%, var(--card)),
    color-mix(in srgb, var(--accent-2) 12%, var(--card))
  );
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  margin: 0 0 1rem;
  box-shadow: var(--shadow);
}

.now-card h3 {
  margin: 0.3rem 0 0.55rem;
}

.now-card p {
  margin: 0;
  color: var(--muted);
}

.post-grid .post-card {
  opacity: 0;
}

body.is-loaded .post-grid .post-card {
  animation: cardReveal 480ms ease forwards;
  animation-delay: calc(var(--stagger-index, 0) * 65ms);
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card {
  --card-grad-a: color-mix(in srgb, var(--card) 80%, #ffffff 20%);
  --card-grad-b: color-mix(in srgb, var(--card) 78%, #ff8fa3 22%);
  background: linear-gradient(145deg, var(--card-grad-a), var(--card-grad-b));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.post-grid .post-card:nth-child(7n + 1) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #ffd4db 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #ff8aa0 32%);
}

.post-grid .post-card:nth-child(7n + 2) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #ffe7c8 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #ffb86a 32%);
}

.post-grid .post-card:nth-child(7n + 3) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #fff6bf 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #ffe36a 32%);
}

.post-grid .post-card:nth-child(7n + 4) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #dcf7d4 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #94df7c 32%);
}

.post-grid .post-card:nth-child(7n + 5) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #d8efff 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #85c8ff 32%);
}

.post-grid .post-card:nth-child(7n + 6) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #e6dcff 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #b39bff 32%);
}

.post-grid .post-card:nth-child(7n + 7) {
  --card-grad-a: color-mix(in srgb, var(--card) 78%, #f0ddff 22%);
  --card-grad-b: color-mix(in srgb, var(--card) 68%, #d49bff 32%);
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.16),
    0 10px 24px rgba(0, 82, 255, 0.16);
}

.post-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.14),
    0 0 0 2px color-mix(in srgb, var(--accent) 35%, transparent);
}

.post-card h3 {
  margin: 0.4rem 0 0.8rem;
  line-height: 1.25;
}

.post-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card h3 a:hover {
  text-decoration: underline;
}

.card-copy-icon-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.card-copy-icon-btn::after {
  content: "Copy";
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  opacity: 0;
  pointer-events: none;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 8px;
  padding: 0.15rem 0.42rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  line-height: 1.25;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.card-copy-icon-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.card-copy-icon-btn:hover,
.card-copy-icon-btn:focus-visible {
  border-color: var(--accent);
  color: var(--ink);
}

.card-copy-icon-btn:hover::after,
.card-copy-icon-btn:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.card-copy-icon-btn.is-copied {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.copy-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  border: 1px solid #2f8f46;
  background: #1f5a2c;
  color: #e6ffe9;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.copy-toast.is-error {
  border-color: #c04848;
}

.post-card p {
  margin: 0;
  color: var(--muted);
}

.chip-row {
  margin: 0 0 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  color: var(--muted);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  line-height: 1.4;
  text-transform: lowercase;
}

.tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--accent);
}

.post-date {
  margin: 0.2rem 0 0.3rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.footer-social-link {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.footer-social-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.article-layout {
  padding: 3.5rem 0 5rem;
}

.article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

.article-header h1 {
  margin: 0.4rem 0 0.8rem;
  line-height: 1.15;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.article-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
}

.article-content p {
  margin: 0 0 1.1rem;
  max-width: 70ch;
}

.article-content h2 {
  margin: 1.8rem 0 0.8rem;
}

.article-content pre {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  overflow-x: auto;
  background: #0f1220;
  color: #d2defa;
}

.article-content code {
  font-family: "IBM Plex Mono", monospace;
}

.journey-intro {
  margin: 0 0 1.5rem;
}

.journey-jumplist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0;
}

.journey-jumplist a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 70%, transparent);
  color: var(--ink);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.journey-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(10, 13, 22, 0.12);
}

.journey-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.journey-card-body {
  padding: 0.9rem 1rem 1.1rem;
}

.journey-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.journey-count {
  margin-left: 0.45rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
}

.journey-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.journey-section {
  margin: 2.2rem 0 2.6rem;
  scroll-margin-top: 90px;
}

.journey-section h2 {
  margin: 0 0 0.6rem;
}

.journey-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 90px;
  gap: 0.8rem;
  margin: 1rem 0 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.2rem 0.2rem 0.6rem;
}

.journey-gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.journey-file-card {
  height: 90px;
  border-radius: 14px;
  border: 1px dashed var(--line);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  color: var(--ink);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.journey-file-card:hover {
  border-color: color-mix(in srgb, var(--line) 70%, var(--accent));
}

.journey-gallery img.is-collapsed {
  display: none;
}

.journey-gallery-wrap {
  position: relative;
  padding: 0 56px;
}

.journey-scroll-next,
.journey-scroll-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.journey-scroll-next {
  right: 10px;
}

.journey-scroll-prev {
  left: 10px;
}

.journey-scroll-next svg,
.journey-scroll-prev svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.journey-scroll-next:hover,
.journey-scroll-prev:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 14px 26px rgba(24, 29, 44, 0.2);
}

.journey-scroll-next.is-end,
.journey-scroll-prev.is-start {
  opacity: 0.65;
}

.journey-expand-btn {
  margin: 0.8rem 0 1.8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 75%, transparent);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.journey-expand-btn:hover {
  background: color-mix(in srgb, var(--card) 55%, transparent);
}

.journey-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 999;
}

.journey-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.journey-modal-content {
  max-width: min(90vw, 980px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-modal-content img {
  width: min(88vw, 980px);
  height: min(70vh, 620px);
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.journey-modal-nav,
.journey-modal-close {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.journey-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2rem;
}

.journey-modal-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
}

.journey-modal-nav:hover,
.journey-modal-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 720px) {
  .journey-modal {
    gap: 0.5rem;
  }

  .journey-modal-nav {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

.food-photo {
  margin: 1rem 0 0;
}

.food-photo img {
  display: block;
  width: min(620px, 100%);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.food-page-header {
  margin: 0 0 1rem;
}

.food-page-header h1 {
  margin: 0.35rem 0 0.75rem;
  line-height: 1.15;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.food-intro-card,
.food-rec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.food-intro-card {
  margin: 0 0 1rem;
}

.food-intro-card p:last-child {
  margin-bottom: 0;
}

.food-recommendations {
  display: grid;
  gap: 1rem;
}

.food-rec-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.food-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
}

.food-rating-score {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  color: var(--muted);
}

.food-rating-stars {
  display: inline-flex;
  gap: 0.14rem;
}

.food-star {
  position: relative;
  color: color-mix(in srgb, var(--line) 72%, var(--muted));
  font-size: 1rem;
  line-height: 1;
}

.food-star.filled {
  color: #f4b400;
}

.food-star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f4b400;
}

.food-rec-card p {
  margin: 0 0 1rem;
  max-width: 72ch;
}

.food-rec-card p:last-child {
  margin-bottom: 0;
}

.place-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.place-link-card {
  text-decoration: none;
  background: color-mix(in srgb, var(--accent) 8%, var(--card));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.place-link-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.place-link-label {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.place-link-value {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.phone-link-value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.phone-link-value svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex: 0 0 auto;
}

.food-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.food-map-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
}

.food-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.reference-links {
  margin: 0 0 1rem;
}

.reference-link-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  background: color-mix(in srgb, var(--card) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.reference-link-card:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--card) 35%, transparent);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.reference-link-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.reference-link-label {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.reference-link-value {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.exercise-log-table-wrap {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: var(--shadow);
}

.exercise-log-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.exercise-log-table th,
.exercise-log-table td {
  padding: 0.78rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.exercise-log-table thead th {
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.exercise-log-table tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--bg) 40%, var(--card));
}

.exercise-log-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent) 9%, var(--card));
}

.exercise-log-table tbody tr:last-child td {
  border-bottom: 0;
}

.exercise-publish-actions {
  margin-top: 0.9rem;
}

.exercise-publish-btn {
  border: 1px solid var(--line);
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--accent) 26%, var(--card)),
    color-mix(in srgb, var(--accent-2) 22%, var(--card))
  );
  color: var(--ink);
  border-radius: 999px;
  padding: 0.56rem 0.9rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.exercise-publish-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.exercise-snapshot-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.exercise-snapshot-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.62);
}

.exercise-snapshot-panel {
  position: relative;
  width: min(960px, 92vw);
  max-height: 88vh;
  margin: 4vh auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.exercise-snapshot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.exercise-snapshot-header h2 {
  margin: 0;
  font-size: 1rem;
}

.exercise-snapshot-close {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.exercise-snapshot-close:hover {
  border-color: var(--accent);
}

.exercise-snapshot-content {
  padding: 0.9rem;
  overflow: auto;
}

.exercise-snapshot-content canvas,
.exercise-snapshot-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.snapshot-capture-host {
  position: fixed;
  left: -10000px;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

.exercise-log-table-wrap.snapshot-capture {
  background: #ffffff !important;
  border: 1px solid #cfd6e3 !important;
  box-shadow: none !important;
}

.exercise-log-table-wrap.snapshot-capture .exercise-log-table {
  background: #ffffff !important;
  color: #14141a !important;
}

.exercise-log-table-wrap.snapshot-capture .exercise-log-table thead th {
  background: #eaf0ff !important;
  color: #14141a !important;
  border-bottom: 1px solid #cfd6e3 !important;
}

.exercise-log-table-wrap.snapshot-capture .exercise-log-table tbody td {
  background: #ffffff !important;
  color: #14141a !important;
  border-bottom: 1px solid #e4e8f0 !important;
}

.exercise-log-table-wrap.snapshot-capture .exercise-log-table tbody tr:nth-child(even) td {
  background: #f7f9fd !important;
}

.note-key {
  display: inline-block;
  min-width: 62px;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

.is-hidden {
  display: none !important;
}

.ttt-card {
  margin-top: 1rem;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: var(--shadow);
}

.ttt-status {
  margin: 0 0 0.7rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--muted);
}

.ttt-status-win-flash {
  color: #fff;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  display: inline-block;
  animation: tttWinnerPulse 320ms ease-in-out 6;
}

@keyframes tttWinnerPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 95, 109, 0.45);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 95, 109, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 95, 109, 0.45);
  }
}

.ttt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.ttt-cell {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 140ms ease,
    border-color 140ms ease;
}

.ttt-cell:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.ttt-cell:disabled {
  cursor: default;
}

.ttt-controls {
  margin-top: 0.8rem;
}

.ttt-reset-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  cursor: pointer;
}

.ttt-reset-btn:hover {
  border-color: var(--accent);
}

.legacy-log .blog-entry {
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.legacy-log .blog-entry:first-of-type {
  border-top: 0;
  padding-top: 0.2rem;
}

.legacy-log .blog-entry h3 {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  font-weight: 500;
}

.legacy-log .blog-entry h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.legacy-log .blog-entry p,
.legacy-log .blog-entry ul {
  max-width: 72ch;
}

.copy-link-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  cursor: pointer;
  margin-bottom: 0.7rem;
}

.copy-link-btn:hover {
  border-color: var(--accent);
}

img,
video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero {
    padding: 5rem 0 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1.4rem;
  }

  .hero-profile {
    width: 180px;
    height: 180px;
  }

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

@media (max-width: 650px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .main-nav a {
    padding: 0.2rem 0;
  }

  .theme-mode-text {
    font-size: 0.64rem;
  }

  .theme-toggle-track {
    width: 44px;
    height: 23px;
  }

  .mock-menu-button {
    min-height: 40px;
    padding: 0.4rem 0.68rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-profile {
    width: 168px;
    height: 168px;
    margin: 0 auto;
  }

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

  .distance-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .mode-label {
    margin-top: 0.2rem;
  }

  .distance-select {
    width: 100%;
  }

  .distance-btn {
    width: 100%;
    min-height: 36px;
  }

  .map-embed-wrap iframe {
    height: 320px;
  }

  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .list-controls {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .post-search {
    width: 100%;
    min-width: 0;
  }

  .changelog-card {
    padding: 1rem;
  }

  .clear-filters-btn {
    min-height: 36px;
  }

  .clear-tags-btn {
    min-height: 36px;
  }

  .random-post-btn {
    min-height: 36px;
  }

  .legacy-toggle {
    min-height: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1080px, 94%);
  }

  .hero {
    padding: 3.4rem 0 2.8rem;
  }

  #latest.section {
    padding-top: 2.6rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-copy {
    margin: 1rem 0 1.3rem;
  }

  .hero-contact {
    flex-wrap: wrap;
    margin-top: 0.8rem;
  }

  .cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
  }

  .post-card {
    padding: 1rem;
  }

  .article-layout {
    padding: 2.6rem 0 3.2rem;
  }

  .article {
    padding: 1rem;
  }

  .exercise-log-table-wrap {
    overflow-x: auto;
  }

  .exercise-log-table {
    min-width: 760px;
  }

  .place-links {
    grid-template-columns: 1fr;
  }

  .food-media-grid {
    grid-template-columns: 1fr;
  }

  .food-map-wrap iframe {
    min-height: 220px;
  }

  .local-area-card {
    padding: 1rem;
  }

  .map-embed-wrap iframe {
    height: 260px;
  }
}
