:root {
  color-scheme: light;
  --page-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(20, 28, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: #17202a;
  background: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--page-width));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-label {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 18, 24, 0.82);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 750;
}

.concept-label a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Concept gallery */

.concept-index {
  min-height: 100vh;
  color: #f7f7f2;
  background:
    radial-gradient(circle at 12% 8%, rgba(224, 163, 74, 0.22), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(80, 146, 164, 0.18), transparent 30%),
    #101820;
}

.index-wrap {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
  padding: 72px 0;
}

.index-kicker {
  margin: 0 0 18px;
  color: #e0a34a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.index-wrap h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.index-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: #b8c3c8;
  font-size: 1.06rem;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.concept-card {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.concept-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-5px);
}

.concept-card.selected {
  border-color: rgba(224, 163, 74, 0.72);
  box-shadow: 0 0 0 1px rgba(224, 163, 74, 0.28);
}

.concept-preview {
  position: relative;
  min-height: 210px;
  padding: 24px;
}

.concept-preview::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  content: "↗";
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}

.preview-guide {
  color: #102a43;
  background: linear-gradient(145deg, #dff0e8, #f7f0e5);
}

.preview-guide::after {
  color: #fff;
  background: #ff6542;
}

.preview-editorial {
  color: #151515;
  background: #f0eadd;
}

.preview-editorial::after {
  color: #fff;
  background: #cf4937;
}

.preview-mountain {
  color: #f6f1e7;
  background: linear-gradient(145deg, #17372d, #0d1916);
}

.preview-mountain::after {
  color: #10231d;
  background: #d7b36a;
}

.preview-no {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concept-preview strong {
  display: block;
  max-width: 220px;
  margin-top: 46px;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.selected-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: #102a43;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-editorial strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.concept-copy {
  padding: 26px;
}

.concept-copy p {
  margin: 0 0 20px;
  color: #b8c3c8;
}

.concept-copy span {
  font-weight: 800;
}

.index-note {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #96a5ab;
  font-size: 0.87rem;
}

.selected-suite {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 42px;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: #102a43;
  background: #dcece5;
}

.selected-suite h2 {
  margin: 8px 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.selected-suite p {
  max-width: 650px;
  margin: 0;
  color: #536b65;
}

.selected-suite nav {
  display: grid;
  align-content: center;
  gap: 8px;
}

.selected-suite nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.25);
  font-weight: 800;
}

/* Shared navigation */

.site-header {
  position: relative;
  z-index: 20;
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 14%;
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.89rem;
  font-weight: 680;
}

.desktop-nav a {
  opacity: 0.76;
}

.desktop-nav a:hover {
  opacity: 1;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  right: 20px;
  left: 20px;
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px;
  border-radius: 10px;
}

/* Concept 1: modern guide */

.guide {
  --ink: #102a43;
  --muted: #64778a;
  --mint: #dcece5;
  --cream: #f6f1e7;
  --orange: #ff6542;
  color: var(--ink);
  background: #fcfdfc;
}

.guide .topline {
  padding: 9px 0;
  color: #fff;
  background: var(--ink);
  font-size: 0.74rem;
  text-align: center;
}

.guide .brand-mark {
  color: #fff;
  background: var(--orange);
}

.guide .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  opacity: 1;
}

.guide .mobile-menu nav {
  background: #fff;
}

.guide-hero {
  padding: 64px 0 78px;
  background: linear-gradient(115deg, #edf6f1 0 56%, #f9f3e9 56%);
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 54px;
}

.guide-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.guide-hero h1 span {
  color: var(--orange);
}

.guide-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide .button-primary {
  color: #fff;
  background: var(--orange);
}

.guide .button-secondary {
  border-color: #b9c8c1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.guide-visual {
  position: relative;
}

.guide-visual img {
  height: 560px;
  object-fit: cover;
  border-radius: 130px 18px 130px 18px;
  box-shadow: var(--shadow);
}

.guide-float {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 230px;
  padding: 18px;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.18);
  backdrop-filter: blur(12px);
}

.guide-float strong,
.guide-float small {
  display: block;
}

.guide-float strong {
  font-size: 1.02rem;
}

.guide-float small {
  margin-top: 4px;
  color: var(--muted);
}

.guide-section {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading a {
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.guide-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guide-category {
  min-height: 190px;
  padding: 24px;
  border-radius: 20px;
  background: var(--cream);
}

.guide-category:nth-child(even) {
  background: var(--mint);
}

.guide-category span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 1.2rem;
}

.guide-category strong,
.guide-category small {
  display: block;
}

.guide-category small {
  margin-top: 4px;
  color: var(--muted);
}

.guide-popular {
  background: var(--ink);
  color: #fff;
}

.guide-destinations {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.guide-destination {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 24px;
}

.guide-destination.small {
  min-height: 225px;
}

.guide-destination img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.guide-destination:hover img {
  transform: scale(1.03);
}

.guide-destination::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(4, 14, 22, 0.88));
}

.guide-destination-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.guide-destination-copy small {
  color: #d5e1e8;
}

.guide-destination-copy h3 {
  margin: 5px 0 0;
  font-size: 1.7rem;
}

.guide-destination.large .guide-destination-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.guide-stack {
  display: grid;
  gap: 18px;
}

.guide-travel-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.guide-travel-grid img {
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.guide-travel-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.guide-travel-copy > p {
  color: var(--muted);
}

.guide-checks {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.guide-check {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #dbe2df;
}

.guide-check b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 0.75rem;
}

.guide-cta {
  padding: 72px 0;
}

.guide-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 54px;
  border-radius: 28px;
  color: #fff;
  background: var(--orange);
}

.guide-cta h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.guide-cta .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
}

