.postcard-home {
  --paper: #f5f0e7;
  --paper-soft: #fff9ee;
  --ink: #0f2f4f;
  --blue-fill: #6f92bf;
  --coral: #fb8079;
  --coral-deep: #d96f68;
  --accent: var(--coral);
  --accent-soft: #f4aaa4;
  --lake: #7297d0;
  --violet: #524979;
  --menu-bar-height: 54px;
  --menu-underlay-height: 16px;
  background:
    radial-gradient(circle at 18% 4%, rgba(250, 123, 115, 0.14), transparent 22rem),
    radial-gradient(circle at 82% 8%, rgba(114, 151, 208, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 0%, rgba(82, 73, 121, 0.08), transparent 28rem),
    repeating-linear-gradient(0deg, rgba(15, 47, 79, 0.025) 0 1px, transparent 1px 9px),
    var(--paper);
  color: var(--ink);
}

.postcard-topbar {
  background: rgba(245, 240, 231, 0.68);
  border-bottom: 1px solid rgba(15, 47, 79, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(0.82);
}

.postcard-nav {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: 294px;
  padding: 0.75rem 1.25rem 0.95rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.45rem 1rem;
}

.postcard-nav .branding {
  grid-column: 2;
  justify-self: center;
}

.postcard-nav .branding img {
  height: 202px;
  max-width: 455px;
  filter: drop-shadow(0 5px 10px rgba(15, 47, 79, 0.12));
}

.postcard-menu {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.postcard-links .nav-booking,
.postcard-actions .button-primary,
.lake-card .button-primary {
  min-height: 42px;
  padding-inline: 1.35rem;
  background: var(--coral);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.postcard-links .nav-booking:hover,
.postcard-actions .button-primary:hover,
.lake-card .button-primary:hover {
  background: var(--violet);
  color: var(--paper-soft);
}

.postcard-nav .nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.postcard-nav .nav-toggle span {
  width: 34px;
  height: 3px;
  background: var(--coral-deep);
}

.postcard-links {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: stretch;
  display: flex;
  height: var(--menu-bar-height);
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.72rem 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.postcard-links .nav-booking {
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 0;
  transform: translateY(-50%);
}

.postcard-links::before {
  content: "";
  display: none;
}

.postcard-nav.is-menu-stuck::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  height: var(--menu-bar-height);
}

.postcard-nav.is-menu-stuck .postcard-links {
  position: fixed;
  z-index: 70;
  background: rgba(245, 240, 231, 0.92);
  backdrop-filter: blur(18px) saturate(0.86);
}

.postcard-nav.is-menu-stuck .postcard-links {
  top: 0;
  left: 0;
  height: var(--menu-bar-height);
  width: 100%;
  border-bottom: 1px solid rgba(15, 47, 79, 0.12);
  box-shadow: 0 8px 24px rgba(15, 47, 79, 0.08);
}

.postcard-nav.is-menu-stuck .postcard-links::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--menu-underlay-height);
  background: rgba(245, 240, 231, 0.9);
  border-bottom: 1px solid rgba(15, 47, 79, 0.08);
  pointer-events: none;
}

.postcard-nav.is-menu-stuck .postcard-links .nav-booking {
  right: max(1.25rem, calc((100vw - 1280px) / 2 + 1.25rem));
}

.postcard-nav.is-menu-stuck .postcard-links::before {
  content: "No Wake Inn";
  position: absolute;
  top: 50%;
  left: max(1.25rem, calc((100vw - 1280px) / 2 + 1.25rem));
  display: block;
  color: rgba(15, 47, 79, calc(0.42 + (0.52 * var(--sticky-wordmark-strength, 0))));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  opacity: calc(0.42 + (0.58 * var(--sticky-wordmark-strength, 0)));
  text-shadow: 0.035em 0.035em 0 rgba(251, 128, 121, calc(0.16 + (0.48 * var(--sticky-wordmark-strength, 0))));
  transform: translateY(-50%);
  white-space: nowrap;
}

.postcard-topbar.has-stuck-menu {
  padding-bottom: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.postcard-links.is-open {
  display: flex;
}

.postcard-hero {
  min-height: calc(100svh - 132px);
  display: grid;
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.6rem) 1.25rem clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
}

.postcard-hero-content {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.postcard-hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 1.2rem;
  color: var(--coral-deep);
  font-size: clamp(0.68rem, 0.95vw, 0.9rem);
  font-weight: 900;
  letter-spacing: clamp(0.12em, 0.8vw, 0.34em);
  text-transform: uppercase;
  white-space: nowrap;
}

.postcard-hero-copy h2 {
  margin: 0 0 1rem;
  max-width: 10ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7.35vw, 8.35rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow:
    0.04em 0.045em 0 var(--coral),
    -0.018em 0.018em 0 var(--blue-fill);
}

.postcard-hero-copy p:not(.kicker) {
  max-width: 590px;
  margin: 0 0 1.45rem;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 750;
  line-height: 1.45;
}

.postcard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.postcard-actions .button-secondary {
  background: rgba(248, 240, 221, 0.76);
}

.postcard-hero-image {
  position: relative;
  padding: 0.75rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 18px 18px 0 rgba(250, 123, 115, 0.18);
  transform: rotate(0.6deg);
}

.postcard-hero-image::before {
  content: "Wish you were here";
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1.1rem;
  width: 190px;
  padding: 0.48rem 0.8rem;
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.38), transparent 12%, transparent 88%, rgba(255, 249, 238, 0.45)),
    rgba(255, 239, 198, 0.96);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-5deg);
  border: 1px solid rgba(15, 47, 79, 0.12);
  box-shadow: 0 7px 14px rgba(15, 47, 79, 0.2);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
}

