:root {
  --gmf-ink: #173129;
  --gmf-ink-deep: #0b211b;
  --gmf-paper: #f1eee3;
  --gmf-paper-light: #f8f5ec;
  --gmf-line: rgba(23, 49, 41, 0.22);
  --gmf-accent: #e6d968;
  --gmf-white: #fffdf5;
  --gmf-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gmf-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gmf-standalone,
.gmf-publication,
body.gmf-home-route .gmf-home-posts {
  color: var(--gmf-ink);
  font-family: var(--gmf-sans);
}

body.gmf-standalone {
  margin: 0;
  background: var(--gmf-paper);
  overflow-x: hidden;
}

body.gmf-standalone a,
.gmf-publication a,
body.gmf-home-route .gmf-home-posts a {
  color: inherit;
  text-decoration: none;
}

body.gmf-standalone img,
.gmf-publication img,
body.gmf-home-route .gmf-home-posts img {
  display: block;
  max-width: 100%;
}

.gmf-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  background: var(--gmf-white);
  color: var(--gmf-ink);
  transform: translateY(-160%);
}

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

.gmf-site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--gmf-line);
  background: var(--gmf-paper-light);
}

.gmf-mark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: var(--gmf-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
}

.gmf-mark b {
  font-family: var(--gmf-serif);
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.gmf-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gmf-nav a,
.gmf-header-index {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.gmf-nav a {
  position: relative;
  padding: 28px 0;
}

.gmf-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.gmf-header-index {
  justify-self: end;
}

.gmf-header-index span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 220ms ease;
}

.gmf-header-index:hover span,
.gmf-header-index:focus-visible span {
  transform: translate(3px, -3px);
}

.gmf-publication {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--gmf-paper);
  font-size: 16px;
  line-height: 1.55;
}

body.gmf-home-route .site-content,
body.gmf-home-route .content-area,
body.gmf-home-route .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.gmf-home-route #page {
  width: 100%;
  max-width: none;
}

body.gmf-home-route .site-content {
  display: block;
}

body.gmf-home-route .widget-area {
  display: none !important;
}

body.gmf-home-route .gmf-publication,
body.gmf-home-route .gmf-home-posts {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.gmf-hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  background: var(--gmf-ink-deep);
  color: var(--gmf-white);
  isolation: isolate;
}

.gmf-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: gmf-hero-breathe 18s ease-in-out infinite alternate;
}

.gmf-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 23, 22, 0.9) 0%, rgba(7, 29, 28, 0.69) 35%, rgba(10, 35, 34, 0.18) 70%, rgba(10, 28, 25, 0.1) 100%), linear-gradient(0deg, rgba(6, 24, 21, 0.5), transparent 45%);
}

.gmf-hero-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 253, 245, 0.25);
}

.gmf-hero-mark {
  font-family: var(--gmf-serif);
  font-size: 18px;
  font-style: italic;
}

.gmf-hero-top span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gmf-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(710px, 72vw);
  min-height: calc(100svh - 78px);
  padding: 96px 5vw 58px;
}

.gmf-eyebrow,
.gmf-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gmf-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gmf-accent);
}

.gmf-eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.gmf-hero h1 {
  max-width: 850px;
  margin: 20px 0 14px;
  color: var(--gmf-white);
  font-family: var(--gmf-serif);
  font-size: clamp(66px, 9.3vw, 154px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.76;
}

.gmf-hero-line {
  margin: 12px 0 0;
  font-family: var(--gmf-serif);
  font-size: clamp(24px, 2.2vw, 37px);
  font-style: italic;
  line-height: 1.05;
}

.gmf-lede {
  max-width: 525px;
  margin: 18px 0 0;
  color: rgba(255, 253, 245, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.gmf-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 26px;
}

.gmf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gmf-accent);
  background: var(--gmf-accent);
  color: var(--gmf-ink-deep) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.gmf-button:hover,
.gmf-button:focus-visible {
  background: transparent;
  color: var(--gmf-white) !important;
  transform: translateY(-2px);
}

.gmf-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
}

.gmf-text-link span {
  transition: transform 180ms ease;
}

