:root {
  --cream-050: #fbf8f2;
  --cream-100: #f4ede1;
  --mist-100: #eef2f4;
  --mist-200: #dce5eb;
  --mist-300: #c8d4dd;
  --blue-100: #dfeef5;
  --blue-200: #c7dbe6;
  --blue-400: #6e8ea2;
  --navy-700: #223642;
  --navy-900: #15232b;
  --slate-600: #5b6872;
  --slate-800: #36464f;
  --white: #ffffff;
  --border: rgba(54, 70, 79, 0.12);
  --shadow-soft: 0 24px 60px rgba(47, 67, 81, 0.1);
  --shadow-card: 0 16px 38px rgba(56, 74, 86, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 88px;
  --header-base-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--navy-700);
  background:
    radial-gradient(circle at top left, rgba(223, 238, 245, 0.85), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(244, 237, 225, 0.95), transparent 28%),
    linear-gradient(180deg, #f8fafb 0%, var(--cream-050) 100%);
}

body.modal-open {
  overflow: hidden;
}

main::after {
  content: "";
  display: block;
  height: calc(var(--header-height) + 2rem);
}

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

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  inset: auto auto 10% -9rem;
  background: rgba(199, 219, 230, 0.32);
}

.site-shell::after {
  inset: 16% -8rem auto auto;
  background: rgba(244, 237, 225, 0.45);
}

.container {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(2.75rem, 4.5vh, 4.25rem) 0;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-soft {
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(54, 70, 79, 0.08);
}

.header-bar {
  min-height: var(--header-base-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), #9db8c8);
  box-shadow: 0 0 0 8px rgba(199, 219, 230, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-copy span:last-child {
  font-size: 0.78rem;
  color: var(--slate-600);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover {
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.site-nav a.is-active,
.site-nav a[aria-current="location"] {
  color: var(--white);
  background: linear-gradient(135deg, #7697ab, #5c7b8d);
  box-shadow: 0 12px 24px rgba(92, 123, 141, 0.22);
  transform: translateY(-1px);
}

.reveal {
  opacity: 1;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-delay {
  transition-delay: 100ms;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-400);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  max-width: 14ch;
  margin-bottom: 0.65rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

p,
li,
dd,
dt,
label,
.button,
.form-note,
.form-status {
  line-height: 1.65;
}

p {
  color: var(--slate-800);
  margin: 0;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #7596ab, #5f8094);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(95, 128, 148, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-700);
  border: 1px solid rgba(54, 70, 79, 0.1);
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading p {
  max-width: 64ch;
}

.placeholder-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(18, 27, 33, 0.26)),
    linear-gradient(135deg, rgba(223, 238, 245, 0.92), rgba(244, 237, 225, 0.98));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.placeholder-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.placeholder-panel.has-image .placeholder-label,
.placeholder-panel.has-image .placeholder-caption {
  opacity: 0;
  pointer-events: none;
}

.placeholder-panel:has(> img) .placeholder-label,
.placeholder-panel:has(> img) .placeholder-caption,
.placeholder-panel:has(> img)::before,
.placeholder-panel:has(> img)::after {
  display: none;
}

.placeholder-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px dashed rgba(34, 54, 66, 0.18);
}

.placeholder-panel::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.placeholder-label,
.placeholder-caption {
  position: relative;
  z-index: 1;
  transition: opacity 160ms ease;
}

.placeholder-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}

.placeholder-caption {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero {
  padding: 0;
}

.hero-container {
  width: 100%;
  max-width: none;
}

.hero-stage {
  min-height: calc(100svh - var(--header-height));
  align-items: end;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero-stage::before {
  inset: 0;
  border: 0;
}

.hero-stage > .placeholder-label,
.hero-stage > .placeholder-caption {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  left: auto;
  text-align: right;
  max-width: 18rem;
}

.hero-stage > .placeholder-caption {
  top: 2.9rem;
}

.hero-overlay-card {
  position: relative;
  z-index: 2;
  width: min(30rem, 100%);
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(251, 248, 242, 0.84);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 38px rgba(21, 35, 43, 0.12);
  margin: clamp(1rem, 3vw, 2.5rem);
}

.hero-text-block p {
  margin-top: 0.7rem;
  font-size: 0.96rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.film-roll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 23rem);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.35rem;
}

.overall-impression-section {
  padding: 0;
}

.overall-container {
  width: 100%;
  max-width: none;
}

.impression-roll {
  grid-auto-columns: 100%;
  gap: 0;
  padding-bottom: 0;
}

.impression-roll .film-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.impression-roll .film-visual {
  min-height: calc(100svh - var(--header-height));
  border-radius: 0;
  box-shadow: none;
}

.impression-roll .film-visual::before {
  inset: 1.5rem;
}

.film-roll::-webkit-scrollbar {
  height: 10px;
}

.film-roll::-webkit-scrollbar-thumb {
  background: rgba(110, 142, 162, 0.28);
  border-radius: 999px;
}

.film-card,
.selection-card,
.apartment-card,
.link-note,
.booking-summary-card,
.booking-form,
.price-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.film-card,
.selection-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
}

.film-visual {
  min-height: 250px;
  border-radius: 0;
  box-shadow: none;
}

.film-card-body {
  padding: 1rem 1rem 1.1rem;
}

.film-card-body p {
  font-size: 0.92rem;
}

.exterior-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(19, 27, 37, 0.28)),
    linear-gradient(135deg, #d8e7ef, #eae5dc);
}

.view-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(18, 45, 58, 0.24)),
    linear-gradient(135deg, #d4eaf5, #eef4f8);
}

.interior-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(46, 43, 39, 0.18)),
    linear-gradient(135deg, #efe5d7, #f4f3ef);
}

.bedroom-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(42, 46, 53, 0.18)),
    linear-gradient(135deg, #e1e7ed, #f1eee9);
}

.bath-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(55, 55, 60, 0.18)),
    linear-gradient(135deg, #dde8ef, #f5ebe2);
}

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