.postcard-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
}

.postcard-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 3px solid var(--ink);
  background: var(--blue-fill);
  color: var(--paper-soft);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.postcard-strip span {
  padding: 0.95rem 0.7rem;
  border-right: 2px solid rgba(200, 93, 86, 0.38);
}

.postcard-strip span:last-child {
  border-right: 0;
}

.postcard-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 6rem 1.25rem;
}

.postcard-intro {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.postcard-copy .kicker,
.lake-card .kicker {
  margin-bottom: 1rem;
  letter-spacing: 0.22em;
}

.postcard-copy h2,
.lake-card h2 {
  margin: 0 0 1rem;
  max-width: 760px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  font-style: italic;
  line-height: 0.93;
}

.postcard-copy p,
.lake-card p {
  max-width: 620px;
  margin: 0 0 1.3rem;
  color: #465f72;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 4px solid var(--coral);
}

.postcard-card {
  margin: 0;
  padding: 0.75rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 14px 14px 0 rgba(82, 73, 121, 0.12);
}

.postcard-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.postcard-card figcaption {
  padding: 0.8rem 0.2rem 0.1rem;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.tilted-card {
  transform: rotate(-0.7deg);
}

.postcard-feature-band {
  background: var(--ink);
  color: var(--paper-soft);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid article {
  min-height: 240px;
  padding: 1.25rem;
  border: 1px solid rgba(248, 240, 221, 0.2);
  display: grid;
  align-content: end;
}

.feature-grid span {
  color: var(--accent-soft);
  font-weight: 950;
}

.feature-grid h3 {
  margin: 0.55rem 0;
  color: var(--paper-soft);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
  color: rgba(248, 240, 221, 0.76);
}

.room-posters .section-title {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.room-posters .section-title h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
}

.poster-grid {
  display: grid;
  gap: 2rem;
}

.room-poster {
  position: relative;
  min-height: auto;
  display: block;
  overflow: visible;
  padding: 0.85rem 0.85rem 1.25rem;
  border: 1px solid rgba(15, 47, 79, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 42%),
    var(--paper-soft);
  color: var(--ink);
  box-shadow: 12px 14px 0 rgba(82, 73, 121, 0.1), 0 18px 38px rgba(15, 47, 79, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.room-poster img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.78) contrast(0.96) sepia(0.08);
  transition: transform 240ms ease;
}

.room-poster:nth-child(1) {
  transform: rotate(-1.1deg);
}

.room-poster:nth-child(2) {
  transform: rotate(1deg);
}

.room-poster::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  width: 118px;
  height: 28px;
  background: rgba(255, 239, 198, 0.92);
  border: 1px solid rgba(15, 47, 79, 0.1);
  box-shadow: 0 6px 12px rgba(15, 47, 79, 0.12);
  transform: translateX(-50%) rotate(-2deg);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
  z-index: 2;
}

.room-poster:hover img {
  transform: scale(1.015);
}

.room-poster:hover {
  box-shadow: 16px 18px 0 rgba(82, 73, 121, 0.12), 0 20px 42px rgba(15, 47, 79, 0.16);
}

.room-poster div {
  position: static;
  padding: 1rem 0.25rem 0;
  background: transparent;
  text-align: center;
}

.room-poster span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-poster strong {
  display: block;
  max-width: 17ch;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 0.95;
}

.lake-cta {
  padding-top: 1rem;
}

.lake-card {
  display: grid;
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.2);
  box-shadow: 14px 14px 0 rgba(250, 123, 115, 0.18);
}

.lake-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
}

