:root {
  --header-green: #ffffff;
  --footer-green: #ffffff;
  --text-white: #000000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: #ffffff;
  color: #1b241e;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.topbar {
  background: var(--header-green);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar-wrap {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 96px;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: clamp(150px, 14vw, 210px);
}

.brand-mark {
  width: 44px;
  height: 24px;
  display: inline-block;
  border-radius: 12px 12px 4px 4px;
  border: 5px solid #ffffff;
  border-left-color: #ff2c2c;
  border-bottom-color: #ff2c2c;
  transform: skewX(-18deg);
}

.brand-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1px;
}

.brand-hero {
  color: #ff2c2c;
}

.brand-homes {
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.main-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.main-nav a:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #000000;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

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

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

.page-content {
  min-height: 60vh;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 630px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #d9d9d9;
}

.slider-track {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide img,
.slide video,
.slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  color: #ffffff;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.slide-overlay h2 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
}

.slide-overlay p {
  margin: 0;
  font-size: 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dot.is-active {
  background: #ffffff;
}

.overview-section {
  background: #e9e9e9;
  padding: 56px 0 64px;
}

.overview-wrap {
  width: min(1460px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.overview-image {
  position: relative;
  width: 500px;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #d1d1d1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.overview-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.overview-caption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.overview-content h2 {
  margin: 8px 0 20px;
  color: #003e1f;
  font-size: 25px;
  line-height: 1;
}

.overview-content > p {
  margin: 0 0 26px;
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  width: 100%;
}

.overview-card {
  background: #003e1f;
  color: #ffffff;
  min-height: 126px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
}

.overview-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.overview-card p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.amenities-section {
  background: #003e1f;
  color: #ffffff;
  padding: 72px 0 64px;
}

.amenities-wrap {
  width: min(1460px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.amenities-wrap h2 {
  margin: 0 0 12px;
  font-size: 62px;
  line-height: 1;
}

.amenities-wrap h3 {
  margin: 0 0 22px;
  font-size: 38px;
  font-weight: 500;
}

.amenities-wrap > p {
  margin: 0 auto 44px;
  max-width: 1020px;
  font-size: 20px;
  line-height: 1.5;
  color: #ecf4ef;
}

.amenities-slider {
  position: relative;
}

.amenities-viewport {
  overflow: hidden;
}

.amenities-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.amenity-item {
  flex: 0 0 calc((100% - 80px) / 5);
  padding: 14px 10px;
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%);
}

.amenity-item h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.amenities-controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.amenities-btn {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f1;
  color: #003e1f;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.amenities-btn:hover {
  background: #ffffff;
}

.parkside-section {
  background: #e9e9e9;
  padding: 36px 0 28px;
}

.parkside-wrap {
  width: min(1560px, calc(100% - 80px));
  margin: 0 auto;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
}

.parkside-bg {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) saturate(0.9);
}

.parkside-overlay {
  position: absolute;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 2;
}

.parkside-overlay p {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 6px;
}

.parkside-overlay h2 {
  margin: 0 0 16px;
  font-size: 86px;
  line-height: 0.95;
  font-weight: 500;
}

.parkside-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.parkside-badges span {
  padding: 10px 18px;
  border: 1px solid #b89666;
  font-size: 22px;
  font-weight: 600;
}

.parkside-badges span:first-child {
  background: #b89666;
  color: #ffffff;
}

.parkside-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #b32116;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.parkside-caption {
  position: absolute;
  right: 12px;
  bottom: 14px;
  color: #ffffff;
  font-size: 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

.gallery-section {
  background: #003e1f;
  padding: 34px 0 42px;
}

.gallery-wrap {
  width: min(1660px, calc(100% - 80px));
  margin: 0 auto;
}

.gallery-wrap h2 {
  margin: 0 0 16px;
  text-align: center;
  color: #ffffff;
  font-size: 56px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.55s ease;
}

.gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 3);
  min-height: 286px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  display: block;
}

.gallery-item span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #ffffff;
  font-size: 11px;
  text-align: right;
}

.gallery-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3ef;
  color: #003e1f;
  font-size: 18px;
  cursor: pointer;
}