.gmf-text-link:hover span,
.gmf-text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.gmf-scroll {
  position: absolute;
  right: 5vw;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.gmf-scroll i {
  display: block;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.gmf-scroll i::after {
  display: block;
  width: 1px;
  height: 25px;
  background: var(--gmf-accent);
  content: "";
  animation: gmf-scroll-pulse 1.9s ease-in-out infinite;
}

.gmf-wayfinder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gmf-line);
  background: var(--gmf-paper-light);
}

.gmf-wayfinder a {
  position: relative;
  min-height: 165px;
  padding: 28px 3vw;
  border-right: 1px solid var(--gmf-line);
}

.gmf-wayfinder a:last-child {
  border-right: 0;
}

.gmf-wayfinder span {
  display: block;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.gmf-wayfinder b {
  display: block;
  font-family: var(--gmf-serif);
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
}

.gmf-wayfinder small {
  color: rgba(23, 49, 41, 0.63);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmf-wayfinder a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--gmf-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.gmf-wayfinder a:hover::after,
.gmf-wayfinder a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gmf-opening,
.gmf-ranges,
.gmf-plants,
.gmf-home-posts {
  padding-right: 6vw;
  padding-left: 6vw;
}

.gmf-opening {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 2fr);
  gap: 6vw;
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(100px, 13vw, 190px);
}

.gmf-kicker {
  color: rgba(23, 49, 41, 0.63);
}

.gmf-opening h2,
.gmf-ranges h2,
.gmf-method h2,
.gmf-plants h2,
.gmf-home-posts h2,
.gmf-related h2 {
  margin: 0;
  font-family: var(--gmf-serif);
  font-size: clamp(45px, 6.3vw, 96px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.gmf-opening div > p {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.72;
}

.gmf-ranges {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.4fr);
  gap: 7vw;
  padding-top: 110px;
  padding-bottom: 130px;
  border-top: 1px solid var(--gmf-line);
}

.gmf-ranges header {
  position: sticky;
  top: 30px;
  align-self: start;
}

.gmf-ranges header h2 {
  margin-top: 25px;
  font-size: clamp(43px, 4.7vw, 75px);
}

.gmf-range-list {
  border-top: 1px solid var(--gmf-line);
}

.gmf-range-list a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-range-list > a > span {
  padding-top: 7px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.gmf-range-list small {
  color: rgba(23, 49, 41, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gmf-range-list h3 {
  margin: 5px 0 8px;
  font-family: var(--gmf-serif);
  font-size: 31px;
  font-style: italic;
  font-weight: 400;
}

.gmf-range-list p {
  max-width: 560px;
  margin: 0;
  color: rgba(23, 49, 41, 0.75);
}

.gmf-range-list > a > b {
  font-size: 20px;
  transition: transform 200ms ease;
}

.gmf-range-list a:hover > b,
.gmf-range-list a:focus-visible > b {
  transform: translate(5px, -5px);
}

.gmf-method {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.5fr);
  gap: 7vw;
  padding: 120px 6vw;
  background: var(--gmf-ink);
  color: var(--gmf-white);
}

.gmf-method .gmf-kicker,
.gmf-field-note .gmf-kicker {
  color: var(--gmf-accent);
}

.gmf-method h2 {
  margin-top: 24px;
  font-size: clamp(49px, 5.8vw, 88px);
}

.gmf-method > div > p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 253, 245, 0.68);
}

.gmf-method ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.gmf-method li {
  display: grid;
  grid-template-columns: 50px minmax(130px, 0.6fr) minmax(180px, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.gmf-method li span {
  color: var(--gmf-accent);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.gmf-method h3 {
  margin: 0;
  font-family: var(--gmf-serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
}

.gmf-method li p {
  margin: 0;
  color: rgba(255, 253, 245, 0.72);
}

.gmf-plants {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
  gap: 7vw;
  padding-top: 130px;
  padding-bottom: 140px;
  background: var(--gmf-paper-light);
}

.gmf-plants header > p:last-child {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(23, 49, 41, 0.7);
}

.gmf-plants header h2 {
  margin-top: 24px;
}

.gmf-plants > div {
  border-top: 1px solid var(--gmf-line);
}

.gmf-plants > div a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-plants i {
  color: rgba(23, 49, 41, 0.58);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmf-plants span {
  display: flex;
  flex-direction: column;
}

.gmf-plants em {
  font-family: var(--gmf-serif);
  font-size: 28px;
}

.gmf-plants small {
  margin-top: 3px;
  color: rgba(23, 49, 41, 0.62);
}

.gmf-plants b {
  font-size: 20px;
  transition: transform 200ms ease;
}

.gmf-plants a:hover b,
.gmf-plants a:focus-visible b {
  transform: translate(5px, -5px);
}

.gmf-field-note {
  padding: clamp(100px, 12vw, 180px) 8vw;
  background: var(--gmf-ink-deep);
  color: var(--gmf-white);
  text-align: center;
}

.gmf-field-note blockquote {
  max-width: 1020px;
  margin: 30px auto 45px;
  font-family: var(--gmf-serif);
  font-size: clamp(38px, 5.5vw, 82px);
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1;
}

.gmf-button-light:hover,
.gmf-button-light:focus-visible {
  color: var(--gmf-white) !important;
}

.gmf-home-posts {
  padding-top: 120px;
  padding-bottom: 140px;
  background: var(--gmf-paper);
}

.gmf-home-posts > header {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) 1.5fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 55px;
}

.gmf-post-list {
  border-top: 1px solid var(--gmf-line);
}

.gmf-post {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.5fr);
  gap: 7vw;
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(23, 49, 41, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmf-post-body {
  min-width: 0;
}

.gmf-post-media {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
}

.gmf-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.gmf-post-media:hover img {
  transform: scale(1.025);
}

.gmf-post h3 {
  max-width: 850px;
  margin: 0 0 20px;
  font-family: var(--gmf-serif);
  font-size: clamp(31px, 3.8vw, 57px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.gmf-post-preview {
  max-width: 780px;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.gmf-post-preview a {
  text-decoration: underline;
  text-decoration-color: rgba(23, 49, 41, 0.35);
  text-underline-offset: 3px;
}

.gmf-post-preview > *:first-child {
  margin-top: 0;
}

.gmf-post-preview > *:last-child {
  margin-bottom: 0;
}

.gmf-route-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  min-height: 72svh;
  padding: 130px 6vw 70px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(7, 29, 24, 0.96) 0%, rgba(9, 35, 30, 0.88) 45%, rgba(9, 35, 30, 0.54) 100%), url("./greekmountainflora.info-alpine-hero.webp") center / cover;
  color: var(--gmf-white);
  isolation: isolate;
}

.gmf-contours {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.26;
  background: repeating-radial-gradient(ellipse at 90% 20%, transparent 0 38px, rgba(255,255,255,.22) 40px 41px, transparent 43px 61px);
  transform: scale(1.5) rotate(-8deg);
}

.gmf-route-coordinate {
  position: absolute;
  top: 35px;
  right: 6vw;
  left: 6vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  color: rgba(255, 253, 245, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gmf-route-coordinate i {
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.gmf-route-copy {
  align-self: end;
  max-width: 970px;
}

.gmf-route-copy h1 {
  max-width: 950px;
  margin: 25px 0 24px;
  font-family: var(--gmf-serif);
  font-size: clamp(58px, 8.4vw, 132px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.gmf-route-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 253, 245, 0.78);
  font-size: 18px;
}

.gmf-route-facts {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px 16px;
  align-self: end;
  padding: 24px 0 0 30px;
  border-top: 1px solid rgba(255,255,255,.32);
}

.gmf-route-facts span {
  color: var(--gmf-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gmf-route-facts b {
  color: rgba(255,253,245,.86);
  font-size: 12px;
  font-weight: 500;
}

.gmf-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.6fr);
  gap: 8vw;
  padding: 120px 7vw 140px;
}

.gmf-article-copy {
  border-top: 1px solid var(--gmf-line);
}

.gmf-article-copy section {
  display: grid;
  grid-template-columns: 135px minmax(0, 0.75fr) minmax(240px, 1fr);
  gap: 24px;
  padding: 42px 0 52px;
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-article-copy section > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gmf-article-copy section > div > span {
  color: var(--gmf-accent);
  font-size: 12px;
  font-weight: 800;
}

.gmf-article-copy h2 {
  margin: 0;
  font-family: var(--gmf-serif);
  font-size: clamp(31px, 3.2vw, 49px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.gmf-article-copy section > p {
  margin: 0;
  color: rgba(23, 49, 41, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.gmf-field-aside {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--gmf-line);
  background: var(--gmf-paper-light);
}

.gmf-field-aside dl {
  margin: 28px 0;
}

.gmf-field-aside dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-field-aside dt {
  color: rgba(23, 49, 41, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gmf-field-aside dd {
  margin: 5px 0 0;
  font-family: var(--gmf-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.25;
}

.gmf-field-aside > p:last-child {
  margin: 0;
  color: rgba(23, 49, 41, 0.66);
  font-size: 13px;
}

.gmf-related {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.3fr);
  gap: 8vw;
  padding: 110px 7vw 125px;
  background: var(--gmf-ink);
  color: var(--gmf-white);
}

.gmf-related .gmf-kicker {
  color: var(--gmf-accent);
}

.gmf-related h2 {
  margin-top: 25px;
  font-size: clamp(43px, 5.1vw, 77px);
}

.gmf-related > div {
  border-top: 1px solid rgba(255,255,255,.25);
}

.gmf-related > div a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-family: var(--gmf-serif);
  font-size: 24px;
  font-style: italic;
}

.gmf-related > div b {
  font-family: var(--gmf-sans);
  font-size: 16px;
  font-style: normal;
  transition: transform 200ms ease;
}

.gmf-related a:hover b,
.gmf-related a:focus-visible b {
  transform: translate(5px, -5px);
}

.gmf-site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 70px 6vw;
  border-top: 1px solid var(--gmf-line);
  background: var(--gmf-paper-light);
}

.gmf-site-footer > div > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(23, 49, 41, 0.65);
}

.gmf-site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  border-top: 1px solid var(--gmf-line);
}

.gmf-site-footer nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gmf-line);
  font-size: 12px;
  font-weight: 600;
}

.gmf-site-footer nav a:nth-child(odd) {
  padding-right: 15px;
}

.gmf-site-footer nav a:nth-child(even) {
  padding-left: 15px;
  border-left: 1px solid var(--gmf-line);
}

@keyframes gmf-hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes gmf-scroll-pulse {
  0% { transform: translateY(-25px); }
  50%, 100% { transform: translateY(55px); }
}

@supports (animation-timeline: view()) {
  .gmf-opening h2,
  .gmf-ranges header h2,
  .gmf-plants header h2 {
    animation: gmf-text-rise linear both;
    animation-range: entry 0% cover 34%;
    animation-timeline: view();
  }

  @keyframes gmf-text-rise {
    from { transform: translateY(24px); }
    to { transform: translateY(0); }
  }
}

@media (max-width: 1050px) {
  .gmf-site-header {
    grid-template-columns: 1fr auto;
  }

  .gmf-nav {
    display: none;
  }

  .gmf-ranges,
  .gmf-plants,
  .gmf-method,
  .gmf-related {
    grid-template-columns: 1fr;
  }

  .gmf-ranges header,
  .gmf-field-aside {
    position: static;
  }

  .gmf-method ol {
    margin-top: 30px;
  }

  .gmf-route-hero {
    grid-template-columns: 1fr;
  }

  .gmf-route-facts {
    margin-top: 45px;
    padding-left: 0;
  }

  .gmf-article-layout {
    grid-template-columns: 1fr;
  }

  .gmf-field-aside {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 25px;
  }

  .gmf-field-aside dl {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .gmf-site-header {
    min-height: 66px;
    padding: 0 20px;
  }

  .gmf-header-index {
    font-size: 10px;
  }

  .gmf-hero {
    min-height: calc(100svh - 66px);
  }

  .gmf-hero-image {
    object-position: 60% center;
  }

  .gmf-hero-shade {
    background: linear-gradient(90deg, rgba(6, 23, 22, .9), rgba(6, 23, 22, .34)), linear-gradient(0deg, rgba(6, 23, 22, .75), transparent 60%);
  }

  .gmf-hero-top {
    min-height: 62px;
    padding: 0 20px;
  }

  .gmf-hero-top span {
    display: none;
  }

  .gmf-hero-copy {
    width: min(100%, 580px);
    min-height: calc(100svh - 66px);
    padding: 82px 20px 55px;
  }

  .gmf-hero h1 {
    margin-top: 17px;
    font-size: clamp(63px, 20vw, 92px);
    line-height: 0.79;
  }

  .gmf-hero-line {
    font-size: 25px;
  }

  .gmf-lede {
    max-width: 88%;
    font-size: 14px;
  }

  .gmf-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .gmf-button {
    min-height: 44px;
  }

  .gmf-scroll {
    right: 18px;
    bottom: 25px;
  }

  .gmf-wayfinder {
    grid-template-columns: 1fr 1fr;
  }

  .gmf-wayfinder a {
    min-height: 140px;
    padding: 22px 20px;
    border-bottom: 1px solid var(--gmf-line);
  }

  .gmf-wayfinder a:nth-child(2) {
    border-right: 0;
  }

  .gmf-wayfinder span {
    margin-bottom: 20px;
  }

  .gmf-opening,
  .gmf-ranges,
  .gmf-plants,
  .gmf-home-posts {
    padding-right: 20px;
    padding-left: 20px;
  }

  .gmf-opening {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .gmf-opening h2,
  .gmf-ranges h2,
  .gmf-method h2,
  .gmf-plants h2,
  .gmf-home-posts h2,
  .gmf-related h2 {
    font-size: 45px;
  }

  .gmf-opening div > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .gmf-ranges,
  .gmf-plants {
    gap: 55px;
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .gmf-range-list a {
    grid-template-columns: 35px 1fr auto;
    gap: 10px;
  }

  .gmf-range-list h3 {
    font-size: 26px;
  }

  .gmf-range-list p {
    font-size: 14px;
  }

  .gmf-method {
    gap: 45px;
    padding: 85px 20px;
  }

  .gmf-method li {
    grid-template-columns: 38px 1fr;
  }

  .gmf-method li p {
    grid-column: 2;
  }

  .gmf-plants > div a {
    grid-template-columns: 1fr auto;
  }

  .gmf-plants i {
    grid-column: 1 / -1;
  }

  .gmf-plants em {
    font-size: 23px;
  }

  .gmf-field-note {
    padding: 95px 20px;
  }

  .gmf-field-note blockquote {
    font-size: 42px;
  }

  .gmf-home-posts {
    padding-top: 85px;
    padding-bottom: 95px;
  }

  .gmf-home-posts > header,
  .gmf-post {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gmf-post {
    padding: 35px 0 43px;
  }

  .gmf-post-meta {
    justify-content: flex-start;
  }

  .gmf-post h3 {
    font-size: 35px;
  }

  .gmf-route-hero {
    min-height: 76svh;
    padding: 105px 20px 48px;
  }

  .gmf-route-coordinate {
    top: 25px;
    right: 20px;
    left: 20px;
  }

  .gmf-route-copy h1 {
    font-size: clamp(56px, 17vw, 82px);
  }

  .gmf-route-copy > p:last-child {
    font-size: 15px;
  }

  .gmf-route-facts {
    grid-template-columns: 75px 1fr;
    margin-top: 30px;
  }

  .gmf-article-layout {
    gap: 55px;
    padding: 75px 20px 90px;
  }

  .gmf-article-copy section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0 38px;
  }

  .gmf-article-copy section > div {
    flex-direction: row;
    align-items: baseline;
  }

  .gmf-article-copy h2 {
    font-size: 35px;
  }

  .gmf-article-copy section > p {
    font-size: 15px;
  }

  .gmf-field-aside {
    display: block;
    padding: 24px;
  }

  .gmf-field-aside dl {
    margin: 24px 0;
  }

  .gmf-related {
    gap: 50px;
    padding: 80px 20px 90px;
  }

  .gmf-related > div a {
    font-size: 20px;
  }

  .gmf-site-footer {
    grid-template-columns: 1fr;
    padding: 55px 20px;
  }
}

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

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