@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/fonts/montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Compact dropdown navigation for The Signature Residences. */
.site-header {
  z-index: 100;
}

.menu-panel {
  position: fixed;
  inset: 92px 32px auto;
  width: min(1120px, calc(100vw - 64px));
  max-height: calc(100vh - 116px);
  margin: 0 auto;
  overflow: auto;
  border: 1px solid rgba(225, 255, 99, 0.36);
  border-radius: 18px;
  background: rgba(246, 242, 235, 0.95);
  box-shadow: 0 24px 70px rgba(24, 28, 25, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(-12px) scale(0.985);
  transform-origin: top center;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

/* Site-wide replacement for the former gold accent. */
:root {
  --gold: #e1ff63;
}

::selection,
.brand-di,
.hero-subtitle em,
.brand-break-logo span,
.footer-brand span,
.footer-contact > p:first-child,
.property-next > p {
  color: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.button-light:hover,
.button-dark:hover,
.form-submit,
.form-submit:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-panel.is-open {
  transform: translateY(0) scale(1);
}

.menu-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 34px 40px 36px;
}

.menu-inner nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
}

.menu-inner nav a {
  width: auto;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.12;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu-inner nav a:hover {
  transform: translateX(4px);
}

.menu-contact {
  align-self: center;
  padding-left: 32px;
  border-left: 1px solid rgba(26, 36, 30, 0.16);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .menu-panel {
    inset: 72px 14px auto;
    width: auto;
    max-height: calc(100vh - 90px);
    border-radius: 14px;
  }

  .menu-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    padding: 26px 24px 28px;
  }

  .menu-inner nav {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .menu-inner nav a {
    font-size: 22px;
    line-height: 1.1;
  }

  .menu-contact {
    padding: 18px 0 0;
    border-top: 1px solid rgba(26, 36, 30, 0.16);
    border-left: 0;
  }
}

/* Local feathered contrast behind hero copy, without a visible panel. */
.hero-copy,
.property-hero-copy {
  isolation: isolate;
}

.hero-copy::before,
.property-hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -52px -8vw -44px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 17, 16, 0.52) 0%,
    rgba(15, 17, 16, 0.34) 42%,
    rgba(15, 17, 16, 0.12) 62%,
    rgba(15, 17, 16, 0) 78%
  );
  filter: blur(14px);
}

.hero-copy h1,
.property-hero-copy h1 {
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.58),
    0 10px 30px rgba(0, 0, 0, 0.42);
}

@media (max-width: 767px) {
  .hero-copy::before,
  .property-hero-copy::before {
    inset: -38px -24px -34px;
    filter: blur(11px);
  }
}

/* Keep residence-card actions aligned regardless of copy length. */
.residence-card {
  display: flex;
  flex-direction: column;
}

.residence-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.residence-copy > .text-link {
  align-self: center;
  margin-top: auto;
  text-align: center;
}

/* Square controls and the highlighted apartment-selection CTA. */
.form-submit,
.showcase-arrow,
.back-to-top,
.residence-index,
.location-number,
.residence-map-marker {
  border-radius: 0;
}

.hero-cta-wrap .button-light,
.hero-cta-wrap .button-light:hover {
  border-color: #e1ff63;
  background: #e1ff63;
  color: #2a2b2d;
}

/* Site-wide type system. */
body,
button,
input,
textarea,
select {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 500;
}

h1 {
  font-family: "Unbounded", Arial, sans-serif !important;
  font-weight: 400 !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 600 !important;
}

p,
li {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 500;
}

.button,
.text-link,
.menu-inner nav a,
.footer-nav a {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 600;
}

