:root {
  --ptm-pine: #0d4d2c;
  --ptm-deep: #082f20;
  --ptm-forest: #17623c;
  --ptm-moss: #63845d;
  --ptm-leaf: #4d9f24;
  --ptm-river: #2184bd;
  --ptm-lime: #f5b51b;
  --ptm-cream: #f4f1e8;
  --ptm-cream-2: #e9e5da;
  --ptm-ink: #123c2a;
  --ptm-muted: #66766c;
  --ptm-white: #fffdf8;
  --ptm-line: rgba(13, 77, 44, .16);
  --ptm-brand-gradient: linear-gradient(90deg, var(--ptm-leaf), var(--ptm-river), var(--ptm-lime));
  --ptm-display: "Cormorant Garamond", Georgia, serif;
  --ptm-sans: "Manrope", Arial, sans-serif;
  --ptm-gutter: clamp(22px, 5vw, 82px);
  --ptm-radius: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ptm-ink);
  background: var(--ptm-cream);
  font-family: var(--ptm-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* The Hostinger helper is useful in the dashboard, but its public floating
   button covers editorial content and contact actions on small screens. */
#vue-app .kodee-fab {
  display: none !important;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.ptm-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.ptm-section {
  padding: clamp(88px, 10vw, 165px) var(--ptm-gutter);
}

.ptm-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 21px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ptm-eyebrow > span {
  width: 29px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--ptm-lime);
}

.ptm-eyebrow.is-dark {
  color: #728077;
}

.ptm-eyebrow.is-dark > span {
  background: #7c9a65;
}

.ptm-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 19px 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}

.ptm-button:hover,
.ptm-button:focus-visible {
  transform: translateY(-3px);
}

.ptm-button.is-lime {
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.ptm-button.is-pine {
  color: #fff;
  background: var(--ptm-pine);
  box-shadow: 0 14px 35px rgba(23, 60, 45, .2);
}

.ptm-button.is-outline-light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.ptm-button.is-outline-light:hover {
  border-color: var(--ptm-lime);
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ptm-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-text-link .material-symbols-rounded {
  font-size: 16px;
  transition: transform .2s ease;
}

.ptm-text-link:hover .material-symbols-rounded {
  transform: translateX(4px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2, .75, .25, 1);
}

[data-reveal="right"] {
  transform: translateX(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Header */
.ptm-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ptm-ink);
  background: rgba(244, 241, 232, .94);
  backdrop-filter: blur(15px);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.ptm-site-header.is-transparent {
  position: absolute;
  right: 0;
  left: 0;
  color: #fff;
  background: transparent;
  backdrop-filter: none;
}

.ptm-site-header.is-transparent.is-scrolled {
  position: fixed;
  color: var(--ptm-ink);
  background: rgba(244, 241, 232, .96);
  backdrop-filter: blur(16px);
}

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

.admin-bar .ptm-mobile-menu {
  top: 32px;
}

.ptm-header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  height: 102px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 var(--ptm-gutter);
  border-bottom: 1px solid var(--ptm-line);
  transition: height .25s ease, border-color .25s ease;
}

.is-transparent:not(.is-scrolled) .ptm-header-inner {
  border-color: rgba(255, 255, 255, .24);
}

.is-scrolled .ptm-header-inner {
  height: 76px;
}

.ptm-header-logo {
  width: max-content;
}

.ptm-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 11px;
  letter-spacing: .03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.ptm-logo b {
  font-size: 13px;
  letter-spacing: .08em;
}

.ptm-logo-mark {
  position: relative;
  display: block;
  width: 67px;
  height: 42px;
  overflow: hidden;
  background: transparent;
}

.ptm-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ptm-logo-wordmark {
  text-shadow: 0 1px 18px rgba(4, 25, 16, .18);
}

.ptm-logo.is-dark .ptm-logo-wordmark,
.is-scrolled .ptm-logo-wordmark,
.ptm-site-header:not(.is-transparent) .ptm-logo-wordmark {
  text-shadow: none;
}

.ptm-site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ptm-brand-gradient);
  opacity: 0;
  transform: scaleX(.78);
  transition: opacity .25s ease, transform .25s ease;
}

.ptm-site-header.is-scrolled::after,
.ptm-site-header:not(.is-transparent)::after {
  opacity: 1;
  transform: scaleX(1);
}

.ptm-desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 50px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-desktop-nav a {
  position: relative;
  opacity: .78;
}

.ptm-desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--ptm-lime);
  transition: right .22s ease;
}

.is-scrolled .ptm-desktop-nav a::after,
.ptm-site-header:not(.is-transparent) .ptm-desktop-nav a::after {
  background: var(--ptm-pine);
}

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

.ptm-desktop-nav a:hover::after {
  right: 0;
}