.lake-card div {
  padding: 1.6rem;
}

.postcard-footer {
  border-top-color: var(--coral);
}

.postcard-page-main {
  padding-bottom: 5rem;
}

.postcard-page-hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.postcard-page-hero h2 {
  margin: 0 0 1rem;
  max-width: 10ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-style: italic;
  line-height: 0.88;
  text-shadow:
    0.04em 0.045em 0 var(--coral),
    -0.018em 0.018em 0 var(--blue-fill);
}

.postcard-page-hero p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 720;
}

.postcard-page-image {
  position: relative;
  padding: 0.7rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 14px 14px 0 rgba(250, 123, 115, 0.16);
  transform: rotate(0.45deg);
}

.postcard-page-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96) sepia(0.04);
}

.postcard-map-hero {
  min-height: 430px;
}

.postcard-map-hero .postcard-map-embed {
  min-height: 410px;
}

.postcard-page-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
}

.postcard-note-card {
  position: relative;
  padding: 1.25rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 10px 12px 0 rgba(82, 73, 121, 0.09);
}

.postcard-note-card::before {
  content: "";
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  width: 96px;
  height: 24px;
  background: rgba(255, 239, 198, 0.92);
  border: 1px solid rgba(15, 47, 79, 0.1);
  transform: rotate(-3deg);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
}

.postcard-note-card h3 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-style: italic;
  line-height: 0.95;
}

.postcard-note-card p {
  margin: 0 0 1rem;
  color: #465f72;
}

.postcard-note-card .tag-list {
  margin-bottom: 1rem;
}

.postcard-article-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.postcard-article-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.8rem 0.8rem 1.2rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 12px 14px 0 rgba(82, 73, 121, 0.1);
}

.postcard-article-card::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  right: 1.2rem;
  width: 88px;
  height: 22px;
  background: rgba(244, 232, 201, 0.92);
  border: 1px solid rgba(15, 47, 79, 0.1);
  transform: rotate(3deg);
}

.postcard-article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.84) contrast(0.96) sepia(0.05);
}

.postcard-article-card h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 0.98;
}

.postcard-article-card p:not(.kicker) {
  color: #465f72;
}

.postcard-policy-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 2rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.postcard-policy-layout .postcard-card {
  transform: rotate(-1.2deg);
}

.postcard-policy-sheet {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(15, 47, 79, 0.08) 1px, transparent 1px) 0 0 / 100% 3.2rem,
    var(--paper);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 14px 16px 0 rgba(114, 151, 208, 0.16);
}

