html,
body {
  margin: 0;
  font-size: 17px;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #333;
  background: #f8fafc;
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-loaded {
  opacity: 1;
}

body.page-transitioning {
  opacity: 0;
}

*,
*::before,
*::after {
  font-family: inherit !important;
}

button,
input,
select,
textarea {
  font-family: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button {
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

:root {
  --brand-blue: #35529d;
  --brand-teal: #3c91a6;
  --brand-mint: #9bcab4;
}

h1:not(.hero-title),
h2 {
  color: var(--brand-blue);
}

h3 {
  color: var(--brand-teal);
}

h3 span,
h4 {
  color: var(--brand-blue);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(40px, 20vw, 360px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e8edf2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.logo {
  height: 90px;
  display: block;
  background: #ffffff;
  padding: 8px;
  border-radius: 0;
  box-shadow: none;
  transform: translate(0px, 13px) scale(1.78);
  transform-origin: left top;
  transition: transform 0.4s ease;
}

.nav--top .logo {
  transform: translate(0px, 13px) scale(1.958);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d8e1eb;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (min-width: 601px) {
  .nav-toggle {
    display: none !important;
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    box-shadow: none;
  }
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f2937;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav--open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav--open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav nav a {
  position: relative;
  text-decoration: none;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  transition: color 0.25s ease;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #14b8a6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav nav a:hover {
  color: #0f766e;
}

.nav nav a:hover::after,
.nav nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav nav a:focus-visible {
  outline: none;
  color: #0f766e;
}

@media (max-width: 700px) {
  .nav {
    padding: 12px 18px;
  }

  .logo {
    height: 72px;
    padding: 6px;
    transform: translate(10px, 7px) scale(1.58);
  }

  .nav nav {
    gap: 14px;
  }
}

/* HERO PARALLAX */
.hero {
  height: 80vh;
  background: url("Assets/Images/Index hero 1.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  text-align: center;
  padding: 0;
}

.hero-title {
  margin: 0;
  color: var(--brand-blue);
  background: linear-gradient(90deg, #35529d 0%, #3c91a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(15, 23, 42, 0.35);
}

@media (max-width: 700px) {
  .hero-title {
    letter-spacing: 0.08em;
  }
}

/* INTRO */
.intro {
  text-align: center;
  padding: 60px 20px 34px;
}

/* PROPERTIES */
.properties {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 48px 40px;
}

.property {
  width: min(100%, 460px);
}

.property a {
  display: block;
}

.property img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.property h3 a {
  color: inherit;
  text-decoration: none;
}

.property h3 a:hover {
  color: var(--brand-teal);
}

.property:first-child p {
  max-width: 460px;
  margin: 12px 0 0;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .properties {
    gap: 34px;
    padding: 36px 20px;
  }

  .property {
    width: 100%;
  }

  .property img {
    aspect-ratio: 5 / 4;
  }
}

/* INFO */
.info {
  text-align: center;
  padding: 4px 60px 4px;
}

.cta {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 74px;
  position: relative;
  overflow: hidden;
  padding: 14px 30px;
  border: 1px solid #80c9c0;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9f1ec 0%, #c7e7e1 100%);
  color: #0b7268;
  font-weight: 800;
  font-size: 1.46rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(11, 114, 104, 0.24);
}

.cta::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 32%;
  height: 340%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(22deg);
  animation: ctaSheen 3.4s ease-in-out infinite;
}

@keyframes ctaSheen {
  0% {
    left: -55%;
  }
  60% {
    left: 145%;
  }
  100% {
    left: 145%;
  }
}

/* STAYS */
.stays {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.stays img {
  width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.stays p {
  font-weight: 700;
}

/* FEATURES */
.features {
  text-align: center;
  padding: 60px;
}

.features p {
  margin-bottom: 62px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.feature-grid img {
  width: 230px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* TESTIMONIALS PARALLAX */
.testimonials {
  --parallax-shift: 0px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.48)),
    url("Assets/Images/Flexible tarrifs.jpeg");
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center calc(50% + var(--parallax-shift));
  padding: 100px 20px;
}

.testimonials h2 {
  text-align: center;
  margin: 0 0 52px;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.card {
  position: relative;
  background: white;
  padding: 56px 20px 20px;
  width: 250px;
  margin-top: 44px;
  border-radius: 10px;
}

.card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border-radius: 50%;
  border: 4px solid #ffffff;
}

.testimonials-cta {
  text-align: center;
}

.testimonials-cta .cta {
  margin: 54px 0 0;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  background: #f7f9fb;
  text-align: center;
}

.contact h2 {
  font-size: 2.15rem;
  color: var(--brand-blue);
  margin: 0 0 12px;
}

.contact-intro {
  color: #555;
  font-size: 1.12rem;
  margin: 0 auto 48px;
  max-width: 520px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.93rem;
  font-weight: 700;
  color: #35529d;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group label .req {
  color: #e03030;
  font-weight: 800;
}

.form-group label .optional {
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  color: #888;
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d0daea;
  border-radius: 8px;
  font-size: 1.04rem;
  color: #222;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(60, 145, 166, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Bottom two-column: subject+message (left) | dates (right) */
.form-bottom {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-bottom-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-bottom-right {
  flex: 0 0 220px;
  display: flex;
}

.dates-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dates-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid #d0daea;
  border-radius: 8px;
  padding: 20px 16px;
  margin-top: 7px;
}

.date-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.date-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.date-field input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #d0daea;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
  background: #f7f9fb;
  box-sizing: border-box;
}

.date-field input[type="date"]:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(60, 145, 166, 0.12);
  outline: none;
}

.dates-divider {
  font-size: 1.3rem;
  color: var(--brand-teal);
  line-height: 1;
}

@media (max-width: 640px) {
  .form-bottom {
    flex-direction: column;
  }
  .form-bottom-right {
    flex: unset;
  }
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  color: #334155;
  line-height: 1.55;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-teal);
  flex: 0 0 auto;
}

.form-consent label {
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #334155;
}

.form-consent label .req {
  color: #e03030;
  font-weight: 800;
}

.form-consent a {
  color: #0f766e;
  font-weight: 700;
  text-decoration: underline;
}

.form-consent a:hover {
  color: #0b5f58;
}

.contact-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 44px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-blue) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(53, 82, 157, 0.22);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  opacity: 0.9;
  box-shadow: 0 10px 24px rgba(53, 82, 157, 0.32);
}

.contact-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  box-shadow: 0 8px 20px rgba(53, 82, 157, 0.16);
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(155, 202, 180, 0.35), transparent 36%),
    linear-gradient(180deg, #f8fafc 0%, #eef5f9 100%);
}

.thanks-shell {
  padding: 88px 20px 110px;
}

.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 52px;
  border: 1px solid rgba(53, 82, 157, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.thanks-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(60, 145, 166, 0.12);
  color: #0f766e;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  color: var(--brand-blue);
}

.thanks-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.thanks-link {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.thanks-link--primary {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-blue) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(53, 82, 157, 0.22);
}

.thanks-link--secondary {
  border: 1px solid rgba(53, 82, 157, 0.2);
  background: #ffffff;
  color: var(--brand-blue);
}

@media (max-width: 640px) {
  .thanks-shell {
    padding: 54px 16px 80px;
  }

  .thanks-card {
    padding: 42px 24px;
    border-radius: 22px;
  }
}

/* FOOTER */
footer {
  background: #0f766e;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
  text-decoration: none;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  cursor: pointer;
  transition: color 0.25s ease;
  display: inline-block;
}

.nav-dropdown-toggle:hover {
  color: #0f766e;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.14);
  min-width: 230px;
  padding: 14px 0 8px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav nav .nav-dropdown-menu a {
  display: block;
  padding: 12px 22px 12px 32px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.15s, color 0.15s;
}

.nav nav .nav-dropdown-menu a:hover {
  background: #f0f9f7;
  color: #0f766e;
}

.nav nav .nav-dropdown-menu a::after {
  display: none !important;
}

/* ============================================
   PROPERTY PAGES
   ============================================ */

/* Hero */
.prop-hero {
  height: 72vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.prop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.12) 55%, transparent 100%);
}

.prop-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 0 60px 56px;
  color: #ffffff;
}

.prop-hero-overlay h1 {
  font-size: 3.35rem;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.prop-hero-overlay p {
  font-size: 1.06rem;
  font-weight: 600;
  opacity: 0.82;
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Headline Facts Bar */
.prop-facts {
  display: flex;
  background: var(--brand-teal);
}

.fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-align: center;
}

.fact:last-child {
  border-right: none;
}

.fact-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  opacity: 0.78;
  display: block;
}

.fact-value {
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.15;
}

.fact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.7;
  margin-top: 4px;
}

/* Gallery */
.prop-gallery {
  display: flex;
  gap: 4px;
  height: 460px;
  padding: 4px;
  background: #e8edf2;
}

.gallery-large {
  flex: 2;
}

.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.gallery-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-side img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.prop-gallery-strip {
  display: flex;
  gap: 4px;
  padding: 4px 4px 0;
  background: #e8edf2;
  padding-bottom: 4px;
}

.prop-gallery-strip img {
  flex: 1;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Expert Description */
.prop-description {
  padding: 80px 40px;
  background: #ffffff;
}

.prop-desc-inner {
  display: flex;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.prop-desc-text {
  flex: 3;
}

.prop-desc-text h2 {
  font-size: 2rem;
  color: var(--brand-blue);
  margin: 0 0 26px;
}

.prop-desc-lead {
  font-size: 1.16rem;
  font-style: italic;
  color: var(--brand-teal);
  border-left: 3px solid var(--brand-mint);
  padding-left: 20px;
  margin: 0 0 26px;
  line-height: 1.75;
}

.prop-desc-text p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.prop-desc-signature {
  font-style: italic;
  color: #999;
  font-size: 0.96rem !important;
  margin-top: 28px !important;
  border-top: 1px solid #eef1f6;
  padding-top: 18px;
}

.prop-desc-aside {
  flex: 0 0 240px;
  position: sticky;
  top: 120px;
}

.prop-desc-aside h3 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin: 0 0 16px;
  border-bottom: 2px solid var(--brand-mint);
  padding-bottom: 10px;
}

.prop-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.prop-includes li {
  padding: 10px 0;
  border-bottom: 1px solid #eef1f6;
  color: #333;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prop-includes li::before {
  content: "✓";
  color: var(--brand-teal);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.prop-cta {
  display: block;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .prop-desc-inner {
    flex-direction: column;
  }
  .prop-desc-aside {
    position: static;
    flex: unset;
    width: 100%;
  }
  .prop-facts {
    flex-wrap: wrap;
  }
  .fact {
    flex: 1 1 30%;
  }
  .prop-hero-overlay {
    padding: 0 24px 40px;
  }
  .prop-hero-overlay h1 {
    font-size: 2.35rem;
  }
  .prop-gallery {
    height: 280px;
  }
  .prop-gallery-strip img {
    height: 130px;
  }
}

@media (max-width: 900px) {
  .stays,
  .feature-grid,
  .cards {
    flex-wrap: wrap;
  }

  .card {
    width: min(100%, 320px);
  }

  .info,
  .features {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 600px) {
  html,
  body {
    font-size: 16px;
  }

  .nav {
    padding: 10px 14px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo,
  .nav--top .logo {
    height: 62px;
    padding: 4px;
    transform: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 2px;
    border-top: 1px solid #e6edf4;
  }

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

  .nav nav a,
  .nav-dropdown-toggle {
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    padding: 12px 0;
  }

  .nav nav a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: static;
    right: auto;
    margin-top: 0;
    min-width: 0;
    width: 100%;
    display: none;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border-color: #dbe5ef;
    padding: 6px 0 4px;
  }

  .nav-dropdown.nav-dropdown--open .nav-dropdown-menu {
    display: block;
  }

  .nav nav .nav-dropdown-menu a {
    padding: 10px 12px 10px 18px;
    font-size: 0.95rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    background-attachment: scroll !important;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #dbe7ef;
  }

  .intro {
    padding: 42px 18px 20px;
  }

  .intro p,
  .info p {
    line-height: 1.62;
  }

  .properties {
    padding: 28px 16px;
    gap: 26px;
  }

  .info {
    padding: 6px 16px;
  }

  .cta {
    margin-bottom: 44px;
    padding: 13px 22px;
    font-size: 1.14rem;
  }

  .stays,
  .feature-grid {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 16px;
  }

  .stays img,
  .feature-grid img {
    width: min(100%, 420px);
  }

  .features {
    padding: 42px 16px;
  }

  .features p {
    margin-bottom: 34px;
  }

  .testimonials {
    padding: 68px 16px;
    background-size: cover, cover;
    background-position: center center, center center;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .card {
    width: min(100%, 340px);
    margin-top: 28px;
    padding: 52px 18px 18px;
  }

  .contact {
    padding: 58px 16px;
  }

  .contact-intro {
    margin-bottom: 34px;
  }

  .form-row,
  .form-bottom {
    gap: 16px;
  }

  .form-consent {
    margin-bottom: 16px;
  }

  .form-consent label {
    font-size: 0.9rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 360px;
  }

  .prop-hero {
    height: 54vh;
    background-attachment: scroll;
  }

  .prop-hero-overlay {
    padding: 0 16px 24px;
  }

  .prop-hero-overlay h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .prop-hero-overlay p {
    font-size: 0.93rem;
    letter-spacing: 0.08em;
  }

  .prop-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact {
    padding: 16px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fact:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fact:last-child,
  .fact:nth-last-child(2) {
    border-bottom: none;
  }

  .prop-gallery {
    flex-direction: column;
    height: auto;
    padding: 3px;
  }

  .gallery-large img {
    height: 230px;
  }

  .gallery-side {
    flex-direction: column;
  }

  .gallery-side img {
    height: 180px;
  }

  .prop-gallery-strip {
    flex-direction: column;
    padding: 3px;
  }

  .prop-gallery-strip img {
    height: 170px;
  }

  .prop-description {
    padding: 52px 16px;
  }

  .prop-desc-inner {
    gap: 34px;
  }

  .prop-desc-text h2 {
    font-size: 1.72rem;
    margin-bottom: 18px;
  }

  .prop-desc-lead {
    font-size: 1.06rem;
    line-height: 1.62;
    padding-left: 14px;
    margin-bottom: 18px;
  }

  .prop-desc-text p {
    font-size: 0.99rem;
    line-height: 1.68;
  }
}