.ptm-header-cta {
  display: inline-flex;
  min-height: 41px;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.ptm-header-cta:hover {
  border-color: var(--ptm-lime);
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-header-cta .material-symbols-rounded {
  font-size: 15px;
}

.ptm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.ptm-menu-toggle span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform .22s ease;
}

.ptm-menu-toggle span:first-child {
  transform: translateY(-3px);
}

.ptm-menu-toggle span:last-child {
  transform: translateY(3px);
}

.ptm-menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.ptm-menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.ptm-mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  visibility: hidden;
  color: #fff;
  background: var(--ptm-deep);
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.ptm-mobile-menu.is-open {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.ptm-mobile-menu-inner {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  padding: 120px 28px 35px;
}

.ptm-mobile-menu-inner > p {
  margin: 0 0 25px;
  color: var(--ptm-lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ptm-mobile-menu nav a {
  display: grid;
  align-items: center;
  grid-template-columns: 35px 1fr auto;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--ptm-display);
  font-size: clamp(27px, 7vw, 39px);
}

.ptm-mobile-menu nav a > span:first-child {
  color: rgba(255, 255, 255, .45);
  font-family: var(--ptm-sans);
  font-size: 9px;
}

.ptm-mobile-menu nav .material-symbols-rounded {
  font-size: 18px;
}

.ptm-mobile-menu-foot {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Hero */
.ptm-hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--ptm-pine) var(--ptm-hero-image) center 47% / cover no-repeat;
}

.ptm-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 17, .85) 0%, rgba(7, 29, 19, .47) 50%, rgba(7, 27, 18, .64) 100%),
    linear-gradient(0deg, rgba(7, 23, 16, .82) 0%, transparent 48%);
}

.ptm-hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 61vw);
  padding-top: clamp(205px, 26vh, 305px);
  margin-left: 8.4vw;
}

.ptm-hero h1 {
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(76px, 9vw, 145px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .75;
}

.ptm-hero h1 em {
  display: inline-block;
  margin-left: clamp(25px, 6vw, 95px);
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-hero-copy {
  max-width: 530px;
  margin: 36px 0 0 clamp(25px, 6vw, 95px);
  color: rgba(255, 255, 255, .8);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.75;
}

.ptm-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 34px 0 0 clamp(25px, 6vw, 95px);
}

.ptm-play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-play-link > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  font-size: 18px;
  transition: color .2s ease, background .2s ease;
}

.ptm-play-link:hover > span {
  border-color: var(--ptm-lime);
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-hero-card {
  position: absolute;
  z-index: 3;
  right: 4.4vw;
  bottom: 108px;
  width: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(9, 34, 23, .4);
  backdrop-filter: blur(14px);
}

.ptm-hero-card-count {
  float: right;
  color: var(--ptm-lime);
  font-size: 11px;
  font-weight: 800;
}

.ptm-hero-card-count span {
  color: rgba(255, 255, 255, .4);
}

.ptm-hero-card > p {
  margin: 0 0 42px;
  color: rgba(255, 255, 255, .56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ptm-hero-card h2 {
  max-width: 205px;
  margin: 0 0 24px;
  font-family: var(--ptm-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .88;
}

.ptm-hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.ptm-hero-card-meta > span {
  color: rgba(255, 255, 255, .6);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ptm-hero-card-meta > a {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-hero-card-meta .material-symbols-rounded {
  font-size: 15px;
}

.ptm-category-rail {
  position: absolute;
  z-index: 4;
  right: 4.4vw;
  bottom: 0;
  left: 4.4vw;
  display: grid;
  height: 76px;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.ptm-category-rail a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .53);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.ptm-category-rail a > span {
  font-size: 8px;
}

.ptm-category-rail a:hover,
.ptm-category-rail a.is-active {
  color: #fff;
}

.ptm-category-rail a.is-active::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 14%;
  left: 0;
  height: 2px;
  background: var(--ptm-lime);
}

.ptm-photo-credit {
  position: absolute;
  z-index: 2;
  top: 128px;
  right: 3.2vw;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 7px;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
}

.ptm-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 104px;
  left: 4.4vw;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.ptm-scroll-cue span {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, .45);
}

.ptm-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(217, 255, 121, .18);
  border-radius: 50%;
  pointer-events: none;
}

.ptm-orbit-one {
  top: 30%;
  left: -270px;
  width: 440px;
  height: 440px;
}

.ptm-orbit-two {
  top: 3%;
  right: -460px;
  width: 690px;
  height: 690px;
}

/* Intro and category grid */
.ptm-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 45px;
  background: var(--ptm-cream);
}

.ptm-section-heading h2,
.ptm-category-heading h2,
.ptm-journal-heading h2 {
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(58px, 6.4vw, 104px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .82;
}

.ptm-section-heading h2 em,
.ptm-category-heading h2 em,
.ptm-journal-heading h2 em {
  color: var(--ptm-leaf);
  font-weight: 500;
}

.ptm-intro-copy {
  align-self: end;
  max-width: 410px;
  padding-bottom: 8px;
}

.ptm-intro-copy > p {
  margin: 0 0 28px;
  color: var(--ptm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.ptm-discovery-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 285px 285px;
  gap: 16px;
  margin-top: 58px;
}

.ptm-discovery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  background: var(--card-image) center / cover no-repeat;
}

.ptm-card-1 {
  grid-column: span 5;
  grid-row: span 2;
}

.ptm-card-2 {
  grid-column: span 4;
}

.ptm-card-3 {
  grid-column: span 3;
}

.ptm-card-4 {
  grid-column: span 3;
}

.ptm-card-5 {
  grid-column: span 4;
}

.ptm-discovery-card > a {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 23px;
}

.ptm-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 29, 19, .85), transparent 75%);
  transition: background .25s ease;
}

