@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --forest: #1f4d3a;
  --forest-dark: #133528;
  --river: #2c6f85;
  --river-dark: #1c5265;
  --clay: #b94f2f;
  --gold: #d8a448;
  --mist: #edf6f3;
  --stone: #f6f3ee;
  --line: #d8e1dc;
  --text: #17231f;
  --muted: #607169;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(23, 35, 31, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--forest-dark);
  white-space: nowrap;
}

.nav__logo span {
  color: var(--clay);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .92rem;
  font-weight: 700;
}

.nav__links a {
  color: #44524d;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--forest-dark);
}

.nav__browse,
.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 22px;
  color: var(--white) !important;
}

.nav__browse {
  background: var(--clay);
}

.nav__cta {
  background: var(--river);
}

.nav__drop {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: -22px;
  display: none;
  min-width: 270px;
  margin: 0;
  padding: 18px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
}

.nav__drop:hover .nav__dropdown,
.nav__drop:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 10px 28px;
  color: var(--text);
  font-size: .92rem;
}

.nav__dropdown a:hover {
  background: var(--mist);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 26, 21, .9) 0%, rgba(13, 26, 21, .58) 46%, rgba(13, 26, 21, .12) 100%),
    linear-gradient(90deg, rgba(13, 26, 21, .46), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 68px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #e2ad4f;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
}

.hero .eyebrow::before {
  content: "";
  width: 92px;
  height: 2px;
  flex: 0 0 92px;
  background: #e2ad4f;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  line-height: 1.04;
  color: var(--white);
}

.hero p {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__address {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(12, 30, 23, .46);
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
}

.button--primary {
  background: var(--clay);
  color: var(--white);
}

.button--secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}

.section {
  padding: 82px 0;
}

.section--mist {
  background: var(--mist);
}

.section--stone {
  background: var(--stone);
}

.section--pool-note {
  background: #f7fbfa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--dog-note {
  background: var(--white);
}

.section--owner-managed {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .75), rgba(255, 255, 255, .75)),
    url("Assets/B Roll 1.png") center / cover;
}

.section--packing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .68)),
    url("Assets/B Roll 2.png") center / cover;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__head h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.14;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.section__head--map {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  column-gap: 42px;
  align-items: end;
  max-width: none;
}

.section__head--map .eyebrow {
  grid-column: 1 / -1;
}

.section__head--map h2 {
  margin: 0;
}

.section__head--map p {
  max-width: 620px;
  font-weight: 600;
  line-height: 1.55;
}

.section__head--map-copy {
  max-width: none;
  margin-bottom: 24px;
}

.section__head--map-copy p {
  max-width: 1120px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 800;
  line-height: 1.48;
}

.map-note {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(23, 35, 31, .06);
}

.map-note h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.map-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.5;
}

.map-note__badge {
  justify-self: end;
  padding: 8px 10px 7px;
  border: 1px solid rgba(23, 35, 31, .38);
  background: #f4a09c;
  color: #111;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

.split__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--line);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.feature-list__item {
  display: block;
  min-height: 100%;
  padding: 18px 18px 20px;
  border-left: 3px solid var(--river);
  background: rgba(255, 255, 255, .72);
  color: #35443f;
}

.feature-list__item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-dark);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.3;
}

.feature-list__item span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.45;
}

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

.section--guides {
  background: #f3eadb;
}

.section--guides .section__head {
  max-width: 820px;
}

.section--guides .section__head h2 {
  max-width: 760px;
}

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

.section--rentals {
  background: var(--mist);
  padding: 72px 0 82px;
}

.rentals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.rentals-head__eyebrow {
  margin: 0 0 6px;
  color: #6f7682;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rentals-head h2 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.rentals-head p {
  margin: 8px 0 0;
  color: #6f7682;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}

.rentals-head__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  margin-bottom: 8px;
  border-radius: 8px;
  padding: 14px 24px;
  background: var(--forest-dark);
  color: var(--white);
  font-size: .93rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.rentals-head__link:hover {
  background: var(--river-dark);
}

.featured-listings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.unit-card {
  overflow: hidden;
  border: 1px solid #cfe5ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
  transition: box-shadow .22s, transform .22s;
}

.unit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23, 35, 31, .1);
}

