:root {
  --background: #fbf8f3;
  --surface: #ffffff;
  --foreground: #2c241f;
  --muted: #675b53;
  --primary: #1e4967;
  --primary-dark: #15374e;
  --secondary: #f1ebe1;
  --accent: #c65038;
  --accent-dark: #a33b28;
  --butter: #f3dea2;
  --dune: #8e9c68;
  --border: #e3d9cd;
  --radius: 0.75rem;
  --radius-large: 1rem;
  --shadow-card: 0 1px 2px rgba(44, 36, 31, 0.04), 0 12px 30px -18px rgba(44, 36, 31, 0.32);
  --shadow-header: 0 1px 0 rgba(44, 36, 31, 0.08);
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: var(--primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), 1400px);
  margin-inline: auto;
}

.container--narrow {
  max-width: 820px;
}

.container--medium {
  max-width: 1080px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--primary);
  border-radius: 0.35rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--butter);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0.45rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button--glass {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.62);
}

.button--disabled {
  color: var(--muted);
  background: var(--secondary);
  border-color: var(--border);
  cursor: not-allowed;
}

.button--disabled:hover {
  color: var(--muted);
  background: var(--secondary);
  border-color: var(--border);
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-main {
  min-height: 60vh;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(251, 248, 243, 0.93);
  border-bottom: 1px solid rgba(227, 217, 205, 0.82);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  min-width: 0;
}

.site-wordmark {
  display: flex;
  flex-direction: column;
  color: var(--foreground);
  line-height: 1;
  text-decoration: none;
}

.site-wordmark:hover {
  color: var(--foreground);
}

.site-wordmark__name {
  overflow-wrap: anywhere;
  font-family: var(--font-serif);
  font-size: clamp(1.26rem, 2vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-wordmark__name span {
  color: var(--accent);
}

.site-wordmark__tagline {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: min(360px, 60vw);
  max-height: 62px;
}

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

.desktop-navigation {
  display: none;
}

.primary-menu {
  align-items: center;
  gap: clamp(0.75rem, 1.35vw, 1.7rem);
}

.primary-menu a {
  display: block;
  color: rgba(44, 36, 31, 0.82);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-category-ancestor > a {
  color: var(--accent);
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  color: var(--foreground);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--secondary);
}

.menu-toggle svg[hidden] {
  display: none;
}

.mobile-navigation {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.mobile-navigation[hidden] {
  display: none;
}

.mobile-menu {
  padding-block: 0.85rem 1.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  color: var(--foreground);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: 560px;
  height: min(88vh, 900px);
  overflow: hidden;
}

.home-hero > img,
.single-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade,
.single-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 31, 0.04), rgba(44, 36, 31, 0.68));
}

.home-hero__content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  color: #fff;
}

.home-hero h1 {
  max-width: 880px;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: 1.01;
}

.home-hero__summary {
  max-width: 760px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.02rem, 2vw, 1.27rem);
  line-height: 1.65;
}

.empty-hero {
  padding: 7rem 0;
  background: var(--secondary);
}

.empty-hero p:last-child {
  max-width: 680px;
}

.intro-section {
  max-width: 900px;
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.intro-section h2 {
  margin-bottom: 1.4rem;
}

.intro-section > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading > a {
  flex: 0 0 auto;
  font-weight: 650;
  text-decoration: none;
}

.home-topics {
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

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

.topic-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background: var(--foreground);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  text-decoration: none;
}

.topic-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(44, 36, 31, 0.03) 30%, rgba(44, 36, 31, 0.84));
}

.topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.topic-card > span {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 1.5rem;
}

.topic-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.15;
}

.topic-card small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  line-height: 1.5;
}

.topic-card:hover {
  color: #fff;
}

.topic-card:hover img {
  transform: scale(1.045);
}

.editorial-split {
  background: var(--secondary);
}

.editorial-split__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.editorial-split figure {
  overflow: hidden;
  border-radius: var(--radius-large);
  aspect-ratio: 4 / 3;
}

.editorial-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-split p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.editorial-split a {
  font-weight: 650;
  text-decoration: none;
}

.responsible-note {
  max-width: 1050px;
  padding: 1.5rem 1.7rem;
  margin-block: 4rem;
  background: #f7f0dc;
  border: 1px solid #ead7a4;
  border-radius: var(--radius);
}

.responsible-note p:last-child {
  margin-bottom: 0;
  color: #504633;
}

.latest-guides {
  padding-block: clamp(4rem, 9vw, 7rem);
}

/* Cards and archives */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  box-shadow: 0 18px 40px -22px rgba(44, 36, 31, 0.48);
  transform: translateY(-3px);
}