.ptm-discovery-card::after,
.ptm-place-image::after,
.ptm-outdoor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}

.ptm-discovery-card:hover .ptm-card-overlay {
  background: linear-gradient(0deg, rgba(7, 29, 19, .94), rgba(7, 29, 19, .08) 85%);
}

.ptm-card-top,
.ptm-card-content {
  position: relative;
  z-index: 1;
}

.ptm-card-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .63);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ptm-card-content {
  padding-right: 48px;
}

.ptm-card-content h3 {
  max-width: 380px;
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .88;
}

.ptm-card-content p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 10px;
  line-height: 1.55;
}

.ptm-card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-size: 17px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.ptm-discovery-card:hover .ptm-card-arrow {
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  transform: rotate(8deg);
}

/* Story */
.ptm-story-section {
  display: grid;
  min-height: 920px;
  grid-template-columns: 1.06fr .94fr;
  color: #fff;
  background: var(--ptm-pine);
}

.ptm-story-visual {
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.ptm-story-main {
  position: absolute;
  inset: 0 12% 0 0;
  margin: 0;
}

.ptm-story-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 37, 25, .54), transparent 52%);
}

.ptm-story-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptm-story-main figcaption {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  color: rgba(255, 255, 255, .65);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-story-small {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 85px;
  width: 34%;
  height: 310px;
  margin: 0;
  padding: 9px 0 9px 9px;
  background: var(--ptm-pine);
}

.ptm-story-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptm-story-stamp {
  position: absolute;
  z-index: 4;
  top: 75px;
  right: 5%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid var(--ptm-lime);
  border-radius: 50%;
  color: var(--ptm-lime);
  transform: rotate(9deg);
}

.ptm-story-stamp span {
  align-self: end;
  font-size: 8px;
  letter-spacing: .12em;
}

.ptm-story-stamp b {
  align-self: start;
  font-family: var(--ptm-display);
  font-size: 22px;
  font-weight: 500;
}

.ptm-story-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 110px clamp(35px, 7vw, 120px) 110px clamp(50px, 7vw, 125px);
}

.ptm-story-copy h2 {
  margin: 0 0 32px;
  font-family: var(--ptm-display);
  font-size: clamp(64px, 6.8vw, 105px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .75;
}

.ptm-story-copy h2 em {
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-story-copy > p:not(.ptm-eyebrow) {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.85;
}

.ptm-story-facts {
  display: flex;
  gap: clamp(28px, 4vw, 70px);
  margin: 43px 0;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.ptm-story-facts > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ptm-story-facts strong {
  color: var(--ptm-lime);
  font-family: var(--ptm-display);
  font-size: 38px;
  font-weight: 500;
}

.ptm-story-facts span {
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  letter-spacing: .05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.ptm-story-copy .ptm-button {
  align-self: flex-start;
}

/* Gastronomy carousel */
.ptm-category-section {
  overflow: hidden;
  background: var(--ptm-white);
}

.ptm-category-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: 60px;
}

.ptm-category-heading > p {
  margin: 0 0 6px;
  color: var(--ptm-muted);
  font-size: 13px;
  line-height: 1.8;
}

.ptm-horizontal-cards {
  display: flex;
  gap: 18px;
  margin-top: 70px;
  margin-right: calc(-1 * var(--ptm-gutter));
  padding-right: var(--ptm-gutter);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.ptm-horizontal-cards::-webkit-scrollbar {
  display: none;
}

.ptm-place-card {
  min-width: min(355px, 78vw);
  scroll-snap-align: start;
}

.ptm-place-image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.ptm-place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .25, 1);
}

.ptm-place-card:hover .ptm-place-image img {
  transform: scale(1.035);
}

.ptm-place-image > span:first-of-type {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.ptm-place-image > .material-symbols-rounded {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  font-size: 18px;
}

.ptm-place-info {
  padding: 20px 3px 0;
}

.ptm-place-info > p,
.ptm-place-info > span {
  margin: 0;
  color: #77837b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ptm-place-info h3 {
  margin: 8px 0 9px;
  font-family: var(--ptm-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .95;
}

.ptm-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 45px;
}

.ptm-slider-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ptm-line);
  border-radius: 50%;
  color: var(--ptm-ink);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.ptm-slider-controls button:hover {
  color: #fff;
  background: var(--ptm-pine);
}

.ptm-slider-controls > span {
  display: block;
  width: 170px;
  height: 2px;
  overflow: hidden;
  background: #d8ddd6;
}

.ptm-slider-controls > span > i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--ptm-pine);
  transform-origin: left;
}

/* Route */
.ptm-route-section {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  background: var(--ptm-cream-2);
}