.postcard-policy-sheet::after {
  content: "Guest Copy";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(251, 128, 121, 0.5);
  color: var(--coral-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.postcard-policy-sheet h2 {
  max-width: 9ch;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  line-height: 0.9;
}

.postcard-policy-list {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
}

.postcard-policy-list article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(15, 47, 79, 0.14);
}

.postcard-policy-list span {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border: 1px solid var(--lake-blue);
  background: #fffdf8;
}

.postcard-policy-list span::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  margin: 3px 0 0 3px;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}

.postcard-policy-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.postcard-policy-list p {
  margin: 0.3rem 0 0;
  color: #465f72;
}

.postcard-article-detail {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 2rem;
}

.postcard-article-detail > header {
  margin-bottom: 2rem;
}

.postcard-article-detail h2 {
  max-width: 11ch;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-style: italic;
  line-height: 0.9;
  text-shadow:
    0.035em 0.04em 0 var(--coral),
    -0.014em 0.014em 0 var(--blue-fill);
}

.postcard-article-detail > header p:not(.kicker) {
  max-width: 680px;
  color: #465f72;
  font-size: 1.12rem;
  font-weight: 720;
}

.postcard-article-detail .postcard-page-image {
  margin-bottom: 2rem;
}

.postcard-article-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(15, 47, 79, 0.07) 1px, transparent 1px) 0 0 / 100% 3.1rem,
    var(--paper);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 14px 16px 0 rgba(82, 73, 121, 0.09);
}

.postcard-article-body h2,
.postcard-article-body h3 {
  margin: 1.4rem 0 0.7rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 1;
}

.postcard-article-body h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.postcard-article-body h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.postcard-article-body p,
.postcard-article-body li {
  color: #405b70;
  font-size: 1.04rem;
  line-height: 1.75;
}

.postcard-article-body a {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.postcard-article-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 10px 12px 0 rgba(114, 151, 208, 0.16);
}

.postcard-article-cta h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1;
}

.postcard-room-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0.8rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 42%),
    var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 12px 14px 0 rgba(82, 73, 121, 0.1), 0 18px 38px rgba(15, 47, 79, 0.12);
}

.postcard-room-card::before {
  content: "";
  position: absolute;
  top: -0.65rem;
  left: 50%;
  width: 116px;
  height: 26px;
  background: rgba(255, 239, 198, 0.92);
  border: 1px solid rgba(15, 47, 79, 0.1);
  box-shadow: 0 6px 12px rgba(15, 47, 79, 0.12);
  transform: translateX(-50%) rotate(-2deg);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
  z-index: 2;
}

.postcard-room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.96) sepia(0.06);
}

.postcard-room-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0.25rem 0;
}

.postcard-room-card h3 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 0.95;
}

.postcard-room-card p {
  margin: 0 0 1rem;
  color: #465f72;
}

.postcard-room-card .tag-list {
  margin-bottom: 1rem;
}

.postcard-room-card .button-secondary {
  margin-top: auto;
}

.postcard-image-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
}

.postcard-polaroid {
  padding: 0.75rem 0.75rem 1.05rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 10px 12px 0 rgba(82, 73, 121, 0.1);
  cursor: zoom-in;
}

.postcard-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) sepia(0.05);
}

.postcard-polaroid span {
  display: block;
  padding-top: 0.8rem;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.postcard-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(15, 47, 79, 0.72);
  backdrop-filter: blur(7px);
}

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

.postcard-lightbox figure {
  position: relative;
  width: min(1040px, 96vw);
  max-height: 92vh;
  margin: 0;
  padding: 0.85rem 0.85rem 1.15rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 18px 18px 0 rgba(250, 123, 115, 0.22);
}

.postcard-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #111;
}