.guide-footer {
  padding: 54px 0 28px;
  color: #d9e3e9;
  background: #091b2b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: #fff;
}

.footer-grid p {
  max-width: 330px;
  color: #93a7b5;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
}

.guide-footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f98a8;
  font-size: 0.78rem;
}

/* Selected guide: shared internal-page templates */

.guide-template {
  --ink: #102a43;
  --muted: #64778a;
  --mint: #dcece5;
  --cream: #f6f1e7;
  --orange: #ff6542;
  color: var(--ink);
  background: #fcfdfc;
}

.guide-template .brand-mark {
  color: #fff;
  background: var(--orange);
}

.guide-template .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  opacity: 1;
}

.guide-template .mobile-menu nav {
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb span[aria-hidden="true"] {
  color: #a8b4bd;
}

.subpage-hero {
  padding: 38px 0 72px;
  background: linear-gradient(135deg, #edf6f1, #f8f2e8);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.subpage-hero .lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.article-hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 42, 67, 0.18);
  color: var(--muted);
  font-size: 0.78rem;
}

.article-hero-image {
  position: relative;
}

.article-hero-image img {
  height: 580px;
  object-fit: cover;
  border-radius: 110px 18px 110px 18px;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 18, 28, 0.72);
  font-size: 0.68rem;
}

.article-shell {
  padding: 76px 0 96px;
}

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

.article-body {
  max-width: 780px;
}

.article-body > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.65;
}