/* Consistent responsive type scale. */
.hero-copy h1,
.property-hero-copy h1 {
  font-size: clamp(44px, 5.2vw, 76px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.section-heading h2,
.contact-copy h2,
.property-next h2,
.property-details-heading h2 {
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.showcase-title,
.property-intro-title h2 {
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
}

.copy-block h3,
.residence-copy h3,
.experience-copy h3,
.property-list-block h2,
.expertise-grid .service-block h3 {
  font-size: clamp(18px, 1.5vw, 24px) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}

.section-lead,
.hero-subtitle {
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.65 !important;
}

.copy-block p,
.residence-copy p,
.experience-copy p,
.property-intro-copy p,
.contact-copy > p:not(.section-kicker),
.property-details li,
.faq-answer {
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.section-kicker,
.property-details-heading > p,
.showcase-meta,
.footer-bottom {
  font-size: 11px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.14em;
}

@media (max-width: 767px) {
  .hero-copy h1,
  .property-hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.06 !important;
  }

  .section-heading h2,
  .contact-copy h2,
  .property-next h2,
  .property-details-heading h2 {
    font-size: clamp(30px, 8vw, 40px) !important;
    line-height: 1.12 !important;
  }

  .copy-block p,
  .residence-copy p,
  .experience-copy p,
  .property-intro-copy p,
  .contact-copy > p:not(.section-kicker),
  .property-details li,
  .faq-answer {
    font-size: 14px !important;
  }
}

/* Clean residence directory below the map. */
.section-locations {
  padding-bottom: 92px;
  background: var(--paper);
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 34px;
}

.location-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 0;
  border-top: 1px solid rgba(42, 43, 45, 0.3);
  color: #2a2b2d;
}

.location-item::after {
  content: "↗";
  color: rgba(42, 43, 45, 0.58);
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.location-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: #2a2b2d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.location-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.location-item:hover .location-number {
  border-color: transparent;
  background: #e1ff63;
  color: #2a2b2d;
}

.location-item:hover::after {
  color: #2a2b2d;
  transform: translate(2px, -2px);
}

@media (max-width: 767px) {
  .section-locations {
    padding-bottom: 68px;
  }

  .locations-list {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 32px);
    padding-top: 22px;
  }

  .location-item {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    min-height: 66px;
    padding: 14px 0;
  }

  .location-item:last-child {
    border-bottom: 1px solid rgba(42, 43, 45, 0.3);
  }

  .location-number {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .location-name {
    font-size: 13px;
  }
}

/* Balanced expertise columns with a shared baseline for actions. */
.expertise-grid {
  align-items: stretch;
}

.expertise-grid .service-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-grid .service-block h3 {
  min-height: 52px;
  margin-bottom: 22px;
  text-align: left;
}

.expertise-grid .service-block p {
  margin-bottom: 28px;
}

.expertise-grid .service-block .text-link {
  align-self: flex-start;
  margin-top: auto;
  white-space: nowrap;
  font-size: 14px;
}

/* Subtle hero readability without a panel or heavy image dimming. */
.property-page .property-hero-shade {
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(17, 19, 18, 0) 0%,
    rgba(17, 19, 18, 0) 58%,
    rgba(17, 19, 18, 0.08) 72%,
    rgba(17, 19, 18, 0.28) 100%
  );
}

.hero-copy h1,
.property-hero-copy h1 {
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.58),
    0 10px 30px rgba(0, 0, 0, 0.42);
}

.hero-subtitle,
.hero-cta-wrap,
.property-hero-copy p,
.property-hero-copy span {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.52),
    0 7px 22px rgba(0, 0, 0, 0.3);
}