#apartments .section-heading h2 {
  max-width: none;
}

#apartments .apartment-panel {
  min-height: clamp(85px, 12svh, 140px);
}

#local-selections .section-heading h2 {
  max-width: 30ch;
}

#apartments .apartment-content {
  padding: 0.8rem 1rem;
}

#apartments .apartment-content-compact {
  gap: 0.2rem;
}

#apartments .link-note {
  padding: 0.85rem 1rem;
}

#apartments .link-note p {
  font-size: 0.86rem;
}

.apartment-card {
  appearance: none;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.apartment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 128, 148, 0.28);
  box-shadow: 0 22px 34px rgba(56, 74, 86, 0.14);
}

.apartment-card:focus-visible,
.overlay-close:focus-visible {
  outline: 3px solid rgba(95, 128, 148, 0.4);
  outline-offset: 3px;
}

.apartment-panel {
  min-height: 205px;
  border-radius: 0;
  box-shadow: none;
}

.top-floor-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(25, 40, 46, 0.24)),
    linear-gradient(135deg, #d7ebf5, #e5ded7);
}

.third-floor-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(41, 40, 49, 0.24)),
    linear-gradient(135deg, #dde8ef, #f0ece4);
}

.second-floor-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(33, 43, 35, 0.2)),
    linear-gradient(135deg, #dbe6df, #efeee7);
}

.first-floor-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(55, 43, 32, 0.18)),
    linear-gradient(135deg, #ebe1d7, #eef2f2);
}

.apartment-content {
  padding: 1.1rem;
}

.apartment-content-compact {
  display: grid;
  gap: 0.45rem;
}

.floor-label {
  margin-bottom: 0.1rem;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.apartment-meta {
  font-size: 0.9rem;
}

.apartment-card-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  color: var(--blue-400);
  font-size: 0.82rem;
  font-weight: 700;
}

.apartment-card-foot::after {
  content: ">";
}

.link-note {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.link-note h3 {
  font-size: 1.6rem;
}

.selection-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(199, 219, 230, 0.32);
  color: var(--blue-400);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(53, 42, 31, 0.22)),
    linear-gradient(135deg, #efe2d3, #edf1f3);
}

.dinner-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(28, 30, 44, 0.3)),
    linear-gradient(135deg, #d9dde8, #efe2dc);
}

.beach-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(20, 42, 58, 0.24)),
    linear-gradient(135deg, #d7ecf6, #e8f0f4);
}

.walk-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(30, 42, 36, 0.22)),
    linear-gradient(135deg, #dde8df, #eef0e7);
}

.aperitivo-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(39, 31, 49, 0.3)),
    linear-gradient(135deg, #e2dce8, #f2e7dc);
}