.unit-card__img {
  position: relative;
  height: 198px;
  overflow: hidden;
  background: var(--line);
}

.unit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.unit-card:hover .unit-card__img img {
  transform: scale(1.04);
}

.unit-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 6px 13px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.unit-card__badge--airbnb {
  background: #ff5a5f;
}

.unit-card__badge--hipcamp {
  background: var(--forest);
}

.unit-card__body {
  padding: 22px 20px 22px;
  border-top: 3px solid var(--river);
  text-align: left;
}

.unit-card__floor {
  margin: 0 0 6px;
  color: var(--river);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.unit-card__title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.25;
}

.unit-card__view {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--mist);
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
}

.unit-card__desc {
  display: block;
  min-height: 0;
  margin: 0 0 18px;
  overflow: hidden;
  color: #6f7682;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.45;
}

.unit-card__link {
  display: block;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--forest-dark);
  color: var(--white);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.unit-card__link:hover {
  background: var(--river-dark);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(23, 35, 31, .07);
}

.amenity-card__image {
  height: 170px;
  background: var(--line);
}

.amenity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card__body {
  padding: 16px 17px 18px;
}

.amenity-card h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(23, 35, 31, .08);
}

.card__image {
  height: 205px;
  background: var(--line);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__label {
  margin: 0 0 6px;
  color: var(--river);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .9rem;
}

.guide-grid .card {
  display: flex;
  min-height: 100%;
}

.guide-grid .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.guide-grid .card p:not(.card__label) {
  flex: 1;
}

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

.text-link {
  color: var(--forest);
  font-size: .88rem;
  font-weight: 800;
}

.band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.band__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .36;
}

.band__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.band h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  line-height: 1.12;
}

.band p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .78);
}

.footer {
  padding: 46px 0 30px;
  background: #14211d;
  color: rgba(255, 255, 255, .68);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer__brand {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
}

.page-hero {
  padding: 76px 0 44px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero--stay {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  background:
    linear-gradient(90deg, rgba(13, 26, 21, .86), rgba(13, 26, 21, .52)),
    url("Assets/Rainbow over pond.jpg") center 58% / cover;
  color: var(--white);
}

.page-hero--rentals {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(430px, 31vw, 590px);
  overflow: hidden;
  padding: 96px 0 68px;
  background:
    linear-gradient(90deg, rgba(19, 53, 40, .88), rgba(19, 53, 40, .58) 48%, rgba(19, 53, 40, .24)),
    url("Assets/Rainbow over pond.jpg") center 69% / cover;
  color: var(--white);
}

.page-hero--rentals .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.page-hero .actions {
  margin-top: 28px;
}

.page-hero--stay p {
  color: rgba(255, 255, 255, .82);
}

.page-hero--rentals p {
  color: rgba(255, 255, 255, .82);
}

.page-hero--rentals .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.page-hero--stay .eyebrow {
  color: #e2ad4f;
}

.stay-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stay-type-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stay-type-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(23, 35, 31, .08);
}

.stay-type-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.stay-type-card > div {
  padding: 22px;
}

.stay-type-card h3 {
  margin: 0 0 9px;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.16;
}

.stay-type-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.guide-columns {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.guide-columns--reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
}

.guide-columns h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.14;
}

.guide-columns p {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 600;
}

.guide-checklist {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(23, 35, 31, .08);
}

.guide-checklist h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.16;
}

.guide-checklist ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 600;
}

.guide-checklist li + li {
  margin-top: 10px;
}

.guide-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}

.season-callout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 18px;
}

.season-callout span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border-left: 4px solid var(--gold);
  background: rgba(216, 164, 72, .14);
  color: var(--forest-dark);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.25;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(23, 35, 31, .06);
}

