/* =========================================================
   SOFTARCHIVE
   The Pink Motel
========================================================= */


/* =========================================================
   COLOR PALETTE
========================================================= */

:root {
  --dusty-rose: #c67a8a;
  --neon-magenta: #ff4da6;
  --plum: #5b2a45;
  --mauve: #7a4b5f;
  --warm-cream: #e8d6c1;
  --charcoal: #121215;
  --rust: #6a3d36;
  --deep-shadow: #0b080c;

  --panel-background: rgba(17, 11, 15, 0.92);
  --panel-background-soft: rgba(29, 15, 23, 0.9);
  --panel-border: rgba(198, 122, 138, 0.48);

  --body-text: #ddc7c4;
  --muted-text: #ad858f;
  --bright-text: #f0d9d1;

  --shadow: rgba(0, 0, 0, 0.56);
  --pink-glow: rgba(255, 77, 166, 0.46);
}


/* =========================================================
   RESET AND BASE STYLES
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top,
      rgba(91, 42, 69, 0.42),
      transparent 36rem
    ),
    linear-gradient(
      180deg,
      #1a0e16 0%,
      var(--charcoal) 45%,
      var(--deep-shadow) 100%
    );

  color: var(--body-text);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--dusty-rose);
  color: var(--deep-shadow);
}


/* =========================================================
   SITE WRAPPER
========================================================= */

.site-wrapper {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding-bottom: 40px;
}


/* =========================================================
   PINK MOTEL HEADER
========================================================= */

.motel-header {
  position: relative;
  min-height: 540px;
  margin-top: 28px;

  overflow: hidden;

  border: 1px solid rgba(198, 122, 138, 0.42);

  background-image:
    linear-gradient(
      180deg,
      rgba(9, 6, 10, 0.06) 0%,
      rgba(9, 6, 10, 0.12) 46%,
      rgba(9, 6, 10, 0.82) 100%
    ),
    url("images/Pink-motel-bg.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  box-shadow:
    0 18px 45px var(--shadow),
    inset 0 0 80px rgba(0, 0, 0, 0.2);
}

.motel-header-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(11, 8, 12, 0.1),
      rgba(11, 8, 12, 0.02) 42%,
      rgba(11, 8, 12, 0.18)
    );

  pointer-events: none;
}

.motel-header-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  min-height: 540px;
  padding: 50px 30px;
}

.site-title-wrapper {
  max-width: 820px;
  text-align: center;
}

.arrival-label {
  margin: 0 0 10px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  text-shadow: 0 0 10px rgba(255, 77, 166, 0.26);
}

.site-title {
  margin: 0;

  color: #f2d4d2;

  font-size: clamp(4rem, 10vw, 8.2rem);
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.065em;
  line-height: 0.9;

  text-shadow:
    0 0 8px rgba(255, 212, 220, 0.42),
    0 0 24px rgba(255, 77, 166, 0.3),
    0 5px 20px rgba(0, 0, 0, 0.72);
}

.site-subtitle {
  margin: 18px 0 0;

  color: var(--warm-cream);

  font-size: clamp(0.92rem, 2vw, 1.18rem);
  font-style: italic;
  letter-spacing: 0.12em;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 10px rgba(198, 122, 138, 0.34);
}


/* =========================================================
   SEPARATE VACANCY SIGN
========================================================= */

.vacancy-wrapper {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: center;

  margin-top: -19px;
  margin-bottom: 24px;
}

.vacancy-sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 158px;
  padding: 7px 20px 6px;

  border: 2px solid rgba(255, 126, 182, 0.82);
  border-radius: 3px;

  background:
    linear-gradient(
      180deg,
      rgba(78, 24, 48, 0.98),
      rgba(35, 12, 24, 0.98)
    );

  color: #ffb2cf;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.92rem;
  font-weight: bold;
  letter-spacing: 0.26em;
  text-transform: uppercase;

  box-shadow:
    0 0 8px var(--pink-glow),
    0 0 18px rgba(255, 77, 166, 0.28),
    inset 0 0 10px rgba(255, 77, 166, 0.2);

  text-shadow:
    0 0 5px #ff85ba,
    0 0 11px rgba(255, 77, 166, 0.8);

  animation: vacancy-flicker 7s infinite;
}