.highlights-section {
  background: #e9e9e9;
  padding: 16px 0 40px;
}

.highlights-wrap {
  width: min(1560px, calc(100% - 80px));
  margin: 0 auto;
}

.highlights-wrap h2 {
  margin: 0 0 18px;
  color: #003e1f;
  text-align: center;
  font-size: 52px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #b7bdb7;
}

.highlight-item {
  min-height: 110px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid #b7bdb7;
  border-bottom: 1px solid #b7bdb7;
}

.highlight-item:nth-child(3n) {
  border-right: 0;
}

.highlight-item:nth-last-child(-n+3) {
  border-bottom: 0;
}

.highlight-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(55%) sepia(3%) saturate(149%) hue-rotate(59deg) brightness(92%) contrast(86%);
}

.highlight-item p {
  margin: 0;
  color: #6a6f6a;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.highlight-item.is-empty {
  gap: 0;
}

.highlights-grid .highlight-item:nth-child(8) {
  grid-column: 2 / 3;
}

.highlights-grid .highlight-item:nth-child(9) {
  grid-column: 3 / 4;
}

.location-section {
  display: grid;
  grid-template-columns: 38% 62%;
  background: #003e1f;
  color: #ffffff;
}

.location-map {
  min-height: 520px;
}

.location-map img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.location-panel {
  padding: 54px 42px 40px;
}

.location-panel h2 {
  margin: 0 0 10px;
  font-size: 54px;
  line-height: 1.05;
}

.location-panel h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 500;
}

.location-panel > p {
  margin: 0 0 24px;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.45;
  color: #d6e7dc;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 14px;
  margin-bottom: 24px;
}

.location-point {
  text-align: center;
}

.location-point img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

.location-point p {
  margin: 8px 0 3px;
  font-size: 13px;
  line-height: 1.25;
}

.location-point strong {
  font-size: 23px;
  font-weight: 600;
}

.location-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #00a153;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-align: center;
}

.contact-section {
  background: linear-gradient(180deg, #e9efe9 0%, #f4f6f3 100%);
  padding: 50px 0 58px;
}

.contact-wrap {
  width: min(1460px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 28px;
  align-items: start;
}

.contact-intro {
  background: #003e1f;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px 26px;
}

.contact-intro h1 {
  margin: 0 0 12px;
  font-size: 54px;
  line-height: 1;
}

.contact-intro > p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #d4e5da;
}

.contact-points {
  display: grid;
  gap: 12px;
}

.contact-point {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.contact-point h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.contact-point p {
  margin: 0;
  font-size: 14px;
  color: #d4e5da;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  margin: 0 0 18px;
  color: #003e1f;
  font-size: 32px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #1f2b24;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #ced8ce;
  border-radius: 8px;
  background: #ffffff;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  color: #1f2b24;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: #00a153;
  box-shadow: 0 0 0 3px rgba(0, 161, 83, 0.12);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-consent {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #4a564d;
}

.form-consent input {
  margin-top: 2px;
}

.contact-submit {
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: #00a153;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  cursor: pointer;
}

.contact-submit:hover {
  background: #008f4a;
}

.contact-submit-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.toastifier-stack {
  position: fixed;
  top: 96px;
  right: 18px;
  z-index: 1300;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 24px));
}

.toastifier {
  padding: 14px 16px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toastifier.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toastifier--success {
  background: linear-gradient(135deg, #0b8f4d 0%, #00a153 100%);
}

.toastifier--error {
  background: linear-gradient(135deg, #a12d2d 0%, #d14a4a 100%);
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.contact-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 23, 14, 0.68);
  backdrop-filter: blur(5px);
}

.contact-modal__dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  background: #f4f6f3;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}

.contact-modal.is-visible .contact-modal__dialog {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #003e1f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__content {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
}

.contact-modal__intro {
  background: linear-gradient(180deg, #003e1f 0%, #0c5d33 100%);
  color: #ffffff;
  padding: 28px 22px;
}

.contact-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8ce1af;
}

.contact-modal__intro h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.08;
}

.contact-modal__intro > p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #d4e5da;
}

.contact-modal__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.contact-modal__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #f2f7f3;
}