.article-body p,
.article-body li {
  color: #3f5365;
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-body h2 {
  margin: 64px 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.article-body h3 {
  margin: 38px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.article-body a {
  color: #d8482a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 22px;
  border: 1px solid #dbe4df;
  border-radius: 18px;
  background: #fff;
}

.aside-card.mint {
  border-color: transparent;
  background: var(--mint);
}

.aside-card h2,
.aside-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.aside-card nav,
.aside-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-card a {
  color: var(--muted);
  font-size: 0.82rem;
}

.aside-card a:hover {
  color: var(--ink);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.fact-card {
  padding: 20px;
  border-radius: 16px;
  background: var(--cream);
}

.fact-card:nth-child(even) {
  background: var(--mint);
}

.fact-card small,
.fact-card strong {
  display: block;
}

.fact-card small {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-figure {
  margin: 44px 0;
}

.article-figure img {
  max-height: 540px;
  object-fit: cover;
  border-radius: 22px;
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.article-quote {
  margin: 46px 0;
  padding: 32px 0 32px 28px;
  border-left: 5px solid var(--orange);
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.info-list {
  margin: 28px 0;
  border-top: 1px solid #dbe4df;
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #dbe4df;
}

.info-row strong {
  font-size: 0.82rem;
}

.info-row span {
  color: #4f6271;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 42px 0;
}

.article-gallery img {
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
}

.faq-list {
  margin-top: 24px;
  border-top: 1px solid #dbe4df;
}

.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid #dbe4df;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.faq-list details p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.related-section {
  padding: 86px 0;
  color: #fff;
  background: var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  overflow: hidden;
  border-radius: 20px;
  background: #173b59;
}

.related-card img {
  height: 220px;
  object-fit: cover;
}

.related-card-copy {
  padding: 22px;
}

.related-card-copy small {
  color: #abc0cf;
}

.related-card-copy h3 {
  margin: 6px 0 0;
  font-size: 1.4rem;
}

/* Selected guide: hub template */

.hub-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}

.hub-stat-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hub-stat {
  min-height: 130px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hub-stat strong,
.hub-stat span {
  display: block;
}

.hub-stat strong {
  font-size: 2rem;
}

.hub-stat span {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hub-nav {
  padding: 24px 0;
  border-bottom: 1px solid #dbe4df;
}

.hub-nav .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hub-pill {
  padding: 10px 15px;
  border: 1px solid #cbd7d1;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 720;
}

.hub-pill.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.hub-section {
  padding: 82px 0;
}

.hub-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.hub-feature {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 24px;
}

.hub-feature.small {
  min-height: 262px;
}

.hub-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hub-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 24%, rgba(3, 16, 25, 0.9));
}

.hub-feature-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #fff;
}

.hub-feature-copy h3 {
  margin: 5px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.hub-feature-stack {
  display: grid;
  gap: 16px;
}

.hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hub-card {
  overflow: hidden;
  border: 1px solid #dbe4df;
  border-radius: 20px;
  background: #fff;
}

.hub-card img {
  height: 230px;
  object-fit: cover;
}

.hub-card-copy {
  padding: 22px;
}

.hub-card-copy small {
  color: var(--muted);
}

.hub-card-copy h3 {
  margin: 7px 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.hub-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hub-callout {
  padding: 76px 0;
  background: var(--mint);
}

.hub-callout-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.hub-callout h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

/* Selected guide: blog template */

.blog-hero {
  padding: 50px 0 80px;
}

.blog-title-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.blog-title-row h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.blog-title-row p {
  max-width: 340px;
  color: var(--muted);
}

.blog-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
}

.blog-feature img {
  min-height: 500px;
  height: 100%;
  object-fit: cover;
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
}

.blog-feature-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.blog-feature-copy p {
  color: #b8cad6;
}

.blog-feature-copy .button {
  width: fit-content;
  color: var(--ink);
  background: #fff;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 18px;
}

.post-card img {
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.post-card h2 {
  margin: 10px 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

.blog-newsletter {
  padding: 90px 0;
}

.blog-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  color: #fff;
  background: var(--orange);
}

.blog-newsletter h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.blog-form {
  display: flex;
  padding: 7px;
  border-radius: 999px;
  background: #fff;
}

.blog-form input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
}

.blog-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 750;
}

/* Concept 2: editorial */

.editorial {
  --paper: #f3eee3;
  --editorial-ink: #171717;
  --red: #c94834;
  --soft-red: #dfc2b7;
  color: var(--editorial-ink);
  background: var(--paper);
}

.editorial .wrap {
  width: min(calc(100% - 48px), 1260px);
}

.editorial .masthead-top {
  padding: 12px 0;
  border-bottom: 1px solid #292929;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.masthead-top .wrap,
.editorial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.editorial .brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.editorial .brand-mark {
  border: 1px solid var(--editorial-ink);
  border-radius: 50%;
  background: transparent;
}

.editorial .nav-row {
  border-bottom: 1px solid #292929;
}

.editorial .desktop-nav {
  gap: 22px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial .mobile-menu nav {
  background: var(--paper);
  border: 1px solid #292929;
}

.editorial-hero {
  padding: 38px 0 64px;
}

.edition-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 5px solid var(--editorial-ink);
}

.edition-title h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.edition-title p {
  width: 160px;
  margin: 0 0 8px;
  font-size: 0.75rem;
  text-align: right;
  text-transform: uppercase;
}

.editorial-lead {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 28px;
  padding-top: 28px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
}

.editorial-feature img {
  height: 620px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
}

.editorial-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.editorial-feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.editorial-feature-copy > div > p {
  color: #4b4944;
}

.editorial-read {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-rail {
  display: grid;
  align-content: start;
  border-left: 1px solid #292929;
  padding-left: 24px;
}

.rail-story {
  padding: 22px 0;
  border-bottom: 1px solid #292929;
}

.rail-story:first-child {
  padding-top: 0;
}

.rail-story span {
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-story h3 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
}

.rail-story p {
  margin: 0;
  color: #5c5953;
  font-size: 0.86rem;
}

.editorial-section {
  padding: 72px 0;
  border-top: 1px solid #292929;
}

.editorial-section-title {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  margin-bottom: 34px;
}

.editorial-section-title span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.editorial-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #292929;
  border-left: 1px solid #292929;
}

.editorial-category {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.editorial-category b {
  display: block;
  color: var(--red);
  font-size: 0.7rem;
}

.editorial-category h3 {
  margin: 66px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.editorial-category p {
  margin: 0;
  color: #5c5953;
  font-size: 0.85rem;
}

.editorial-destination-list {
  border-top: 4px solid #171717;
}

.editorial-destination {
  display: grid;
  grid-template-columns: 80px 1fr 180px auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #292929;
}

.editorial-destination .number {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.editorial-destination h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 500;
}

.editorial-destination p {
  margin: 0;
  color: #5c5953;
  font-size: 0.82rem;
}

.editorial-destination img {
  width: 110px;
  height: 74px;
  object-fit: cover;
}

.editorial-dispatch {
  color: #f1eadc;
  background: #171717;
}

.editorial-dispatch .wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.dispatch-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.dispatch-heading p {
  color: #aaa59c;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #4a4945;
}

.dispatch-card {
  min-height: 210px;
  padding: 26px;
  background: #171717;
}

.dispatch-card span {
  color: #de6b54;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dispatch-card h3 {
  margin: 36px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.dispatch-card p {
  margin: 0;
  color: #aaa59c;
  font-size: 0.85rem;
}

.editorial-newsletter {
  padding: 80px 0;
}

.editorial-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-top: 24px;
  border-top: 5px solid #171717;
}

.editorial-newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.editorial-newsletter p {
  max-width: 520px;
  color: #5c5953;
}

.editorial-form {
  display: flex;
  margin-top: 30px;
  border-bottom: 2px solid #171717;
}

.editorial-form input {
  min-width: 0;
  flex: 1;
  padding: 16px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.editorial-form button {
  border: 0;
  color: var(--red);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.editorial-footer {
  padding: 28px 0;
  border-top: 1px solid #171717;
  font-size: 0.76rem;
}

.editorial-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* Concept 3: mountain */

.mountain {
  --forest: #102820;
  --deep: #081612;
  --moss: #2f5145;
  --gold: #d8b36a;
  --ice: #e8efea;
  color: #edf3ee;
  background: var(--deep);
}

.mountain .site-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.mountain .brand-mark {
  color: var(--deep);
  background: var(--gold);
}

.mountain .desktop-nav a {
  color: #fff;
}

.mountain .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  opacity: 1;
}

.mountain .mobile-menu nav {
  color: #fff;
  background: rgba(8, 22, 18, 0.98);
}

.mountain-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.mountain-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 18, 14, 0.48), rgba(6, 18, 14, 0.12) 35%, rgba(6, 18, 14, 0.9)),
    linear-gradient(90deg, rgba(6, 18, 14, 0.35), transparent 55%);
}

.mountain-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 74px;
}

.mountain-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.mountain-hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.mountain-hero-side {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(6, 18, 14, 0.52);
  backdrop-filter: blur(16px);
}

.mountain-hero-side p {
  color: #c2d0c6;
}

.mountain .button-primary {
  color: var(--deep);
  background: var(--gold);
}

.mountain-intro {
  padding: 100px 0;
  background: var(--forest);
}

.mountain-intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.mountain-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mountain-intro-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-content: end;
}

.mountain-intro-copy p {
  margin: 0;
  color: #b9c9bf;
}

.mountain-bento {
  padding: 100px 0;
  color: #13231d;
  background: var(--ice);
}

.mountain-bento-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.mountain-bento-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mountain-bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.mountain-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background: var(--moss);
}

.mountain-card.image {
  background-position: center;
  background-size: cover;
}

.mountain-card.image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 18, 13, 0.05), rgba(4, 18, 13, 0.82));
}