.ptm-route-map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-right: 1px solid var(--ptm-line);
  background: var(--ptm-deep);
}

.ptm-route-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.08) brightness(.88);
  transform: scale(1.015);
}

.ptm-route-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 36, 25, .1), rgba(7, 36, 25, .42)),
    linear-gradient(0deg, rgba(7, 36, 25, .48), transparent 62%);
  pointer-events: none;
}

.ptm-route-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.ptm-map-contours {
  position: absolute;
  inset: -15%;
  background:
    repeating-radial-gradient(ellipse at 44% 53%, transparent 0 28px, rgba(255, 255, 255, .19) 29px 30px, transparent 31px 50px);
  transform: rotate(-8deg) scale(1.12);
}

.ptm-map-route {
  position: absolute;
  top: 12%;
  left: 48%;
  width: 2px;
  height: 76%;
  background: var(--ptm-lime);
  transform: rotate(28deg);
  box-shadow: 0 0 18px rgba(217, 255, 121, .45);
  opacity: .72;
}

.ptm-map-point {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 99px;
  color: #fff;
  background: rgba(8, 67, 43, .94);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(23, 60, 45, .18);
  backdrop-filter: blur(8px);
}

.ptm-map-point i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ptm-lime);
}

.point-one {
  top: 22%;
  left: 62%;
}

.point-two {
  top: 60%;
  left: 34%;
}

.point-three {
  top: 40%;
  left: 48%;
}

.ptm-route-photo-credit {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, .68);
  font-size: 7px;
  letter-spacing: .07em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .72);
  text-transform: uppercase;
}

.ptm-route-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 85px clamp(40px, 8vw, 135px);
}

.ptm-route-content h2 {
  margin: 0 0 24px;
  font-family: var(--ptm-display);
  font-size: clamp(70px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .76;
}

.ptm-route-content h2 em {
  color: #668453;
  font-weight: 500;
}

.ptm-route-content > p:not(.ptm-eyebrow) {
  max-width: 420px;
  margin: 0 0 32px;
  color: var(--ptm-muted);
  font-size: 13px;
  line-height: 1.8;
}

.ptm-route-content .ptm-button {
  align-self: flex-start;
}

/* Mendanha Notícias */
.ptm-news-spotlight {
  position: relative;
  display: grid;
  min-height: 770px;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 130px);
  overflow: hidden;
  padding: 100px max(var(--ptm-gutter), 8vw);
  color: #fff;
  background:
    radial-gradient(circle at 23% 52%, rgba(217, 255, 121, .09), transparent 26%),
    var(--ptm-deep);
}

.ptm-news-halo {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(217, 255, 121, .19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ptm-news-halo::before,
.ptm-news-halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 255, 121, .1);
  border-radius: 50%;
}

.ptm-news-halo::before {
  inset: 55px;
}

.ptm-news-halo::after {
  inset: 110px;
}

.ptm-news-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: end;
}

.ptm-news-photo::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 18px;
  bottom: 18px;
  left: -18px;
  border: 1px solid rgba(217, 255, 121, .34);
}

.ptm-news-photo img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 36%;
}