@keyframes vacancy-flicker {
  0%,
  18%,
  22%,
  55%,
  58%,
  100% {
    opacity: 1;
  }

  20% {
    opacity: 0.88;
  }

  56% {
    opacity: 0.94;
  }
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;

  margin-bottom: 26px;
  padding: 10px;

  border: 1px solid var(--panel-border);

  background:
    linear-gradient(
      180deg,
      rgba(30, 15, 24, 0.96),
      rgba(15, 10, 14, 0.98)
    );

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.main-navigation a {
  position: relative;

  padding: 9px 13px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 170ms ease,
    background 170ms ease,
    transform 170ms ease;
}

.main-navigation a:not(:last-child)::after {
  content: "·";

  position: absolute;
  right: -5px;

  color: rgba(198, 122, 138, 0.45);
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.active {
  background: rgba(198, 122, 138, 0.09);
  color: var(--warm-cream);
  transform: translateY(-1px);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  gap: 24px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* =========================================================
   PANELS
========================================================= */

.motel-panel {
  position: relative;

  padding: clamp(24px, 4vw, 40px);

  border: 1px solid var(--panel-border);

  background:
    linear-gradient(
      180deg,
      rgba(33, 17, 26, 0.94),
      var(--panel-background)
    );

  box-shadow:
    8px 8px 0 rgba(0, 0, 0, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.motel-panel::before {
  content: "";

  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 77, 166, 0.22),
      transparent
    );
}

.panel-heading {
  margin-bottom: 24px;
  padding-bottom: 16px;

  border-bottom: 1px solid rgba(198, 122, 138, 0.24);
}

.panel-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.panel-label {
  margin: 0 0 5px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0;

  color: var(--bright-text);

  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.15;
}


/* =========================================================
   WELCOME PANEL
========================================================= */

.welcome-panel {
  min-height: 100%;
}

.welcome-copy {
  max-width: 720px;
}

.welcome-copy p {
  margin: 0 0 16px;
}

.welcome-copy p:last-child {
  margin-bottom: 0;
}

.key-button {
  display: inline-block;

  margin-top: 25px;
  padding: 11px 17px;

  border: 1px solid rgba(232, 214, 193, 0.5);

  background:
    linear-gradient(
      180deg,
      rgba(198, 122, 138, 0.24),
      rgba(91, 42, 69, 0.3)
    );

  color: var(--warm-cream);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.69rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.key-button:hover,
.key-button:focus-visible {
  border-color: var(--dusty-rose);
  background: rgba(198, 122, 138, 0.23);

  box-shadow: 0 0 15px rgba(255, 77, 166, 0.16);

  transform: translateY(-2px);
}


/* =========================================================
   CHECK-IN PANEL
========================================================= */

.check-in-panel {
  background:
    linear-gradient(
      180deg,
      rgba(51, 28, 37, 0.97),
      rgba(26, 16, 20, 0.98)
    );
}

.check-in-list {
  margin: 0;
}

.check-in-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;

  padding: 10px 0;

  border-bottom: 1px dotted rgba(198, 122, 138, 0.25);
}

.check-in-row:last-child {
  border-bottom: 0;
}

.check-in-row dt {
  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-in-row dd {
  margin: 0;

  color: var(--warm-cream);

  font-size: 0.92rem;
  font-style: italic;
  text-align: right;
}

.check-in-note {
  margin: 22px 0 0;

  color: var(--dusty-rose);

  font-style: italic;
  text-align: center;
}


/* =========================================================
   ENTRY PREVIEWS
========================================================= */

.entry-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;

  padding: 27px 0;

  border-bottom: 1px dotted rgba(198, 122, 138, 0.28);
}

.entry-preview:first-of-type {
  padding-top: 3px;
}

.entry-preview:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.entry-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 4px;

  color: rgba(198, 122, 138, 0.7);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.entry-number::before {
  content: "✦";
  margin-right: 5px;
  color: var(--dusty-rose);
}

.entry-meta {
  margin: 0 0 5px;

  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.entry-content h3 {
  margin: 0 0 9px;

  font-size: 1.55rem;
  font-style: italic;
  font-weight: normal;
}

.entry-content h3 a {
  color: var(--bright-text);
  text-decoration: none;
}

.entry-content h3 a:hover,
.entry-content h3 a:focus-visible {
  color: var(--dusty-rose);
}

.entry-content p:not(.entry-meta) {
  margin: 0 0 13px;
  color: var(--body-text);
}

.entry-link,
.small-link {
  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.67rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.entry-link::after {
  content: " →";
}

.entry-link:hover,
.entry-link:focus-visible,
.small-link:hover,
.small-link:focus-visible {
  color: var(--warm-cream);
}


/* =========================================================
   NOTICE PANEL
========================================================= */

.notice-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;

  padding-top: 30px;
  padding-bottom: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(91, 42, 69, 0.32),
      rgba(18, 12, 17, 0.96)
    );
}

.notice-symbol {
  margin: 0;

  color: var(--dusty-rose);
  font-size: 1.7rem;
}

.notice-panel blockquote {
  margin: 0;

  color: var(--warm-cream);

  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-panel {
  padding: 24px;
}

.sidebar-panel .panel-heading {
  margin-bottom: 19px;
}

.sidebar-panel .panel-heading h2 {
  font-size: 1.5rem;
}


/* =========================================================
   MUSIC PLAYER
========================================================= */

.music-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.cassette-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(198, 122, 138, 0.38);

  color: var(--dusty-rose);
  font-size: 1.25rem;
}

.song-title {
  margin: 0;

  color: var(--bright-text);

  font-size: 1rem;
  font-style: italic;
}

.song-artist {
  margin: 2px 0 0;

  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-card audio {
  grid-column: 1 / -1;

  width: 100%;
  margin-top: 12px;

  opacity: 0.78;
}


/* =========================================================
   DIRECTORY
========================================================= */

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

.directory-list li {
  border-bottom: 1px dotted rgba(198, 122, 138, 0.24);
}

.directory-list li:last-child {
  border-bottom: 0;
}

.directory-list a {
  display: flex;
  flex-direction: column;
  gap: 2px;

  padding: 11px 0;

  color: var(--body-text);
  text-decoration: none;

  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.directory-list a span {
  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.directory-list a:hover,
.directory-list a:focus-visible {
  padding-left: 5px;
  color: var(--warm-cream);
}


/* =========================================================
   GUESTBOOK PREVIEW
========================================================= */

.guestbook-preview {
  margin-bottom: 18px;
}

.guestbook-preview article {
  padding: 11px 0;

  border-bottom: 1px dotted rgba(198, 122, 138, 0.24);
}

.guestbook-preview article:first-child {
  padding-top: 0;
}

.guestbook-preview article:last-child {
  border-bottom: 0;
}

.guestbook-preview p {
  margin: 0;
}

.guest-name {
  margin-bottom: 3px !important;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: 34px;
  padding: 30px 10px 10px;

  border-top: 1px solid rgba(198, 122, 138, 0.32);

  color: var(--muted-text);
}

.footer-line {
  margin: 0 0 24px;

  color: var(--dusty-rose);

  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-details p {
  margin: 0;
}

.visitor-counter span {
  display: inline-block;

  padding: 2px 6px;

  border: 1px solid rgba(198, 122, 138, 0.3);

  background: #080608;

  color: var(--dusty-rose);

  letter-spacing: 0.14em;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;

  margin-top: 22px;
}

.footer-navigation a {
  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: var(--warm-cream);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
audio:focus-visible {
  outline: 2px solid var(--dusty-rose);
  outline-offset: 4px;
}


/* =========================================================
   TABLET LAYOUT
========================================================= */

@media (max-width: 900px) {
  .motel-header,
  .motel-header-content {
    min-height: 470px;
  }

  .motel-header {
    background-position: center center;
  }

  .top-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar-panel:last-child {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   MOBILE LAYOUT
========================================================= */

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-wrapper {
    width: min(95%, 1180px);
  }

  .motel-header {
    min-height: 420px;
    margin-top: 12px;

    background-position: 47% center;
  }

  .motel-header-content {
    min-height: 420px;
    padding: 35px 18px;
  }

  .arrival-label {
    letter-spacing: 0.15em;
  }

  .site-title {
    font-size: clamp(3.2rem, 18vw, 5.5rem);
  }

  .site-subtitle {
    margin-top: 13px;
    letter-spacing: 0.07em;
  }

  .vacancy-wrapper {
    margin-bottom: 18px;
  }

  .vacancy-sign {
    min-width: 138px;
    padding: 6px 15px;

    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

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

  .main-navigation a {
    text-align: center;
  }

  .main-navigation a::after {
    display: none;
  }

  .motel-panel {
    padding: 23px;
    box-shadow:
      5px 5px 0 rgba(0, 0, 0, 0.22),
      0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .panel-heading-row {
    align-items: flex-start;
  }

  .entry-preview {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .entry-number {
    justify-content: flex-start;
  }

  .check-in-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .check-in-row dd {
    text-align: left;
  }

  .sidebar {
    display: flex;
  }

  .notice-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .footer-details {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vacancy-sign {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   INTERIOR PAGE HEADERS
========================================================= */

.interior-header,
.interior-header .motel-header-content {
  min-height: 390px;
}

.interior-header {
  background-position: center 52%;
}

.interior-title {
  font-size: clamp(3.8rem, 9vw, 7rem);
}

.page-introduction {
  max-width: 720px;
  margin: -4px 0 26px;

  color: var(--body-text);

  font-size: 1.02rem;
  font-style: italic;
}


/* =========================================================
   INTERIOR PAGE MOBILE STYLES
========================================================= */

@media (max-width: 620px) {
  .interior-header,
  .interior-header .motel-header-content {
    min-height: 340px;
  }

  .interior-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }
}
/* =========================================================
   ROOM 203
========================================================= */

.room-203-header {
  background-position: center 50%;
}

.room-description {
  max-width: 740px;
}

.room-description p {
  margin: 0 0 16px;
}

.room-description p:last-child {
  margin-bottom: 0;
}

.room-status-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;

  margin-top: 27px;
  padding: 15px 17px;

  border: 1px solid rgba(198, 122, 138, 0.34);

  background:
    linear-gradient(
      90deg,
      rgba(91, 42, 69, 0.36),
      rgba(17, 11, 15, 0.52)
    );
}

.room-status-card p {
  margin: 0;
}

.room-status-label {
  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-status-value {
  padding: 3px 8px;

  border: 1px solid rgba(255, 77, 166, 0.38);

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  box-shadow:
    inset 0 0 8px rgba(255, 77, 166, 0.08),
    0 0 10px rgba(255, 77, 166, 0.08);
}

.room-status-note {
  color: var(--warm-cream);
  font-style: italic;
  text-align: right;
}

.entry-coming-soon {
  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.room-topic-list li {
  padding: 5px 8px;

  border: 1px solid rgba(198, 122, 138, 0.3);

  background: rgba(91, 42, 69, 0.16);

  color: var(--body-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =========================================================
   ROOM 203 MOBILE
========================================================= */

@media (max-width: 620px) {
  .room-status-card {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .room-status-note {
    text-align: left;
  }
}
/* =========================================================
   ROOM 304
========================================================= */

.room-304-header {
  background-position: center 54%;
}

.room-304-status {
  border-color: rgba(122, 75, 95, 0.55);

  background:
    linear-gradient(
      90deg,
      rgba(46, 28, 39, 0.72),
      rgba(17, 11, 15, 0.52)
    );
}

.room-304-status .room-status-value {
  border-color: rgba(173, 133, 143, 0.42);
  color: var(--muted-text);

  box-shadow:
    inset 0 0 8px rgba(173, 133, 143, 0.08),
    0 0 10px rgba(173, 133, 143, 0.06);
}

.privacy-panel {
  border-color: rgba(122, 75, 95, 0.58);

  background:
    linear-gradient(
      180deg,
      rgba(37, 23, 31, 0.97),
      rgba(16, 11, 15, 0.98)
    );
}

.privacy-panel p {
  font-size: 0.92rem;
}
/* =========================================================
   ICE MACHINE
========================================================= */

.music-header {
  background-position: center 56%;
}

.now-playing-feature {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 35%,
      rgba(198, 122, 138, 0.15),
      transparent 24rem
    ),
    linear-gradient(
      180deg,
      rgba(33, 17, 26, 0.96),
      rgba(13, 9, 12, 0.98)
    );
}

.record-player {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}

.record-art {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 250px;
}

.record-disc {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: min(240px, 100%);
  aspect-ratio: 1;

  border: 1px solid rgba(232, 214, 193, 0.18);
  border-radius: 50%;

  background:
    repeating-radial-gradient(
      circle,
      #151216 0,
      #151216 4px,
      #242026 5px,
      #242026 7px
    );

  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.42),
    inset 0 0 28px rgba(255, 255, 255, 0.035);
}

.record-disc::after {
  content: "";

  position: absolute;
  inset: 11%;

  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.record-label {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 32%;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      var(--warm-cream) 0 7%,
      var(--dusty-rose) 8% 100%
    );

  color: var(--plum);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.5rem;
  font-style: italic;

  box-shadow: 0 0 18px rgba(198, 122, 138, 0.18);
}

.record-kicker {
  margin: 0 0 5px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-details h3 {
  margin: 0;

  color: var(--bright-text);

  font-size: clamp(2rem, 4vw, 3.1rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.05;
}

.record-artist {
  margin: 8px 0 18px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-description {
  max-width: 560px;
  margin-bottom: 20px;
}

.record-details audio {
  width: 100%;
  opacity: 0.8;
}


/* =========================================================
   PLAYLISTS
========================================================= */

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

.playlist-card {
  padding: 22px;

  border: 1px solid rgba(198, 122, 138, 0.28);

  background:
    linear-gradient(
      150deg,
      rgba(91, 42, 69, 0.19),
      rgba(15, 10, 14, 0.4)
    );
}

.playlist-number {
  margin: 0 0 6px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.64rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.playlist-card h3 {
  margin: 0 0 10px;

  color: var(--bright-text);

  font-size: 1.35rem;
  font-style: italic;
  font-weight: normal;
  line-height: 1.25;
}

.playlist-card p {
  margin-top: 0;
}

.playlist-meta {
  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* =========================================================
   SONG MEMORIES
========================================================= */

.song-memory {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;

  padding: 23px 0;

  border-bottom: 1px dotted rgba(198, 122, 138, 0.28);
}

.song-memory:first-of-type {
  padding-top: 2px;
}

.song-memory:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.song-memory-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 4px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.75rem;
}

.song-memory h3 {
  margin: 0 0 8px;

  color: var(--bright-text);

  font-size: 1.45rem;
  font-style: italic;
  font-weight: normal;
}

.song-memory p:not(.entry-meta) {
  margin-bottom: 0;
}


/* =========================================================
   ICE MACHINE MOBILE
========================================================= */

@media (max-width: 700px) {
  .record-player {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .record-art {
    min-height: auto;
  }

  .record-disc {
    max-width: 210px;
  }

  .record-details {
    text-align: center;
  }

  .record-description {
    margin-left: auto;
    margin-right: auto;
  }

  .playlist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .song-memory {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .song-memory-track {
    justify-content: flex-start;
  }
}
.unavailable-track {
  display: inline-block;
  margin: 5px 0 0;
  padding: 8px 11px;

  border: 1px solid rgba(198, 122, 138, 0.34);

  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.journal-entry{
    max-width:700px;
    margin:70px auto;
}

.entry-date{
    letter-spacing:3px;
    text-transform:uppercase;
    color:#cfa5d9;
    margin-bottom:12px;
}

.journal-entry h2{
    font-family:"Cormorant Garamond", serif;
    font-size:2.2rem;
    margin-bottom:32px;
}

.journal-entry p{
    line-height:2;
    margin-bottom:1.8rem;
}

.signature{
    text-align:right;
    margin-top:50px;
    font-style:italic;
}
/* =========================================================
   LOST AND FOUND
========================================================= */

.lost-found-header {
  background-position: center 53%;
}

.lost-found-status {
  margin-top: 24px;
  padding: 13px 16px;

  border: 1px dashed rgba(198, 122, 138, 0.38);

  background: rgba(91, 42, 69, 0.14);

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.lost-found-status p {
  margin: 0;
}


/* =========================================================
   FOUND OBJECT GRID
========================================================= */

.found-object-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.found-object {
  overflow: hidden;

  border: 1px solid rgba(198, 122, 138, 0.28);

  background:
    linear-gradient(
      160deg,
      rgba(91, 42, 69, 0.17),
      rgba(14, 10, 13, 0.7)
    );
}

.found-object-image {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 210px;
  padding: 24px;

  border-bottom: 1px solid rgba(198, 122, 138, 0.25);

  background:
    radial-gradient(
      circle at center,
      rgba(198, 122, 138, 0.16),
      transparent 65%
    ),
    #130d12;

  color: var(--dusty-rose);
  text-align: center;
}

.found-object-image p {
  margin: 0;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-image {
  background:
    linear-gradient(
      rgba(16, 10, 14, 0.34),
      rgba(16, 10, 14, 0.78)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(198, 122, 138, 0.06) 0,
      rgba(198, 122, 138, 0.06) 2px,
      transparent 2px,
      transparent 8px
    );
}

.text-fragment blockquote {
  margin: 0;

  color: var(--warm-cream);

  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
}

.link-fragment,
.object-fragment {
  flex-direction: column;
  gap: 10px;
}

.link-fragment span,
.object-fragment span {
  color: var(--dusty-rose);
  font-size: 2.4rem;
}

.found-object-copy {
  padding: 20px;
}

.found-object-number {
  margin: 0 0 5px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.63rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.found-object-copy h3 {
  margin: 0 0 10px;

  color: var(--bright-text);

  font-size: 1.35rem;
  font-style: italic;
  font-weight: normal;
  line-height: 1.25;
}

.found-object-copy p {
  margin-top: 0;
}

.found-object-meta {
  margin-bottom: 0;

  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =========================================================
   FRAGMENTS
========================================================= */

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

.fragment-note {
  min-height: 150px;
  padding: 20px;

  border: 1px solid rgba(198, 122, 138, 0.26);

  background:
    linear-gradient(
      145deg,
      rgba(232, 214, 193, 0.055),
      rgba(91, 42, 69, 0.12)
    );
}

.fragment-date {
  margin: 0 0 14px;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fragment-note p:last-child {
  margin-bottom: 0;

  color: var(--warm-cream);

  font-size: 1.05rem;
  font-style: italic;
}


/* =========================================================
   LOST AND FOUND MOBILE
========================================================= */

@media (max-width: 760px) {
  .found-object-grid,
  .fragment-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .found-object-image {
    min-height: 180px;
  }
}
.found-photo {
  padding: 0;
}

.found-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.found-object-link {
    display: block;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.found-object-link:hover {
    text-decoration: none;
}

.found-object-link * {
    text-decoration: none;
    color: inherit;
}
/* =========================================================
   CLICKABLE LOST AND FOUND WEBSITE CARD
========================================================= */

.found-object-link,
.found-object-link:visited,
.found-object-link:hover,
.found-object-link:focus {
  display: block;
  height: 100%;

  color: inherit;
  text-decoration: none;
}

.found-object-link * {
  text-decoration: none;
}

.website-snapshot {
  position: relative;

  display: block;
  min-height: 210px;
  padding: 0;
  overflow: hidden;

  background: #130d12;
}

.website-snapshot img {
  display: block;

  width: 100%;
  height: 210px;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.82)
    contrast(0.96)
    brightness(0.84);

  transition:
    filter 180ms ease,
    transform 280ms ease;
}

.external-link-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(232, 214, 193, 0.55);

  background: rgba(11, 8, 12, 0.86);
  color: var(--warm-cream);

  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;

  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(255, 77, 166, 0.12);
}

.found-object-link:hover .website-snapshot img,
.found-object-link:focus-visible .website-snapshot img {
  filter:
    saturate(1)
    contrast(1)
    brightness(0.98);

  transform: scale(1.025);
}

.found-object-link:hover .found-object-copy h3,
.found-object-link:focus-visible .found-object-copy h3 {
  color: var(--dusty-rose);
}

.found-object-link:focus-visible {
  outline: 2px solid var(--dusty-rose);
  outline-offset: -2px;
}
/* =========================================================
   ROOM KEYS
========================================================= */

.room-keys-header {
  background-position: center 52%;
}

.key-introduction {
  max-width: 900px;
  margin: 0 auto;
}


/* =========================================================
   KEY RACK PANEL
========================================================= */

.key-rack-panel {
  padding: clamp(25px, 5vw, 54px);

  background:
    radial-gradient(
      circle at center,
      rgba(140, 77, 64, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(45, 26, 26, 0.98),
      rgba(20, 13, 16, 0.99)
    );
}

.key-rack-heading {
  margin-bottom: 34px;
  text-align: center;
}

.key-rack-heading p {
  margin: 0;

  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.key-rack-heading h2 {
  margin: 5px 0 3px;

  color: var(--warm-cream);

  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: normal;
}

.key-rack-heading span {
  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   WOODEN KEY RACK
========================================================= */

.key-rack {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 20px;

  padding: clamp(24px, 5vw, 46px);

  border: 8px solid #4a2827;

  background:
    linear-gradient(
      rgba(42, 21, 23, 0.14),
      rgba(20, 11, 14, 0.34)
    ),
    repeating-linear-gradient(
      90deg,
      #472826 0,
      #4d2c29 34px,
      #422321 35px,
      #422321 37px
    );

  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.72),
    inset 0 0 0 2px rgba(232, 214, 193, 0.08),
    0 18px 35px rgba(0, 0, 0, 0.38);
}


/* =========================================================
   KEYS
========================================================= */

.motel-key,
.empty-hook {
  position: relative;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  min-height: 138px;
}

button.motel-key {
  width: 100%;
  padding: 0;

  border: 0;

  background: transparent;
  color: inherit;

  cursor: pointer;
}

.key-hook {
  position: absolute;
  top: 0;
  left: 50%;

  width: 14px;
  height: 18px;

  border: 2px solid #a47558;
  border-bottom-width: 4px;
  border-radius: 8px 8px 3px 3px;

  background: #4b2b24;

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    inset 0 0 3px rgba(255, 255, 255, 0.1);

  transform: translateX(-50%);
}

.key-ring {
  position: absolute;
  top: 14px;
  left: 50%;

  width: 31px;
  height: 31px;

  border: 3px solid #9c755c;
  border-radius: 50%;

  box-shadow:
    0 4px 5px rgba(0, 0, 0, 0.48),
    inset 0 0 3px rgba(255, 255, 255, 0.12);

  transform: translateX(-50%);
}

.key-tag {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 82px;
  min-height: 105px;
  margin-top: 34px;
  padding: 26px 8px 18px;

  border: 1px solid rgba(57, 34, 35, 0.76);
  border-radius: 40px 40px 8px 8px;

  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #d2b49e 7px
    );

  color: #4c3233;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;

  box-shadow:
    0 10px 12px rgba(0, 0, 0, 0.34),
    inset 0 0 15px rgba(82, 39, 39, 0.14);

  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

.decorative-key .key-tag {
  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #b99387 7px
    );

  color: #3c292c;
}

.lore-key .key-tag {
  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #dfb7bd 7px
    );

  box-shadow:
    0 10px 12px rgba(0, 0, 0, 0.34),
    0 0 15px rgba(255, 77, 166, 0.09),
    inset 0 0 15px rgba(82, 39, 39, 0.13);
}

.lore-key:hover .key-tag,
.lore-key:focus-visible .key-tag,
.lore-key.active-key .key-tag {
  filter: brightness(1.08);

  box-shadow:
    0 14px 18px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(255, 77, 166, 0.18),
    inset 0 0 15px rgba(82, 39, 39, 0.11);

  transform: translateY(-7px) rotate(-1deg);
}

.lore-key:focus-visible {
  outline: 2px solid var(--dusty-rose);
  outline-offset: 5px;
}

.occupied-key .key-tag {
  color: #5d253f;

  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #e4b1c1 7px
    );
}

.private-key .key-tag {
  color: #3f2633;

  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #be9cac 7px
    );
}

.tilted-left .key-tag {
  transform: rotate(-4deg);
}

.tilted-right .key-tag {
  transform: rotate(4deg);
}

.upside-down-key .key-tag {
  transform: rotate(180deg);
}

.strange-key .key-tag {
  color: #d8b8ba;

  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #2d2026 7px
    );
}


/* =========================================================
   EMPTY HOOKS
========================================================= */

.empty-hook {
  min-height: 138px;
}

.empty-hook-label {
  margin-top: 45px;

  color: rgba(232, 214, 193, 0.35);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.empty-hook::after {
  content: "key out";

  position: absolute;
  top: 72px;

  color: rgba(232, 214, 193, 0.22);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   MASTER KEY
========================================================= */

.master-key-area {
  display: flex;
  justify-content: center;

  margin-top: 32px;
  padding-top: 28px;

  border-top: 1px solid rgba(198, 122, 138, 0.24);
}

.master-key {
  width: 170px;
}

.master-key .key-tag {
  width: 132px;

  color: #37251f;

  background:
    radial-gradient(
      circle at 50% 12px,
      transparent 0 6px,
      #c99a66 7px
    );

  letter-spacing: 0.14em;
}


/* =========================================================
   KEY LORE PANEL
========================================================= */

.key-lore-panel {
  min-height: 300px;

  background:
    radial-gradient(
      circle at top center,
      rgba(198, 122, 138, 0.1),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      rgba(31, 16, 25, 0.96),
      rgba(13, 9, 12, 0.99)
    );
}

.key-lore-placeholder,
.key-lore-entry {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.key-lore-placeholder h2,
.key-lore-entry h2 {
  margin: 7px 0 20px;

  color: var(--bright-text);

  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.2;
}

.key-lore-entry {
  display: none;
}

.key-lore-entry.visible-lore {
  display: block;
  animation: reveal-key-lore 300ms ease;
}

.key-lore-entry p:not(.panel-label) {
  font-size: 1.06rem;
}

.master-key-final-line {
  margin-top: 25px;

  color: var(--warm-cream);

  font-size: 1.32rem !important;
  font-style: italic;
}

@keyframes reveal-key-lore {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   MOTEL CUSTOMS
========================================================= */

.room-keys-lower-grid {
  margin-top: 0;
}

.motel-customs {
  display: grid;
  gap: 0;
}

.motel-customs article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;

  padding: 18px 0;

  border-bottom: 1px dotted rgba(198, 122, 138, 0.28);
}

.motel-customs article:first-child {
  padding-top: 0;
}

.motel-customs article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.motel-customs span {
  color: var(--dusty-rose);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.7rem;
}

.motel-customs p {
  margin: 0;
}


/* =========================================================
   KEY RACK RESPONSIVE
========================================================= */

@media (max-width: 850px) {
  .key-rack {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }
}

@media (max-width: 650px) {
  .key-rack {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 14px;
    padding: 22px 14px;
  }

  .key-tag {
    width: 70px;
    min-height: 96px;
  }

  .motel-customs article {
    grid-template-columns: 36px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .key-rack {
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }
}
/* =========================================================
   GUESTBOOK
========================================================= */

.guestbook-header {
  background-position: center 52%;
}

.guestbook-introduction {
  max-width: 900px;
  margin: 0 auto;
}


/* =========================================================
   OPEN GUEST LEDGER
========================================================= */

.guest-ledger {
  position: relative;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  overflow: hidden;

  border: 10px solid #3c2427;
  border-radius: 10px 10px 18px 18px;

  background: #27191b;

  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(232, 214, 193, 0.08);
}

.ledger-spine {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(61, 39, 38, 0.88),
      rgba(112, 75, 67, 0.52),
      rgba(46, 29, 31, 0.92)
    );

  box-shadow:
    -8px 0 15px rgba(0, 0, 0, 0.2),
    8px 0 15px rgba(0, 0, 0, 0.2);

  transform: translateX(-50%);
}

.ledger-page {
  position: relative;

  min-width: 0;
  padding: clamp(28px, 5vw, 58px);

  color: #4c3538;

  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 31px,
      rgba(115, 71, 76, 0.13) 32px,
      transparent 33px
    ),
    linear-gradient(
      145deg,
      #decdb2,
      #cbb99e 70%,
      #bda88e
    );

  box-shadow:
    inset 0 0 36px rgba(78, 51, 40, 0.2);
}

.ledger-left-page {
  padding-right: clamp(42px, 6vw, 72px);
}

.ledger-right-page {
  padding-left: clamp(42px, 6vw, 72px);
}

.ledger-page::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(91, 54, 46, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 88%,
      rgba(91, 54, 46, 0.11),
      transparent 20%
    );
}

.ledger-page-number {
  position: relative;
  z-index: 1;

  margin-bottom: 25px;

  color: rgba(83, 52, 56, 0.62);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.ledger-heading {
  position: relative;
  z-index: 1;

  margin-bottom: 32px;
  padding-bottom: 20px;

  border-bottom: 2px solid rgba(89, 52, 57, 0.33);

  text-align: center;
}

.ledger-motel-name {
  margin: 0;

  color: #7a3e54;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ledger-heading h2 {
  margin: 5px 0;

  color: #55373d;

  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: normal;
}

.ledger-heading p:last-child {
  margin: 0;

  color: rgba(76, 53, 56, 0.72);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* =========================================================
   REGISTER ENTRIES
========================================================= */

.register-entries {
  position: relative;
  z-index: 1;
}

.register-entry {
  padding: 22px 4px 25px;

  border-bottom: 1px solid rgba(83, 52, 56, 0.32);
}

.register-entry:first-child {
  padding-top: 0;
}

.register-entry:last-child {
  border-bottom: 0;
}

.register-entry-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 6px;
}

.register-room,
.register-date,
.register-status {
  margin: 0;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-room {
  color: #7a3e54;
  font-weight: bold;
}

.register-date,
.register-status {
  color: rgba(76, 53, 56, 0.65);
}

.register-name {
  margin: 0 0 8px;

  color: #52353b;

  font-size: 1.2rem;
  font-style: italic;
}

.register-entry blockquote {
  margin: 0 0 11px;

  color: #4e3538;

  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
}

.faded-entry {
  opacity: 0.68;
}


/* =========================================================
   REGISTRATION CARD
========================================================= */

.registration-card {
  position: relative;
  z-index: 1;

  padding: clamp(20px, 4vw, 34px);

  border: 1px solid rgba(86, 51, 55, 0.35);

  background:
    linear-gradient(
      180deg,
      rgba(239, 225, 202, 0.9),
      rgba(212, 192, 163, 0.88)
    );

  box-shadow:
    0 12px 24px rgba(66, 42, 36, 0.18),
    inset 0 0 18px rgba(92, 54, 47, 0.08);
}

.registration-card-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 20px;
  padding-bottom: 14px;

  border-bottom: 2px solid rgba(92, 50, 58, 0.3);
}

.registration-card-header p,
.registration-card-header span {
  margin: 0;

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-card-header p {
  color: #7a3e54;
  font-weight: bold;
}

.registration-card-header span {
  color: rgba(76, 53, 56, 0.72);
}

.registration-instructions {
  margin-bottom: 20px;
}

.registration-instructions p {
  margin: 0;

  color: #523a3d;
  font-style: italic;
}

.register-privacy-note {
  margin: 20px 0 0;

  color: rgba(76, 53, 56, 0.7);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.6rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}


/* =========================================================
   TALLY EMBED
========================================================= */

.tally-guestbook {
  width: 100%;
  min-height: 550px;
  overflow: hidden;

  border: 1px solid rgba(87, 51, 57, 0.26);

  background: rgba(18, 13, 15, 0.04);
}

.tally-guestbook iframe {
  display: block;

  width: 100%;
  min-height: 550px;

  border: 0;
}


/* =========================================================
   LOWER GUESTBOOK AREA
========================================================= */

.guestbook-lower-grid {
  margin-top: 0;
}


/* =========================================================
   GUESTBOOK RESPONSIVE
========================================================= */

@media (max-width: 880px) {
  .guest-ledger {
    grid-template-columns: 1fr;
  }

  .ledger-spine {
    display: none;
  }

  .ledger-left-page,
  .ledger-right-page {
    padding:
      clamp(28px, 6vw, 50px)
      clamp(24px, 6vw, 50px);
  }

  .ledger-left-page {
    border-bottom: 8px solid #3c2427;
  }
}

@media (max-width: 620px) {
  .guest-ledger {
    border-width: 6px;
  }

  .register-entry-topline,
  .registration-card-header {
    flex-direction: column;
    gap: 3px;
  }

  .ledger-heading h2 {
    font-size: 2rem;
  }

  .tally-guestbook,
  .tally-guestbook iframe {
    min-height: 620px;
  }
}
/* =========================================================
   SPOTIFY PLAYLIST FEATURE
========================================================= */

.spotify-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}

.spotify-feature-intro {
  position: relative;
  padding: 28px;

  border: 1px solid rgba(198, 122, 138, 0.27);

  background:
    radial-gradient(
      circle at top left,
      rgba(198, 122, 138, 0.15),
      transparent 65%
    ),
    rgba(14, 9, 13, 0.5);
}

.spotify-feature-intro::before {
  content: "♪";

  position: absolute;
  top: 18px;
  right: 20px;

  color: rgba(198, 122, 138, 0.34);
  font-size: 2rem;
}

.spotify-feature-intro h3 {
  margin: 0;

  color: var(--bright-text);

  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: normal;
  line-height: 1.08;
}

.spotify-listening-note {
  margin: 22px 0 0;
  padding-top: 16px;

  border-top: 1px dotted rgba(198, 122, 138, 0.28);

  color: var(--muted-text);

  font-family:
    "Courier New",
    Courier,
    monospace;

  font-size: 0.64rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-transform: uppercase;
}

.spotify-player {
  width: 100%;
  overflow: hidden;

  border: 1px solid rgba(198, 122, 138, 0.34);
  border-radius: 12px;

  background: rgba(10, 7, 10, 0.76);

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(255, 77, 166, 0.07);
}

.spotify-player iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* =========================================================
   SPOTIFY MOBILE
========================================================= */

@media (max-width: 760px) {
  .spotify-feature {
    grid-template-columns: 1fr;
  }

  .spotify-feature-intro {
    text-align: center;
  }
}

/* =========================================================
   SIMPLE ROOM DIRECTORIES
========================================================= */
.room-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.room-directory a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(198, 122, 138, 0.34);
  background: linear-gradient(145deg, rgba(91, 42, 69, 0.22), rgba(14, 10, 13, 0.64));
  color: var(--bright-text);
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
  text-decoration: none;
  transition: border-color 170ms ease, color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}
.room-directory a:hover,
.room-directory a:focus-visible {
  border-color: var(--dusty-rose);
  color: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.28), 0 0 14px rgba(255,77,166,.08);
}

/* =========================================================
   FULL JOURNAL ENTRIES
========================================================= */
.full-entry { max-width: 860px; margin: 0 auto; }
.full-entry-heading { margin-bottom: 32px; padding-bottom: 22px; border-bottom: 1px solid rgba(198,122,138,.28); text-align: center; }
.full-entry-heading h2 { margin: 5px 0 8px; color: var(--bright-text); font-size: clamp(2.4rem, 6vw, 4.3rem); font-style: italic; font-weight: normal; }
.full-entry-date { margin: 0; color: var(--muted-text); font-family: "Courier New", Courier, monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.full-entry-body { max-width: 720px; margin: 0 auto; }
.full-entry-body p { margin: 0 0 1.35em; }
.full-entry-body p:first-child { color: var(--warm-cream); font-size: 1.25rem; }
.entry-return { margin-top: 38px; padding-top: 25px; border-top: 1px dotted rgba(198,122,138,.28); text-align: center; }

/* =========================================================
   SPOTIFY EMBED – DEFINITIVE SIZING
========================================================= */
.spotify-feature { display:grid; grid-template-columns:minmax(220px,.72fr) minmax(0,1.35fr); gap:clamp(28px,5vw,52px); align-items:center; }
.spotify-feature-intro { position:relative; padding:28px; border:1px solid rgba(198,122,138,.27); background:radial-gradient(circle at top left,rgba(198,122,138,.15),transparent 65%),rgba(14,9,13,.5); }
.spotify-feature-intro h3 { margin:0; color:var(--bright-text); font-size:clamp(2rem,4vw,3rem); font-style:italic; font-weight:normal; line-height:1.08; }
.spotify-listening-note { margin:22px 0 0; padding-top:16px; border-top:1px dotted rgba(198,122,138,.28); color:var(--muted-text); font-family:"Courier New",Courier,monospace; font-size:.64rem; letter-spacing:.06em; line-height:1.7; text-transform:uppercase; }
.spotify-player { display:block; width:100%; min-width:0; min-height:352px; overflow:hidden; border:1px solid rgba(198,122,138,.34); border-radius:12px; background:#121215; box-shadow:0 16px 34px rgba(0,0,0,.32),0 0 22px rgba(255,77,166,.07); }
.spotify-player iframe { display:block; width:100%; height:352px; min-height:352px; border:0; }

@media (max-width:760px) {
  .room-directory { grid-template-columns:1fr; }
  .spotify-feature { grid-template-columns:1fr; }
  .spotify-feature-intro { text-align:center; }
}


/* =========================================================
   VERSION 2 VISUAL REFINEMENT
   Applied without changing the existing page structure.
========================================================= */

:root {
  --dusty-rose: #bd7f8d;
  --neon-magenta: #e869a8;
  --plum: #4a2439;
  --mauve: #765364;
  --warm-cream: #eadfd2;
  --charcoal: #121014;
  --rust: #6b403d;
  --deep-shadow: #0b090c;

  --panel-background: rgba(18, 13, 17, 0.94);
  --panel-background-soft: rgba(27, 17, 23, 0.92);
  --panel-border: rgba(189, 127, 141, 0.34);

  --body-text: #d8c8c7;
  --muted-text: #a98891;
  --bright-text: #f1e7df;

  --shadow: rgba(0, 0, 0, 0.46);
  --pink-glow: rgba(232, 105, 168, 0.22);
}

body {
  background:
    radial-gradient(circle at top, rgba(74, 36, 57, 0.34), transparent 34rem),
    linear-gradient(180deg, #171016 0%, var(--charcoal) 48%, var(--deep-shadow) 100%);
  font-size: 16px;
  line-height: 1.75;
}

.site-wrapper {
  width: min(1120px, 92%);
  padding-bottom: 52px;
}

.motel-header {
  min-height: 500px;
  margin-top: 22px;
  border-color: rgba(189, 127, 141, 0.3);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.42),
    inset 0 0 80px rgba(0, 0, 0, 0.18);
}

.motel-header-content {
  min-height: 500px;
  padding: 46px 28px;
}

.site-title-wrapper {
  max-width: 760px;
}

.arrival-label {
  margin-bottom: 12px;
  color: rgba(234, 223, 210, 0.72);
  letter-spacing: 0.2em;
  text-shadow: none;
}

.site-title {
  color: #f0d8dc;
  font-size: clamp(3.8rem, 9vw, 7.4rem);
  letter-spacing: -0.045em;
  text-shadow:
    0 0 12px rgba(232, 105, 168, 0.18),
    0 5px 18px rgba(0, 0, 0, 0.62);
}

.site-subtitle {
  margin-top: 16px;
  color: rgba(234, 223, 210, 0.84);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.vacancy-wrapper {
  margin-top: -16px;
  margin-bottom: 22px;
}

.vacancy-sign {
  min-width: 148px;
  padding: 7px 18px 6px;
  border-width: 1px;
  border-color: rgba(255, 166, 201, 0.68);
  background: rgba(42, 17, 29, 0.96);
  color: #f4b4cb;
  box-shadow:
    0 0 8px rgba(232, 105, 168, 0.2),
    inset 0 0 8px rgba(232, 105, 168, 0.08);
  text-shadow: 0 0 7px rgba(232, 105, 168, 0.48);
  animation-duration: 10s;
}

.main-navigation {
  gap: 2px;
  margin-bottom: 24px;
  padding: 8px;
  border-color: rgba(189, 127, 141, 0.28);
  background: rgba(18, 13, 17, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.main-navigation a {
  padding: 9px 12px;
  color: rgba(216, 200, 199, 0.78);
  letter-spacing: 0.09em;
}

.main-navigation a:not(:last-child)::after {
  color: rgba(189, 127, 141, 0.28);
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.active {
  background: rgba(189, 127, 141, 0.07);
  color: var(--warm-cream);
  transform: none;
}

.main-content,
.main-column,
.sidebar {
  gap: 20px;
}

.top-grid,
.content-grid {
  gap: 20px;
}

.motel-panel {
  padding: clamp(24px, 3.5vw, 36px);
  border-color: rgba(189, 127, 141, 0.3);
  background: linear-gradient(180deg, rgba(28, 18, 24, 0.94), rgba(16, 12, 15, 0.96));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.motel-panel::before {
  left: 26px;
  right: 26px;
  background: linear-gradient(90deg, transparent, rgba(232, 105, 168, 0.14), transparent);
}

.panel-heading {
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-color: rgba(189, 127, 141, 0.2);
}

.panel-label {
  color: rgba(189, 127, 141, 0.92);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.panel-heading h2 {
  color: var(--bright-text);
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  line-height: 1.2;
}

.welcome-copy {
  max-width: 650px;
}

.key-button {
  margin-top: 22px;
  padding: 10px 15px;
  border-color: rgba(234, 223, 210, 0.35);
  background: rgba(189, 127, 141, 0.1);
}

.key-button:hover,
.key-button:focus-visible {
  background: rgba(189, 127, 141, 0.16);
  box-shadow: none;
  transform: none;
}

.check-in-panel {
  background: linear-gradient(180deg, rgba(37, 25, 31, 0.96), rgba(20, 15, 18, 0.98));
}

.check-in-row {
  padding: 9px 0;
  border-color: rgba(189, 127, 141, 0.18);
}

.check-in-row dt {
  color: rgba(189, 127, 141, 0.84);
}

.notice-panel {
  background: linear-gradient(90deg, rgba(74, 36, 57, 0.22), rgba(16, 12, 15, 0.96));
}

.sidebar-panel {
  padding: 22px;
}

.room-directory {
  gap: 10px;
}

.room-directory a {
  min-height: 76px;
  padding: 16px;
  border-color: rgba(189, 127, 141, 0.26);
  background: rgba(74, 36, 57, 0.12);
  font-size: 1.18rem;
}

.room-directory a:hover,
.room-directory a:focus-visible {
  box-shadow: none;
  transform: none;
}

.directory-list a:hover,
.directory-list a:focus-visible {
  padding-left: 0;
}

.site-footer {
  margin-top: 30px;
  padding-top: 26px;
  border-color: rgba(189, 127, 141, 0.24);
}

.footer-line {
  color: rgba(189, 127, 141, 0.88);
}

@media (max-width: 900px) {
  .motel-header,
  .motel-header-content {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .site-wrapper {
    width: 94%;
  }

  .motel-header,
  .motel-header-content {
    min-height: 390px;
  }

  .motel-header-content {
    padding: 32px 16px;
  }

  .site-title {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .main-navigation {
    gap: 0;
  }

  .motel-panel {
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
}

/* =========================================================
   RECORDS ROOM — INDEX CARD FILE
========================================================= */

.records-room-header {
  background-position: center 52%;
}

.records-room-page {
  gap: 20px;
}

.records-introduction {
  text-align: center;
}

.records-introduction .panel-heading {
  margin-bottom: 10px;
}

.records-introduction .panel-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.records-note {
  margin: 0;
  color: var(--muted-text);
  font-style: italic;
}

.records-desk {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.index-card {
  position: relative;
  min-width: 0;
  padding: 28px 28px 22px;
  overflow: hidden;

  border: 1px solid rgba(86, 51, 55, 0.42);

  color: #4c3538;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 31px,
      rgba(115, 71, 76, 0.14) 32px,
      transparent 33px
    ),
    linear-gradient(145deg, #decdb2, #cbb99e 70%, #bda88e);

  box-shadow:
    0 15px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 28px rgba(78, 51, 40, 0.16);
}

.index-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 10%, rgba(91, 54, 46, 0.12), transparent 23%),
    radial-gradient(circle at 88% 90%, rgba(91, 54, 46, 0.09), transparent 20%);
}

.index-card-header,
.index-card-records,
.index-card-footer {
  position: relative;
  z-index: 1;
}

.index-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;

  margin-bottom: 24px;
  padding-bottom: 17px;
  border-bottom: 2px solid rgba(89, 52, 57, 0.32);
}

.index-card-number,
.index-card-category,
.index-card-count {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
}

.index-card-number {
  color: #7a3e54;
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.18em;
}

.index-card-category {
  margin-top: 5px;
  color: rgba(76, 53, 56, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.index-card-count {
  flex: 0 0 auto;
  color: rgba(76, 53, 56, 0.62);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.index-card-records {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-card-records li {
  min-height: 33px;
  padding: 3px 0 7px;
}

.index-card-records a,
.index-card-records span {
  color: #52353b;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.45;
}

.index-card-records a {
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.index-card-records a:hover,
.index-card-records a:focus-visible {
  color: #7a3e54;
  text-decoration: underline;
}

.index-card-records span {
  color: rgba(82, 53, 59, 0.72);
}

.index-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-top: 26px;
  padding-top: 13px;
  border-top: 1px solid rgba(83, 52, 56, 0.28);

  color: rgba(76, 53, 56, 0.62);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .records-desk {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .index-card {
    padding: 24px 22px 19px;
  }

  .index-card-header,
  .index-card-footer {
    flex-direction: column;
    gap: 6px;
  }

  .index-card-count {
    text-align: left;
  }
}
