:root {
  --forest: #233d32;
  --forest-deep: #192f27;
  --ink: #263d32;
  --muted: #657064;
  --cream: #f7f4ec;
  --paper: #eeeadf;
  --gold: #d5b575;
  --line: #d8ddcf;
  --serif: 'DM Serif Display', Georgia, serif;
  --body: 'Source Sans 3', sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #a87a2e;
  outline-offset: 6px;
}
a:hover {
  text-decoration-thickness: 1px;
}
button {
  cursor: pointer;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin: auto;
}
.eyebrow {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--cream);
  padding: 12px 22px;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 30;
  background: var(--cream);
  border-bottom: 1px solid rgba(35, 61, 50, 0.1);
}
.header-inner {
  height: 100px;
  width: min(1376px, calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 63px;
  height: 63px;
  object-fit: contain;
}
.brand > span {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-top: 8px;
}
.main-nav {
  display: flex;
  gap: 35px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.main-nav > a:not(.nav-button) {
  padding: 9px 0;
  position: relative;
}
.main-nav a[aria-current]::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--forest);
}
.nav-button {
  padding: 11px 19px;
  border: 1px solid var(--forest);
  display: flex;
  gap: 24px;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-button:hover {
  background: var(--forest);
  color: var(--cream);
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 650px;
  background: var(--forest);
  color: var(--cream);
}
.hero-copy {
  padding: 76px 70px 58px max(56px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-copy > .eyebrow {
  color: #d5dbcb;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.17em;
  white-space: nowrap;
}
.tiny-sun {
  font-size: 27px;
  color: var(--gold);
  line-height: 1;
}
.hero h1 {
  font-size: clamp(56px, 5.2vw, 83px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 33px 0 26px;
  white-space: pre-line;
}
.hero h1 em {
  font-weight: 400;
  color: var(--gold);
}
.hero-intro {
  max-width: 354px;
  font-size: 18px;
  line-height: 1.65;
  color: #e0e6d9;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button > span {
  font-size: 22px;
  font-weight: 400;
}
.button:hover {
  transform: translateY(-2px);
}
.button-cream {
  background: var(--cream);
  color: var(--forest);
}
.button-cream:hover {
  background: #e7dcc5;
}
.button-dark {
  background: var(--forest);
  color: var(--cream);
}
.button-dark:hover {
  background: #375543;
}
.hero .button {
  margin-top: 31px;
}
.hero-footnote {
  margin-top: auto;
  padding-top: 47px;
  font-size: 11px;
  letter-spacing: 0.035em;
  color: #d3dbcc;
  display: flex;
  gap: 13px;
  align-items: center;
}
.fine-line {
  display: inline-block;
  width: 27px;
  height: 1px;
  background: #8fa38b;
}
.hero-photo {
  position: relative;
  min-width: 0;
}
.hero-photo > img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 49% 60%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(12, 31, 22, 0.52));
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  bottom: 35px;
  left: 45px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  display: flex;
  gap: 9px;
  align-items: center;
}
.location-dot {
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.roundel {
  position: absolute;
  left: -73px;
  bottom: 80px;
  width: 146px;
  height: 146px;
  z-index: 3;
  transform: rotate(-8deg);
}
.roundel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.guide-index {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 10px #233d3206;
}
.index-inner {
  display: flex;
  align-items: center;
  gap: 38px;
  min-height: 86px;
}
.index-label {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  flex: 1;
  white-space: nowrap;
}
.guide-index nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.guide-index nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  min-height: 50px;
  position: relative;
}
.guide-index nav a > span {
  font-size: 10px;
  color: #81897b;
  font-weight: 400;
}
.guide-index nav b {
  font-size: 17px;
  font-weight: 400;
  margin-left: 4px;
}
.guide-index nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.guide-index nav a:hover::after,
.guide-index nav a[aria-current]::after {
  transform: scaleX(1);
}
.guide-section {
  padding: 92px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 37px;
  gap: 36px;
}
.section-heading .eyebrow {
  color: #586d53;
  margin-bottom: 16px;
}
.section-number {
  color: #7f886f;
  margin-right: 13px;
  padding-right: 13px;
  border-right: 1px solid #c7ccbc;
}
.section-heading h2 {
  font-size: clamp(33px, 3.3vw, 49px);
  letter-spacing: -0.028em;
}
.section-heading > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 270px;
  padding-bottom: 2px;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.destination {
  min-width: 0;
}
.card-image {
  position: relative;
  overflow: hidden;
  background: #deded0;
  aspect-ratio: 1.2;
}
.card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.image-link {
  display: block;
}
.image-link:hover img {
  transform: scale(1.035);
}
.image-label {
  position: absolute;
  bottom: 17px;
  left: 19px;
  padding: 5px 11px;
  background: var(--cream);
  color: var(--forest);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.card-copy {
  padding-top: 23px;
}
.card-copy > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #5f7558;
  margin-bottom: 11px;
}
.card-copy h3 {
  font-size: 30px;
  letter-spacing: -0.025em;
}
.card-copy h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.card-copy p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid #819079;
  padding: 5px 0;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 29px;
}
.arrow {
  font-size: 21px;
  line-height: 1;
}
.card-copy .text-link {
  margin-top: 23px;
}
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
}
.image-placeholder i {
  font-size: 21px;
  color: #657557;
}
.section-accommodation {
  padding-bottom: 75px;
}
.section-accommodation .destination-grid {
  display: block;
}
.stay-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--paper);
}
.stay-feature .image-link {
  height: 100%;
  min-height: 446px;
}
.stay-feature .card-image {
  height: 100%;
  aspect-ratio: auto;
}
.stay-feature .card-image img {
  object-position: center;
}
.stay-feature .image-label {
  left: 25px;
  bottom: 25px;
}
.stay-feature .card-copy {
  padding: 47px 50px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.stay-feature .card-copy > .eyebrow {
  font-size: 10px;
  margin-bottom: 15px;
}
.stay-feature h3 {
  font-size: 45px;
  letter-spacing: -0.025em;
  max-width: 430px;
}
.stay-feature .card-copy p {
  margin-top: 19px;
  font-size: 16px;
}
.stay-details {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid #cfd3c5;
  border-bottom: 1px solid #cfd3c5;
  width: 100%;
  margin: 23px 0;
  padding: 14px 0;
  font-size: 12px;
}
.stay-details span + span::before {
  content: '·';
  margin: 0 12px;
  color: #8e977f;
}
.stay-feature .button {
  padding: 13px 20px;
  min-height: 49px;
}
.stay-feature small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 11px;
}
.section-outdoors {
  padding-top: 15px;
  padding-bottom: 100px;
}
.section-outdoors .container {
  border-top: 1px solid var(--line);
  padding-top: 73px;
}
.section-outdoors .destination:first-child .card-image {
  aspect-ratio: 1.04;
}
.section-outdoors .destination:nth-child(2) {
  padding-top: 32px;
}
.section-outdoors .destination:nth-child(3) {
  padding-top: 64px;
}
.section-days-out {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  padding-top: 82px;
  padding-bottom: 82px;
}
.section-days-out .section-heading .eyebrow,
.section-days-out .section-number {
  color: var(--gold);
}
.section-days-out .section-heading > p {
  color: #d1dccb;
}
.section-days-out .destination-grid {
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.section-days-out .card-image {
  aspect-ratio: 1.86;
}
.section-days-out .card-copy {
  padding-top: 26px;
}
.section-days-out .card-copy > .eyebrow {
  color: #c6cfb3;
}
.section-days-out .card-copy h3 {
  font-size: 33px;
}
.section-days-out .card-copy p {
  color: #d3ddce;
  max-width: 490px;
}
.section-days-out .text-link {
  border-color: #7e967c;
}
.section-days-out .card-copy .text-link {
  margin-top: 18px;
}
.section-local-guides {
  padding-bottom: 44px;
}
.section-local-guides .destination-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guide-link {
  display: flex;
  gap: 36px;
  padding: 35px 50px 35px 0;
}
.guide-link + .guide-link {
  border-left: 1px solid var(--line);
  padding: 35px 0 35px 50px;
}
.guide-link .eyebrow {
  font-size: 10px;
  color: #65775b;
  margin-bottom: 13px;
}
.guide-link h3 {
  font-size: 34px;
}
.guide-link p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 15px;
  max-width: 360px;
}
.guide-link .text-link {
  margin-top: 15px;
}
.guide-symbol {
  align-self: flex-start;
  font-size: 66px;
  font-weight: 400;
  line-height: 1;
  color: #7a885f;
}
.visit-note {
  padding: 0 0 75px;
}
.visit-note .container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.visit-note p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.note-icon {
  width: 22px;
  height: 22px;
  border: 1px solid #9ba591;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--serif);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.back-to-lakes {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(21, 43, 31, 0.91), rgba(21, 43, 31, 0.73)),
    url('/uploads/local-guide/loch-mahon.webp') center 65% / cover;
}
.lakes-inner {
  padding-top: 70px;
  padding-bottom: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.back-to-lakes .eyebrow {
  color: #d2d5b8;
  margin-bottom: 21px;
  font-size: 10px;
}
.back-to-lakes h2 {
  font-size: clamp(38px, 3.6vw, 53px);
  letter-spacing: -0.025em;
}
.back-to-lakes p {
  font-size: 16px;
  color: #d9e1d3;
  margin-top: 20px;
  line-height: 1.6;
}
.back-to-lakes .button {
  margin-top: 27px;
  min-height: 48px;
}
.local-help {
  border-left: 1px solid #7a897262;
  padding: 35px 0 35px 52px;
  max-width: 285px;
}
.local-help .eyebrow {
  margin-bottom: 15px;
}
.local-help h3 {
  font-size: 38px;
}
.local-help p {
  font-size: 15px;
  margin: 15px 0 22px;
}
.local-help > a {
  font-size: 24px;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  gap: 25px;
}
.local-help > a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-footer {
  padding: 38px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
}
.footer-top .brand img {
  width: 52px;
  height: 52px;
}
.footer-top .brand > span {
  font-size: 24px;
}
.footer-top .brand small {
  font-size: 8px;
}
.footer-top p {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  margin-right: 60px;
}
.footer-top .text-link {
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.photo-credits {
  margin-top: 19px;
  color: var(--muted);
  font-size: 10px;
}
.photo-credits summary {
  cursor: pointer;
  display: list-item;
  list-style-position: inside;
}
.photo-credits ul {
  padding-left: 17px;
}
.photo-credits p {
  margin-top: 9px;
}
.photo-credits a {
  text-decoration: underline;
}
.hero-copy > .eyebrow,
.hero h1,
.hero-intro,
.hero .button {
  animation: rise-in 0.8s ease both;
}
.hero h1 {
  animation-delay: 0.09s;
}
.hero-intro {
  animation-delay: 0.18s;
}
.hero .button {
  animation-delay: 0.27s;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-right: 80px;
  }
  .hero {
    min-height: 710px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-intro {
    max-width: 410px;
  }
  .hero-footnote {
    font-size: 12px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 610px;
    grid-template-columns: 49% 51%;
  }
  .hero-copy {
    padding: 57px 42px 48px 36px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero-intro {
    font-size: 17px;
  }
  .hero .button {
    font-size: 12px;
    padding: 13px 17px;
    gap: 19px;
  }
  .guide-index nav {
    gap: 22px;
  }
  .index-label {
    font-size: 16px;
  }
  .index-inner {
    gap: 20px;
  }
  .guide-index nav a {
    font-size: 12px;
    gap: 7px;
  }
  .guide-index nav b {
    display: none;
  }
  .stay-feature .card-copy {
    padding: 32px;
  }
  .stay-feature h3 {
    font-size: 39px;
  }
  .stay-feature .image-link {
    min-height: 410px;
  }
  .destination-grid {
    gap: 23px;
  }
  .card-copy h3 {
    font-size: 27px;
  }
  .card-copy p {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .guide-symbol {
    font-size: 50px;
  }
  .guide-link {
    gap: 20px;
    padding-right: 30px;
  }
  .guide-link + .guide-link {
    padding-left: 30px;
  }
  .footer-top p {
    margin-right: 15px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 78px;
    width: calc(100% - 32px);
  }
  .brand img {
    width: 49px;
    height: 49px;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-top: 6px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1px solid #abb5a4;
    width: 42px;
    height: 42px;
    padding: 10px;
  }
  .menu-toggle > span {
    height: 1px;
    width: 20px;
    background: var(--forest);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 13px 25px 25px;
    box-shadow: 0 15px 20px #162d2622;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 38px 25px 35px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.15em;
  }
  .tiny-sun {
    font-size: 23px;
  }
  .hero h1 {
    font-size: clamp(48px, 11.5vw, 76px);
    line-height: 1.05;
    margin: 25px 0 20px;
    letter-spacing: -0.03em;
  }
  .hero-intro {
    font-size: 16px;
    max-width: 390px;
  }
  .hero .button {
    margin-top: 24px;
    font-size: 13px;
    min-height: 49px;
    padding: 13px 18px;
    gap: 23px;
  }
  .hero-footnote {
    display: none;
  }
  .hero-photo {
    height: 290px;
  }
  .hero-photo > img {
    object-position: 50% 69%;
  }
  .hero-photo::after {
    inset: 60% 0 0;
  }
  .photo-caption {
    bottom: 19px;
    left: 25px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .roundel {
    height: 108px;
    width: 108px;
    left: auto;
    right: 20px;
    top: -42px;
    bottom: auto;
  }
  .index-inner {
    width: 100%;
    display: block;
    min-height: 0;
    padding: 0 15px;
  }
  .index-label {
    display: none;
  }
  .guide-index nav {
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    min-height: 65px;
  }
  .guide-index nav::-webkit-scrollbar {
    display: none;
  }
  .guide-index nav a {
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    font-size: 12px;
    min-height: 57px;
  }
  .guide-index nav a > span {
    font-size: 9px;
    line-height: 1.5;
  }
  .guide-index nav a::after {
    bottom: 2px;
  }
  .guide-section {
    padding: 53px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
  }
  .section-heading h2 {
    font-size: 35px;
    line-height: 1.13;
  }
  .section-heading > p {
    margin-top: 16px;
    font-size: 14px;
    max-width: 360px;
  }
  .stay-feature {
    display: block;
  }
  .stay-feature .image-link {
    height: 300px;
    min-height: 0;
  }
  .stay-feature .card-image {
    aspect-ratio: auto;
  }
  .stay-feature .card-copy {
    padding: 30px 25px;
  }
  .stay-feature h3 {
    font-size: 38px;
  }
  .stay-feature .card-copy p {
    font-size: 15px;
    margin-top: 16px;
  }
  .stay-feature .card-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 13px;
  }
  .stay-details {
    font-size: 11px;
    margin: 20px 0;
  }
  .stay-details span + span::before {
    margin: 0 9px;
  }
  .stay-feature small {
    font-size: 10px;
  }
  .section-outdoors {
    padding-top: 0;
    padding-bottom: 58px;
  }
  .section-outdoors .container {
    padding-top: 47px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-outdoors .destination:nth-child(n) {
    padding: 0;
  }
  .section-outdoors .destination .card-image {
    aspect-ratio: 1.3;
  }
  .card-copy {
    padding-top: 21px;
  }
  .card-copy > .eyebrow {
    font-size: 9px;
  }
  .card-copy h3 {
    font-size: 30px;
  }
  .card-copy p {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 13px;
  }
  .card-copy .text-link {
    margin-top: 14px;
  }
  .image-label {
    font-size: 9px;
    bottom: 16px;
    left: 16px;
  }
  .section-days-out {
    padding: 53px 0;
  }
  .section-days-out .destination-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .section-days-out .card-image {
    aspect-ratio: 1.5;
  }
  .section-days-out .card-copy h3 {
    font-size: 31px;
  }
  .section-days-out .card-copy {
    padding-top: 21px;
  }
  .section-local-guides {
    padding-bottom: 29px;
  }
  .section-local-guides .destination-grid {
    grid-template-columns: 1fr;
  }
  .guide-link {
    padding: 27px 0;
    gap: 24px;
    justify-content: space-between;
  }
  .guide-link + .guide-link {
    padding: 27px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .guide-link h3 {
    font-size: 31px;
  }
  .guide-link p {
    font-size: 14px;
  }
  .guide-link .eyebrow {
    font-size: 9px;
  }
  .guide-symbol {
    font-size: 49px;
  }
  .visit-note {
    padding: 0 0 43px;
  }
  .visit-note .container {
    align-items: flex-start;
    gap: 12px;
  }
  .visit-note p {
    font-size: 12px;
  }
  .lakes-inner {
    padding-top: 47px;
    padding-bottom: 43px;
    display: block;
  }
  .back-to-lakes .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .back-to-lakes h2 {
    font-size: 36px;
  }
  .back-to-lakes p {
    font-size: 15px;
  }
  .local-help {
    border-left: none;
    border-top: 1px solid #7a897262;
    padding: 29px 0 0;
    margin-top: 37px;
    max-width: none;
  }
  .local-help h3 {
    font-size: 32px;
  }
  .local-help p {
    font-size: 14px;
    max-width: 310px;
  }
  .local-help > a {
    justify-content: flex-start;
    font-size: 23px;
  }
  .site-footer {
    padding-top: 31px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 23px;
    padding-bottom: 25px;
  }
  .footer-top .brand {
    width: 100%;
  }
  .footer-top p {
    margin: 0;
    flex: 1;
    font-size: 12px;
  }
  .footer-top .text-link {
    font-size: 11px;
  }
  .footer-bottom {
    display: block;
    font-size: 10px;
    padding-top: 17px;
  }
  .footer-bottom > div {
    margin-top: 12px;
    gap: 21px;
  }
  .photo-credits {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}
/* Keep portrait source photographs within the editorial feature frame. */
.stay-feature .image-link {
  position: relative;
  height: auto;
}
.stay-feature .card-image {
  position: absolute;
  inset: 0;
}
@media (max-width: 760px) {
  .stay-feature .image-link {
    height: 300px;
  }
}
.card-image img[src$='/hook.webp'] {
  object-position: 10% center;
}
@media (min-width: 761px) and (max-width: 950px) {
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy {
    padding-right: 30px;
  }
  .index-label {
    display: none;
  }
  .guide-index nav {
    width: 100%;
    justify-content: space-between;
  }
  .stay-feature .card-copy {
    padding: 30px 25px;
  }
  .stay-feature h3 {
    font-size: 34px;
  }
  .stay-details {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
}
