* { box-sizing: border-box; }
html { min-height: 100%; background: var(--sand); }
body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.65;
  letter-spacing: 0;
  background-color: #d9c8ab;
  background-image: var(--image2-room-desktop);
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
body::before { position: fixed; z-index: -1; inset: 0; content: ""; background: rgba(245, 239, 222, 0.2); }
button, textarea, input { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
button:focus-visible, textarea:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid rgba(24, 79, 186, 0.3); outline-offset: 3px; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
.app-shell { min-height: 100dvh; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--page-width), calc(100% - 56px)); min-height: 66px; margin: 0 auto; padding: 10px 0;
}
.brand-link { display: inline-flex; align-items: center; gap: 11px; border: 0; padding: 0; color: var(--ink); background: transparent; font-weight: 650; font-size: 15px; }
.brand-mark { color: var(--brand); font-weight: 750; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-link { position: relative; min-height: 44px; border: 0; padding: 10px 16px 11px; color: var(--ink); background: rgba(255, 253, 248, 0.62); box-shadow: 0 5px 15px rgba(70, 54, 31, 0.08); font-size: 15px; font-weight: 620; transition: color 150ms ease, background-color 150ms ease, transform 150ms ease; }
.nav-link::after { position: absolute; right: 11px; bottom: 6px; left: 11px; height: 3px; content: ""; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease; }
.nav-link:hover { color: var(--brand-dark); background: rgba(255, 253, 248, 0.88); transform: translateY(-1px); }
.nav-link.is-active { color: #fff; background: var(--brand); box-shadow: 0 7px 18px rgba(24, 79, 186, 0.2); }
.nav-link.is-active::after { background: rgba(255, 255, 255, 0.9); transform: scaleX(1); }
.page-shell { width: min(var(--page-width), calc(100% - 56px)); margin: 0 auto; padding: 8px 0 16px; }
#main-content:focus { outline: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; } }

@media (min-width: 621px) {
  html, body { height: 100%; overflow: hidden; }
  .app-shell { height: 100dvh; overflow: hidden; }
  .page-shell { height: calc(100dvh - 66px); }
}

@media (max-width: 620px) {
  body {
    background-image: var(--image2-room-mobile);
    background-position: center top;
    background-size: 100% auto;
    background-attachment: scroll;
  }
  body::before { background: rgba(245, 239, 222, 0.12); }
}