.ptm-news-photo > span {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  padding: 12px 15px;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ptm-news-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.ptm-news-person {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ptm-lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ptm-news-copy h2 {
  margin: 0 0 25px;
  font-family: var(--ptm-display);
  font-size: clamp(70px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .72;
}

.ptm-news-copy > p:not(.ptm-eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  line-height: 1.8;
}

.ptm-news-copy blockquote,
.ptm-news-manifesto {
  max-width: 580px;
  margin: 30px 0;
  padding-left: 22px;
  border-left: 1px solid var(--ptm-lime);
  color: rgba(255, 255, 255, .86);
  font-family: var(--ptm-display);
  font-size: 25px;
  font-style: italic;
  line-height: 1.25;
}

.ptm-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ptm-social-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.ptm-social-button img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.ptm-social-button .material-symbols-rounded {
  font-size: 16px;
}

.ptm-social-button:hover {
  border-color: var(--ptm-lime);
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-social-button:hover img {
  filter: brightness(0) saturate(100%);
}

/* Outdoor */
.ptm-outdoor {
  background: var(--ptm-cream);
}

.ptm-outdoor-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  margin-top: 70px;
}

.ptm-outdoor-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.ptm-outdoor-card.is-featured {
  grid-row: 1 / -1;
}

.ptm-outdoor-card > a {
  position: absolute;
  inset: 0;
  color: #fff;
}

.ptm-outdoor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ptm-outdoor-card:hover img {
  transform: scale(1.035);
}

.ptm-outdoor-card > a > span:first-of-type {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, .67);
  font-size: 9px;
  font-weight: 800;
}

.ptm-outdoor-card > a > div:last-of-type {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.ptm-outdoor-card p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .65);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-outdoor-card h3 {
  max-width: 85%;
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .92;
}

.ptm-outdoor-card > a > .material-symbols-rounded {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-size: 17px;
}

/* Stay */
.ptm-stay-strip {
  display: grid;
  min-height: 710px;
  grid-template-columns: .85fr 1.15fr;
  color: #fff;
  background: var(--ptm-pine);
}

.ptm-stay-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 90px clamp(35px, 7vw, 120px);
}

.ptm-stay-copy h2 {
  margin: 0 0 45px;
  font-family: var(--ptm-display);
  font-size: clamp(66px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .74;
}

.ptm-stay-copy h2 em {
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-stay-links {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .18);
}

.ptm-stay-links a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: rgba(255, 255, 255, .8);
  background: var(--ptm-pine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: padding .2s ease, color .2s ease;
}

.ptm-stay-links a:hover {
  padding-left: 22px;
  color: var(--ptm-lime);
}

.ptm-stay-image {
  min-height: 600px;
}

.ptm-stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Journal */
.ptm-journal {
  background: var(--ptm-white);
}

.ptm-journal-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.ptm-journal-heading .ptm-eyebrow,
.ptm-journal-heading h2 {
  grid-column: 1;
}

.ptm-journal-heading .ptm-text-link {
  grid-row: 2;
  grid-column: 2;
}

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

.ptm-journal-image {
  height: 270px;
  margin-bottom: 18px;
  overflow: hidden;
}

.ptm-journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ptm-journal article:hover .ptm-journal-image img {
  transform: scale(1.035);
}

.ptm-journal article p {
  margin: 0 0 8px;
  color: #849087;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ptm-journal article h3 {
  margin: 0 0 15px;
  font-family: var(--ptm-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
}

.ptm-journal article > a > span,
.ptm-journal-placeholder > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-journal article .material-symbols-rounded {
  font-size: 14px;
}

/* Footer */
.ptm-site-footer {
  color: #fff;
  background: #09251a;
}

.ptm-footer-top {
  display: grid;
  grid-template-columns: 1.1fr .72fr 1fr 1.45fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 90px var(--ptm-gutter) 75px;
}

.ptm-footer-brand > p {
  max-width: 285px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  line-height: 1.75;
}

.ptm-footer-logo {
  width: max-content;
  max-width: 100%;
}

.ptm-footer-logo .ptm-logo {
  gap: 14px;
  color: #fff;
  font-size: 12px;
}

.ptm-footer-logo .ptm-logo b {
  font-size: 15px;
}

.ptm-footer-logo .ptm-logo-mark {
  width: 82px;
  height: 61px;
}

.ptm-footer-column,
.ptm-footer-route {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.ptm-footer-column > span,
.ptm-footer-route > span {
  margin-bottom: 22px;
  color: var(--ptm-lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ptm-footer-column a {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  line-height: 1.4;
  transition: color .2s ease;
}

.ptm-footer-column a:hover {
  color: var(--ptm-lime);
}

.ptm-footer-route h2 {
  margin: 0 0 24px;
  font-family: var(--ptm-display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .82;
}

.ptm-footer-route h2 em {
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-footer-route > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 0 var(--ptm-gutter);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ptm-footer-bottom p {
  margin: 0;
}

/* Archive */
.ptm-archive-hero {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: end;
  overflow: hidden;
  padding: 180px var(--ptm-gutter) 70px;
  color: #fff;
  background: var(--archive-image) center / cover no-repeat;
}

.ptm-archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 20, .88), rgba(7, 30, 20, .26)), linear-gradient(0deg, rgba(7, 30, 20, .72), transparent);
}

.ptm-archive-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.ptm-archive-hero h1 {
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(76px, 10vw, 148px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .75;
}

.ptm-archive-hero h1 em {
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-archive-hero p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.75;
}

.ptm-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 18px;
  padding: 95px var(--ptm-gutter) 130px;
}

.ptm-archive-card .ptm-place-image {
  height: 420px;
}

.ptm-archive-card .ptm-place-info > span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.ptm-empty-state {
  grid-column: 1 / -1;
  padding: 90px 20px;
  text-align: center;
}

.ptm-empty-state h2 {
  margin: 0 0 10px;
  font-family: var(--ptm-display);
  font-size: 46px;
  font-weight: 500;
}

.ptm-pagination {
  grid-column: 1 / -1;
  margin-top: 25px;
}

.ptm-pagination .nav-links {
  display: flex;
  gap: 8px;
}

.ptm-pagination .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ptm-line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.ptm-pagination .current {
  color: #fff;
  background: var(--ptm-pine);
}

/* Single */
.ptm-place-hero {
  position: relative;
  min-height: max(680px, 88svh);
  overflow: hidden;
  color: #fff;
  background: var(--place-image) center / cover no-repeat;
}

.ptm-place-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 25, 16, .88), rgba(4, 25, 16, .24) 65%),
    linear-gradient(0deg, rgba(4, 25, 16, .85), transparent 52%);
}

.ptm-place-hero-inner {
  position: absolute;
  z-index: 1;
  right: var(--ptm-gutter);
  bottom: 70px;
  left: var(--ptm-gutter);
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(250px, 370px);
  gap: 50px;
}

.ptm-place-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(73px, 9vw, 138px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .75;
}

.ptm-place-hero-copy {
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.ptm-place-hero-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.75;
}

.ptm-place-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ptm-place-credit {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 25px;
  max-width: 420px;
  color: rgba(255, 255, 255, .5);
  font-size: 7px;
  letter-spacing: .05em;
  text-align: right;
}

.ptm-place-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(45px, 8vw, 135px);
  padding: 110px var(--ptm-gutter);
  background: var(--ptm-white);
}

.ptm-place-prose {
  max-width: 820px;
}

.ptm-place-prose > p:first-child::first-letter {
  float: left;
  margin: -.05em .12em -.1em 0;
  color: var(--ptm-leaf);
  font-family: var(--ptm-display);
  font-size: 5em;
  line-height: .82;
}

.ptm-place-prose p,
.ptm-place-prose li {
  color: #4f5f56;
  font-size: 15px;
  line-height: 1.9;
}

.ptm-place-prose h2,
.ptm-place-prose h3 {
  margin: 1.4em 0 .55em;
  font-family: var(--ptm-display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
}

.ptm-content-callout {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin-top: 45px;
  padding: 25px;
  border-left: 3px solid var(--ptm-lime);
  background: var(--ptm-cream);
}

.ptm-content-callout > .material-symbols-rounded {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
}

.ptm-content-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ptm-content-callout p {
  margin: 0;
}

.ptm-place-sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}

.ptm-visit-card {
  padding: 27px;
  border: 1px solid var(--ptm-line);
  background: var(--ptm-cream);
}

.ptm-visit-card > span {
  color: #78906d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ptm-visit-card h2 {
  margin: 10px 0 25px;
  font-family: var(--ptm-display);
  font-size: 37px;
  font-weight: 500;
  line-height: .9;
}

.ptm-visit-list {
  display: grid;
  gap: 0;
  margin: 0 0 23px;
}

.ptm-visit-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--ptm-line);
}

