:root {
  --ink: #17354f;
  --paper: #fffdf8;
  --cream: #fbf0dd;
  --mist: #f7f2e9;
  --line: #ddd3c4;
  --blue: #225d8c;
  --terracotta: #c95c2e;
  --gold: #edae2a;
  --olive: #53662e;
  --shadow: 0 18px 60px rgba(41, 53, 56, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 4vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 1px;
  background: white;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.language-picker svg {
  width: 16px;
  height: 16px;
}

.language-picker select {
  width: auto;
  padding: 8px 22px 8px 4px;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color-scheme: dark;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--terracotta);
}

.button-primary:hover {
  background: #aa4723;
}

.button-light {
  color: var(--ink);
  background: white;
}

.button-ghost {
  color: white;
  background: rgba(16, 31, 29, 0.26);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.menu-button {
  display: none;
}

.mobile-nav {
  position: absolute;
  z-index: 19;
  top: 76px;
  left: 0;
  right: 0;
  padding: 22px 24px 28px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-language {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: #6b6e68;
  font-size: 12px;
  font-weight: 700;
}

.mobile-language select {
  width: 142px;
  padding: 8px 30px 8px 10px;
  color: var(--blue);
  background: white;
  border-color: var(--line);
}

.mobile-nav .button {
  width: 100%;
  margin-top: 20px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

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

.hero-image {
  background: url("assets/balcony-hero.jpg") center center / cover no-repeat;
  transform: scale(1.01);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(18, 44, 65, 0.62) 0%, rgba(18, 44, 65, 0.28) 58%, rgba(18, 44, 65, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(800px, 88vw);
  padding: 160px 6vw 104px;
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: 82px;
  line-height: 0.96;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.24);
}

.hero-intro {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-location {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  background: var(--blue);
}

.quick-facts div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
}

.quick-facts div:last-child {
  border-right: 0;
}

.section {
  padding: 100px max(5vw, 24px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 10vw;
  max-width: 1240px;
  margin: 0 auto 64px;
  align-items: end;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 760px);
  margin-bottom: 50px;
}

.section-heading h2,
.mijas-copy h2,
.final-cta h2,
.dialog-heading h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.08;
}

.section-heading > p {
  margin-bottom: 2px;
  color: #56615e;
  font-size: 16px;
  line-height: 1.7;
}

.apartment-list {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.mobile-booking-bar {
  display: none;
}

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

.apartment-block.featured {
  border-left: 4px solid var(--terracotta);
}

.apartment-gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
  min-height: 520px;
  padding: 18px 0 18px 18px;
  overflow: hidden;
}

.gallery-photo {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #d8ddda;
  border: 0;
  cursor: pointer;
}

.apartment-gallery .gallery-photo-main {
  grid-row: 1 / 3;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-photo:hover img {
  transform: scale(1.035);
}

.gallery-photo > span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: white;
  background: rgba(17, 30, 28, 0.78);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 650;
}

.gallery-photo-more > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-photo-more > span svg {
  width: 16px;
  height: 16px;
}

.apartment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 58px 54px 58px 32px;
}

.apartment-number {
  margin-bottom: 30px;
  color: #7f8986;
  font-size: 13px;
}

.status {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.status.muted {
  color: var(--blue);
}

.apartment h3 {
  margin-bottom: 14px;
  font-size: 38px;
}

.apartment-main p,
.apartment-note {
  max-width: 520px;
  margin-bottom: 0;
  color: #59635f;
  font-size: 15px;
  line-height: 1.6;
}

.apartment-main .apartment-features {
  margin-top: 10px;
  color: #3f5550;
  font-size: 13px;
  font-weight: 650;
}

.apartment-photo-placeholder {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  color: var(--blue);
  background: #f4f7f8;
  border: 1px dashed #8da4b4;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.apartment-photo-placeholder svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.apartment-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 0;
  margin: 32px 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apartment-facts div {
  min-width: 0;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}

.apartment-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.apartment-facts dt {
  margin-bottom: 8px;
  color: #7a8582;
  font-size: 11px;
}

.apartment-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.apartment-action {
  min-width: 190px;
  color: white;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.apartment-action:hover {
  background: var(--blue);
}

.mijas {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 680px;
  color: white;
  background: var(--blue);
}

.mijas-visuals {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  min-height: 680px;
  gap: 6px;
  padding: 6px 0 6px 6px;
  background: var(--cream);
}

.mijas-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.mijas-photo-main {
  grid-row: 1 / 3;
}

.mijas-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mijas-photo:last-child img {
  object-position: center 46%;
}

.mijas-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 7vw;
}

.mijas-copy h2 {
  margin-bottom: 26px;
}

.mijas-copy > p:not(.eyebrow) {
  color: #eef2f4;
  font-size: 16px;
  line-height: 1.75;
}

.mijas-copy ul {
  display: grid;
  gap: 18px;
  padding: 24px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.mijas-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: #eef2f0;
  font-size: 14px;
}

.mijas-copy li svg {
  color: var(--gold);
}

.mijas-copy .photo-credit {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stay {
  background: var(--mist);
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid #c8ceca;
}

.stay-item {
  position: relative;
  min-height: 310px;
  padding: 30px 40px 40px 0;
  border-right: 1px solid #c8ceca;
}

.stay-item + .stay-item {
  padding-left: 40px;
}

.stay-item:last-child {
  border-right: 0;
}

.stay-item > span {
  position: absolute;
  top: 30px;
  right: 26px;
  color: #87918e;
  font-size: 12px;
}

.stay-item > svg {
  width: 34px;
  height: 34px;
  margin: 48px 0 38px;
  color: var(--olive);
}

.stay-item h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.stay-item p {
  margin-bottom: 0;
  color: #5e6966;
  line-height: 1.65;
}

.final-cta {
  padding: 94px 24px 104px;
  color: white;
  text-align: center;
  background: var(--olive);
}

.final-cta h2 {
  max-width: 680px;
  margin: 0 auto 32px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 28px 5vw;
  color: white;
  background: #132d43;
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  align-self: stretch;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.footer-links a {
  color: #dce7e3;
  text-decoration: underline;
  text-decoration-color: rgba(220, 231, 227, 0.45);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
  text-decoration-color: white;
}

.content-page {
  min-height: 100vh;
  background: var(--paper);
}

.content-page .site-header {
  position: relative;
  color: var(--ink);
  background: white;
  border-bottom-color: var(--line);
}

.content-page .brand-logo {
  box-shadow: 0 0 0 1px var(--line);
}

.content-page .desktop-nav a::after {
  background: var(--terracotta);
}

.content-page-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 112px;
}

.content-page-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.content-page-heading h1 {
  margin: 10px 0 20px;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 76px);
}

.content-page-heading > p:last-child {
  color: #5e6966;
  font-size: 18px;
  line-height: 1.7;
}

.content-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.content-section h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.content-section p,
.content-section li,
.contact-details dd {
  color: #4d5e5b;
  line-height: 1.75;
}

.content-section a,
.contact-details a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px 24px;
  margin: 26px 0 34px;
}

.contact-details dt {
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
}

.contact-action {
  margin-top: 8px;
  color: white !important;
  text-decoration: none !important;
}

.content-note {
  padding: 18px 20px;
  background: var(--mist);
  border-left: 3px solid var(--terracotta);
}

.page-footer {
  grid-template-columns: 1fr auto;
}

.page-footer .footer-details {
  text-align: right;
}

.page-footer .footer-links {
  justify-content: flex-end;
}

.content-page .language-picker,
.content-page .language-picker select {
  color: var(--ink);
  color-scheme: light;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-grid article {
  min-height: 250px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.policy-grid article:last-child {
  border-right: 0;
}

.policy-grid span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 750;
}

.policy-grid h3 {
  margin: 54px 0 14px;
  font-size: 22px;
}

.policy-grid p {
  margin: 0;
  color: #5e6966;
  line-height: 1.65;
}

.enquiry-dialog {
  width: min(660px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.enquiry-dialog::backdrop {
  background: rgba(8, 18, 17, 0.72);
  backdrop-filter: blur(5px);
}

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: white;
  background: #0c1211;
  border: 0;
}

.gallery-dialog::backdrop {
  background: #0c1211;
}

.gallery-dialog figure {
  display: grid;
  height: 100%;
  place-items: center;
  margin: 0;
  padding: 70px 90px 60px;
}

.gallery-dialog figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.gallery-dialog figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  color: #dbe2df;
  font-size: 14px;
  text-align: center;
}

.gallery-close,
.gallery-previous,
.gallery-next {
  position: absolute;
  z-index: 2;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-close {
  top: 20px;
  right: 22px;
}

.gallery-previous,
.gallery-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-previous {
  left: 22px;
}

.gallery-next {
  right: 22px;
}

.enquiry-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.dialog-heading .eyebrow {
  margin-bottom: 10px;
}

.dialog-heading h2 {
  font-size: 36px;
}

.close-dialog {
  flex: 0 0 auto;
}

.enquiry-panel label {
  display: grid;
  gap: 8px;
  color: #46514e;
  font-size: 12px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid #bcc5c1;
  border-radius: 3px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34, 93, 140, 0.14);
}

textarea {
  resize: vertical;
}

.submit-enquiry {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: -6px 0 0;
  color: #71807b;
  font-size: 12px;
  text-align: center;
}

.booking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.booking-note svg {
  width: 17px;
  height: 17px;
  color: var(--olive);
  flex: 0 0 auto;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: white;
  background: var(--ink);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-book {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  h1 {
    font-size: 64px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .apartment-block {
    grid-template-columns: 1fr;
  }

  .apartment {
    padding: 48px 42px;
  }

  .apartment-gallery {
    min-height: 440px;
    padding: 0 18px 18px;
  }

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

  .mijas-copy {
    padding: 70px max(6vw, 24px);
  }

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

  .policy-grid article:nth-child(2) {
    border-right: 0;
  }

  .policy-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .language-picker {
    display: none;
  }

  .content-page .language-picker {
    display: inline-flex;
  }

  .content-page .header-actions .button {
    display: none;
  }

  .mobile-nav {
    top: 68px;
  }

  .hero {
    min-height: 540px;
    height: 66svh;
    max-height: 610px;
  }

  .hero-content {
    width: 100%;
    padding: 112px 22px 72px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-location {
    right: 22px;
    bottom: 16px;
  }

  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-facts div {
    min-height: 108px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 14px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .quick-facts div:last-child {
    border-right: 0;
  }

  .quick-facts svg {
    width: 18px;
    height: 18px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 18;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 7px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(23, 53, 79, 0.14);
    border-radius: 6px;
    box-shadow: 0 10px 32px rgba(23, 53, 79, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-booking-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-booking-bar .button {
    width: 100%;
  }

  .dialog-open .mobile-booking-bar {
    display: none;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .apartment-list {
    border-top: 0;
  }

  .apartment-block,
  .apartment-block.featured {
    min-height: 0;
    margin-bottom: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
  }

  .apartment {
    padding: 30px 22px 28px;
  }

  .apartment-number {
    margin-bottom: 18px;
  }

  .apartment-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 120px;
    gap: 5px;
    min-height: 355px;
    padding: 0;
  }

  .apartment-gallery .gallery-photo-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-photo > span {
    left: 9px;
    bottom: 9px;
  }

  .gallery-dialog figure {
    padding: 70px 16px 60px;
  }

  .gallery-previous,
  .gallery-next {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .gallery-previous {
    left: 16px;
  }

  .gallery-next {
    right: 16px;
  }

  .section-heading h2,
  .mijas-copy h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .apartment {
    align-items: stretch;
  }

  .apartment h3 {
    font-size: 27px;
  }

  .apartment-facts {
    margin: 26px 0 22px;
  }

  .apartment-facts div {
    display: block;
    padding: 0 10px;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

  .apartment-facts div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .apartment-facts dt {
    min-height: 28px;
    margin-bottom: 6px;
  }

  .apartment-action {
    width: 100%;
  }

  .mijas-visuals {
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 470px;
  }

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

  .stay-item,
  .stay-item + .stay-item {
    min-height: 230px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #c8ceca;
  }

  .stay-item:last-child {
    border-bottom: 0;
  }

  .stay-item > svg {
    margin: 30px 0 25px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo {
    width: 74px;
    height: 74px;
  }

  footer p:last-child {
    text-align: left;
  }

  .footer-details,
  .page-footer .footer-details {
    text-align: left;
  }

  .footer-links,
  .page-footer .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-details dd + dt {
    margin-top: 14px;
  }

  .content-page-main {
    width: min(100% - 36px, 920px);
    padding: 62px 0 82px;
  }

  .content-page-heading {
    margin-bottom: 42px;
  }

  .content-page-heading h1 {
    font-size: 44px;
  }

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

  .policy-grid article,
  .policy-grid article:nth-child(2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-grid article:last-child {
    border-bottom: 0;
  }

  .enquiry-panel {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
