:root {
  --navy: #071f36;
  --blue: #123f64;
  --red: #a93732;
  --red2: #c44b42;
  --cream: #f5efe3;
  --paper: #fffdf8;
  --gold: #d6a95f;
  --ink: #11283a;
  --muted: #60707a;
  --line: rgba(17, 40, 58, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 "DM Sans",
    system-ui,
    sans-serif;
}
a {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.serif {
  font-family: "Playfair Display", Georgia, serif;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--red2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "★";
  color: var(--gold);
  font-size: 0.72rem;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(78, 20, 17, 0.18);
  transition: 0.2s;
}
.button:hover {
  background: var(--red2);
  transform: translateY(-2px);
}
.button.light {
  background: #fff;
  color: var(--navy);
}
.button.outline {
  background: transparent;
  border: 1px solid currentColor;
  box-shadow: none;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
nav {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}
.brand-mark {
  width: 49px;
  height: 49px;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.brand-mark circle {
  fill: rgba(7, 31, 54, 0.84);
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
}
.brand-star {
  fill: #f6e3bd;
}
.brand-wave {
  fill: none;
  stroke: #fff;
  stroke-width: 2.3;
  stroke-linecap: round;
}
.brand-copy strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.13rem;
  letter-spacing: 0.055em;
  line-height: 1;
}
.brand-copy strong i {
  color: #f0d6b1;
  font-weight: 600;
}
.brand-copy small {
  display: block;
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}
.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
}
.navlinks > a:not(.button) {
  font-size: 0.9rem;
  text-decoration: none;
}
.navlinks .button {
  min-height: 41px;
  padding: 0 17px;
}
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.hero {
  min-height: 760px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 35, 0.89),
      rgba(4, 20, 35, 0.38) 70%,
      rgba(4, 20, 35, 0.1)
    ),
    var(--hero) center/cover;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(transparent, rgba(4, 20, 35, 0.45));
}
.hero-frames,
.hero-frame,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-frame {
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: lakeReel 21s infinite;
  transform: scale(1.04);
}
.frame-lake {
  background-image: url("https://uc.orez.io/i/785f310a3d9040f89710c452a8f93f1f-Large");
  animation-delay: 0s;
}
.frame-gather {
  background-image: url("https://uc.orez.io/i/83e9b9e5de3d41509b201dcf01de4278-Large");
  animation-delay: 7s;
}
.frame-unwind {
  background-image: url("https://uc.orez.io/i/b34b45bba58f40b3a2e7dda7f2c84bc8-Large");
  animation-delay: 14s;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 35, 0.91) 0%,
      rgba(4, 20, 35, 0.62) 46%,
      rgba(4, 20, 35, 0.19) 78%
    ),
    linear-gradient(0deg, rgba(4, 20, 35, 0.5), transparent 46%);
}
@keyframes lakeReel {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  5%,
  29% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
  0%,
  34% {
    transform: scale(1.13);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 175px 0 85px;
}
.hero h1 {
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
  margin: 22px 0 27px;
  max-width: 880px;
}
.hero h1 em {
  color: #f0d6b1;
}
.hero p {
  font-size: 1.16rem;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
}
.hero .eyebrow {
  color: #fff;
}
.lake-day-line {
  display: flex;
  gap: 9px 19px;
  flex-wrap: wrap;
  margin: 0 0 31px;
  color: #f6e3bd;
  font:
    600 italic 1.08rem "Playfair Display",
    serif;
}
.lake-day-line span:not(:last-child):after {
  content: "★";
  font:
    normal 0.55rem "DM Sans",
    sans-serif;
  color: var(--gold);
  margin-left: 19px;
  vertical-align: middle;
}
.reel-note {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 26px;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.74);
  writing-mode: vertical-rl;
}
.reel-note span {
  display: inline-block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.55);
  margin: 0 auto 11px;
}
.ribbon {
  background: var(--red);
  color: #fff;
}
.ribbon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ribbon-item {
  padding: 22px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  font-size: 0.88rem;
}
.ribbon-item:last-child {
  border: 0;
}
.ribbon-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}
section {
  padding: 100px 0;
}
.split-head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: end;
}
.split-head h2,
.section-title {
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 14px 0;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
}
.homes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-block: 1px solid var(--line);
}
.home {
  padding: 46px 46px 50px 0;
}
.home + .home {
  border-left: 1px solid var(--line);
  padding-left: 46px;
  padding-right: 0;
}
.home-img {
  aspect-ratio: 1.3;
  position: relative;
  overflow: hidden;
  display: block;
  color: #fff;
}
.home-img img {
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}
.home-img:hover img,
.home-img:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.83);
}
.home-img:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  padding: 8px 13px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.image-link-cue {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  background: rgba(7, 31, 54, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.25s;
}
.home-img:hover .image-link-cue,
.home-img:focus-visible .image-link-cue {
  transform: none;
  opacity: 1;
}
.home h3 {
  font-size: 2.35rem;
  line-height: 1.05;
  margin: 27px 0 8px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 17px 0;
  font-weight: 800;
  font-size: 0.88rem;
}
.home p {
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  gap: 7px;
  text-decoration: none;
  color: var(--red);
  font-weight: 800;
}
.text-link:hover {
  gap: 11px;
}
.memory {
  background: var(--cream);
}
.memory-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 75px;
  align-items: center;
}
.memory-photo {
  height: 600px;
  position: relative;
}
.memory-card {
  position: absolute;
  right: -25px;
  bottom: 35px;
  background: #fff;
  padding: 26px;
  max-width: 280px;
  box-shadow: 0 20px 60px rgba(7, 31, 54, 0.17);
}
.memory-card strong {
  font:
    1.35rem/1.25 "Playfair Display",
    serif;
  display: block;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 30px;
}
.check {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.check b {
  display: block;
}
.check span {
  font-size: 0.87rem;
  color: var(--muted);
}
.nearby {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.nearby-four {
  grid-template-columns: repeat(4, 1fr);
}
.near {
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.near:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(7, 31, 54, 0.1);
}
.near strong {
  font:
    3rem/1 "Playfair Display",
    serif;
  color: var(--red);
}
.near h3 {
  margin: 0;
  font-size: 1.16rem;
}
.near p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.marina-feature {
  background: var(--cream);
}
.marina-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: center;
}
.marina-art img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  box-shadow: 20px 20px 0 var(--gold);
}
.tip-box {
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin: 28px 0;
  background: #fff;
}
.tip-box b,
.tip-box span {
  display: block;
}
.tip-box span {
  margin-top: 5px;
  color: var(--muted);
}
.marina-grid .actions {
  align-items: center;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  padding: 36px;
  border: 1px solid var(--line);
  background: #fff;
}
.feature-card-wide {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
}
.feature-card-wide p {
  color: rgba(255, 255, 255, 0.76);
}
.feature-card h3 {
  font-size: 2rem;
  margin: 8px 0 12px;
}
.feature-card p {
  margin: 0 0 18px;
}
.card-number {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mini-plan {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}
.mini-plan div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mini-plan span {
  color: var(--muted);
}
.award-note {
  padding: 17px 20px;
  margin: 24px 0;
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
}
.award-note a {
  color: var(--red);
}
.choose-day {
  background: var(--cream);
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.day-grid article,
.day-card {
  padding: 28px;
  background: #fff;
  border-top: 4px solid var(--red);
}
.day-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(7, 31, 54, 0.1);
}
.day-grid span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.day-grid h3 {
  margin: 12px 0 8px;
}
.day-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}
.day-card b {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-size: 0.86rem;
}
.dogwood-feature {
  background: #173e35;
  color: #fff;
}
.dogwood-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.dogwood-feature .eyebrow {
  color: var(--gold);
}
.dogwood-feature .lead {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}
.timeline {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.timeline article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 35px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.day-label {
  color: var(--red);
  font:
    600 2rem/1 "Playfair Display",
    serif;
}
.timeline h3 {
  margin: 0 0 8px;
}
.timeline p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}
.trip-plan {
  background: var(--paper);
}
.trip-plan-link {
  margin-top: 28px;
}
.season-guide {
  background: var(--navy);
  color: #fff;
}
.season-guide .eyebrow {
  color: var(--gold);
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.season-grid article {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.season-grid article:last-child {
  border-right: 0;
}
.season-grid b {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}
.season-grid h3 {
  margin: 12px 0 8px;
}
.season-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}
.guide-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}
.quote {
  background: var(--navy);
  color: #fff;
  padding: 68px;
}
.quote blockquote {
  font:
    clamp(1.7rem, 3vw, 2.55rem) / 1.3 "Playfair Display",
    serif;
  margin: 12px 0;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
}
.quote cite {
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
}
.page-hero {
  min-height: 650px;
}
.page-hero h1 {
  max-width: 760px;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.details h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.stat {
  padding: 23px;
  border-bottom: 1px solid var(--line);
}
.stat:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.stat strong {
  font:
    2rem "Playfair Display",
    serif;
  display: block;
  color: var(--red);
}
.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
  margin-top: 55px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
}
.gallery figure:first-child {
  grid-row: 1/3;
}
.amenities {
  background: var(--cream);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.amenity {
  background: #fff;
  padding: 23px;
  border-top: 3px solid var(--red);
}
.amenity b {
  display: block;
}
.amenity span {
  font-size: 0.88rem;
  color: var(--muted);
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
  align-items: end;
  margin-top: 82px;
}
.gallery-head h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin: 12px 0 0;
}
.gallery-head p {
  color: var(--muted);
  margin: 0;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 34px;
}
.photo-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}
.photo-gallery figure:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 3px;
}
.photo-gallery figure.wide {
  grid-column: span 2;
}
.photo-gallery figure.tall {
  grid-row: span 2;
}
.photo-gallery img {
  transition: transform 0.55s ease;
}
.photo-gallery figure:hover img {
  transform: scale(1.035);
}
.photo-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 16px 13px;
  background: linear-gradient(transparent, rgba(4, 20, 35, 0.8));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-cta {
  text-align: right;
  margin-top: 22px;
}
.gallery-open {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font:
    800 1rem "DM Sans",
    sans-serif;
}
.lightbox {
  width: min(1120px, 94vw);
  height: min(88vh, 820px);
  padding: 0;
  border: 0;
  background: rgba(4, 20, 35, 0.98);
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}
.lightbox::backdrop {
  background: rgba(3, 13, 22, 0.86);
  backdrop-filter: blur(5px);
}
.lightbox figure {
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 38px 80px 58px;
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(88vh - 105px);
  object-fit: contain;
}
.lightbox figcaption {
  position: absolute;
  bottom: 20px;
  left: 70px;
  right: 70px;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  top: 14px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 70px;
  font-size: 3rem;
}
.lightbox-prev {
  left: 12px;
}
.lightbox-next {
  right: 12px;
}
.lightbox-count {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
}
.amenities {
  background: var(--cream);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.amenity {
  background: #fff;
  padding: 23px;
  border-top: 3px solid var(--red);
}
.amenity b {
  display: block;
}
.amenity span {
  font-size: 0.88rem;
  color: var(--muted);
}
.compare {
  background: var(--navy);
  color: #fff;
}
.compare .section-title {
  max-width: 750px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 45px;
}
.compare-card {
  background: #fff;
  color: var(--ink);
  padding: 35px;
}
.compare-card h3 {
  font:
    2rem "Playfair Display",
    serif;
  margin-bottom: 8px;
}
.compare-card ul {
  padding-left: 18px;
  color: var(--muted);
}
.art-section {
  background: #e9e0d1;
}
.art-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: end;
}
.poster-wall {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 52px;
}
.poster {
  margin: 0;
  padding: 9px;
  background: #f7f0e4;
  border: 8px solid #5a3828;
  box-shadow: 0 18px 35px rgba(40, 28, 20, 0.2);
  transform: rotate(1deg);
}
.poster:nth-child(even) {
  transform: rotate(-1deg);
}
.poster-feature {
  border-color: var(--navy);
  transform: translateY(-12px) rotate(-0.4deg);
}
.poster img {
  aspect-ratio: 2/3;
  object-fit: cover;
}
.poster figcaption {
  text-align: center;
  padding: 10px 3px 2px;
  font:
    600 0.8rem "Playfair Display",
    serif;
  color: #5a3828;
}
.art-note {
  text-align: center;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.sdc-story {
  background: var(--paper);
}
.sdc-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
  align-items: center;
}
.sdc-poster {
  padding: 12px;
  background: #f7f0e4;
  border: 10px solid var(--navy);
  box-shadow: 0 22px 55px rgba(7, 31, 54, 0.2);
  transform: rotate(-1deg);
}
.sdc-poster img {
  aspect-ratio: 2/3;
  object-fit: cover;
}
.legal-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 28px;
  max-width: 600px;
}
.final {
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(5, 26, 45, 0.8), rgba(5, 26, 45, 0.86)),
    var(--final) center/cover;
  padding: 115px 0;
}
.final h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
  max-width: 850px;
  margin: 14px auto 22px;
}
.final p {
  max-width: 610px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
}
footer {
  background: #041724;
  color: rgba(255, 255, 255, 0.65);
  padding: 32px 0;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 0.82rem;
}
.foot a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .nav {
    height: 72px;
  }
  .navlinks {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 3px;
    background: rgba(7, 31, 54, 0.72);
    color: #fff;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 800;
  }
  .mobile-menu summary:before {
    content: "☰";
    margin-right: 8px;
    font-size: 1rem;
  }
  .mobile-menu[open] summary:before {
    content: "×";
    font-size: 1.35rem;
    line-height: 0;
  }
  .mobile-menu-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: min(350px, calc(100vw - 28px));
    padding: 10px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  }
  .mobile-menu-panel a {
    display: block;
    padding: 13px 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .mobile-menu-panel .mobile-menu-cta {
    margin-top: 9px;
    border: 0;
    background: var(--red);
    text-align: center;
  }
  .brand-copy strong {
    font-size: 0.96rem;
  }
  .hero {
    min-height: 700px;
    background-position: 58% center;
  }
  .hero-inner {
    padding: 145px 0 78px;
  }
  .ribbon-row {
    grid-template-columns: 1fr 1fr;
  }
  .ribbon-item:nth-child(2) {
    border-right: 0;
  }
  .ribbon-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .split-head,
  .memory-grid,
  .details {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .homes {
    grid-template-columns: 1fr;
  }
  .home,
  .home + .home {
    padding: 38px 0;
    border-left: 0;
  }
  .home + .home {
    border-top: 1px solid var(--line);
  }
  .memory-photo {
    height: 480px;
  }
  .memory-card {
    right: 12px;
  }
  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  .day-label {
    font-size: 1.55rem;
  }
  .nearby,
  .amenity-grid,
  .marina-grid,
  .feature-cards,
  .day-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }
  .dogwood-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-card-wide {
    grid-column: auto;
  }
  .marina-grid {
    gap: 45px;
  }
  .marina-art img {
    max-height: 560px;
  }
  .season-grid article,
  .season-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .season-grid article:last-child {
    border-bottom: 0;
  }
  .guide-link {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote {
    padding: 40px 28px;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 330px 220px 220px;
  }
  .gallery figure:first-child {
    grid-row: auto;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .foot {
    display: block;
    text-align: center;
  }
  .foot div + div {
    margin-top: 8px;
  }
  section {
    padding: 78px 0;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.35rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .button {
    width: 100%;
  }
  .navlinks .button {
    width: auto;
  }
  .ribbon-item {
    padding: 18px 8px;
  }
  .memory-photo {
    height: 390px;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .stat:nth-child(odd) {
    border-right: 0;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .gallery {
    grid-template-rows: 260px 180px 180px;
  }
}
@media (max-width: 800px) {
  .brand-mark {
    width: 43px;
    height: 43px;
  }
  .hero-frame {
    background-position: 58% center;
  }
  .hero-reel .hero-inner {
    padding-bottom: 72px;
  }
  .reel-note {
    display: none;
  }
}
@media (max-width: 800px) {
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 58px;
  }
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .photo-gallery figure.wide {
    grid-column: span 2;
  }
  .gallery-cta {
    text-align: left;
  }
}
@media (max-width: 800px) {
  .art-intro,
  .sdc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .poster-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .poster-feature {
    grid-column: span 2;
    width: 55%;
    justify-self: center;
  }
  .sdc-poster {
    width: min(75%, 420px);
    justify-self: center;
  }
}
@media (max-width: 480px) {
  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }
  .photo-gallery figure.wide {
    grid-column: auto;
  }
  .photo-gallery figure.tall {
    grid-row: auto;
  }
  .gallery-cta .text-link {
    line-height: 1.35;
  }
}
@media (max-width: 480px) {
  .poster-wall {
    grid-template-columns: 1fr 1fr;
  }
  .poster-feature {
    width: 72%;
  }
  .poster {
    border-width: 6px;
    padding: 6px;
  }
  .poster figcaption {
    font-size: 0.68rem;
  }
}
@media (max-width: 600px) {
  .lightbox {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
  }
  .lightbox figure {
    padding: 55px 15px 75px;
  }
  .lightbox img {
    max-height: calc(100vh - 140px);
  }
  .lightbox-arrow {
    top: auto;
    bottom: 12px;
    width: 46px;
    height: 46px;
    font-size: 2.3rem;
  }
  .lightbox-prev {
    left: 14px;
  }
  .lightbox-next {
    right: 14px;
  }
  .lightbox figcaption {
    bottom: 26px;
    left: 70px;
    right: 70px;
    font-size: 0.7rem;
  }
  .lightbox-count {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-frame {
    animation: none;
    transform: none;
  }
  .frame-lake {
    opacity: 1;
  }
  .frame-gather,
  .frame-unwind {
    display: none;
  }
}

.reviews {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.reviews-head h2 {
  margin: 10px 0 4px;
}
.reviews-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.reviews .eyebrow {
  color: #fff;
}
.review-controls {
  display: flex;
  gap: 9px;
}
.review-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}
.review-controls button:hover,
.review-controls button:focus-visible {
  background: #fff;
  color: var(--navy);
}
.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 18px;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 min(390px, 82vw);
  min-height: 285px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.review-card blockquote {
  font:
    1.22rem/1.55 "Playfair Display",
    serif;
  margin: 20px 0 28px;
}
.review-card cite {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.review-source {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}
.reviews .stars {
  font-size: 0.78rem;
}
.page-hero {
  background-position: center 62%;
}
.branson-page .page-hero {
  min-height: 520px;
}
.branson-page .hero-inner {
  padding: 135px 0 52px;
}
.branson-page .page-hero h1 {
  font-size: clamp(3.2rem, 5.8vw, 5.35rem);
  margin: 16px 0 18px;
}
.branson-page main > section {
  padding: 72px 0;
}
.branson-page .split-head {
  gap: 54px;
}
.branson-page .split-head h2,
.branson-page .section-title {
  font-size: clamp(2.45rem, 3.8vw, 4rem);
}
.branson-page .nearby {
  margin-top: 30px;
  gap: 13px;
}
.branson-page .near {
  min-height: 190px;
  padding: 22px;
}
.branson-page .near strong {
  font-size: 2.35rem;
}
.branson-page .marina-grid,
.branson-page .sdc-grid {
  gap: 54px;
}
.branson-page .marina-art img {
  max-height: 520px;
}
.branson-page .feature-cards,
.branson-page .day-grid,
.branson-page .season-grid,
.branson-page .timeline {
  margin-top: 32px;
}
.branson-page .feature-card {
  padding: 28px;
}
.branson-page .day-card {
  padding: 23px;
}
.branson-page .timeline article {
  padding: 24px 0;
}
.branson-page .final {
  padding: 80px 0;
}
@media (max-width: 800px) {
  .reviews-head {
    align-items: start;
  }
  .review-card {
    min-height: 270px;
    padding: 25px;
  }
  .page-hero {
    background-position: center;
  }
  .branson-page .page-hero {
    min-height: 600px;
  }
  .branson-page .hero-inner {
    padding: 130px 0 54px;
  }
  .branson-page main > section {
    padding: 58px 0;
  }
  .branson-page .near {
    min-height: 165px;
  }
}
@media (hover: none) {
  .image-link-cue {
    transform: none;
    opacity: 1;
  }
}