.postcard-lightbox figcaption {
  padding-top: 0.8rem;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.postcard-lightbox button {
  position: absolute;
  top: -1rem;
  right: -0.75rem;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  background: var(--coral);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(15, 47, 79, 0.2);
}

.postcard-book-panel {
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto 5rem;
  padding: 1.25rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 14px 14px 0 rgba(250, 123, 115, 0.16);
  text-align: center;
}

.postcard-book-hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3.25rem) 1.25rem 0.5rem;
  text-align: center;
}

.postcard-book-hero .kicker {
  margin-bottom: 0.85rem;
}

.postcard-book-hero h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.25rem);
  font-style: italic;
  line-height: 0.86;
  text-shadow:
    0.04em 0.045em 0 var(--coral),
    -0.018em 0.018em 0 var(--blue-fill);
}

.postcard-book-panel-main {
  margin-top: 1rem;
}

.postcard-booking-frame {
  display: block;
  width: 100%;
  min-height: 1220px;
  border: 0;
  background: #fff;
  overflow: hidden;
}

.postcard-room-booking {
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15, 47, 79, 0.14);
  background: #fff;
}

.postcard-room-booking .postcard-booking-frame {
  min-height: 980px;
}

.postcard-book-panel p {
  max-width: 560px;
  margin: 0 auto 1rem;
  color: #465f72;
}

.postcard-centered-intro,
.postcard-gallery-intro {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 2rem;
  text-align: center;
}

.postcard-centered-intro h2,
.postcard-gallery-intro h2,
.postcard-map-heading h2,
.postcard-faq-heading h2,
.reservation-slip h2 {
  margin: 0 auto 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  font-style: italic;
  line-height: 0.9;
}

.postcard-centered-intro p:not(.kicker),
.postcard-gallery-intro p,
.postcard-map-heading p,
.postcard-faq-heading p,
.reservation-slip p {
  max-width: 680px;
  margin: 0 auto;
  color: #465f72;
  font-size: 1.08rem;
}

.postcard-checklist-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.postcard-checklist-layout .postcard-card {
  margin-top: 4.5rem;
}

.postcard-checklist {
  position: relative;
  display: grid;
  gap: 0;
  min-height: auto;
  padding: 1.35rem 1.15rem 1rem;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(15, 47, 79, 0.14) 72% calc(72% + 2px), transparent calc(72% + 2px)),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(15, 47, 79, 0.075) 37px, transparent 38px),
    rgba(255, 249, 238, 0.9);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 14px 14px 0 rgba(114, 151, 208, 0.14);
}

.postcard-checklist::before {
  content: "OSAGE BEACH, MISSOURI";
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.postcard-checklist::after {
  content: "POSTAGE";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 74px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(82, 73, 121, 0.42);
  background:
    linear-gradient(135deg, rgba(250, 123, 115, 0.2), transparent 55%),
    rgba(255, 249, 238, 0.68);
  color: rgba(82, 73, 121, 0.72);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.amenities-mini-header {
  max-width: calc(100% - 6.2rem);
  margin-bottom: 0.7rem;
}

.amenities-mini-header .kicker {
  margin-bottom: 0.65rem;
  white-space: normal;
}

.amenities-mini-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.25vw, 2.9rem);
  font-style: italic;
  line-height: 0.9;
}

.checklist-stamp {
  position: absolute;
  top: 4.8rem;
  right: 1.2rem;
  padding: 0.35rem 0.65rem;
  color: var(--coral-deep);
  border: 2px solid rgba(217, 111, 104, 0.56);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.checklist-stamp::before,
.checklist-stamp::after {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border: 1px solid rgba(217, 111, 104, 0.38);
  border-radius: 50%;
}

.checklist-stamp::after {
  inset: -1.25rem;
  opacity: 0.55;
}

.postcard-checklist article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 0.84fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(15, 47, 79, 0.12);
}

.postcard-checklist article:last-child {
  border-bottom: 0;
}