.market-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(47, 46, 42, 0.18)),
    linear-gradient(135deg, #ebe6d7, #eceff0);
}

.booking-section {
  padding-bottom: 4rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.2rem;
  align-items: start;
}

.booking-summary-card {
  margin-top: 1.2rem;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.booking-summary-card h3 {
  font-size: 1.6rem;
}

.booking-summary-card dl {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.booking-summary-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(54, 70, 79, 0.08);
}

.booking-summary-card dt {
  color: var(--slate-600);
}

.booking-summary-card dd {
  margin: 0;
  text-align: right;
}

.booking-form {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-800);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(54, 70, 79, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-700);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(95, 128, 148, 0.62);
  box-shadow: 0 0 0 4px rgba(199, 219, 230, 0.34);
}

.field-group textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.selection-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--navy-700);
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.noscript-note {
  padding: 1rem;
  text-align: center;
}

.hero-text-block p,
.film-card-body p,
.booking-copy > p,
.apartment-detail-copy > p {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.price-table {
  table-layout: fixed;
  overflow-wrap: anywhere;
}

.form-note {
  max-width: 34ch;
  font-size: 0.88rem;
  color: var(--slate-600);
}

.form-note code {
  font-family: "SFMono-Regular", "Consolas", monospace;
  font-size: 0.84rem;
  color: var(--navy-700);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--blue-400);
  font-size: 0.92rem;
  font-weight: 700;
}

.apartment-overlay[hidden] {
  display: none;
}

.apartment-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.apartment-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 35, 43, 0.52);
  backdrop-filter: blur(6px);
}

.apartment-sheet {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 1rem));
  max-height: calc(100svh - 1.5rem);
  overflow: auto;
  border-radius: 30px;
  padding: 1.25rem;
  background: rgba(251, 248, 242, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 80px rgba(21, 35, 43, 0.26);
}

.apartment-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.overlay-close {
  border: 1px solid rgba(54, 70, 79, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-700);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.apartment-sheet-body {
  display: grid;
  gap: 1rem;
}

.apartment-detail-roll {
  grid-auto-columns: minmax(16rem, 22rem);
}

.apartment-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.apartment-detail-copy {
  padding: 0.35rem 0.1rem;
}

.detail-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--slate-600);
}

.detail-list li + li {
  margin-top: 0.35rem;
}

.overlay-actions {
  margin-top: 1rem;
}

.price-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.price-card h3 {
  font-size: 1.5rem;
}

.price-note {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(54, 70, 79, 0.08);
  text-align: left;
  font-size: 0.9rem;
}

.price-table th {
  color: var(--slate-600);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .booking-grid,
  .apartment-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .film-roll {
    grid-auto-columns: minmax(16rem, 20rem);
  }

  .impression-roll {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --header-base-height: 120px;
  }

  .section {
    min-height: calc(100svh - var(--header-height));
    padding: 3.5rem 0;
  }

  .hero,
  .overall-impression-section {
    padding: 0;
  }

  .header-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.2rem;
    flex-wrap: nowrap;
  }

  .site-nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  h3,
  .link-note h3,
  .booking-summary-card h3,
  .price-card h3 {
    font-size: 1.42rem;
  }

  .hero-stage {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-stage > .placeholder-label,
  .hero-stage > .placeholder-caption {
    left: 1.1rem;
    right: 1.1rem;
    text-align: left;
  }

  .hero-stage > .placeholder-caption {
    top: 2.9rem;
  }

  .hero-overlay-card {
    padding: 1.1rem;
  }

  .film-roll {
    grid-auto-columns: minmax(15rem, 86vw);
  }

  .impression-roll {
    grid-auto-columns: 100%;
  }

  .film-visual,
  .apartment-panel {
    min-height: 190px;
  }

  .apartment-grid,
  .field-row,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .booking-summary-card div {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-summary-card dd {
    text-align: left;
  }

  .form-footer {
    justify-content: stretch;
  }

  .apartment-sheet {
    padding: 1rem;
    width: calc(100% - 0.5rem);
    max-height: calc(100svh - 0.5rem);
  }

  .apartment-sheet-header {
    flex-direction: column;
  }
}

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

  .button,
  .site-nav a,
  .apartment-card,
  .reveal {
    transition: none;
  }
}