.hero-cta-wrap .button {
  text-shadow: none;
  -webkit-text-stroke: 0;
  filter: none;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .expertise-grid .service-block .text-link {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .expertise-grid .service-block h3 {
    min-height: 0;
  }
}

/* Square controls and a clear lime apartment-selection CTA. */
.form-submit,
.showcase-arrow,
.back-to-top,
.residence-index,
.location-number,
.residence-map-marker {
  border-radius: 0;
}

.hero-cta-wrap .button-light,
.hero-cta-wrap .button-light:hover {
  border-color: #e1ff63;
  background: #e1ff63;
  color: #2a2b2d;
}

.hero-cta-wrap .button-light:hover {
  opacity: 0.84;
}

/* Dark contact section and a clearer two-part footer. */
.section-contact,
.footer {
  background: #2a2b2d;
  color: #fff;
}

.section-contact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-copy h2,
.contact-copy > p:not(.section-kicker),
.inquiry-form label span,
.inquiry-form input,
.inquiry-form textarea {
  color: #fff;
}

.contact-copy > p:not(.section-kicker),
.inquiry-form label span,
.form-consent {
  color: rgba(255, 255, 255, 0.64);
}

.inquiry-form input,
.inquiry-form textarea {
  border-bottom-color: rgba(255, 255, 255, 0.34);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.footer {
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: start;
  gap: 72px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px 14px;
  max-width: 760px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.2;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-nav a:hover {
  border-color: var(--gold);
  background: rgba(225, 255, 99, 0.08);
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.footer-contact > p:first-child {
  margin-bottom: 5px;
  color: var(--gold);
}

.footer-contact a {
  color: #fff;
  font-size: 15px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  margin-top: 48px;
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    width: min(100%, 420px);
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 48px 20px 24px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .footer-nav a {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    text-transform: none;
  }

  .footer-contact {
    width: 100%;
    padding: 22px 20px;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

/* Footer navigation as a clean list, without pill-shaped items. */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(100%, 620px);
}

.footer-nav a {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  transition: padding-left 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:first-child {
  padding-top: 0;
}

.footer-nav a:hover {
  padding-left: 7px;
  border-color: rgba(225, 255, 99, 0.5);
  background: transparent;
  color: var(--gold);
}

@media (max-width: 767px) {
  .footer-nav a {
    min-height: 0;
    padding: 11px 0;
  }

  .footer-nav a:hover {
    padding-left: 5px;
  }
}

/* Clean contact block without a card. */
.footer-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-contact::before {
  display: none;
}

.footer-contact > p:first-child {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.54);
  letter-spacing: 0.2em;
  font-size: 10px;
}

.footer-contact a {
  position: relative;
  color: #fff;
  line-height: 1.35;
}

.footer-contact a:first-of-type {
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.footer-contact a:last-of-type {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-legal {
  display: none;
}

@media (max-width: 767px) {
  .footer-contact {
    padding: 0;
  }
}

/* Property pages use the image as a full hero from the very top. */
.property-page {
  position: relative;
}

.property-page .property-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 26px 40px;
  border: 0;
  background: transparent;
  color: #fff;
}

.property-brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 176px;
}

.property-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.property-page .property-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.property-page .language-switch-dark a,
.property-page .language-switch-dark a.is-active {
  color: rgba(255, 255, 255, 0.78);
}

.property-page .language-switch-dark a.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

.property-page .property-back {
  position: absolute;
  top: 116px;
  left: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 54px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.68));
  transition: color 0.2s ease, transform 0.2s ease;
}

.property-page .property-back::before {
  content: "←";
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.property-page .property-back:hover {
  color: var(--gold);
  background: transparent;
  transform: translateX(-3px);
}

.property-page .property-hero {
  min-height: 100svh;
}

.property-page .property-hero-shade {
  display: block;
}

.property-page .property-hero-copy {
  bottom: 62px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.58);
}

.property-menu-toggle {
  color: #fff;
}

.property-menu-panel {
  z-index: 90;
}

@media (max-width: 767px) {
  .property-page .property-header {
    min-height: 0;
    padding: 18px 16px;
  }

  .property-brand-logo {
    width: 132px;
  }

  .property-page .property-header-actions {
    gap: 12px;
  }

  .property-page .property-back {
    top: 88px;
    left: 16px;
    width: 46px;
    min-height: 40px;
    padding: 0;
  }

  .property-page .property-back::before {
    font-size: 38px;
  }

  .property-page .property-hero {
    min-height: 100svh;
  }

  .property-page .property-hero-copy {
    bottom: 38px;
  }
}

/* Laguna Beachside: full-bleed HD gallery without embedded edge fields. */
.laguna-beachside-page .property-hero-image {
  background-color: #202326;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 108% auto;
}

.laguna-beachside-page .gallery-image {
  background-position: center;
}

@media (max-width: 767px) {
  .laguna-beachside-page .property-hero-image {
    background-size: cover;
  }

}

/* Interactive property gallery with a sticky information column. */
.property-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(42px, 5vw, 82px);
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.showcase-gallery {
  min-width: 0;
}

.showcase-main {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 18px;
  background-color: #dedbd5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 0.2s ease;
}

.showcase-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.showcase-arrow:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.showcase-prev {
  left: 18px;
}

.showcase-next {
  right: 18px;
}

.showcase-counter {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 20, 19, 0.58);
  color: #fff;
  font-size: 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.showcase-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.showcase-thumbnail {
  flex: 0 0 86px;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.68;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.showcase-thumbnail:hover,
.showcase-thumbnail.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.showcase-info {
  position: sticky;
  top: 32px;
  min-width: 0;
  padding-top: 4px;
}

.showcase-title {
  margin: 0 0 18px;
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(40px, 4.1vw, 64px);
  line-height: 0.98;
}

.showcase-meta {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.showcase-cta {
  display: inline-flex;
  margin-bottom: 38px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.showcase-cta:hover {
  background: var(--ink);
  color: #fff;
}

.showcase-info .property-intro {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.showcase-info .property-intro-title .section-kicker {
  display: none;
}

.showcase-info .property-intro-title h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
}

.showcase-info .property-intro-copy p {
  color: #555650;
  font-size: 15px;
  line-height: 1.72;
}

.showcase-info .property-intro-copy p:last-child {
  margin-bottom: 0;
}

.property-gallery[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .property-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(760px, calc(100% - 40px));
    padding: 72px 0 88px;
  }

  .showcase-info {
    position: static;
    grid-row: 1;
  }

  .showcase-gallery {
    grid-row: 2;
  }
}

@media (max-width: 767px) {
  .property-showcase {
    gap: 38px;
    width: calc(100% - 32px);
    padding: 58px 0 72px;
  }

  .showcase-title {
    font-size: 38px;
  }

  .showcase-cta {
    width: 100%;
    margin-bottom: 30px;
  }

  .showcase-main {
    border-radius: 14px;
  }

  .showcase-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .showcase-prev {
    left: 10px;
  }

  .showcase-next {
    right: 10px;
  }

  .showcase-thumbnail {
    flex-basis: 72px;
    border-radius: 7px;
  }
}

/* Clear, card-based residence details section. */
.property-details-zone {
  padding: 96px 32px 110px;
  background: var(--paper);
}

.property-details-heading {
  width: min(1240px, 100%);
  margin: 0 auto 48px;
}

.property-details-heading p {
  margin: 0 0 14px;
  color: rgba(42, 43, 45, 0.62);
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 700;
}

.property-details-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #2a2b2d;
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 0.98;
}

.property-details-zone .property-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(48px, 7vw, 96px);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0;
}

.property-details-zone .property-list-block {
  position: relative;
  min-width: 0;
  padding: 28px 0 42px;
  border: 0;
  border-top: 1px solid rgba(42, 43, 45, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.property-details-zone .property-list-block h2 {
  min-height: 0;
  margin: 0 0 20px;
  color: #2a2b2d;
  font-size: 25px;
  line-height: 1.07;
}

.property-details-zone .property-list-block ul {
  display: grid;
  gap: 0;
}

.property-details-zone .property-list-block li {
  padding: 10px 0 10px 15px;
  border-bottom-color: rgba(42, 43, 45, 0.09);
  color: rgba(42, 43, 45, 0.76);
  font-size: 13.5px;
  line-height: 1.5;
}

.property-details-zone .property-list-block li:last-child {
  border-bottom: 0;
}

.property-details-zone .property-list-block li::before {
  content: "";
  top: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a2b2d;
}

@media (max-width: 767px) {
  .property-details-zone {
    padding: 68px 16px 76px;
  }

  .property-details-heading {
    margin-bottom: 34px;
  }

  .property-details-heading h2 {
    font-size: 38px;
  }

  .property-details-zone .property-details {
    grid-template-columns: 1fr;
  }

  .property-details-zone .property-list-block {
    padding: 24px 0 34px;
  }

  .property-details-zone .property-list-block h2 {
    min-height: 0;
    font-size: 24px;
  }
}

/* Green is reserved for graphite backgrounds only. */
.menu-panel {
  border-color: rgba(42, 43, 45, 0.14);
}

.menu-inner nav a:hover,
.property-page .property-back:hover,
.section:not(.section-contact) .section-kicker {
  color: #2a2b2d;
}

.hero-subtitle em {
  color: #fff;
}

.hero .button-light:hover {
  background: #fff;
  color: #2a2b2d;
}

.showcase-arrow:hover {
  background: #2a2b2d;
  color: #fff;
}

.showcase-thumbnail:hover,
.showcase-thumbnail.is-active {
  border-color: #2a2b2d;
}

.showcase-cta,
.showcase-cta:hover,
.availability-section .button-dark,
.availability-section .button-dark:hover {
  border-color: #2a2b2d;
  background: #2a2b2d;
  color: #fff;
}

.availability-section .section-kicker,
.property-important .section-kicker,
.property-list-block li::before {
  color: #2a2b2d;
}

.availability-section .button-dark:hover,
.showcase-cta:hover {
  opacity: 0.82;
}

/* Unified CTA and footer across the home and property pages. */
.property-next {
  background: #2a2b2d;
}

.unified-property-footer {
  display: block;
  padding: 58px 42px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #2a2b2d;
  color: #fff;
}

.footer-contact a:first-of-type,
.unified-property-footer .footer-contact a:first-of-type {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact a:last-of-type,
.unified-property-footer .footer-contact a:last-of-type {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.unified-property-footer .footer-grid,
.unified-property-footer .footer-bottom {
  width: min(1240px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.unified-property-footer .footer-bottom {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .unified-property-footer {
    padding: 48px 20px 24px;
  }

  .footer-contact a:first-of-type,
  .unified-property-footer .footer-contact a:first-of-type {
    font-size: 19px;
  }

  .footer-contact a:last-of-type,
  .unified-property-footer .footer-contact a:last-of-type {
    font-size: 15px;
  }
}

/* Compact graphite navigation aligned with the site's visual system. */
.menu-panel {
  inset: 82px 28px auto auto;
  width: min(400px, calc(100vw - 56px));
  max-height: calc(100svh - 104px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(42, 43, 45, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
}

.menu-inner {
  display: block;
  padding: 18px 26px 22px;
}

.menu-inner nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-inner nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.menu-inner nav a:last-child {
  border-bottom: 0;
}

.menu-inner nav a:hover {
  color: #e1ff63;
  transform: translateX(5px);
}

.menu-contact {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding: 18px 2px 0;
  border-top: 1px solid rgba(225, 255, 99, 0.4);
  border-left: 0;
}

.menu-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.menu-contact a:hover {
  color: #e1ff63;
}

@media (max-width: 767px) {
  .menu-panel {
    inset: 70px 12px auto auto;
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100svh - 84px);
    border-radius: 14px;
  }

  .menu-inner {
    padding: 14px 20px 20px;
  }

  .menu-inner nav {
    gap: 0;
  }

  .menu-inner nav a {
    min-height: 48px;
    padding: 10px 1px;
    font-size: 18px;
  }

  .menu-contact {
    gap: 6px;
    margin-top: 10px;
    padding-top: 16px;
  }
}

/* Performance patch 2026-09-08: prevent eager background downloads. */
.property-page .property-gallery {
  display: none !important;
}
html:not(.perf-images-ready) .hero-slide {
  background-image: none !important;
}

/* Block the server-rendered full-size property hero until mobile/desktop source is selected. */
html:not(.perf-images-ready) .property-hero-image {
  background-image: none !important;
}

/* Lazy-load below-the-fold background images. */
.residence-image:not(.perf-bg-loaded),
.experience-photo:not(.perf-bg-loaded) {
  background-image: none !important;
}

/* Experiences: viewport-height responsive sizing */
@media (min-width: 768px) {
  .section-experiences {
    padding-top: clamp(48px, 7dvh, 96px);
    padding-bottom: clamp(48px, 7dvh, 96px);
  }
  .section-experiences .section-heading.compact {
    margin-bottom: clamp(26px, 4dvh, 48px);
  }
  .section-experiences .section-heading h2 {
    font-size: clamp(36px, min(4.2vw, 6.2dvh), 60px);
  }
  .section-experiences .section-lead {
    margin-top: clamp(14px, 2dvh, 24px);
    font-size: clamp(14px, 1.7dvh, 17px);
    line-height: 1.55;
  }
  .section-experiences .experience-card {
    flex-basis: min(640px, 68vw, 57dvh);
  }
  .section-experiences .experience-card h3 {
    margin: clamp(12px, 2dvh, 20px) 0 clamp(6px, 1dvh, 10px);
    font-size: clamp(20px, 2.6dvh, 28px);
  }
  .section-experiences .experience-card p {
    margin-bottom: clamp(10px, 1.6dvh, 18px);
    font-size: clamp(13px, 1.8dvh, 15px);
    line-height: 1.5;
  }
  .section-experiences .experience-card .text-link {
    font-size: clamp(13px, 1.7dvh, 15px);
  }
  .section-experiences .pagination {
    margin-top: clamp(18px, 2.8dvh, 30px);
  }
}

@media (max-width: 767px) {
  .section-experiences {
    padding-top: clamp(64px, 9dvh, 96px);
    padding-bottom: clamp(56px, 8dvh, 80px);
  }
  .section-experiences .section-heading.compact {
    margin-bottom: clamp(32px, 4.5dvh, 44px);
  }
  .section-experiences .pagination {
    margin-top: 22px;
  }
}

@media (min-width: 768px) {
  .section-experiences .experience-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

/* Ensure experiences typography can react to viewport height despite global !important scale. */
@media (min-width: 768px) {
  .section-experiences .section-heading h2 {
    font-size: clamp(36px, min(4.2vw, 6.2dvh), 60px) !important;
  }
  .section-experiences .section-lead {
    font-size: clamp(14px, 1.7dvh, 17px) !important;
    line-height: 1.55 !important;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  .section-experiences {
    padding-top: clamp(28px, 5dvh, 36px);
    padding-bottom: clamp(28px, 5dvh, 36px);
  }
  .section-experiences .section-heading.compact {
    margin-bottom: clamp(18px, 3dvh, 24px);
  }
  .section-experiences .experience-card h3 {
    margin-top: 10px;
    font-size: clamp(18px, 3dvh, 20px);
    line-height: 1.15;
  }
  .section-experiences .pagination {
    margin-top: 12px;
  }
}

/* Visual system v33: unified type roles across the site. */
:root {
  --type-section-title: clamp(38px, 4vw, 58px);
  --type-section-lead: clamp(16px, 1.25vw, 18px);
  --type-card-title: clamp(19px, 1.5vw, 22px);
  --type-body: 15px;
  --type-small: 14px;
}
.section-heading h2,
.contact-copy h2,
.property-next h2,
.property-details-heading h2 {
  font-size: var(--type-section-title) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}
.section-heading .section-lead {
  width: min(680px, 100%);
  margin-top: 20px;
  font-size: var(--type-section-lead) !important;
  line-height: 1.6 !important;
}
.copy-block h3,
.residence-copy h3,
.experience-card h3,
.expertise-grid .service-block h3 {
  font-size: var(--type-card-title) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}
.copy-block p,
.residence-copy p,
.experience-card p,
.property-intro-copy p,
.contact-copy > p:not(.section-kicker),
.property-details li,
.faq-answer-wrap p {
  font-size: var(--type-body) !important;
  line-height: 1.65 !important;
}
.faq-question {
  font-size: 17px !important;
  line-height: 1.45 !important;
}
.text-link {
  font-size: var(--type-small) !important;
  line-height: 1.4 !important;
}
@media (max-width: 767px) {
  :root {
    --type-section-title: clamp(30px, 8vw, 40px);
    --type-section-lead: 16px;
    --type-card-title: clamp(19px, 5.4vw, 22px);
    --type-body: 14px;
  }
  .section-heading .section-lead {
    margin-top: 18px;
  }
}
/* Hero: one simple horizontal track. No opacity/scale/crossfade effects. */
.hero {
  background-image: url('/images/hero/desktop-v2/laguna-1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-media {
  display: flex !important;
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1) !important;
  will-change: transform;
}
.hero-slide {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  z-index: auto !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}
.hero-slide.is-active,
.hero-slide.is-active.perf-preloaded,
.hero-slide.perf-exit {
  opacity: 1 !important;
  transform: none !important;
}
.hero-slide:nth-child(1) { background-image: url('/images/hero/desktop-v2/laguna-1.webp') !important; }
.hero-slide:nth-child(2) { background-image: url('/images/hero/desktop-v2/laguna-2.webp') !important; }
.hero-slide:nth-child(3) { background-image: url('/images/hero/desktop-v2/laguna-3.webp') !important; }
.hero-slide:nth-child(4) { background-image: url('/images/hero/desktop-v2/laguna-4.webp') !important; }
.hero-slide:nth-child(5) { background-image: url('/images/hero/desktop-v2/laguna-5.webp') !important; }

@media (orientation: portrait) and (max-width: 640px) {
  .hero { background-image: url('/images/hero/phone-v2/laguna-1.webp'); }
  .hero-slide:nth-child(1) { background-image: url('/images/hero/phone-v2/laguna-1.webp') !important; }
  .hero-slide:nth-child(2) { background-image: url('/images/hero/phone-v2/laguna-2.webp') !important; }
  .hero-slide:nth-child(3) { background-image: url('/images/hero/phone-v2/laguna-3.webp') !important; }
  .hero-slide:nth-child(4) { background-image: url('/images/hero/phone-v2/laguna-4.webp') !important; }
  .hero-slide:nth-child(5) { background-image: url('/images/hero/phone-v2/laguna-5.webp') !important; }
}

@media (orientation: portrait) and (min-width: 641px) and (max-width: 1180px) {
  .hero { background-image: url('/images/hero/tablet-v2/laguna-1.webp'); }
  .hero-slide:nth-child(1) { background-image: url('/images/hero/tablet-v2/laguna-1.webp') !important; }
  .hero-slide:nth-child(2) { background-image: url('/images/hero/tablet-v2/laguna-2.webp') !important; }
  .hero-slide:nth-child(3) { background-image: url('/images/hero/tablet-v2/laguna-3.webp') !important; }
  .hero-slide:nth-child(4) { background-image: url('/images/hero/tablet-v2/laguna-4.webp') !important; }
  .hero-slide:nth-child(5) { background-image: url('/images/hero/tablet-v2/laguna-5.webp') !important; }
}

/* Experiences: one centered card, adjacent card peeks in, dots map 1:1 to cards. */
.section-experiences {
  --experience-card-width: min(640px, 72vw, 80dvh);
  --experience-gap: 22px;
}
.section-experiences .experience-shell {
  width: min(920px, 100%);
  margin-inline: auto;
  overflow: hidden;
}
.section-experiences .experience-rail {
  gap: var(--experience-gap);
  padding-inline: calc((100% - var(--experience-card-width)) / 2);
  scroll-padding-inline: calc((100% - var(--experience-card-width)) / 2);
}
.section-experiences .experience-card {
  flex: 0 0 var(--experience-card-width);
  scroll-snap-align: center;
}
.section-experiences .experience-photo {
  aspect-ratio: 16 / 9;
}
.section-experiences .section-lead {
  font-size: var(--type-section-lead) !important;
  line-height: 1.6 !important;
}
.section-experiences .experience-card h3 {
  font-size: var(--type-card-title) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}
.section-experiences .experience-card p {
  font-size: var(--type-body) !important;
  line-height: 1.65 !important;
}
@media (min-width: 768px) and (min-height: 701px) {
  .section-experiences .section-heading h2 {
    font-size: var(--type-section-title) !important;
  }
}
@media (min-width: 768px) and (max-height: 700px) {
  .section-experiences .section-lead { font-size: 14px !important; line-height: 1.45 !important; margin-top: 10px; }
  .section-experiences .experience-card h3 { font-size: 18px !important; line-height: 1.2 !important; }
  .section-experiences .experience-card p { font-size: 13px !important; line-height: 1.45 !important; }
}
@media (max-width: 767px) {
  .section-experiences {
    --experience-card-width: 82vw;
    --experience-gap: 18px;
  }
  .section-experiences .experience-shell {
    width: 100%;
  }
  .section-experiences .experience-photo {
    aspect-ratio: 3 / 2;
  }
  .section-experiences .section-lead {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  .section-experiences .experience-card h3 {
    font-size: var(--type-card-title) !important;
    line-height: 1.3 !important;
  }
  .section-experiences .experience-card p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 767px) {
  .section-experiences .section-heading h2 {
    font-size: var(--type-section-title) !important;
    line-height: 1.08 !important;
  }
  .section-experiences .experience-card p {
    line-height: 1.65 !important;
  }
}

/* Compact laptop height without changing the desktop composition. */
@media (min-width: 768px) and (min-height: 701px) and (max-height: 800px) {
  .section-experiences {
    --experience-card-width: min(640px, 72vw, 76dvh);
    padding-top: clamp(36px, 5.5dvh, 44px);
    padding-bottom: clamp(36px, 5.5dvh, 44px);
  }
  .section-experiences .section-heading.compact {
    margin-bottom: clamp(22px, 3dvh, 28px);
  }
  .section-experiences .pagination {
    margin-top: clamp(14px, 2.2dvh, 18px);
  }
}

/* Experiences: one smooth native horizontal scroller; JS owns visual dots. */
.section-experiences .experience-rail {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}
.section-experiences .experience-card {
  scroll-snap-stop: always;
}
.section-experiences .pagination button,
.section-experiences .pagination button.is-active {
  opacity: 0.42 !important;
  background: transparent !important;
  transform: none !important;
}
.section-experiences .pagination button.perf-active {
  opacity: 1 !important;
  background: currentColor !important;
}

/* Responsive high-resolution hero with an infinite forward-only loop. */
.hero-media {
  transform: var(--hero-loop-transform, translate3d(0, 0, 0)) !important;
  transition: var(--hero-loop-transition, none) !important;
}
.hero-slide,
.hero-slide.is-active,
.hero-slide.is-active.perf-preloaded,
.hero-slide.perf-exit,
.hero-slide-clone {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.hero-dots button,
.hero-dots button.is-active {
  opacity: .55 !important;
  background: transparent !important;
}
.hero-dots button.perf-active {
  opacity: 1 !important;
  background: currentColor !important;
}

/* Virtual sixth frame for seamless 5 -> 1 continuation without touching React DOM. */
.hero-media::after {
  content: "";
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-image: var(--hero-first-image, url('/images/hero/desktop-v2/laguna-1.webp'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (orientation: portrait) and (max-width: 640px) {
  .hero-media::after { background-image: url('/images/hero/phone-v2/laguna-1.webp') !important; }
}
@media (orientation: portrait) and (min-width: 641px) and (max-width: 1180px) {
  .hero-media::after { background-image: url('/images/hero/tablet-v2/laguna-1.webp') !important; }
}
/* Property fullscreen gallery viewer */
.showcase-main.is-expandable {
  cursor: zoom-in;
}
.showcase-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(17,19,18,.42);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.property-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: rgba(8,10,9,.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.property-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.property-lightbox-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 92px 68px;
  touch-action: pan-y;
}
.property-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.property-lightbox-close,
.property-lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .16s ease, border-color .16s ease;
}
.property-lightbox-close:hover,
.property-lightbox-nav:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.48);
}
.property-lightbox-close {
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}
.property-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}
.property-lightbox-prev {
  left: max(20px, env(safe-area-inset-left));
}
.property-lightbox-next {
  right: max(20px, env(safe-area-inset-right));
}
.property-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255,255,255,.88);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

@media (max-width: 767px) {
  .showcase-expand {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .property-lightbox-stage {
    padding: max(64px, env(safe-area-inset-top)) 12px max(78px, env(safe-area-inset-bottom));
  }
  .property-lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 29px;
  }
  .property-lightbox-nav {
    top: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    font-size: 34px;
    transform: none;
  }
  .property-lightbox-prev {
    left: max(16px, env(safe-area-inset-left));
  }
  .property-lightbox-next {
    right: max(16px, env(safe-area-inset-right));
  }
  .property-lightbox-counter {
    bottom: max(31px, calc(env(safe-area-inset-bottom) + 15px));
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .property-lightbox,
  .property-lightbox-close,
  .property-lightbox-nav {
    transition: none !important;
  }
}

/* Hard viewport bounds for fullscreen image. */
@media (min-width: 768px) {
  .property-lightbox-image {
    max-width: calc(100vw - 184px) !important;
    max-height: calc(100dvh - 140px) !important;
  }
}
@media (max-width: 767px) {
  .property-lightbox-image {
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100dvh - 142px) !important;
  }
}

/* Fullscreen arrows: vertically centered on every viewport. */
@media (max-width: 767px) {
  .property-lightbox-nav {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }
  .property-lightbox-prev {
    left: max(14px, env(safe-area-inset-left)) !important;
  }
  .property-lightbox-next {
    right: max(14px, env(safe-area-inset-right)) !important;
  }
}

/* Homepage image immediately before the contact and footer sections. */
.brand-break {
  background-image: url('/images/james-bond-island.webp') !important;
}

/* Updated curated-experience photography. */
.section-experiences .experience-card:nth-child(1) .experience-photo {
  background-image: url('/images/IMG_0249.webp') !important;
}

.section-experiences .experience-card:nth-child(2) .experience-photo {
  background-image: url('/images/IMG_0276.webp') !important;
}

.section-experiences .experience-card:nth-child(3) .experience-photo {
  background-image: url('/images/IMG_0277.webp') !important;
}

/* Mobile alignment for the Stay and Expertise sections in every locale. */
@media (max-width: 767px) {
  .section-stay,
  .section-expertise,
  .section-stay .section-heading,
  .section-expertise .section-heading,
  .section-stay .copy-block,
  .section-expertise .copy-block,
  .section-stay .copy-block p,
  .section-expertise .copy-block p {
    text-align: center !important;
  }

  .section-stay .copy-block p,
  .section-expertise .copy-block p {
    margin-inline: auto !important;
  }

  .section-stay .text-link,
  .section-expertise .text-link {
    display: inline-block;
  }
}

/* Collection cards: fixed two-line names and separated one-line details. */
.residence-title-line,
.residence-title-suffix,
.residence-detail-layout,
.residence-detail-features {
  display: block;
}

.residence-detail-layout {
  margin-bottom: 5px;
}

.residence-detail-features {
  white-space: nowrap;
  font-size: clamp(10px, 1.05vw, 13.5px);
}

@media (max-width: 767px) {
  .residence-detail-features {
    font-size: clamp(9px, 2.8vw, 11px);
  }
}

/* Expertise cards: centered in every locale and viewport. */
.section-expertise .section-heading,
.section-expertise .service-block,
.section-expertise .service-block h3,
.section-expertise .service-block p {
  text-align: center !important;
}

.section-expertise .section-lead,
.section-expertise .service-block p {
  margin-inline: auto !important;
}

.section-expertise .service-block .text-link {
  align-self: center !important;
  display: inline-block !important;
  text-align: center !important;
}

/* The locations/Google Maps block is no longer part of the site. */
.section-locations {
  display: none !important;
}

/* Editorial company-document gallery immediately before the island image. */
.section-company-documents {
  overflow: hidden;
  padding: clamp(76px, 8vw, 132px) 0 clamp(82px, 9vw, 144px);
  background: #f7f5f0;
  color: #171a17;
}

.company-documents-inner {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.section-company-documents h2 {
  margin: 0 0 clamp(42px, 5vw, 72px);
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.company-documents-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(22px, 3vw, 46px);
}

.company-document {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  appearance: none;
}

.company-document img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23, 26, 23, .08);
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 20, 17, .11);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}

.company-document:hover img,
.company-document:focus-visible img {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(15, 20, 17, .16);
}

.company-document:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.company-document-number {
  display: block;
  margin-top: 17px;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.company-documents-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(12, 14, 12, .96);
  overscroll-behavior: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.company-documents-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.company-documents-stage {
  position: absolute;
  inset: 0;
  display: grid;
  box-sizing: border-box;
  padding: 54px 104px 62px;
  place-items: center;
  overflow: hidden;
}

.company-documents-stage img {
  display: block;
  max-width: calc(100vw - 208px);
  max-height: calc(100dvh - 116px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

.company-documents-close,
.company-documents-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.company-documents-close {
  top: max(18px, env(safe-area-inset-top));
  right: max(22px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  font-size: 34px;
  font-weight: 200;
  line-height: 1;
}

.company-documents-nav {
  top: 50%;
  width: 60px;
  height: 72px;
  font-size: 52px;
  font-weight: 200;
  transform: translateY(-50%);
}

.company-documents-prev { left: max(18px, env(safe-area-inset-left)); }
.company-documents-next { right: max(18px, env(safe-area-inset-right)); }

.company-documents-counter {
  position: absolute;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 50%;
  color: rgba(255,255,255,.86);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  transform: translateX(-50%);
}

html.company-documents-open,
html.company-documents-open body {
  overflow: hidden;
}

@media (max-width: 767px) {
  .section-company-documents {
    padding: 68px 0 78px;
  }

  .company-documents-inner {
    width: 100%;
  }

  .section-company-documents h2 {
    margin: 0 24px 38px;
    font-size: clamp(31px, 10vw, 44px);
  }

  .company-documents-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 8vw 24px;
    scroll-padding-inline: 8vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .company-documents-rail::-webkit-scrollbar { display: none; }

  .company-document {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .company-document:hover img,
  .company-document:focus-visible img {
    transform: none;
  }

  .company-documents-stage {
    padding: max(58px, env(safe-area-inset-top)) 12px max(58px, env(safe-area-inset-bottom));
  }

  .company-documents-stage img {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 116px);
  }

  .company-documents-nav {
    width: 46px;
    height: 60px;
    font-size: 42px;
    background: rgba(0, 0, 0, .28);
  }

  .company-documents-prev { left: max(5px, env(safe-area-inset-left)); }
  .company-documents-next { right: max(5px, env(safe-area-inset-right)); }
}

@media (prefers-reduced-motion: reduce) {
  .company-document img,
  .company-documents-lightbox {
    transition: none !important;
  }
}
