@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --fs-pine: #173a2a;
  --fs-pine-deep: #102d20;
  --fs-paper: #f7f4ec;
  --fs-paper-deep: #eee8dc;
  --fs-moss: #526644;
  --fs-sky: #5da8c5;
  --fs-ochre: #df943b;
  --fs-clay: #a24730;
  --fs-rule: #d8d0c2;
  --fs-white: #fff;
  --fs-font-heading: "Fraunces", Georgia, serif;
  --fs-font-body: "Manrope", Arial, sans-serif;
  --fs-shell: min(1240px, calc(100vw - 48px));
  --fs-shadow: 0 20px 60px rgb(23 58 42 / 12%);
  --fs-transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body.familia-senderista {
  background: var(--fs-paper);
  color: var(--fs-pine);
  font-family: var(--fs-font-body);
  margin: 0;
  overflow-x: hidden;
}

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

*, *::before, *::after { box-sizing: border-box; }
a { text-underline-offset: 0.2em; }
a, button { -webkit-tap-highlight-color: transparent; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--fs-sky);
  outline-offset: 4px;
}

.fs-site-header {
  background: rgb(247 244 236 / 94%);
  border-bottom: 1px solid rgb(23 58 42 / 14%);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}

.fs-header-shell {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  height: 84px;
  margin-inline: auto;
  max-width: var(--fs-shell);
  width: 100%;
}

.fs-wordmark {
  align-items: center;
  color: var(--fs-pine);
  display: inline-flex;
  font-family: var(--fs-font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  gap: 11px;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.fs-wordmark__mark {
  fill: var(--fs-pine);
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.fs-wordmark__mark circle { fill: var(--fs-pine); }

.fs-wordmark__mark path {
  fill: none;
  stroke: var(--fs-paper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.fs-desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  justify-content: center;
}

.fs-desktop-nav a {
  color: var(--fs-pine);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.fs-desktop-nav a::after {
  background: var(--fs-ochre);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--fs-transition);
  width: 100%;
}

.fs-desktop-nav a:hover::after,
.fs-desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.fs-search-link,
.fs-menu-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--fs-pine);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.fs-search-link svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 22px;
}

.fs-button {
  align-items: center;
  background: var(--fs-ochre);
  border: 1px solid var(--fs-ochre);
  border-radius: 999px;
  color: var(--fs-pine-deep);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--fs-transition), color var(--fs-transition), transform var(--fs-transition);
}

.fs-button:hover {
  background: var(--fs-pine);
  color: var(--fs-white);
  transform: translateY(-2px);
}

.fs-menu-trigger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.fs-menu-trigger span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 24px;
}

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

.fs-mobile-drawer {
  background: rgb(16 45 32 / 54%);
  inset: 0;
  position: fixed;
  z-index: 100;
}