.ptm-visit-item .material-symbols-rounded {
  color: #6c8b5b;
  font-size: 18px;
}

.ptm-visit-item span {
  display: block;
  margin-bottom: 4px;
  color: #829087;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ptm-visit-item p,
.ptm-visit-item a {
  margin: 0;
  color: var(--ptm-ink);
  font-size: 10px;
  line-height: 1.55;
}

.ptm-visit-card .ptm-button {
  width: 100%;
}

.ptm-visit-links {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.ptm-visit-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ptm-line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ptm-visit-links .material-symbols-rounded {
  font-size: 15px;
}

.ptm-place-gallery,
.ptm-place-videos,
.ptm-place-panoramas,
.ptm-related {
  padding: 100px var(--ptm-gutter);
}

.ptm-place-gallery {
  color: #fff;
  background: var(--ptm-pine);
}

.ptm-subsection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 50px;
}

.ptm-subsection-heading h2 {
  margin: 0;
  font-family: var(--ptm-display);
  font-size: clamp(55px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .82;
}

.ptm-subsection-heading h2 em {
  color: var(--ptm-lime);
  font-weight: 500;
}

.ptm-subsection-heading p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  line-height: 1.7;
}

.ptm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.ptm-gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #0b261a;
  cursor: zoom-in;
}

.ptm-gallery-item:nth-child(1),
.ptm-gallery-item:nth-child(5) {
  grid-column: span 7;
  grid-row: span 2;
}

.ptm-gallery-item:nth-child(2),
.ptm-gallery-item:nth-child(6) {
  grid-column: span 5;
}

.ptm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ptm-gallery-item:hover img {
  transform: scale(1.035);
}

.ptm-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 35px;
  background: rgba(5, 20, 13, .94);
}

.ptm-lightbox.is-open {
  display: grid;
}

.ptm-lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
}

.ptm-lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.ptm-place-videos,
.ptm-place-panoramas {
  background: var(--ptm-cream);
}

.ptm-place-videos .ptm-subsection-heading p,
.ptm-place-panoramas .ptm-subsection-heading p {
  color: var(--ptm-muted);
}

.ptm-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ptm-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: #fff;
  background: #0d281d;
  cursor: pointer;
}

.ptm-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .4s ease, opacity .4s ease;
}

.ptm-video-card:hover img {
  opacity: .9;
  transform: scale(1.03);
}

.ptm-video-card > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--ptm-deep);
  background: var(--ptm-lime);
  transform: translate(-50%, -50%);
}

.ptm-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ptm-panorama-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ptm-panorama-card {
  display: flex;
  min-height: 170px;
  justify-content: space-between;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--ptm-line);
  background: var(--ptm-white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ptm-panorama-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(23, 60, 45, .09);
}

.ptm-panorama-card > span:first-child {
  color: #6b8c57;
  font-size: 29px;
}

.ptm-panorama-card h3 {
  margin: 22px 0 0;
  font-family: var(--ptm-display);
  font-size: 28px;
  font-weight: 500;
}

.ptm-panorama-card p {
  margin: 6px 0 0;
  color: var(--ptm-muted);
  font-size: 10px;
}

