:root {
  --lake: #1f6f8b;
  --lake-dark: #15556d;
  --pine: #2f5d3a;
  --wood: #b86a2c;
  --ink: #1f2a2e;
  --muted: #64767b;
  --mist: #d8eef7;
  --paper: #f6faf8;
  --card: #ffffff;
  --line: #d8eef7;
  --shadow: 0 14px 34px rgba(31, 42, 46, .12);
  --font-heading: "PT Serif", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
}

a {
  color: var(--lake);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--wood);
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  background: var(--wood);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  top: 12px;
}

.grid-container {
  max-width: 1180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lake);
  border-bottom: 1px solid rgba(31, 111, 139, .16);
  box-shadow: 0 8px 28px rgba(31, 42, 46, .08);
}

.contact-strip {
  background: var(--paper);
  color: var(--muted);
  font-size: .82rem;
}

.contact-strip__inner,
.contact-strip__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-strip__inner {
  min-height: 34px;
}

.contact-strip__brand,
.footer-brand,
.brand-mark__text {
  color: var(--lake-dark);
  font-family: var(--font-heading);
  font-weight: 700;
}

.site-topbar,
.top-bar.site-topbar {
  background: var(--lake);
  padding: 8px max(16px, calc((100vw - 1180px) / 2));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.brand-mark:hover,
.brand-mark:focus {
  color: #fff;
}

.brand-mark__symbol {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--wood);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.brand-mark__text {
  color: #fff;
  font-size: 1.15rem;
}

.site-menu {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
  max-width: 880px;
}

.site-menu > li {
  position: relative;
}

.site-menu a {
  color: #fff;
  border-radius: 6px;
  padding: 8px 9px;
  font-size: .82rem;
  font-weight: 600;
}

.site-menu a:hover,
.site-menu a:focus {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.site-submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 80;
  min-width: 220px;
  padding: 8px;
  background: var(--lake);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(25, 52, 35, .22);
}

.site-menu > li:hover > .site-submenu,
.site-menu > li:focus-within > .site-submenu {
  display: block;
}

.site-submenu a {
  display: block;
  white-space: nowrap;
}

.site-main {
  min-height: 60vh;
}

.home-hero,
.page-hero {
  position: relative;
  background-color: var(--lake);
  background-image: linear-gradient(100deg, rgba(21, 85, 109, .94), rgba(47, 93, 58, .68)), url("/assets/images/img_7614269c49f9.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.home-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.page-hero .grid-container {
  padding-top: 58px;
  padding-bottom: 58px;
}

.home-hero__content {
  max-width: 760px;
  padding: 72px 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.16;
}

.home-hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 2.65rem;
}

.home-hero p,
.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.primary {
  background: var(--wood);
  border-color: var(--wood);
}

.button.secondary {
  background: var(--pine);
  border-color: var(--pine);
}

.button.hollow.light {
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
}

.section {
  padding: 58px 0;
}

.section-intro {
  background: #fff;
}

.feature-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-panel,
.media-panel,
.listing-panel,
.side-panel,
.source-links,
.content-toc,
.category-intro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(31, 42, 46, .08);
}

.article-panel,
.media-panel,
.listing-panel,
.category-intro {
  padding: clamp(24px, 4vw, 44px);
}

.site-prose h2,
.site-prose h3,
.site-prose h4 {
  color: var(--lake-dark);
  margin-top: 1.45em;
}

.site-prose h1:first-child,
.site-prose h2:first-child,
.site-prose h3:first-child {
  margin-top: 0;
}

.site-prose p {
  color: var(--ink);
}

.site-figure {
  margin: 24px 0;
}

.site-figure img,
.site-gallery__item img,
.resort-card__media img,
.content-card__media img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.site-figure figcaption,
.site-gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.site-gallery {
  margin-top: 18px;
  margin-bottom: 18px;
}

.site-gallery__item {
  margin-bottom: 20px;
}

.site-gallery__item img {
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 22px rgba(31, 42, 46, .1);
}

.resort-grid {
  align-items: stretch;
}

.resort-card,
.content-card {
  height: 100%;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 42, 46, .08);
}

.resort-card__media img,
.content-card__media img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.resort-card__body,
.content-card__body {
  padding: 20px;
}

.resort-card h2,
.content-card h2 {
  margin: 0 0 10px;
  color: var(--lake-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.resort-card p,
.content-card p {
  color: var(--muted);
  font-size: .95rem;
}

.side-panel {
  padding: 18px;
  position: sticky;
  top: 118px;
}

.side-panel a {
  border-radius: 6px;
  color: var(--lake-dark);
  font-weight: 600;
}

.source-links,
.content-toc {
  margin-top: 24px;
  padding: 18px 22px;
}

.source-links ul,
.content-toc ul,
.footer-links {
  margin: 0;
  list-style: none;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
}

th {
  background: var(--mist);
}

blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--wood);
  background: #fff8f2;
}

.site-footer {
  padding: 44px 0;
  background: var(--pine);
  color: rgba(255, 255, 255, .86);
}

.site-footer a,
.footer-brand {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, .78);
}

.footer-links li + li {
  margin-top: 7px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
}

@media (max-width: 900px) {
  .site-topbar,
  .top-bar.site-topbar {
    display: block;
  }

  .top-bar-right {
    margin-top: 8px;
  }

  .site-menu {
    justify-content: flex-start;
  }

  .site-menu a {
    font-size: .78rem;
  }

  .site-submenu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 2.05rem;
  }

  .side-panel {
    position: static;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .contact-strip__inner,
  .contact-strip__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 7px 0;
  }

  .home-hero {
    min-height: 420px;
  }

  .home-hero__content {
    padding: 54px 0;
  }

  .section {
    padding: 42px 0;
  }

  .article-panel,
  .media-panel,
  .listing-panel,
  .category-intro {
    padding: 22px;
  }
}