.mountain-card.tall {
  grid-row: span 2;
}

.mountain-card.wide {
  grid-column: span 2;
}

.mountain-card-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mountain-card span {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mountain-card h3 {
  max-width: 400px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.mountain-card.gold {
  color: var(--deep);
  background: var(--gold);
}

.mountain-card.pale {
  color: var(--deep);
  background: #cad8ce;
}

.mountain-travel {
  padding: 110px 0;
  background: var(--deep);
}

.mountain-travel-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.mountain-travel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mountain-travel h2 em {
  color: var(--gold);
  font-weight: 500;
}

.mountain-timeline {
  border-top: 1px solid #446056;
}

.mountain-step {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #446056;
}

.mountain-step b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.mountain-step strong {
  font-size: 1.12rem;
}

.mountain-step small {
  color: #91a89b;
}

.mountain-story {
  padding: 100px 0;
  color: #13231d;
  background: #efe9dc;
}

.mountain-story-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
  align-items: center;
}

.mountain-story img {
  height: 560px;
  object-fit: cover;
  border-radius: 180px 180px 16px 16px;
}

.mountain-story h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mountain-story p {
  color: #54645d;
}

.mountain-story .button {
  border-color: #13231d;
}

.mountain-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
  background: var(--forest);
}

.mountain-cta::before {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 179, 106, 0.35);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.mountain-cta h2 {
  position: relative;
  max-width: 850px;
  margin: 0 auto 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.mountain-footer {
  padding: 46px 0 24px;
  color: #9db0a5;
  background: #06100d;
}

.mountain-footer .footer-grid h3 {
  color: #fff;
}

.mountain-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #233a32;
  font-size: 0.76rem;
}

