:root {
  --ink: #1f2724;
  --muted: #65716d;
  --paper: #ffffff;
  --soft: #f5f1eb;
  --line: #ded8cf;
  --brand: #0f6fae;
  --accent: #b85832;
  --accent-dark: #8e3f23;
  --shadow: 0 22px 60px rgba(31, 39, 36, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 96px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(31, 39, 36, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-logo,
.brand img {
  width: 44px;
  height: 44px;
  clip-path: circle(49% at center);
}

.brand-logo {
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.site-header.is-scrolled .language-switcher {
  border-color: var(--line);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher a.is-active {
  background: #fff;
  color: var(--ink);
}

.site-header.is-scrolled .language-switcher a.is-active {
  background: var(--ink);
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.button-outline {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: transparent;
}

.button-outline:hover {
  color: #fff;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1600ms ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(17, 25, 23, 0.48), rgba(17, 25, 23, 0.2) 44%, rgba(17, 25, 23, 0.58)),
    linear-gradient(90deg, rgba(17, 25, 23, 0.34), rgba(17, 25, 23, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 32px));
  padding-top: 64px;
  text-align: center;
}

.hero-logo {
  display: block;
  overflow: hidden;
  width: 126px;
  height: 126px;
  margin: 0 auto 24px;
  clip-path: circle(49% at center);
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.22));
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 9vw, 7.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.section {
  padding: clamp(64px, 9vw, 124px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.intro p,
.location-copy p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.apartment-list {
  display: grid;
  gap: 36px;
}

.apartment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 520px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.apartment-card:nth-child(even) .apartment-media {
  order: 2;
}

.apartment-media picture,
.location-grid > picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.apartment-media img,
.location-grid > img,
.apartment-media picture img,
.location-grid > picture img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.apartment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.apartment-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.apartment-copy .summary {
  color: var(--ink);
  font-weight: 650;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.detail-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.apartment-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.text-link {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  background: var(--soft);
}

.gallery-groups {
  display: grid;
  gap: clamp(44px, 7vw, 86px);
}

.gallery-group {
  scroll-margin-top: 96px;
}

.gallery-group + .gallery-group {
  padding-top: clamp(44px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.gallery-group-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: 24px;
}

.gallery-group-header h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.gallery-group-header p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.item-1 {
  grid-column: span 5;
  grid-row: span 3;
}

.item-2 {
  grid-column: span 4;
  grid-row: span 2;
}

.item-3 {
  grid-column: span 3;
  grid-row: span 3;
}

.item-4,
.item-5 {
  grid-column: span 4;
  grid-row: span 2;
}

.item-6 {
  grid-column: span 8;
  grid-row: span 2;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.booking {
  position: fixed;
  z-index: 15;
  left: clamp(18px, 4vw, 56px);
  right: auto;
  bottom: 18px;
  width: min(760px, calc(100vw - 116px));
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1.5fr);
  align-items: center;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(31, 39, 36, 0.16);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.booking-copy {
  padding: 12px 16px;
}

.booking-copy span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.booking-copy h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.booking-copy p {
  display: none;
}

.booking-widget {
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.booking-widget .octobook,
.booking-widget .octobook form {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.booking-widget .octobook,
.booking-widget .octobook *,
.booking-widget .octobook-date,
.booking-widget .octobook-date > div,
.booking-widget .inputdate,
.booking-widget .inputdate > div,
.booking-widget .octobookpax,
.booking-widget .octobookpax > div,
.booking-widget .octobooksubmit,
.booking-widget .octobooksubmit > div {
  background: transparent !important;
}

.booking-widget .octobooktitle,
.booking-widget label:not(#submitLabel),
.booking-widget .booking-fallback {
  display: none !important;
}

.booking-widget .octobook-date,
.booking-widget .octobookpax,
.booking-widget .octobooksubmit {
  position: relative;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.booking-widget .octobooksubmit {
  flex: 0 0 138px !important;
}

.booking-widget .octobookcheckin::before,
.booking-widget .octobookcheckout::before {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 11px;
  color: var(--accent-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.booking-widget .octobookcheckin::before {
  content: "FROM";
}

.booking-widget .octobookcheckout::before {
  content: "TO";
}

.booking-widget .octobook-date > div,
.booking-widget .octobookpax > div,
.booking-widget .octobooksubmit > div {
  margin: 0 !important;
}

.booking-widget .textdate {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  padding: 20px 14px 0 !important;
  border-left: 1px solid var(--line) !important;
  color: var(--ink) !important;
  cursor: pointer;
}

.booking-widget .textdate > div,
.booking-widget .textdate table {
  width: 100% !important;
}

.booking-widget .textdate table {
  border-collapse: collapse !important;
}

.booking-widget .textdate td {
  padding: 0 !important;
  border: 0 !important;
  line-height: 1.05 !important;
  vertical-align: middle !important;
}

.booking-widget .textdate .day {
  width: 34px !important;
  color: var(--brand) !important;
  font-family: var(--serif);
  font-size: 1.6rem !important;
  font-weight: 400 !important;
}

.booking-widget .textdate .month,
.booking-widget .textdate .year,
.booking-widget .textdate .weekday {
  display: inline-block;
  color: var(--ink) !important;
  font-size: 0.66rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.booking-widget .textdate .weekday {
  color: var(--muted) !important;
  font-size: 0.58rem !important;
}

.booking-widget input,
.booking-widget select {
  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  padding: 20px 14px 0 !important;
  border: 0 !important;
  border-left: 1px solid var(--line) !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.booking-widget input::placeholder {
  color: var(--muted) !important;
  opacity: 1 !important;
}

.booking-widget select {
  text-align: center;
  appearance: auto;
}

.booking-widget .octobooksubmit input[type="submit"] {
  padding-top: 0 !important;
  border-left-color: var(--accent) !important;
  color: #fff !important;
  background: var(--accent) !important;
  cursor: pointer;
  text-decoration: none;
}

.booking-widget .octobooksubmit input[type="submit"]:hover {
  background: var(--accent-dark) !important;
}

#ui-datepicker-div-octorate {
  z-index: 9999 !important;
}

.booking-fallback {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-results-page {
  background: var(--soft);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.results-brand {
  color: var(--ink);
}

.booking-results {
  min-height: calc(100vh - 86px);
}

.results-shell {
  display: grid;
  gap: 24px;
}

.results-shell .section-heading {
  margin-bottom: 0;
}

.results-shell h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.results-widget {
  min-height: 620px;
  padding: clamp(14px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.results-widget .octoframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.footer-logo {
  display: block;
  overflow: hidden;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  clip-path: circle(49% at center);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.contact-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-style: normal;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 48px;
  color: var(--ink);
}

.contact-item svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--accent-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-item:hover svg {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.social-link svg {
  color: var(--brand);
}

.floating-whatsapp {
  position: fixed;
  z-index: 16;
  right: clamp(18px, 4vw, 42px);
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(17, 25, 23, 0.24);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--ink);
}

.lightbox {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(17, 25, 23, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  background: #111917;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 920px) {
  body {
    padding-bottom: 154px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .intro-grid,
  .apartment-card,
  .gallery-group-header,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking {
    left: 14px;
    right: 14px;
    bottom: 10px;
    width: auto;
  }

  .booking-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .booking-copy {
    padding: 10px 12px 0;
  }

  .booking-widget .octobook,
  .booking-widget .octobook form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .booking-widget .octobookpax {
    display: none !important;
  }

  .booking-widget .octobooksubmit {
    grid-column: 1 / -1;
    flex-basis: auto !important;
  }

  .booking-widget .octobookcheckin::before,
  .booking-widget .octobookcheckout::before {
    left: 10px;
    top: 8px;
    font-size: 0.58rem;
  }

  .booking-widget .textdate {
    height: 44px !important;
    min-height: 44px !important;
    padding: 17px 10px 0 !important;
  }

  .booking-widget .textdate .day {
    width: 26px !important;
    font-size: 1.2rem !important;
  }

  .booking-widget .textdate .month,
  .booking-widget .textdate .year {
    font-size: 0.56rem !important;
  }

  .booking-widget .textdate .year {
    display: none;
  }

  .booking-widget .textdate .weekday {
    display: none;
  }

  .booking-widget input,
  .booking-widget select {
    height: 44px !important;
    min-height: 44px !important;
    padding: 14px 10px 0 !important;
    font-size: 0.76rem !important;
  }

  .booking-widget .octobooksubmit input[type="submit"] {
    padding-top: 0 !important;
    border-top: 1px solid var(--accent-dark) !important;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 144px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .apartment-card:nth-child(even) .apartment-media {
    order: 0;
  }

  .apartment-media img,
  .location-grid > img,
  .apartment-media picture,
  .location-grid > picture,
  .apartment-media picture img,
  .location-grid > picture img {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
  }

  .gallery-item {
    grid-column: span 3;
    grid-row: span 2;
  }

  .item-1,
  .item-6 {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 146px;
  }

  .site-header {
    display: flex;
    align-items: center;
    padding-inline: 14px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .language-switcher {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .language-switcher a {
    min-width: 28px;
    height: 32px;
    padding: 0 6px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .hero h1 {
    font-size: 2.25rem;
    max-width: 9.5ch;
    margin-inline: auto;
    line-height: 1.02;
  }

  .hero p {
    max-width: 22ch;
  }

  .hero-actions,
  .apartment-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .booking {
    left: 10px;
    right: 10px;
  }

  .booking-copy span {
    font-size: 0.72rem;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .gallery-grid .gallery-item,
  .gallery-grid .item-1,
  .gallery-grid .item-2,
  .gallery-grid .item-3,
  .gallery-grid .item-4,
  .gallery-grid .item-5,
  .gallery-grid .item-6 {
    display: block;
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
  }
}