.ptm-source-note {
  padding: 25px var(--ptm-gutter);
  color: #79867f;
  background: #e5e2d7;
  font-size: 9px;
  line-height: 1.6;
}

.ptm-related {
  background: var(--ptm-white);
}

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

/* Generic index / article */
.ptm-generic {
  padding: 160px var(--ptm-gutter) 120px;
  background: var(--ptm-white);
}

.ptm-generic-inner {
  max-width: 920px;
  margin: 0 auto;
}

.ptm-generic h1 {
  margin: 0 0 40px;
  font-family: var(--ptm-display);
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .8;
}

.ptm-generic .entry-content {
  color: #4e5d55;
  font-size: 16px;
  line-height: 1.85;
}

.ptm-generic .entry-content img {
  margin: 40px 0;
}

.ptm-not-found {
  min-height: 76vh;
  padding: 190px var(--ptm-gutter) 120px;
  color: var(--ptm-ink);
  background:
    radial-gradient(circle at 84% 16%, rgba(33, 132, 189, .13), transparent 25%),
    radial-gradient(circle at 14% 84%, rgba(77, 159, 36, .15), transparent 28%),
    var(--ptm-white);
}

.ptm-not-found h1 {
  max-width: 940px;
  margin: 0 0 28px;
  font-family: var(--ptm-display);
  font-size: clamp(67px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .78;
}

.ptm-not-found > p:not(.ptm-eyebrow) {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--ptm-muted);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1100px) {
  .ptm-desktop-nav {
    display: none;
  }

  .ptm-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 13px;
  }

  .ptm-menu-toggle {
    display: grid;
  }

  .ptm-hero-content {
    width: 70vw;
  }

  .ptm-hero-card {
    width: 235px;
  }

  .ptm-discovery-grid {
    grid-template-rows: 260px 260px 260px;
  }

  .ptm-card-1 {
    grid-column: span 7;
    grid-row: span 2;
  }

  .ptm-card-2,
  .ptm-card-3 {
    grid-column: span 5;
  }

  .ptm-card-4,
  .ptm-card-5 {
    grid-column: span 6;
  }

  .ptm-story-section {
    grid-template-columns: .9fr 1.1fr;
  }

  .ptm-story-copy {
    padding-right: 50px;
    padding-left: 55px;
  }

  .ptm-news-spotlight {
    grid-template-columns: .78fr 1.22fr;
  }

  .ptm-outdoor-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .ptm-outdoor-card:nth-child(4) {
    grid-column: 2;
  }

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

  .ptm-footer-route {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 820px) {
  .ptm-header-inner {
    height: 84px;
  }

  .ptm-header-cta {
    display: none;
  }

  .ptm-hero {
    min-height: 900px;
  }

  .ptm-hero-content {
    width: 86vw;
    padding-top: 180px;
    margin-left: 6vw;
  }

  .ptm-hero h1 {
    font-size: clamp(68px, 15vw, 112px);
  }

  .ptm-hero-card {
    right: 6vw;
    bottom: 94px;
  }

  .ptm-category-rail {
    right: 6vw;
    left: 6vw;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    scrollbar-width: none;
  }

  .ptm-photo-credit,
  .ptm-scroll-cue {
    display: none;
  }

  .ptm-intro,
  .ptm-category-heading,
  .ptm-journal-heading {
    grid-template-columns: 1fr;
  }

  .ptm-intro-copy {
    max-width: 540px;
  }

  .ptm-discovery-grid {
    display: flex;
    margin-right: calc(-1 * var(--ptm-gutter));
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .ptm-discovery-card {
    min-width: min(74vw, 460px);
    height: 540px;
    scroll-snap-align: start;
  }

  .ptm-story-section {
    grid-template-columns: 1fr;
  }

  .ptm-story-visual {
    min-height: 720px;
  }

  .ptm-story-copy {
    padding: 90px var(--ptm-gutter);
  }

  .ptm-route-section {
    grid-template-columns: 1fr;
  }

  .ptm-route-map {
    min-height: 470px;
    border-right: 0;
    border-bottom: 1px solid var(--ptm-line);
  }

  .ptm-route-content {
    padding: 85px var(--ptm-gutter);
  }

  .ptm-news-spotlight {
    grid-template-columns: 1fr;
  }

  .ptm-news-photo {
    width: min(82vw, 450px);
    justify-self: center;
  }

  .ptm-news-halo {
    top: 28%;
    left: 50%;
  }

  .ptm-outdoor-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 540px 290px;
  }

  .ptm-outdoor-card.is-featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .ptm-outdoor-card:nth-child(4) {
    grid-column: auto;
  }

  .ptm-stay-strip {
    grid-template-columns: 1fr;
  }

  .ptm-stay-image {
    min-height: 540px;
  }

  .ptm-journal-heading .ptm-text-link {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

  .ptm-journal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ptm-footer-brand {
    grid-column: 1 / -1;
  }

  .ptm-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ptm-place-hero-inner {
    grid-template-columns: 1fr;
  }

  .ptm-place-hero-copy {
    max-width: 570px;
  }

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

  .ptm-place-sidebar {
    position: static;
  }

  .ptm-video-grid,
  .ptm-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ptm-panorama-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (max-width: 560px) {
  :root {
    --ptm-gutter: 21px;
  }

  .ptm-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .ptm-logo {
    font-size: 9px;
  }

  .ptm-logo b {
    font-size: 10px;
  }

  .ptm-logo-mark {
    width: 55px;
    height: 35px;
  }

  .ptm-logo-mark img {
    width: 100%;
    height: 100%;
  }

  .ptm-hero {
    min-height: 880px;
    background-position: 58% center;
  }

  .ptm-hero-content {
    width: auto;
    padding-top: 155px;
    margin: 0 20px;
  }

  .ptm-hero .ptm-eyebrow {
    max-width: 270px;
    font-size: 7px;
  }

  .ptm-hero h1 {
    font-size: clamp(60px, 20.5vw, 86px);
    line-height: .78;
  }

  .ptm-hero h1 em {
    margin-left: 13px;
  }

  .ptm-hero-copy {
    max-width: 335px;
    margin: 26px 0 0 14px;
    font-size: 12px;
  }

  .ptm-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin: 25px 0 0 14px;
  }

  .ptm-button {
    min-height: 47px;
  }

  .ptm-hero-card {
    right: 20px;
    bottom: 84px;
    left: 20px;
    width: auto;
    padding: 17px;
  }

  .ptm-hero-card > p {
    margin-bottom: 15px;
  }

  .ptm-hero-card h2 {
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 27px;
  }

  .ptm-category-rail {
    right: 20px;
    left: 20px;
    height: 64px;
    grid-template-columns: repeat(5, minmax(115px, 1fr));
  }

  .ptm-category-rail a {
    font-size: 8px;
  }

  .ptm-section-heading h2,
  .ptm-category-heading h2,
  .ptm-journal-heading h2 {
    font-size: clamp(51px, 16vw, 75px);
  }

  .ptm-discovery-grid {
    margin-top: 42px;
  }

  .ptm-discovery-card {
    min-width: 84vw;
    height: 500px;
  }

  .ptm-story-visual {
    min-height: 580px;
  }

  .ptm-story-main {
    right: 8%;
  }

  .ptm-story-small {
    bottom: 45px;
    width: 38%;
    height: 220px;
  }

  .ptm-story-stamp {
    top: 35px;
    right: 2%;
    width: 75px;
    height: 75px;
  }

  .ptm-story-stamp b {
    font-size: 18px;
  }

  .ptm-story-copy h2,
  .ptm-stay-copy h2 {
    font-size: 64px;
  }

  .ptm-story-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .ptm-place-image {
    height: 410px;
  }

  .ptm-route-map {
    min-height: 360px;
  }

  .point-one {
    left: 52%;
  }

  .point-two {
    left: 18%;
  }

  .ptm-route-content h2 {
    font-size: 66px;
  }

  .ptm-news-spotlight {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ptm-news-copy h2 {
    font-size: 67px;
  }

  .ptm-news-copy blockquote {
    font-size: 21px;
  }

  .ptm-social-button span:last-child {
    display: none;
  }

  .ptm-social-button {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .ptm-outdoor-grid {
    display: flex;
    margin-right: calc(-1 * var(--ptm-gutter));
    padding-right: var(--ptm-gutter);
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .ptm-outdoor-card,
  .ptm-outdoor-card.is-featured {
    min-width: 84vw;
    height: 510px;
    scroll-snap-align: start;
  }

  .ptm-stay-copy {
    padding-right: var(--ptm-gutter);
    padding-left: var(--ptm-gutter);
  }

  .ptm-stay-image {
    min-height: 420px;
  }

  .ptm-journal-grid {
    grid-template-columns: 1fr;
  }

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

  .ptm-footer-brand {
    grid-column: auto;
  }

  .ptm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ptm-archive-hero {
    min-height: 520px;
    padding-bottom: 50px;
  }

  .ptm-archive-hero h1 {
    font-size: 73px;
  }

  .ptm-archive-grid {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .ptm-archive-card .ptm-place-image {
    height: 450px;
  }

  .ptm-place-hero {
    min-height: 780px;
  }

  .ptm-place-hero-inner {
    bottom: 50px;
  }

  .ptm-place-hero h1 {
    font-size: 69px;
  }

  .ptm-place-credit {
    display: none;
  }

  .ptm-place-content,
  .ptm-place-gallery,
  .ptm-place-videos,
  .ptm-place-panoramas,
  .ptm-related {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .ptm-subsection-heading h2 {
    font-size: 57px;
  }

  .ptm-gallery-grid {
    display: flex;
    margin-right: calc(-1 * var(--ptm-gutter));
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .ptm-gallery-item,
  .ptm-gallery-item:nth-child(1),
  .ptm-gallery-item:nth-child(5),
  .ptm-gallery-item:nth-child(2),
  .ptm-gallery-item:nth-child(6) {
    min-width: 84vw;
    height: 500px;
    scroll-snap-align: start;
  }

  .ptm-video-grid,
  .ptm-related-grid,
  .ptm-panorama-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