.post-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-card__link:hover {
  color: inherit;
}

.post-card__image {
  overflow: hidden;
  background: var(--secondary);
  aspect-ratio: 4 / 3;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.035);
}

.post-card__body {
  padding: 1.45rem;
}

.post-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.post-card__excerpt {
  color: var(--muted);
  font-size: 0.94rem;
}

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.post-card__meta span {
  color: var(--primary);
  font-weight: 650;
}

.archive-header {
  padding-block: clamp(4rem, 9vw, 7rem) clamp(2.7rem, 7vw, 5rem);
  text-align: center;
}

.archive-header--tinted {
  width: 100%;
  max-width: none;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.archive-header h1 {
  margin-bottom: 1.2rem;
}

.archive-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding-bottom: 2rem;
}

.category-pills a {
  padding: 0.48rem 0.88rem;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  text-decoration: none;
}

.category-pills a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.archive-posts {
  padding-block: 2.3rem clamp(4rem, 9vw, 7rem);
}

.featured-guide {
  overflow: hidden;
  margin-bottom: 3.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.featured-guide > a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.featured-guide__image {
  min-height: 280px;
  background: var(--secondary);
}

.featured-guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-guide__body {
  align-self: center;
  padding: clamp(1.6rem, 5vw, 3.4rem);
}

.featured-guide h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.featured-guide__body > p:not(.eyebrow) {
  color: var(--muted);
}

.featured-guide__body > span {
  color: var(--primary);
  font-weight: 650;
}

.archive-posts__title {
  margin: 0 0 1.8rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.empty-state {
  padding: 1.2rem;
  color: var(--muted);
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* Pages and rich content */
.page-shell {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  margin-bottom: 0;
}

.prose-island {
  max-width: 780px;
  font-size: 1.06rem;
  line-height: 1.82;
}

.prose-island > *:first-child {
  margin-top: 0;
}

.prose-island p {
  margin-bottom: 1.35rem;
}

.prose-island h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.prose-island h3 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.prose-island ul,
.prose-island ol {
  padding-left: 1.4rem;
  margin: 0 0 1.5rem;
}

.prose-island li + li {
  margin-top: 0.45rem;
}

.prose-island a {
  font-weight: 550;
}

.prose-island blockquote {
  padding: 0.35rem 0 0.35rem 1.25rem;
  margin: 2rem 0;
  color: #4d433c;
  border-left: 4px solid var(--accent);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.prose-island blockquote p:last-child {
  margin-bottom: 0;
}

.prose-island figure {
  margin-block: 2.2rem;
}

.prose-island figure img {
  width: 100%;
  border-radius: var(--radius);
}

.prose-island figcaption,
.wp-caption-text {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.prose-island table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-block: 2rem;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.prose-island th,
.prose-island td {
  min-width: 160px;
  padding: 0.8rem 0.9rem;
  text-align: left;
  border: 1px solid var(--border);
}

.prose-island th {
  background: var(--secondary);
  font-weight: 700;
}

.page-lead,
.article-deck {
  color: #40352e;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.48rem);
  font-style: italic;
  line-height: 1.65;
}

.page-tours .prose-island {
  max-width: none;
  padding-block: 3.5rem 6rem;
}

.page-tours .page-lead {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-block: 3rem;
}

.tour-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

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

.tour-card > div {
  padding: 1.4rem;
}

.tour-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
}

.tour-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Forms and integrations */
.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

.vpei-form {
  display: grid;
  gap: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 650;
}

.vpei-form input,
.vpei-form textarea,
.vpei-form select,
.newsletter-form input {
  width: 100%;
  padding: 0.77rem 0.85rem;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid #cfc2b5;
  border-radius: 0.4rem;
}

.vpei-form textarea {
  resize: vertical;
}

.vpei-form input:disabled,
.vpei-form textarea:disabled,
.newsletter-form input:disabled {
  color: #70665f;
  background: #eee9e2;
  cursor: not-allowed;
  opacity: 1;
}

.vpei-form button:disabled,
.newsletter-form button:disabled {
  color: #70665f;
  background: #ded7cf;
  border-color: #ded7cf;
  cursor: not-allowed;
  transform: none;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-unconfigured,
.form-status {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background: #f7f0dc;
  border: 1px solid #ead7a4;
  border-radius: 0.4rem;
  font-size: 0.9rem;
}

.form-unconfigured p,
.form-status p {
  margin: 0;
}

.form-status--success {
  background: #eef4e7;
  border-color: #b8cd9d;
}

.form-status--error {
  background: #f9ece8;
  border-color: #e6b9ae;
}

.practical-card {
  padding: 1.35rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.practical-card h2 {
  font-size: 1.4rem;
}

.practical-card p:last-child,
.practical-card ul:last-child {
  margin-bottom: 0;
}

.integration-slot {
  max-width: 820px;
  padding: 1.35rem;
  margin-block: 2rem;
  color: var(--muted);
  background: rgba(198, 80, 56, 0.045);
  border: 1px dashed rgba(198, 80, 56, 0.55);
  border-radius: var(--radius);
  text-align: center;
}

.integration-slot > p:last-child {
  margin-bottom: 0;
}

.newsletter-band {
  background: var(--secondary);
  border-block: 1px solid var(--border);
}

.newsletter-band__inner {
  max-width: 780px;
  padding-block: clamp(3.5rem, 8vw, 5rem);
  text-align: center;
}

.newsletter-band h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.newsletter-band__inner > p:not(.eyebrow, .form-unconfigured) {
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  max-width: 600px;
  margin: 1.4rem auto 0;
}

.newsletter-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: left;
}

.newsletter-consent input {
  width: auto;
  margin-top: 0.25rem;
}

/* Single guide */
.single-hero {
  position: relative;
  min-height: 500px;
  height: min(64vh, 720px);
  overflow: hidden;
}

.single-hero__media {
  position: absolute;
  inset: 0;
}

.single-hero__content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: clamp(2.7rem, 7vw, 5rem);
  color: #fff;
}

.single-hero h1 {
  max-width: 1000px;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(2.55rem, 6.4vw, 5rem);
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.breadcrumbs {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.55rem;
  content: "/";
  color: #a99c90;
}

.breadcrumbs a {
  text-decoration: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 3rem;
  justify-content: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.article-layout .prose-island {
  max-width: none;
  min-width: 0;
}

.guide-sidebar {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.guide-sidebar ul {
  padding-left: 1.1rem;
  margin: 0;
}

.guide-sidebar li + li {
  margin-top: 0.35rem;
}

.sidebar-widget {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.sidebar-widget__title {
  font-size: 1.35rem;
}

.post-share {
  display: flex;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-block: 1px solid var(--border);
}

.post-share .eyebrow {
  margin: 0;
}

.post-share > div {
  display: flex;
  gap: 1rem;
}

.post-navigation-wrap {
  max-width: 1100px;
  padding-block: 2rem 4rem;
}

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

.post-navigation a {
  display: block;
  height: 100%;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
}

.nav-next {
  text-align: right;
}

.nav-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-title {
  display: block;
  margin-top: 0.25rem;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.25;
}

.related-guides {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  background: var(--secondary);
  border-block: 1px solid var(--border);
}

.related-guides h2 {
  margin-bottom: 2rem;
}

/* Footer and 404 */
.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--foreground);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-block: 4.5rem;
}

.site-footer__about {
  max-width: 650px;
}

.site-footer__brand {
  margin-bottom: 0.65rem;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.site-footer__responsible {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.86rem;
}

.eyebrow--footer {
  color: rgba(255, 255, 255, 0.54);
}

.footer-list li + li {
  margin-top: 0.35rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--butter);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: space-between;
  padding-block: 1.35rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.not-found {
  padding-block: clamp(6rem, 16vw, 11rem);
  text-align: center;
}

.not-found__number {
  margin-bottom: 0;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
}

.not-found h1 {
  margin: 1.5rem 0 1rem;
}

.not-found > p:not(.not-found__number) {
  color: var(--muted);
}

.not-found .button {
  margin-top: 0.75rem;
}

@media (min-width: 620px) {
  .topic-grid,
  .post-grid,
  .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 780px) {
  .editorial-split__inner,
  .featured-guide > a,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-guide__image {
    min-height: 430px;
  }

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

  .site-footer__bottom-inner {
    flex-direction: row;
  }
}

@media (min-width: 1120px) {
  .desktop-navigation {
    display: block;
  }

  .desktop-navigation .primary-menu {
    display: flex;
  }

  .menu-toggle,
  .mobile-navigation {
    display: none !important;
  }

  body.menu-is-open {
    overflow: auto;
  }

  .article-layout {
    grid-template-columns: minmax(0, 780px) minmax(250px, 310px);
    align-items: start;
  }

  .guide-sidebar {
    position: sticky;
    top: 112px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 619px) {
  .home-hero {
    min-height: 620px;
    height: calc(100svh - 80px);
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-consent {
    grid-column: auto;
  }

  .post-share {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nav-next {
    text-align: left;
  }

  .single-hero {
    min-height: 520px;
    height: 68svh;
  }

  .single-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .breadcrumbs li:last-child {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