.fs-mobile-drawer__panel {
  background: var(--fs-paper);
  box-shadow: var(--fs-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
  max-width: 390px;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(88vw, 390px);
}

.fs-mobile-drawer.is-open .fs-mobile-drawer__panel { transform: translateX(0); }

.fs-mobile-drawer__top {
  align-items: center;
  border-bottom: 1px solid var(--fs-rule);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.fs-mobile-drawer__top button {
  background: transparent;
  border: 0;
  color: var(--fs-pine);
  cursor: pointer;
  font: 400 2rem/1 var(--fs-font-body);
  height: 44px;
  width: 44px;
}

.fs-mobile-nav {
  display: grid;
  margin: 28px 0 auto;
}

.fs-mobile-nav a {
  align-items: baseline;
  border-bottom: 1px solid var(--fs-rule);
  color: var(--fs-pine);
  display: flex;
  font-family: var(--fs-font-heading);
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 650;
  gap: 14px;
  padding: 15px 0;
  text-decoration: none;
}

.fs-mobile-nav span {
  color: var(--fs-clay);
  font-family: var(--fs-font-body);
  font-size: 0.65rem;
  font-weight: 800;
}

.fs-mobile-drawer__cta {
  margin-top: 32px;
  width: 100%;
}

.fs-mobile-drawer__panel > p {
  color: rgb(23 58 42 / 68%);
  font-size: 0.78rem;
  margin: 18px 0 0;
}

.fs-placeholder-main {
  min-height: 62vh;
  padding: clamp(80px, 10vw, 140px) 24px;
}

.fs-placeholder-main h1 {
  font-family: var(--fs-font-heading);
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 980px;
}

.fs-placeholder-main > p:not(.fs-eyebrow) {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 660px;
}

.fs-eyebrow {
  color: var(--fs-clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fs-site-footer {
  background: var(--fs-pine-deep);
  color: var(--fs-paper);
  padding: 72px 24px 24px;
}

.fs-footer-shell,
.fs-footer-base {
  margin-inline: auto;
  max-width: 1240px;
}

.fs-footer-shell {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(240px, 1.7fr) repeat(3, minmax(140px, 1fr));
}

.fs-wordmark--footer,
.fs-site-footer a { color: var(--fs-paper); }
.fs-wordmark--footer .fs-wordmark__mark circle { fill: var(--fs-paper); }
.fs-wordmark--footer .fs-wordmark__mark path { stroke: var(--fs-pine-deep); }

.fs-footer-intro p {
  color: rgb(247 244 236 / 66%);
  font-size: 0.9rem;
  margin-top: 22px;
  max-width: 340px;
}

.fs-footer-column {
  align-content: start;
  display: grid;
  gap: 10px;
}

.fs-footer-column h2 {
  color: var(--fs-ochre);
  font-family: var(--fs-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.fs-footer-column a {
  font-size: 0.84rem;
  text-decoration: none;
}

.fs-footer-consent-link {
  background: transparent;
  border: 0;
  color: var(--fs-paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  padding: 0;
  text-align: left;
}

.fs-footer-column a:hover,
.fs-footer-consent-link:hover { text-decoration: underline; }

.fs-footer-base {
  border-top: 1px solid rgb(247 244 236 / 18%);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  margin-top: 56px;
  opacity: 0.65;
  padding-top: 22px;
}

.fs-page {
  margin-inline: auto;
  max-width: 860px;
  padding: clamp(72px, 9vw, 128px) 24px clamp(88px, 10vw, 144px);
}

.fs-page-title {
  font-family: var(--fs-font-heading);
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0 0 48px;
}

.fs-page-content {
  font-size: 1.04rem;
  line-height: 1.8;
}

.fs-affiliate-disclosure {
  background: var(--fs-paper-deep);
  border-left: 4px solid var(--fs-ochre);
  margin: 0 0 32px;
  padding: 22px 24px;
}

.fs-affiliate-disclosure strong {
  display: block;
  font-family: var(--fs-font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.fs-affiliate-disclosure p { margin: 0; }

.fs-consent {
  align-items: center;
  background: var(--fs-paper);
  border: 1px solid var(--fs-rule);
  bottom: 16px;
  box-shadow: 0 24px 80px rgb(16 45 32 / 24%);
  display: grid;
  gap: 24px 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(480px, 1fr);
  left: 50%;
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 24px;
  position: fixed;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 32px));
  z-index: 10000;
}

.fs-consent[hidden],
.fs-consent__preferences[hidden] { display: none; }

.fs-consent__copy h2 {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 5px 0 8px;
}

.fs-consent__copy p { margin: 0; }
.fs-consent__copy > p:last-child { font-size: 0.86rem; max-width: 620px; }

.fs-consent__preferences {
  align-items: center;
  border-top: 1px solid var(--fs-rule);
  display: flex;
  gap: 16px;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: space-between;
  padding-top: 18px;
}

.fs-consent__preferences label {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 10px;
}

.fs-consent__preferences input {
  accent-color: var(--fs-pine);
  height: 20px;
  width: 20px;
}

.fs-consent__actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-consent__actions button,
.fs-consent__preferences button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--fs-pine);
  color: var(--fs-pine);
  cursor: pointer;
  display: inline-flex;
  font: 800 0.72rem/1.2 var(--fs-font-body);
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  text-align: center;
  transition: background var(--fs-transition), color var(--fs-transition), transform var(--fs-transition);
}

.fs-consent__actions button:hover,
.fs-consent__preferences button:hover {
  background: var(--fs-pine);
  color: var(--fs-white);
}

.fs-consent__actions [data-fs-consent-accept],
.fs-consent__preferences button {
  background: var(--fs-ochre);
  border-color: var(--fs-ochre);
  color: var(--fs-pine-deep);
}

.fs-route-directory {
  margin-inline: auto;
  max-width: var(--fs-shell);
  padding: clamp(72px, 9vw, 128px) 0 clamp(88px, 10vw, 144px);
}

.fs-route-directory__intro {
  max-width: 880px;
}

.fs-route-directory__intro h1 {
  font-family: var(--fs-font-heading);
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 16px 0 24px;
}

.fs-route-directory__intro > p:last-child {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  max-width: 690px;
}

.fs-route-filters {
  align-items: end;
  background: var(--fs-paper-deep);
  border: 1px solid var(--fs-rule);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin: clamp(44px, 6vw, 72px) 0;
  padding: 22px;
  transition: opacity var(--fs-transition);
}

.fs-route-filters.is-loading { opacity: 0.58; }

.fs-route-filter {
  display: grid;
  gap: 7px;
}

.fs-route-filter label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fs-route-filter select {
  appearance: none;
  background-color: var(--fs-white);
  background-image: linear-gradient(45deg, transparent 50%, var(--fs-pine) 50%), linear-gradient(135deg, var(--fs-pine) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  border: 1px solid var(--fs-rule);
  border-radius: 8px;
  color: var(--fs-pine);
  font: 600 0.9rem/1 var(--fs-font-body);
  height: 48px;
  padding: 0 38px 0 14px;
  width: 100%;
}

.fs-route-filters .fs-button {
  border: 0;
  cursor: pointer;
  height: 48px;
  white-space: nowrap;
}

.fs-route-results {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-route-card {
  background: var(--fs-white);
  border: 1px solid var(--fs-rule);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgb(23 58 42 / 6%);
  min-width: 0;
  overflow: hidden;
  transition: box-shadow var(--fs-transition), transform var(--fs-transition);
}

.fs-route-card:hover {
  box-shadow: var(--fs-shadow);
  transform: translateY(-5px);
}

.fs-route-card__media {
  aspect-ratio: 16 / 10;
  background: var(--fs-moss);
  display: block;
  overflow: hidden;
}

.fs-route-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.fs-route-card:hover .fs-route-card__media img { transform: scale(1.035); }

.fs-route-card__placeholder {
  background: linear-gradient(145deg, var(--fs-moss), var(--fs-pine));
  display: block;
  height: 100%;
  padding: 10%;
}

.fs-route-card__placeholder svg {
  fill: none;
  height: 100%;
  stroke: rgb(247 244 236 / 72%);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  width: 100%;
}

.fs-route-card__placeholder circle { fill: var(--fs-ochre); stroke: none; }

.fs-route-card__body { padding: 22px; }

.fs-route-card__difficulty {
  color: var(--fs-clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.fs-route-card h2 {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.03;
  margin: 0;
}

.fs-route-card h2 a { text-decoration: none; }

.fs-route-card__facts {
  border-top: 1px solid var(--fs-rule);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 16px;
}

.fs-route-card__facts span { white-space: nowrap; }

.fs-route-empty {
  border: 1px dashed var(--fs-moss);
  border-radius: 18px;
  grid-column: 1 / -1;
  padding: clamp(44px, 7vw, 84px);
  text-align: center;
}

.fs-route-empty h2 {
  font-family: var(--fs-font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 10px 0;
}

.fs-route-article {
  padding: clamp(56px, 7vw, 104px) 0 0;
}

.fs-route-article__header {
  margin-inline: auto;
  max-width: 1040px;
  padding-inline: 24px;
}

.fs-breadcrumbs {
  align-items: center;
  color: #52685a;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.fs-breadcrumbs a { color: var(--fs-clay); }

.fs-route-title {
  font-family: var(--fs-font-heading);
  font-size: clamp(3.6rem, 8vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
  margin: 0;
}

.fs-route-standfirst {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 28px 0 0;
  max-width: 720px;
}

.fs-route-featured {
  margin: clamp(46px, 6vw, 76px) auto 0;
  max-width: 1120px;
  padding-inline: 24px;
}

.fs-route-featured img {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
}

.fs-route-facts {
  border-bottom: 1px solid var(--fs-rule);
  border-top: 1px solid var(--fs-rule);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(44px, 6vw, 72px) auto;
  max-width: 1120px;
}

.fs-route-fact {
  border-right: 1px solid var(--fs-rule);
  min-width: 0;
  padding: 22px 18px;
}

.fs-route-fact:nth-child(4n) { border-right: 0; }

.fs-route-fact dt {
  color: var(--fs-clay);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fs-route-fact dd {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.12;
  margin: 0;
}

.fs-route-content {
  margin-inline: auto;
  max-width: 760px;
  padding: clamp(32px, 4vw, 56px) 24px clamp(72px, 9vw, 120px);
}

.fs-route-content > * {
  max-width: 760px;
}

.fs-route-content :where(h2, h3) {
  font-family: var(--fs-font-heading);
  letter-spacing: -0.035em;
  margin-top: 1.5em;
}

.fs-route-content h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

.fs-route-content :where(p, li) {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.fs-route-content :where(img, figure) {
  border-radius: 12px;
  width: 100%;
}

.fs-route-related {
  background: var(--fs-paper-deep);
  max-width: none;
  padding: clamp(64px, 8vw, 104px) max(24px, calc((100vw - 1240px) / 2));
}

.fs-route-related > h2 {
  font-family: var(--fs-font-heading);
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-top: 0;
}

.fs-related-routes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.fs-related-route {
  border-top: 1px solid var(--fs-rule);
  padding-top: 20px;
}

.fs-related-route > p {
  color: var(--fs-clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fs-related-route h3 {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 10px;
}

.fs-related-route h3 a { text-decoration: none; }

.fs-related-route > span {
  font-size: 0.78rem;
  font-weight: 700;
}

.fs-home-shell {
  margin-inline: auto;
  max-width: var(--fs-shell);
}

.fs-reveal {
  animation: fs-reveal 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fs-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.fs-home-hero {
  padding: clamp(54px, 6vw, 92px) 0 0;
}

.fs-home-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.fs-home-hero__copy h1 {
  font-family: var(--fs-font-heading);
  font-size: clamp(4rem, 7.2vw, 7.3rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 18px 0 28px;
}

.fs-home-hero__lead {
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.62;
  max-width: 570px;
}

.fs-home-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 34px;
}

.fs-text-link {
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
}

.fs-text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--fs-transition);
}

.fs-text-link:hover span { transform: translateX(5px); }

.fs-home-hero__media {
  margin: 0;
  position: relative;
}

.fs-home-hero__media::before {
  border: 1px solid var(--fs-ochre);
  content: "";
  inset: 22px -20px -20px 28px;
  position: absolute;
  z-index: -1;
}

.fs-home-hero__media img {
  aspect-ratio: 4 / 5;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%);
  display: block;
  object-fit: cover;
  width: 100%;
}

.fs-home-hero__media figcaption {
  color: #52685a;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  margin-top: 12px;
  text-transform: uppercase;
}

.fs-home-finder {
  align-items: end;
  background: var(--fs-pine);
  color: var(--fs-paper);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin: clamp(56px, 6vw, 84px) auto 0;
  max-width: var(--fs-shell);
  padding: 22px;
}

.fs-home-finder > div {
  display: grid;
  gap: 7px;
}

.fs-home-finder label {
  color: var(--fs-ochre);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fs-home-finder select {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(247 244 236 / 34%);
  border-radius: 0;
  color: var(--fs-paper);
  font: 600 0.92rem/1 var(--fs-font-body);
  height: 48px;
  padding: 0 10px;
  width: 100%;
}

.fs-home-finder select option { color: var(--fs-pine); }

.fs-home-finder .fs-button {
  border: 0;
  cursor: pointer;
  height: 48px;
  white-space: nowrap;
}

.fs-home-section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.fs-home-section__heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: clamp(38px, 5vw, 68px);
}

.fs-home-section__heading h2,
.fs-home-advice h2,
.fs-home-equipment h2 {
  font-family: var(--fs-font-heading);
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 14px 0 0;
  max-width: 850px;
}

.fs-home-route-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 30px);
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
}

.fs-home-route-card {
  background: var(--fs-white);
  border-bottom: 3px solid var(--fs-pine);
  min-width: 0;
}

.fs-home-route-card__media {
  display: block;
  overflow: hidden;
}

.fs-home-route-card__media img {
  aspect-ratio: 4 / 5;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.fs-home-route-card--wide .fs-home-route-card__media img { aspect-ratio: 4 / 3; }
.fs-home-route-card:hover .fs-home-route-card__media img { transform: scale(1.025); }

.fs-home-route-card__body { padding: 22px 4px 20px; }

.fs-home-route-card__body > p {
  color: var(--fs-clay);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.fs-home-route-card h3 {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1;
  margin: 0;
}

.fs-home-route-card h3 a { text-decoration: none; }

.fs-home-route-card__body > div {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.7rem;
  gap: 8px 16px;
  margin-top: 18px;
}

.fs-home-plans {
  background: var(--fs-pine);
  color: var(--fs-paper);
  overflow: hidden;
  position: relative;
}

.fs-home-plans .fs-eyebrow { color: var(--fs-ochre); }

.fs-home-topography {
  color: var(--fs-paper);
  height: 100%;
  inset: 0 0 auto auto;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
  width: min(70vw, 900px);
}

.fs-home-plan-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.fs-home-plan-grid article {
  border-left: 1px solid rgb(247 244 236 / 24%);
  padding: 34px clamp(24px, 3vw, 44px) 18px;
}

.fs-home-plan-grid article:last-child { border-right: 1px solid rgb(247 244 236 / 24%); }

.fs-home-plan-grid article > span {
  color: var(--fs-ochre);
  font-size: 0.65rem;
  font-weight: 800;
}

.fs-home-plan-grid h3 {
  font-family: var(--fs-font-heading);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1;
  margin: 40px 0 18px;
}

.fs-home-plan-grid p {
  color: rgb(247 244 236 / 72%);
  min-height: 5em;
}

.fs-home-plan-grid a {
  color: var(--fs-paper);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 28px;
}

.fs-home-advice { background: var(--fs-paper-deep); }

.fs-home-advice__grid {
  align-items: start;
  display: grid;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.fs-home-advice header > p:not(.fs-eyebrow) {
  max-width: 480px;
}

.fs-home-advice header .fs-text-link { display: inline-block; margin-top: 26px; }

.fs-home-advice-list { border-top: 1px solid var(--fs-rule); }

.fs-home-advice-list article {
  align-items: start;
  border-bottom: 1px solid var(--fs-rule);
  display: grid;
  gap: 24px;
  grid-template-columns: 34px 1fr;
  padding: 28px 0;
}

.fs-home-advice-list article > span {
  color: var(--fs-clay);
  font-size: 0.65rem;
  font-weight: 800;
}

.fs-home-advice-list p {
  color: var(--fs-moss);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.fs-home-advice-list h3 {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  line-height: 1.05;
  margin: 0;
}

.fs-home-advice-list h3 a { text-decoration: none; }

.fs-home-equipment { background: var(--fs-ochre); }

.fs-home-equipment__grid {
  align-items: stretch;
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.fs-home-equipment figure { margin: 0; }

.fs-home-equipment figure img {
  clip-path: polygon(0 0, 92% 0, 100% 11%, 100% 100%, 0 100%);
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.fs-home-equipment__copy {
  align-self: center;
  padding: 24px 0;
}

.fs-home-equipment .fs-eyebrow { color: var(--fs-pine-deep); }

.fs-home-equipment__copy > p:not(.fs-eyebrow, .fs-affiliate-note) {
  font-size: 1.08rem;
  max-width: 580px;
}

.fs-affiliate-note {
  border-left: 2px solid var(--fs-pine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 28px 0;
  padding-left: 12px;
  text-transform: uppercase;
}

.fs-home-equipment__links { border-top: 1px solid rgb(23 58 42 / 35%); }

.fs-home-equipment__links a {
  align-items: center;
  border-bottom: 1px solid rgb(23 58 42 / 35%);
  color: var(--fs-pine);
  display: flex;
  font-family: var(--fs-font-heading);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 650;
  justify-content: space-between;
  padding: 18px 0;
  text-decoration: none;
}

.fs-home-equipment__links b {
  font-family: var(--fs-font-body);
  font-size: 1rem;
}

.fs-route-related .wp-block-post-template {
  gap: 24px;
}

.fs-route-related .wp-block-post {
  border-top: 1px solid var(--fs-rule);
  padding-top: 20px;
}

.fs-route-related .wp-block-post-title {
  font-family: var(--fs-font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 10px;
}

.fs-route-related .wp-block-post-title a { text-decoration: none; }

@media (max-width: 1000px) {
  .fs-desktop-nav { gap: 16px; }
  .fs-desktop-nav a { font-size: 0.72rem; }
  .fs-header-cta { display: none; }
  .fs-footer-shell { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .fs-footer-column:last-child { grid-column: 2 / -1; }
  .fs-route-filters { grid-template-columns: repeat(3, 1fr); }
  .fs-route-filters .fs-button { grid-column: 1 / -1; }
  .fs-route-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-home-hero__grid { gap: 38px; }
  .fs-home-finder { grid-template-columns: repeat(3, 1fr); }
  .fs-home-finder .fs-button { grid-column: 1 / -1; }
  .fs-home-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-home-route-card--wide { grid-column: 1 / -1; }
  .fs-home-route-card--wide .fs-home-route-card__media img { aspect-ratio: 16 / 9; }
}

@media (max-width: 781px) {
  :root { --fs-shell: calc(100vw - 32px); }

  .fs-header-shell {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    height: 70px;
  }

  .fs-wordmark__mark {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .fs-wordmark__text { font-size: 1rem; }
  .fs-desktop-nav, .fs-search-link { display: none; }
  .fs-menu-trigger { display: inline-flex; }
  .fs-placeholder-main { padding-inline: 16px; }
  .fs-footer-shell { grid-template-columns: 1fr 1fr; }
  .fs-footer-intro { grid-column: 1 / -1; }
  .fs-footer-column:last-child { grid-column: auto; }
  .fs-route-filters { grid-template-columns: 1fr; }
  .fs-route-filters .fs-button { grid-column: auto; }
  .fs-route-results { grid-template-columns: 1fr; }
  .fs-route-article__header, .fs-route-featured { padding-inline: 16px; }
  .fs-route-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 16px;
  }
  .fs-route-fact:nth-child(4n) { border-right: 1px solid var(--fs-rule); }
  .fs-route-fact:nth-child(2n) { border-right: 0; }
  .fs-route-fact { border-bottom: 1px solid var(--fs-rule); }
  .fs-route-fact:nth-last-child(-n + 2) { border-bottom: 0; }
  .fs-route-content { padding-inline: 16px; }
  .fs-route-related .wp-block-post-template { grid-template-columns: 1fr; }
  .fs-related-routes { grid-template-columns: 1fr; }
  .fs-home-hero { padding-top: 46px; }
  .fs-home-hero__grid, .fs-home-advice__grid, .fs-home-equipment__grid { grid-template-columns: 1fr; }
  .fs-home-hero__copy h1 { font-size: clamp(3.6rem, 15vw, 5rem); }
  .fs-home-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .fs-home-actions .fs-button { width: 100%; }
  .fs-home-actions .fs-text-link { align-self: center; }
  .fs-home-hero__media { margin-top: 8px; }
  .fs-home-hero__media img { aspect-ratio: 4 / 3; }
  .fs-home-hero__media::before { inset: 12px -10px -10px 18px; }
  .fs-home-finder { grid-template-columns: 1fr; margin-top: 46px; }
  .fs-home-finder .fs-button { grid-column: auto; width: 100%; }
  .fs-home-section__heading { align-items: start; flex-direction: column; }
  .fs-home-route-grid { grid-template-columns: 1fr; }
  .fs-home-route-card--wide { grid-column: auto; }
  .fs-home-route-card__media img, .fs-home-route-card--wide .fs-home-route-card__media img { aspect-ratio: 16 / 10; }
  .fs-home-plan-grid { grid-template-columns: 1fr; }
  .fs-home-plan-grid article, .fs-home-plan-grid article:last-child { border-bottom: 1px solid rgb(247 244 236 / 24%); border-left: 0; border-right: 0; padding-inline: 0; }
  .fs-home-plan-grid p { min-height: 0; }
  .fs-home-plan-grid h3 { margin-top: 22px; }
  .fs-home-topography { width: 150vw; }
  .fs-home-equipment figure img { min-height: 360px; }
  .fs-consent {
    align-items: stretch;
    bottom: 10px;
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 20px;
    width: calc(100vw - 20px);
  }
  .fs-consent__preferences {
    align-items: stretch;
    flex-direction: column;
    grid-column: auto;
    grid-row: auto;
  }
  .fs-consent__actions { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .fs-site-footer { padding-inline: 18px; }
  .fs-footer-shell { grid-template-columns: 1fr; }
  .fs-footer-intro, .fs-footer-column:last-child { grid-column: auto; }
  .fs-footer-base { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .fs-reveal { animation: none !important; opacity: 1; transform: none; }
}
