:root {
  --ink: #10282f;
  --navy: #0a3d4b;
  --navy-dark: #062c36;
  --sea: #2c7f91;
  --sea-light: #dcecef;
  --coral: #ec684d;
  --coral-dark: #d8563d;
  --sand: #f3eee5;
  --sand-light: #faf8f4;
  --white: #ffffff;
  --muted: #66777c;
  --line: rgba(16, 40, 47, 0.13);
  --shadow: 0 24px 70px rgba(8, 45, 55, 0.12);
  --radius: 1.25rem;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Playfair Display", serif;
}

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

body {
  color: var(--ink);
  background: var(--sand-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

[data-aos] {
  will-change: transform, opacity;
}

:target [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container {
  max-width: 1200px;
}

.section {
  padding: 7.5rem 0;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-display);
}

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

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
}

.section-lead {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 12px 28px rgba(236, 104, 77, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(236, 104, 77, 0.3);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.btn-dark:hover,
.btn-dark:focus {
  color: var(--white);
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover,
.btn-light:focus {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.navbar {
  min-height: 84px;
  padding: 0.8rem 0;
  background: linear-gradient(to bottom, rgba(4, 31, 38, 0.7), transparent);
  transition: min-height 0.3s ease, padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled,
.navbar.menu-open {
  min-height: 72px;
  padding: 0.55rem 0;
  background: rgba(7, 48, 59, 0.96);
  box-shadow: 0 9px 30px rgba(4, 31, 38, 0.16);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  color: var(--white);
}

.navbar-brand:hover {
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.76;
  text-transform: uppercase;
}

.navbar .nav-link {
  position: relative;
  margin: 0 0.6rem;
  padding: 0.65rem 0 !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
}

.navbar .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

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

.btn-nav {
  padding: 0.68rem 1.05rem;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-nav:hover,
.btn-nav:focus {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

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

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
  background-image: url("../assets/img/hero-house.webp");
  background-attachment: fixed;
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 34, 0.87) 0%, rgba(3, 33, 41, 0.6) 50%, rgba(3, 33, 41, 0.18) 78%),
    linear-gradient(0deg, rgba(3, 26, 32, 0.55), transparent 45%);
}

.hero-content {
  display: flex;
  min-height: inherit;
  height: 100%;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-content > .row {
  width: 100%;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(3.5rem, 7.5vw, 7.25rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  color: #ffd8c9;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-highlights i {
  color: #ffd8c9;
  font-size: 1rem;
}

.booking-card {
  display: flex;
  width: min(100%, 250px);
  margin-left: auto;
  padding: 1.5rem;
  color: var(--white);
  background: rgba(5, 47, 58, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(2, 24, 30, 0.28);
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.booking-card:hover {
  color: var(--white);
  background: rgba(5, 47, 58, 0.85);
  transform: translateY(-5px);
}

.booking-kicker {
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  opacity: 0.75;
  text-transform: uppercase;
}

.booking-score {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.booking-label {
  color: #ffd8c9;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
}

.booking-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  place-items: center;
}

.quick-facts {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--white);
  background: var(--navy);
}

.fact {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  flex-direction: column;
}

.fact + .fact {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.fact strong {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.fact span {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}

.section-intro {
  background: var(--sand-light);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: 0;
  top: -1.3rem;
  right: 2.5rem;
  bottom: 1.3rem;
  left: -1.3rem;
  content: "";
  border: 1px solid rgba(44, 127, 145, 0.28);
  border-radius: var(--radius);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(580px, 60vw);
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 0.25rem;
  box-shadow: 0 12px 30px rgba(236, 104, 77, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amenity-grid {
  display: grid;
  margin: 2.25rem 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amenity-grid > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
}

.amenity-grid > div:nth-child(odd) {
  margin-right: 1.25rem;
}

.amenity-grid i {
  color: var(--sea);
  font-size: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.2rem;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

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

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

.section-heading {
  display: grid;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.25rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 31rem;
  margin: 0 0 0.55rem auto;
  color: var(--muted);
}

.apartment-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 40, 47, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(9, 49, 59, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartment-card:hover {
  box-shadow: 0 25px 60px rgba(9, 49, 59, 0.13);
  transform: translateY(-7px);
}

.apartment-card.featured {
  border-color: rgba(236, 104, 77, 0.45);
}

.apartment-image {
  position: relative;
  height: 265px;
  overflow: hidden;
}

.apartment-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 34, 41, 0.34), transparent 42%);
}

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

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

.apartment-capacity {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  color: var(--white);
  background: rgba(6, 44, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.apartment-body {
  padding: 1.75rem;
}

.apartment-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.apartment-type {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--sea);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apartment-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.apartment-size {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.apartment-body > p {
  min-height: 5.2rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.apartment-body ul {
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.apartment-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.55rem;
  font-size: 0.77rem;
  font-weight: 600;
}

.apartment-body li i {
  color: var(--coral);
  font-size: 1rem;
}

.apartments-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 40, 47, 0.08);
  border-radius: 0.75rem;
}

.apartments-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.sea-break {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  color: var(--white);
  background-image: url("../assets/img/sea-terrace.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sea-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 40, 48, 0.88), rgba(4, 40, 48, 0.38) 62%, rgba(4, 40, 48, 0.08));
}

.sea-break-copy {
  max-width: 680px;
}

.sea-break h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(3.25rem, 6vw, 6rem);
}

.sea-break h2 em {
  color: #ffd8c9;
}

.sea-break-copy > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.section-location {
  background: var(--sand-light);
}

.location-list {
  margin: 2rem 0;
}

.location-list > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.location-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  color: var(--sea);
  background: var(--sea-light);
  border-radius: 50%;
  place-items: center;
}

.location-list span:last-child {
  display: flex;
  flex-direction: column;
}

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

.location-list strong {
  margin-top: 0.1rem;
  font-size: 0.86rem;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
  filter: saturate(0.8) contrast(1.03);
}

.map-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 310px;
  padding: 0.9rem;
  color: var(--white);
  background: rgba(7, 48, 59, 0.94);
  border-radius: 0.85rem;
  box-shadow: 0 12px 35px rgba(4, 31, 38, 0.24);
}

.map-label .brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  font-size: 0.85rem;
}

.map-label > span:last-child {
  display: flex;
  flex-direction: column;
}

.map-label strong {
  font-size: 0.83rem;
}

.map-label small {
  font-size: 0.65rem;
  opacity: 0.65;
}

.contact-section {
  padding-top: 1rem;
  background: var(--sand-light);
}

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 4rem;
  padding: 4.5rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-panel::before {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.contact-panel h2 {
  margin-bottom: 1.35rem;
  color: var(--white);
}

.contact-panel h2 em {
  color: #ffd8c9;
}

.contact-panel > div:first-child > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-actions .btn {
  margin-bottom: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-link:hover {
  color: #ffd8c9;
}

.contact-link > i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  place-items: center;
}

.contact-link span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-link small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.58;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 0.83rem;
}

.site-footer {
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-dark);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-top nav a {
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #ffd8c9;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(236, 104, 77, 0.28);
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--coral-dark);
}

@media (max-width: 991.98px) {
  .section {
    padding: 6rem 0;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.8rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .navbar .nav-link {
    margin: 0;
    padding: 0.75rem 0 !important;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .btn-nav {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero,
  .sea-break {
    background-attachment: scroll;
  }

  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 8.5rem;
    padding-bottom: 6.5rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 27, 34, 0.86), rgba(3, 33, 41, 0.38)), linear-gradient(0deg, rgba(3, 26, 32, 0.55), transparent 55%);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .apartment-body > p {
    min-height: auto;
  }

  .apartments-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sea-break {
    min-height: 590px;
  }

  .contact-panel {
    gap: 2.5rem;
    padding: 3.5rem;
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 510px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero {
    min-height: 730px;
    background-position: 57% center;
  }

  .hero-content {
    min-height: 730px;
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

  .hero-lead {
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-bottom: 1.5rem;
  }

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

  .hero-highlights {
    display: grid;
    gap: 0.35rem;
    font-size: 0.75rem;
  }

  .quick-facts .container {
    padding-right: 0;
    padding-left: 0;
  }

  .fact {
    min-height: 102px;
    padding: 1rem 0.35rem;
  }

  .fact strong {
    font-size: 1.55rem;
  }

  .fact span {
    max-width: 7.5rem;
    font-size: 0.54rem;
    line-height: 1.45;
  }

  .image-frame::before {
    top: -0.75rem;
    right: 1.25rem;
    bottom: 0.75rem;
    left: -0.75rem;
  }

  .image-frame img {
    height: 115vw;
    min-height: 0;
  }

  .image-note {
    right: -0.25rem;
    bottom: 1rem;
  }

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

  .amenity-grid > div:nth-child(odd) {
    margin-right: 0;
  }

  .apartment-image {
    height: 250px;
  }

  .apartments-cta .btn {
    width: 100%;
  }

  .sea-break {
    min-height: 520px;
    background-position: 58% center;
  }

  .sea-break h2 {
    font-size: 3.55rem;
  }

  .map-wrap {
    min-height: 440px;
  }

  .contact-section {
    padding-top: 0;
  }

  .contact-section .container {
    padding: 0;
  }

  .contact-panel {
    padding: 3.5rem 1.25rem;
    border-radius: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top nav {
    gap: 0.9rem 1.25rem;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 2.9rem;
    height: 2.9rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }
}

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

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