.contact-modal .contact-points {
  gap: 10px;
}

.contact-modal .contact-point {
  padding: 12px 14px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.contact-modal .contact-point h3 {
  font-size: 14px;
  letter-spacing: 0.2px;
}

.contact-modal .contact-point p {
  font-size: 12px;
  line-height: 1.45;
}

.contact-modal__form-card {
  border-radius: 0;
  min-height: 100%;
  padding: 28px 22px 22px;
  box-shadow: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.contact-modal__form-kicker {
  margin: 0 0 8px;
  color: #00a153;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-modal__form-card h2 {
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1.1;
}

.contact-modal__form-copy {
  margin: 0 0 18px;
  color: #526056;
  font-size: 13px;
  line-height: 1.5;
}

.contact-modal .contact-form .form-grid {
  gap: 12px;
}

.contact-modal .form-field label {
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #405046;
}

.contact-modal .form-field input,
.contact-modal .form-field textarea {
  border-color: #d7e1d6;
  border-radius: 10px;
  padding: 11px 12px;
  background: #ffffff;
  font-size: 13px;
}

.contact-modal .form-field textarea {
  min-height: 102px;
  resize: vertical;
}

.contact-modal .form-consent {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e1e8e1;
  font-size: 10px;
  line-height: 1.5;
}

.contact-modal .contact-submit {
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 20px rgba(0, 161, 83, 0.18);
}

.site-footer {
  background: var(--footer-green);
  color: var(--text-white);
}

.site-footer-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

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

.footer-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
}

.footer-nav a:hover {
  opacity: 0.85;
}

@media (max-width: 1200px) {
  .topbar-wrap {
    min-height: 84px;
    padding: 12px 22px;
  }

  .brand-text {
    font-size: 26px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .overview-content > p {
    font-size: 18px;
  }

  .hero-slider {
    width: 100%;
    height: 420px;
    margin: 0;
  }

  .overview-section {
    padding: 36px 0 42px;
  }

  .overview-wrap {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .overview-image {
    width: 100%;
    min-height: 420px;
  }

  .overview-image img {
    min-height: 420px;
  }

  .overview-caption {
    font-size: 14px;
  }

  .overview-content h2 {
    margin: 0 0 12px;
    font-size: 25px;
  }

  .overview-content > p {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .overview-card h3 {
    font-size: 17px;
  }

  .overview-card p {
    font-size: 20px;
  }

  .amenities-section {
    padding: 50px 0 42px;
  }

  .amenities-wrap {
    width: calc(100% - 40px);
  }

  .amenities-wrap h2 {
    font-size: 44px;
  }

  .amenities-wrap h3 {
    font-size: 27px;
  }

  .amenities-wrap > p {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .amenity-item {
    flex-basis: calc((100% - 40px) / 3);
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }

  .amenity-item h4 {
    font-size: 14px;
  }

  .parkside-wrap {
    width: calc(100% - 40px);
    min-height: 440px;
  }

  .parkside-bg {
    min-height: 440px;
  }

  .parkside-overlay {
    left: 40px;
    right: 40px;
  }

  .parkside-overlay p {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .parkside-overlay h2 {
    font-size: 56px;
  }

  .parkside-badges span {
    font-size: 15px;
    padding: 8px 12px;
  }

  .gallery-wrap {
    width: calc(100% - 40px);
  }

  .gallery-wrap h2 {
    font-size: 40px;
  }

  .gallery-item {
    flex-basis: calc((100% - 12px) / 2);
    min-height: 250px;
  }

  .gallery-item img {
    min-height: 250px;
  }

  .highlights-wrap {
    width: calc(100% - 40px);
  }

  .highlights-wrap h2 {
    font-size: 40px;
  }

  .highlight-item p {
    font-size: 12px;
  }

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

  .location-map,
  .location-map img,
  .location-map iframe {
    min-height: 420px;
  }

  .location-panel {
    padding: 34px 20px 28px;
  }

  .location-panel h2 {
    font-size: 42px;
  }

  .location-panel h3 {
    font-size: 22px;
  }

  .location-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .location-point strong {
    font-size: 19px;
  }

  .contact-wrap {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-intro h1 {
    font-size: 42px;
  }

  .contact-modal__content {
    grid-template-columns: 1fr;
  }

  .contact-modal__dialog {
    width: min(700px, 100%);
    max-height: calc(100vh - 90px);
  }

  .contact-modal__intro,
  .contact-modal__form-card {
    padding: 18px 16px 14px;
  }

  .contact-modal__intro h2 {
    font-size: 28px;
  }

  .contact-modal__form-card h2 {
    font-size: 24px;
  }

  .slide-overlay {
    left: 24px;
    right: 24px;
    bottom: 22px;
  }

  .slide-overlay h2 {
    font-size: 32px;
  }

  .slide-overlay p {
    font-size: 16px;
  }

  .site-footer-wrap {
    padding: 20px 28px;
  }

  .toastifier-stack {
    top: 88px;
    right: 14px;
  }
}

@media (max-width: 768px) {
  body.site-nav-open {
    overflow: hidden;
  }

  .topbar {
    overflow: visible;
  }

  .topbar-wrap {
    position: relative;
    min-height: auto;
    padding: 12px 14px;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .brand img {
    width: 156px;
  }

  .brand-mark {
    width: 34px;
    height: 18px;
    border-width: 3px;
  }

  .brand-text {
    font-size: 24px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1005;
  }

  .site-nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.04);
  }

  .hero-slider {
    width: 100%;
    height: 280px;
    margin: 0;
    border-radius: 0;
  }

  .overview-section {
    padding: 24px 0 30px;
  }

  .overview-wrap {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .overview-image {
    min-height: 260px;
  }

  .overview-image img {
    min-height: 260px;
  }

  .overview-caption {
    right: 8px;
    bottom: 6px;
    font-size: 11px;
  }

  .overview-content h2 {
    font-size: 25px;
  }

  .overview-content > p {
    font-size: 16px;
    line-height: 1.6;
  }

  .overview-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .overview-card {
    min-height: 96px;
  }

  .overview-card h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .overview-card p {
    font-size: 18px;
  }

  .amenities-section {
    padding: 34px 0 30px;
  }

  .amenities-wrap {
    width: calc(100% - 24px);
  }

  .amenities-wrap h2 {
    font-size: 32px;
  }

  .amenities-wrap h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .amenities-wrap > p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .amenities-track {
    gap: 14px;
  }

  .amenity-item {
    flex-basis: calc((100% - 14px) / 2);
    padding: 8px 6px;
  }

  .amenity-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .amenity-item h4 {
    font-size: 13px;
  }

  .amenities-controls {
    margin-top: 16px;
  }

  .amenities-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .parkside-section {
    padding: 18px 0 14px;
  }

  .parkside-wrap {
    width: calc(100% - 24px);
    min-height: 300px;
    border-radius: 14px;
  }

  .parkside-bg {
    min-height: 300px;
  }

  .parkside-overlay {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .parkside-overlay p {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .parkside-overlay h2 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1.05;
  }

  .parkside-badges span {
    font-size: 10px;
    padding: 6px 8px;
  }

  .parkside-play {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .parkside-caption {
    right: 6px;
    bottom: 8px;
    font-size: 10px;
  }

  .gallery-section {
    padding: 20px 0 24px;
  }

  .gallery-wrap {
    width: calc(100% - 24px);
  }

  .gallery-wrap h2 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .gallery-track {
    gap: 0;
  }

  .gallery-item {
    flex-basis: 100%;
    min-height: 210px;
  }

  .gallery-item img {
    min-height: 210px;
  }

  .gallery-controls {
    margin-top: 10px;
  }

  .highlights-section {
    padding: 14px 0 30px;
  }

  .highlights-wrap {
    width: calc(100% - 24px);
  }

  .highlights-wrap h2 {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid #b7bdb7;
  }

  .highlight-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid #b7bdb7;
  }

  .highlight-item:nth-last-child(-n+3) {
    border-bottom: 1px solid #b7bdb7;
  }

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

  .highlights-grid .highlight-item:nth-child(8),
  .highlights-grid .highlight-item:nth-child(9) {
    grid-column: auto;
  }

  .highlight-item.is-empty {
    display: none;
  }

  .highlight-item p {
    font-size: 13px;
  }

  .location-map,
  .location-map img,
  .location-map iframe {
    min-height: 260px;
  }

  .location-panel {
    padding: 22px 12px 20px;
  }

  .location-panel h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .location-panel h3 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .location-panel > p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .location-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    margin-bottom: 14px;
  }

  .location-point img {
    width: 30px;
    height: 30px;
  }

  .location-point p {
    margin-top: 6px;
    font-size: 11px;
  }

  .location-point strong {
    font-size: 14px;
  }

  .location-cta {
    width: 100%;
    font-size: 12px;
    padding: 10px 12px;
  }

  .contact-section {
    padding: 28px 0 32px;
  }

  .contact-wrap {
    width: calc(100% - 24px);
    gap: 14px;
  }

  .contact-intro {
    padding: 20px 14px;
  }

  .contact-intro h1 {
    font-size: 30px;
  }

  .contact-intro > p {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .contact-form-card {
    padding: 18px 14px;
  }

  .contact-form-card h2 {
    font-size: 24px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-modal {
    padding: 10px;
  }

  .contact-modal__dialog {
    width: min(560px, 100%);
    max-height: calc(100vh - 72px);
    border-radius: 12px;
  }

  .contact-modal__intro,
  .contact-modal__form-card {
    padding: 16px 12px 12px;
  }

  .contact-modal__intro h2 {
    font-size: 22px;
  }

  .contact-modal__highlights {
    gap: 8px;
    margin-bottom: 18px;
  }

  .contact-modal__highlights span {
    width: 100%;
    justify-content: center;
  }

  .contact-modal__form-card h2 {
    font-size: 20px;
  }

  .contact-modal__form-copy {
    margin-bottom: 12px;
  }

  .contact-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .slide-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .slide-overlay h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .slide-overlay p {
    font-size: 13px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  .site-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .toastifier-stack {
    top: auto;
    right: 10px;
    bottom: 12px;
    width: calc(100vw - 20px);
  }
}

@media (max-width: 480px) {
  .topbar-wrap {
    padding: 10px 12px;
  }

  .hero-slider {
    height: 240px;
  }

  .slide-overlay h2 {
    font-size: 18px;
  }

  .slide-overlay p {
    font-size: 12px;
  }

  .overview-wrap,
  .amenities-wrap,
  .gallery-wrap,
  .highlights-wrap,
  .contact-wrap {
    width: calc(100% - 20px);
  }

  .parkside-wrap {
    width: calc(100% - 20px);
    min-height: 260px;
  }

  .parkside-bg {
    min-height: 260px;
  }

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

  .contact-modal {
    padding: 8px;
  }

  .contact-modal__dialog {
    width: min(420px, 100%);
    max-height: calc(100vh - 96px);
  }

  .contact-modal__intro,
  .contact-modal__form-card {
    padding: 14px 10px 10px;
  }

  .contact-modal__intro {
    display: none;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- FLOATERS ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float i {
    color: #fff;
    font-size: 26px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}