.postcard-checklist span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: rgba(255, 249, 238, 0.72);
}

.postcard-checklist span::after {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--coral-deep);
  border-bottom: 3px solid var(--coral-deep);
  transform: rotate(-45deg) translate(1px, -1px);
}

.postcard-checklist strong {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.15;
}

.postcard-checklist p {
  grid-column: 2;
  margin: 0;
  color: #465f72;
  font-size: 0.95rem;
}

.amenities-feature-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.amenities-photo-stack {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.amenities-feature-layout .postcard-card {
  transform: rotate(-0.45deg);
}

.amenities-side-note {
  position: relative;
  width: min(92%, 420px);
  justify-self: center;
  padding: 1rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.14);
  box-shadow: 9px 10px 0 rgba(114, 151, 208, 0.12);
  transform: rotate(0.7deg);
}

.amenities-side-note h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 0.95;
}

.amenities-side-note p {
  margin: 0;
  color: #465f72;
  font-size: 0.96rem;
}

.amenities-ticket {
  position: relative;
  padding: 1.3rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 44%),
    var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 14px 14px 0 rgba(82, 73, 121, 0.1), 0 18px 38px rgba(15, 47, 79, 0.1);
}

.amenities-ticket::before {
  content: "Guest Perks";
  position: absolute;
  top: -0.7rem;
  right: 1.1rem;
  padding: 0.42rem 0.72rem;
  color: var(--ink);
  background: rgba(255, 239, 198, 0.96);
  border: 1px solid rgba(15, 47, 79, 0.12);
  box-shadow: 0 7px 14px rgba(15, 47, 79, 0.14);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(4deg);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
}

.amenities-ticket .amenities-mini-header {
  max-width: 720px;
  margin: 0 0 1.2rem;
}

.amenities-ticket .amenities-mini-header h2 {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}

.amenity-check-grid {
  display: grid;
  gap: 0.85rem;
}

.amenity-check-grid article {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(15, 47, 79, 0.1);
}

.amenity-check-grid article:first-child {
  border-top: 2px solid rgba(15, 47, 79, 0.16);
}

.amenity-check-grid span {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: rgba(255, 249, 238, 0.72);
}

.amenity-check-grid span::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 3px solid var(--coral-deep);
  border-bottom: 3px solid var(--coral-deep);
  transform: rotate(-45deg) translate(1px, -1px);
}

.amenity-check-grid strong {
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.15;
}

.amenity-check-grid p {
  grid-column: 2;
  margin: -0.35rem 0 0;
  color: #465f72;
  font-size: 0.96rem;
}

.postcard-map-lead {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 3rem;
  display: grid;
  gap: 2rem;
}

.postcard-map-heading {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.postcard-map-heading h2 {
  max-width: 12ch;
}

.postcard-map-lead .postcard-map-hero {
  width: min(980px, 100%);
  margin: 0 auto;
  transform: rotate(0.2deg);
}

.postcard-collage-grid .postcard-polaroid:nth-child(1),
.postcard-collage-grid .postcard-polaroid:nth-child(5) {
  transform: rotate(-1.1deg);
}

.postcard-collage-grid .postcard-polaroid:nth-child(2),
.postcard-collage-grid .postcard-polaroid:nth-child(6) {
  transform: rotate(0.9deg);
}

.postcard-collage-grid .postcard-polaroid:nth-child(3) {
  transform: rotate(-0.45deg);
}

.postcard-faq-layout,
.postcard-reservation-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) 1.25rem 6rem;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.postcard-faq-heading {
  display: grid;
  gap: 1.25rem;
}

.postcard-faq-heading h2,
.reservation-slip h2 {
  margin-inline: 0;
}

.postcard-faq-heading p {
  margin-inline: 0;
}

.postcard-faq-stack {
  display: grid;
  gap: 1.25rem;
}

.reservation-slip {
  position: relative;
  padding: 1.4rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.16);
  box-shadow: 14px 14px 0 rgba(250, 123, 115, 0.16);
}