/* Responsive */

@media (max-width: 980px) {
  .concept-grid,
  .guide-category-grid,
  .editorial-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-hero-grid,
  .guide-travel-grid,
  .article-hero-grid,
  .article-layout,
  .hub-hero-inner,
  .blog-feature,
  .blog-newsletter-inner,
  .selected-suite,
  .editorial-lead,
  .editorial-dispatch .wrap,
  .mountain-hero-content,
  .mountain-intro-grid,
  .mountain-travel-grid,
  .mountain-story-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    max-width: none;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-card-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-visual img {
    height: 480px;
  }

  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .editorial-feature img {
    height: 470px;
  }

  .editorial-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid #292929;
    border-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .rail-story {
    border-bottom: 0;
  }

  .mountain-hero {
    min-height: 820px;
  }

  .mountain-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mountain-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .wrap,
  .editorial .wrap {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .concept-label {
    right: 10px;
    bottom: 10px;
  }

  .index-wrap {
    padding: 48px 0;
  }

  .concept-grid,
  .guide-category-grid,
  .fact-grid,
  .article-gallery,
  .related-grid,
  .hub-feature-grid,
  .hub-card-grid,
  .blog-grid,
  .article-aside,
  .editorial-category-grid,
  .dispatch-grid,
  .editorial-newsletter-inner,
  .mountain-intro-copy {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding: 28px 0 54px;
  }

  .article-hero-image img {
    height: 420px;
    border-radius: 80px 14px 80px 14px;
  }

  .article-shell {
    padding: 58px 0 72px;
  }

  .article-body h2 {
    margin-top: 50px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article-gallery img {
    height: 300px;
  }

  .related-section,
  .hub-section {
    padding: 68px 0;
  }

  .hub-feature {
    min-height: 410px;
  }

  .hub-feature.small {
    min-height: 300px;
  }

  .hub-callout-inner {
    grid-template-columns: 1fr;
  }

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

  .blog-feature img {
    min-height: 360px;
  }

  .blog-feature-copy,
  .blog-newsletter-inner {
    padding: 30px 24px;
  }

  .index-note,
  .section-heading,
  .guide-cta-inner,
  .mountain-bento-heading,
  .editorial-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-hero {
    padding: 42px 0 58px;
  }

  .guide-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .guide-visual img {
    height: 390px;
    border-radius: 80px 14px 80px 14px;
  }

  .guide-float {
    right: 12px;
    bottom: 18px;
  }

  .guide-section,
  .editorial-section,
  .mountain-bento,
  .mountain-travel,
  .mountain-story,
  .mountain-intro {
    padding: 68px 0;
  }

  .guide-destinations {
    grid-template-columns: 1fr;
  }

  .guide-destination {
    min-height: 390px;
  }

  .guide-travel-grid img,
  .mountain-story img {
    height: 400px;
  }

  .guide-cta-inner {
    padding: 34px 26px;
  }

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

  .edition-title {
    grid-template-columns: 1fr;
  }

  .edition-title h1 {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .edition-title p {
    width: auto;
    text-align: left;
  }

  .editorial-rail {
    grid-template-columns: 1fr;
  }

  .editorial-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .editorial-destination {
    grid-template-columns: 42px 1fr;
  }

  .editorial-destination p,
  .editorial-destination img {
    display: none;
  }

  .mountain-hero {
    min-height: 760px;
  }

  .mountain-hero-content {
    gap: 30px;
    padding-bottom: 42px;
  }

  .mountain-hero h1 {
    font-size: clamp(4rem, 20vw, 6.8rem);
  }

  .mountain-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mountain-card,
  .mountain-card.tall {
    min-height: 330px;
    grid-row: auto;
  }

  .mountain-step {
    grid-template-columns: 38px 1fr;
  }

  .mountain-step small {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .index-wrap,
  .guide-hero,
  .editorial-hero {
    overflow: hidden;
  }

  .concept-grid {
    gap: 14px;
  }

  .guide-actions,
  .guide-actions .button,
  .guide-cta .button,
  .hub-callout .button {
    width: 100%;
  }

  .blog-form {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    border-radius: 18px;
  }

  .blog-form input {
    min-height: 44px;
  }

  .guide-cta-inner {
    padding: 30px 22px;
  }

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

  .mountain-hero-side {
    padding: 20px;
  }
}

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