.hotel-wrap { padding-bottom: 42px; }
.hotel-room { margin: 13px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.hotel-gallery-wrap { margin-top: 36px; }
.gallery-label, .gallery-controls { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.hotel-gallery { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 14px 0 5px; }
.hotel-gallery::-webkit-scrollbar { display: none; }
.hotel-gallery figure { margin: 0; flex: 0 0 min(420px, 80vw); height: 272px; position: relative; overflow: hidden; scroll-snap-align: start; background: #edccd6; }
.hotel-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hotel-gallery figcaption { position: absolute; left: 12px; bottom: 11px; padding: 5px 8px; background: rgba(255,250,251,.78); color: var(--ink); font-size: 10px; letter-spacing: .07em; }
.gallery-controls { justify-content: flex-end; gap: 12px; margin-top: 11px; }
.gallery-controls button { appearance: none; border: 1px solid #d9afbd; background: transparent; color: var(--ink); width: 30px; height: 30px; border-radius: 50%; font-size: 16px; cursor: pointer; }
@media (max-width: 640px) { .hotel-gallery figure { height: 245px; } }

.prep-section { padding-top: 0; }
.prep-heading { margin-bottom: 32px; }
.reminder-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.reminder-list li { border-bottom: 1px solid var(--line); }
.reminder-list label { display: flex; align-items: center; gap: 14px; min-height: 63px; cursor: pointer; font-size: 15px; transition: color .2s ease; }
.reminder-list input { position: absolute; opacity: 0; pointer-events: none; }
.reminder-box { display: inline-flex; align-items: center; justify-content: center; width: 21px; height: 21px; flex: 0 0 21px; border: 1px solid #d7a7b7; border-radius: 7px; color: transparent; font-size: 13px; line-height: 1; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.reminder-list input:checked + .reminder-box { border-color: var(--accent); background: var(--accent); color: #fffafb; }
.reminder-list input:checked ~ span:last-child { color: var(--muted); text-decoration: line-through; text-decoration-color: #d8a7b7; }
.reminder-list label:focus-within .reminder-box { outline: 2px solid #e8b3c4; outline-offset: 3px; }