.reservation-slip::before {
  content: "Reservation Slip";
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-slip p {
  margin-inline: 0;
  margin-bottom: 1.25rem;
}

.reservation-lines {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.reservation-lines span {
  display: block;
  padding: 0.75rem 0;
  color: #465f72;
  border-bottom: 1px solid rgba(15, 47, 79, 0.16);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.postcard-map-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 1rem 1.25rem 6rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.postcard-map-copy h2 {
  margin: 0 0 1rem;
  max-width: 9ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  font-style: italic;
  line-height: 0.93;
}

.postcard-map-copy p:not(.kicker) {
  max-width: 580px;
  margin: 0;
  color: #465f72;
  font-size: 1.08rem;
}

.postcard-map-frame {
  position: relative;
  min-height: 430px;
  padding: 0.75rem;
  background: var(--paper-soft);
  border: 1px solid rgba(15, 47, 79, 0.18);
  box-shadow: 14px 14px 0 rgba(114, 151, 208, 0.18);
  transform: rotate(-0.35deg);
}

.postcard-map-frame::before {
  content: "Road Map";
  position: absolute;
  z-index: 4;
  top: -0.7rem;
  left: 1.2rem;
  width: 120px;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 239, 198, 0.96);
  border: 1px solid rgba(15, 47, 79, 0.12);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-4deg);
  clip-path: polygon(4% 0, 96% 4%, 100% 48%, 96% 96%, 5% 100%, 0 55%);
}

.postcard-map-hero::before {
  content: "Road Trip!";
  position: absolute;
  z-index: 4;
  top: 1.1rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  min-height: 58px;
  padding: 0.55rem 1rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.56), transparent 18%),
    linear-gradient(135deg, rgba(114, 151, 208, 0.16), transparent 58%),
    #fff0cf;
  border: 3px solid var(--coral);
  outline: 1px solid rgba(15, 47, 79, 0.18);
  border-radius: 22px 18px 25px 16px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 20px rgba(15, 47, 79, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0.06em 0.06em 0 rgba(114, 151, 208, 0.36);
  transform: rotate(8deg);
  clip-path: polygon(4% 8%, 13% 2%, 86% 0, 96% 8%, 100% 78%, 91% 96%, 16% 100%, 2% 88%);
}

.postcard-map-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 4.35rem;
  right: 1.2rem;
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(210, 190, 155, 0.35));
  border-left: 1px solid rgba(15, 47, 79, 0.12);
  border-top: 1px solid rgba(15, 47, 79, 0.1);
  border-radius: 0 0 14px 0;
  transform: rotate(8deg) skew(-12deg);
  box-shadow: -4px 5px 8px rgba(15, 47, 79, 0.12);
}

.postcard-map-embed {
  display: block;
  width: 100%;
  min-height: 410px;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.94) sepia(0.08);
}

.map-directions-link {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 249, 238, 0.92);
  box-shadow: 0 8px 18px rgba(15, 47, 79, 0.14);
}

