:root {
  --ink: #102f36;
  --ink-deep: #07272f;
  --sea: #0d7482;
  --sea-bright: #1598a4;
  --gold: #c89c54;
  --gold-light: #e3c081;
  --sand: #f2ede4;
  --cream: #faf8f4;
  --white: #fff;
  --muted: #66787c;
  --line: rgba(16, 47, 54, 0.13);
  --shadow: 0 24px 70px rgba(10, 38, 45, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--sea);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 em,
h2 em {
  color: var(--sea);
  font-weight: 600;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.section-space {
  padding: 8rem 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.text-white,
.eyebrow.text-gold {
  justify-content: flex-start;
}

.text-gold {
  color: var(--gold-light) !important;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 4.5rem;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.78rem 1.4rem;
  border-width: 1px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

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

.btn-lg {
  min-height: 57px;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}

.btn-gold {
  color: var(--ink-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 32px rgba(7, 39, 47, 0.16);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 38px rgba(7, 39, 47, 0.25);
}

.btn-outline-light:hover {
  color: var(--ink-deep);
}

.btn-outline-dark {
  color: var(--ink-deep);
  border-color: rgba(7, 39, 47, 0.35);
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.btn-primary-dark {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.btn-primary-dark:hover,
.btn-primary-dark:focus {
  color: var(--white);
  background: var(--sea);
  border-color: var(--sea);
  box-shadow: 0 14px 30px rgba(13, 116, 130, 0.2);
}

/* Navigation */
.navbar {
  min-height: 84px;
  padding: 0.55rem 0;
  background: linear-gradient(to bottom, rgba(4, 24, 29, 0.7), rgba(4, 24, 29, 0));
  transition: min-height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled,
.navbar.menu-open {
  min-height: 72px;
  background: rgba(7, 39, 47, 0.97);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  padding: 0;
}

.brand-logo-shell {
  display: grid;
  width: 112px;
  height: 68px;
  place-items: center;
  padding: 0.2rem 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 3px;
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.13);
  transition: height 0.3s ease, width 0.3s ease;
}

.brand-logo-shell img {
  width: auto;
  max-width: 96px;
  height: 61px;
  object-fit: contain;
}

.navbar.scrolled .brand-logo-shell {
  width: 98px;
  height: 58px;
}

.navbar.scrolled .brand-logo-shell img {
  height: 52px;
}

.navbar-nav {
  gap: 0.35rem;
}

.navbar .nav-link {
  position: relative;
  padding: 0.55rem 0.7rem !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar .nav-link:not(.nav-cta)::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.2rem;
  left: 0.7rem;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--white);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-cta {
  margin-left: 0.3rem;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  color: var(--ink-deep);
  background: var(--gold-light);
  border-radius: 3px;
}

.navbar .nav-cta:hover,
.navbar .nav-cta:focus {
  color: var(--white);
  background: var(--gold);
}

.nav-call {
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.nav-call:hover {
  color: var(--ink-deep);
  background: var(--white);
}

.navbar-toggler {
  padding: 0.35rem;
  border: 0;
  box-shadow: none !important;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background-image: url("../assets/img/hero-sunset.webp");
  background-position: center 53%;
  background-size: cover;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 29, 0.85) 0%, rgba(3, 24, 29, 0.56) 45%, rgba(3, 24, 29, 0.08) 80%),
    linear-gradient(0deg, rgba(3, 24, 29, 0.55) 0%, transparent 45%);
}

.hero-content {
  z-index: 1;
}

.hero-copy {
  padding-bottom: 8rem !important;
}

.hero-section h1 {
  max-width: 950px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(4rem, 8vw, 8.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-section h1 em {
  display: block;
  color: var(--gold-light);
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-section .rating-card {
  display: flex;
  width: 255px;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 8rem;
  padding: 1rem 1.1rem;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 4px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.rating-card:hover {
  color: var(--ink-deep);
  transform: translateY(-4px);
}

.rating-score {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--white);
  background: var(--sea);
  border-radius: 3px;
  font-size: 1.25rem;
  font-weight: 800;
  place-items: center;
}

.rating-card strong,
.rating-card small {
  display: block;
  line-height: 1.35;
}

.rating-card strong {
  font-size: 0.82rem;
}

.rating-card small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.64rem;
}

.rating-card > i {
  margin-left: auto;
  color: var(--sea);
}

.scroll-cue {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Intro */
.intro-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--white);
  background: var(--ink-deep);
}

.intro-features {
  padding: 1.55rem 0;
}

.intro-feature {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.intro-features > div:last-child .intro-feature {
  border-right: 0;
}

.intro-feature > i {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.intro-feature strong,
.intro-feature small {
  display: block;
}

.intro-feature strong {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.intro-feature small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

/* About */
.about-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(200, 156, 84, 0.08), transparent 25%),
    var(--cream);
}

.image-composition {
  position: relative;
  max-width: 620px;
  padding: 0 3.5rem 5rem 0;
}

.image-main {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border: 9px solid var(--cream);
  box-shadow: 0 20px 50px rgba(7, 39, 47, 0.2);
}

.image-badge {
  position: absolute;
  top: 2.5rem;
  right: -0.8rem;
  display: grid;
  width: 110px;
  height: 110px;
  color: var(--ink-deep);
  background: var(--gold-light);
  border-radius: 50%;
  text-align: center;
  place-content: center;
  box-shadow: 0 15px 35px rgba(7, 39, 47, 0.18);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.image-badge span {
  max-width: 75px;
  margin-top: 0.3rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead-copy {
  color: #405b61;
  font-size: 1.1rem;
  line-height: 1.8;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.signature-mark {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--sea);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  place-items: center;
}

.signature-line strong,
.signature-line small {
  display: block;
}

.signature-line strong {
  font-size: 0.86rem;
}

.signature-line small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Apartments */
.apartments-section {
  background: var(--sand);
}

.apartment-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(7, 39, 47, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.apartment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(7, 39, 47, 0.15);
}

.apartment-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.apartment-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 39, 47, 0.34), transparent 45%);
}

.apartment-image img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.apartment-card:hover .apartment-image img {
  transform: scale(1.045);
}

.apartment-label {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  color: var(--ink-deep);
  background: var(--gold-light);
  border-radius: 2px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apartment-body {
  padding: 2.3rem 2.4rem 2.5rem;
}

.apartment-kicker {
  margin-bottom: 0.35rem;
  color: var(--sea);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.apartment-body h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.apartment-arrow {
  color: var(--gold);
  font-size: 1.3rem;
}

.apartment-body > p {
  font-size: 0.93rem;
}

.apartment-features {
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 1.7rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.apartment-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #435d62;
  font-size: 0.8rem;
}

.apartment-features i {
  color: var(--sea);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link i {
  transition: transform 0.25s ease;
}

.text-link:hover {
  color: var(--sea);
}

.text-link:hover i {
  transform: translateX(5px);
}

.availability-note {
  margin: 2rem 0 0;
  font-size: 0.78rem;
}

.availability-note i {
  margin-right: 0.35rem;
  color: var(--sea);
}

/* Amenities */
.amenities-section {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(7, 39, 47, 0.98), rgba(8, 67, 76, 0.95)),
    url("../assets/img/bay-view.webp") center / cover;
}

.amenities-section h2 em {
  color: var(--gold-light);
}

.amenities-copy {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.amenity-item {
  display: flex;
  min-height: 128px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.3rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(227, 192, 129, 0.55);
  transform: translateY(-4px);
}

.amenity-item i {
  color: var(--gold-light);
  font-size: 1.55rem;
}

.amenity-item span {
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Parallax statement */
.escape-section {
  position: relative;
  display: grid;
  min-height: 620px;
  padding: 8rem 0;
  place-items: center;
  background-image: url("../assets/img/sea-view.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.escape-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 34, 0.58);
}

.escape-section .container {
  max-width: 900px;
}

.escape-section .eyebrow {
  justify-content: center;
}

.escape-section h2 em {
  color: var(--gold-light);
}

.escape-section p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.escape-icon {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--gold-light);
  font-size: 2.2rem;
}

/* Gallery */
.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  max-width: 1600px;
  margin: 0 auto;
  grid-auto-rows: 265px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  background: var(--ink-deep);
  border: 0;
  cursor: zoom-in;
}

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

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 24, 29, 0.74), transparent 48%);
  opacity: 0.75;
  transition: opacity 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item span {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.gallery-item:hover span {
  transform: translateY(0);
}

.gallery-reveal {
  animation: gallery-reveal 0.6s ease both;
}

@keyframes gallery-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

/* Reviews */
.reviews-section {
  background: var(--sand);
}

.reviews-section h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.booking-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-deep);
}

.booking-rating-inline strong {
  padding: 0.6rem 0.7rem;
  color: var(--white);
  background: var(--sea);
  border-radius: 3px;
  font-size: 0.95rem;
}

.booking-rating-inline span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.booking-rating-inline:hover {
  color: var(--sea);
}

.review-card {
  position: relative;
  padding: 2.5rem 2.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 47, 54, 0.08);
  transition: transform 0.35s ease, background 0.35s ease;
}

.review-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.review-card::before {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  color: rgba(13, 116, 130, 0.12);
  content: "“";
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.review-stars {
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
}

.review-card p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Location */
.location-section {
  background: var(--ink-deep);
}

.map-column iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  filter: saturate(0.55) contrast(1.05);
}

.location-copy {
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(7, 39, 47, 0.93), rgba(7, 39, 47, 0.96)),
    url("../assets/img/bay-view.webp") center / cover;
}

.location-inner {
  max-width: 680px;
  padding: 7rem clamp(2rem, 7vw, 7.5rem);
}

.location-inner h2 em {
  color: var(--gold-light);
}

.location-inner > p {
  color: rgba(255, 255, 255, 0.68);
}

.location-inner address {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.2rem 0;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  font-style: normal;
}

.location-inner address > i {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.location-inner address strong,
.location-inner address span {
  display: block;
}

.location-inner address strong {
  color: var(--white);
}

.location-highlights {
  display: grid;
  margin-bottom: 2.2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.location-highlights > div {
  min-width: 0;
  padding: 1.1rem 0.8rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-highlights i,
.location-highlights strong,
.location-highlights small {
  display: block;
}

.location-highlights i {
  margin-bottom: 0.55rem;
  color: var(--gold-light);
}

.location-highlights strong {
  color: var(--white);
  font-size: 0.82rem;
}

.location-highlights small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  text-overflow: ellipsis;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 8% 80%, rgba(21, 152, 164, 0.08), transparent 28%),
    var(--cream);
}

.contact-lead {
  max-width: 520px;
  font-size: 1.02rem;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > a:hover strong {
  color: var(--sea);
}

.contact-details i {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  color: var(--sea);
  background: rgba(13, 116, 130, 0.08);
  border-radius: 50%;
  place-items: center;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink-deep);
  font-size: 0.86rem;
  transition: color 0.25s ease;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-whatsapp,
.btn-share {
  min-height: 46px;
  padding: 0.65rem 1rem;
  font-size: 0.64rem;
}

.btn-whatsapp {
  color: var(--white);
  background: #177e52;
  border-color: #177e52;
}

.btn-whatsapp:hover {
  color: var(--white);
  background: #11643f;
  border-color: #11643f;
}

.btn-share {
  color: var(--ink-deep);
  background: transparent;
  border-color: rgba(7, 39, 47, 0.25);
}

.btn-share:hover {
  color: var(--white);
  background: var(--ink-deep);
}

.share-status,
.form-status {
  min-height: 1.4rem;
  margin: 0.55rem 0 0;
  color: var(--sea);
  font-size: 0.72rem;
}

.inquiry-form {
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.form-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
}

.form-heading h3 {
  margin: 0;
  font-size: 1.6rem;
}

.form-heading p {
  margin: 0;
  font-size: 0.76rem;
}

.inquiry-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  min-height: 52px;
  color: var(--ink-deep);
  background-color: #f8f6f1;
  border: 1px solid transparent;
  border-bottom-color: rgba(7, 39, 47, 0.2);
  border-radius: 0;
  font-size: 0.82rem;
  box-shadow: none;
}

.inquiry-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  background: var(--white);
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(13, 116, 130, 0.08);
}

.inquiry-form .is-invalid {
  border-color: #b93333;
}

.form-privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.4;
}

.form-privacy i {
  color: var(--sea);
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  background: #041c22;
}

.footer-top {
  display: grid;
  align-items: center;
  padding-bottom: 3rem;
  grid-template-columns: 150px 1fr auto;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  width: 130px;
  height: 82px;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  place-items: center;
}

.footer-brand img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.footer-top p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  padding: 2.5rem 5.5rem;
  color: var(--white);
  background: rgba(2, 16, 20, 0.96);
  place-items: center;
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  max-width: 1180px;
  max-height: calc(100vh - 5rem);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.gallery-lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox figcaption {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.gallery-lightbox figcaption small {
  color: var(--gold-light);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--sea);
  transform: scale(1.06);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  top: 50%;
  left: 1.2rem;
}

.lightbox-next {
  top: 50%;
  right: 1.2rem;
}

.mobile-actions {
  display: none;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .section-space {
    padding: 7rem 0;
  }

  .navbar .nav-link {
    padding-right: 0.48rem !important;
    padding-left: 0.48rem !important;
    font-size: 0.66rem;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 72px;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-logo-shell {
    width: 93px;
    height: 56px;
  }

  .brand-logo-shell img {
    height: 50px;
  }

  .navbar-collapse {
    margin: 0.5rem -0.75rem -0.55rem;
    padding: 1rem 1rem 1.4rem;
    background: rgba(7, 39, 47, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar .nav-link {
    padding: 0.65rem 0.4rem !important;
  }

  .navbar .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .hero-section,
  .escape-section {
    background-attachment: scroll;
  }

  .hero-section {
    min-height: 700px;
    background-position: 61% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 24, 29, 0.8), rgba(3, 24, 29, 0.25)), linear-gradient(0deg, rgba(3, 24, 29, 0.7), transparent 50%);
  }

  .hero-copy {
    padding-bottom: 7rem !important;
  }

  .intro-feature {
    justify-content: flex-start;
    padding: 1rem 1.2rem;
  }

  .intro-features > div:nth-child(2) .intro-feature {
    border-right: 0;
  }

  .intro-features > div:nth-child(-n+2) .intro-feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .image-composition {
    margin: 0 auto;
  }

  .amenities-section .col-lg-5 {
    margin-bottom: 1rem;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-column iframe {
    min-height: 460px;
  }

  .location-inner {
    max-width: none;
    padding: 6rem max(1.5rem, calc((100vw - 720px) / 2));
  }

  .footer-top {
    grid-template-columns: 130px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 64px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .section-space {
    padding: 5.5rem 0;
  }

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

  .hero-section {
    min-height: 680px;
  }

  .hero-section h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hero-copy {
    padding-bottom: 5.4rem !important;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

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

  .scroll-cue {
    display: none;
  }

  .intro-features {
    padding: 0;
  }

  .intro-feature {
    min-height: 92px;
    gap: 0.7rem;
    padding: 0.85rem 0.55rem;
  }

  .intro-feature > i {
    font-size: 1.25rem;
  }

  .intro-feature strong {
    font-size: 0.65rem;
  }

  .intro-feature small {
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .image-composition {
    padding: 0 1.8rem 3.5rem 0;
  }

  .image-float {
    border-width: 6px;
  }

  .image-badge {
    top: 1.2rem;
    right: -0.2rem;
    width: 88px;
    height: 88px;
  }

  .image-badge strong {
    font-size: 1.45rem;
  }

  .image-badge span {
    font-size: 0.5rem;
  }

  .apartment-image img {
    height: 285px;
  }

  .apartment-body {
    padding: 1.7rem 1.4rem 1.9rem;
  }

  .amenity-item {
    min-height: 112px;
    padding: 1rem;
  }

  .escape-section {
    min-height: 530px;
    padding: 6rem 0;
  }

  .gallery-grid {
    grid-auto-rows: 205px;
    gap: 0.5rem;
  }

  .gallery-item span {
    right: 0.7rem;
    bottom: 0.65rem;
    left: 0.7rem;
    font-size: 0.58rem;
  }

  .reviews-section .row.align-items-end {
    margin-bottom: 2rem !important;
  }

  .location-highlights {
    grid-template-columns: 1fr;
  }

  .location-highlights > div {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .location-highlights i {
    margin: 0;
  }

  .inquiry-form {
    margin: 0 -0.35rem;
  }

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

  .footer-top p {
    font-size: 1.05rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .gallery-lightbox {
    padding: 4rem 0.8rem 2rem;
  }

  .gallery-lightbox figure img {
    max-height: calc(100vh - 10rem);
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 0.6rem;
  }

  .lightbox-next {
    right: 0.6rem;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    height: 64px;
    color: var(--white);
    background: rgba(7, 39, 47, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.16);
    grid-template-columns: repeat(3, 1fr);
    backdrop-filter: blur(10px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    color: var(--ink-deep);
    background: var(--gold-light);
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .contact-quick-actions .btn {
    width: 100%;
  }

  .mobile-actions a {
    flex-direction: column;
    gap: 0.05rem;
    font-size: 0.54rem;
    line-height: 1.2;
  }
}

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

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

  .hero-section,
  .escape-section {
    background-attachment: scroll;
  }
}