.faq-list h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  line-height: 1.18;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

.availability {
  padding: 24px 0;
  background: var(--river-dark);
}

.availability__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  align-items: end;
  gap: 14px;
}

.availability__copy {
  display: grid;
  gap: 4px;
  color: var(--white);
}

.availability__copy strong {
  font-size: 1.02rem;
}

.availability__copy span {
  max-width: 560px;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  line-height: 1.45;
}

.availability__note {
  grid-column: 1 / -1;
  min-height: 1.2em;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .84rem;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 5px;
}

.field label {
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input {
  min-height: 42px;
  width: 170px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.rentals-intro {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 1fr);
  gap: 34px;
  align-items: end;
  padding: 46px 0 8px;
}

.rentals-intro h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.rentals-intro p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 12px;
}

.filter-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 18px;
  color: #4c5b56;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding-bottom: 74px;
}

.listing-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.map-reference {
  display: block;
  margin: 10px 0 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  box-shadow: 0 6px 24px rgba(23, 35, 31, .06);
}

.map-reference__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 12px;
}

.map-reference__copy .eyebrow {
  margin: 0;
}

.map-reference__copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.45;
}

.map-reference__frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-reference__frame img {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

.listing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(23, 35, 31, .08);
}

.listing-card--available {
  border-color: rgba(31, 77, 58, .45);
  box-shadow: 0 8px 28px rgba(31, 77, 58, .14);
}

.listing-card__image {
  position: relative;
  height: 220px;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 5px 11px;
  background: var(--forest);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
}

.badge--airbnb {
  background: #ff5a5f;
}

.badge--hipcamp {
  background: var(--forest);
}

.badge--vrbo {
  background: #356f82;
}

.badge--owner {
  background: var(--clay);
}

.listing-lot-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 5px 9px 4px;
  border: 1px solid rgba(23, 35, 31, .38);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 18px rgba(23, 35, 31, .18);
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.listing-lot-badge--red {
  background: #f4a09c;
}

.listing-lot-badge--yellow {
  background: #f3e166;
}

.listing-lot-badge--green {
  background: #8bd49a;
}

.listing-lot-badge--blue {
  background: #77c8e9;
}

.listing-lot-badge--orange {
  background: #f1ae72;
}

.listing-lot-badge--neutral {
  background: rgba(255, 255, 255, .94);
}

.availability-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--forest);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.listing-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.listing-card__meta {
  margin: 0 0 5px;
  color: var(--river);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.listing-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.listing-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .89rem;
  font-weight: 600;
}

.listing-card__description {
  min-height: 96px;
}

.listing-card__details {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  margin-bottom: 18px;
  overflow: hidden;
}

.listing-card__details span {
  flex: 0 1 auto;
  min-width: 0;
  border-radius: 999px;
  background: var(--mist);
  padding: 4px 8px;
  overflow: hidden;
  color: #3f504a;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-card__calendar {
  margin-top: auto !important;
  color: var(--river) !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.listing-card__button {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .nav__inner {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    width: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .nav__links li {
    flex: 0 0 auto;
  }

  .nav__dropdown {
    top: calc(100% + 10px);
  }

  .hero {
    min-height: 76vh;
  }

  .split,
  .card-grid,
  .featured-listings,
  .amenity-grid,
  .stay-type-grid,
  .guide-columns,
  .guide-columns--reverse,
  .faq-list,
  .footer__grid,
  .map-reference {
    grid-template-columns: 1fr;
  }

  .map-reference__copy {
    grid-template-columns: 1fr;
  }

  .section__head--map {
    grid-template-columns: 1fr;
  }

  .map-note {
    grid-template-columns: 1fr;
  }

  .map-note__badge {
    justify-self: start;
  }

  .map-reference {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .hero__content {
    padding-bottom: 44px;
  }

  .section {
    padding: 56px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .season-callout {
    grid-template-columns: 1fr;
  }

  .field input {
    width: 142px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