@media (min-width: 900px) {
  .postcard-hero-content {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .postcard-page-hero {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .postcard-map-section {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .postcard-checklist-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .amenities-feature-layout {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .postcard-faq-layout,
  .postcard-reservation-layout,
  .postcard-policy-layout {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .postcard-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .postcard-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .postcard-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .postcard-intro {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lake-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 760px) {
  .postcard-nav {
    min-height: 96px;
    padding: 0.7rem 1rem;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
  }

  .postcard-nav .branding {
    grid-column: 2;
    justify-self: center;
  }

  .postcard-nav .branding img {
    height: 162px;
    max-width: min(410px, 68vw);
  }

  .postcard-nav .nav-toggle {
    display: inline-flex;
  }

  .postcard-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: none;
    height: auto;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 0 0.15rem;
    background: rgba(255, 249, 238, 0.72);
    border-top: 1px solid rgba(15, 47, 79, 0.12);
  }

  .postcard-nav.is-menu-stuck::after {
    display: none;
  }

  .postcard-nav.is-menu-stuck .postcard-menu {
    position: fixed;
    top: 0;
    right: 1rem;
    z-index: 71;
    padding: 0.58rem 0;
    background: rgba(245, 240, 231, 0.92);
    backdrop-filter: blur(18px) saturate(0.86);
  }

  .postcard-nav.is-menu-stuck .postcard-links {
    position: fixed;
    top: var(--stuck-menu-height, 51px);
    left: 0;
    z-index: 70;
    height: auto;
    width: 100%;
    padding: 0.8rem 0 0.15rem;
    background: rgba(255, 249, 238, 0.94);
    border-top: 1px solid rgba(15, 47, 79, 0.12);
    border-bottom: 1px solid rgba(15, 47, 79, 0.12);
    box-shadow: 0 8px 24px rgba(15, 47, 79, 0.08);
    backdrop-filter: blur(18px) saturate(0.86);
  }

  .postcard-topbar.has-stuck-menu {
    padding-bottom: 0;
  }

  .postcard-links.is-open {
    display: grid;
  }

  .postcard-links a {
    min-height: 42px;
    margin-left: 0;
    padding: 0.72rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(15, 47, 79, 0.1);
    border-radius: 0;
    color: var(--ink);
    font-size: 0.86rem;
    justify-content: center;
    letter-spacing: 0.16em;
  }

  .postcard-links .nav-booking {
    position: static;
    transform: none;
    width: min(220px, 100%);
    margin: 0.5rem auto 0;
    background: var(--coral);
    border: 0;
    border-radius: 999px;
    color: var(--ink);
  }

  .postcard-links .nav-booking:hover {
    background: var(--violet);
    color: var(--paper-soft);
  }

  .postcard-nav.is-menu-stuck .postcard-links::before {
    display: none;
  }

  .postcard-nav.is-menu-stuck .postcard-links::after {
    display: none;
  }

  .postcard-links a:last-child {
    border-bottom: 0;
  }

  .postcard-hero {
    min-height: calc(100svh - 96px);
    padding: 1.25rem 1rem 3.25rem;
  }

  .postcard-hero-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 13.2vw, 5.55rem);
  }

  .postcard-hero-copy .kicker {
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
    letter-spacing: 0.08em;
  }

  .postcard-hero-image {
    transform: none;
    box-shadow: 10px 10px 0 rgba(250, 123, 115, 0.18);
  }

  .room-poster,
  .room-poster:nth-child(1),
  .room-poster:nth-child(2) {
    transform: none;
  }

  .postcard-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .postcard-strip span:nth-child(2) {
    border-right: 0;
  }

  .postcard-strip span {
    border-bottom: 2px solid rgba(200, 93, 86, 0.38);
  }

  .postcard-section {
    padding: 4rem 1rem;
  }

  .postcard-map-section {
    padding: 1rem 1rem 4rem;
  }

  .postcard-map-frame {
    min-height: 360px;
    transform: none;
  }

  .postcard-map-embed {
    min-height: 340px;
  }

  .postcard-booking-frame {
    min-height: 860px;
  }

  .postcard-room-booking .postcard-booking-frame {
    min-height: 1120px;
  }

  .postcard-checklist {
    min-height: auto;
    background:
      repeating-linear-gradient(0deg, transparent 0 43px, rgba(15, 47, 79, 0.085) 44px, transparent 45px),
      rgba(255, 249, 238, 0.9);
  }

  .amenities-mini-header {
    max-width: 100%;
    padding-right: 6.5rem;
  }

  .postcard-checklist article {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .amenities-feature-layout {
    padding: 2rem 1rem 4rem;
  }

  .amenities-ticket .amenities-mini-header {
    padding-right: 0;
  }

  .tilted-card {
    transform: none;
  }
}
