@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@300;400;600;700;800;900&family=Dancing+Script:wght@700;900&display=swap');
@font-face {
  font-family: 'CheddarJack';
  src: url('https://fonts.cdnfonts.com/s/15375/CheddarJack.woff') format('woff');
  font-weight: normal; font-style: normal;
}

:root {
  --cream:   #F5EFE0;
  --cream2:  #EDE7D4;
  --white:   #FFFFFF;
  --pv-blue: #3B7DD8;
  --pv-yellow: #F2C325;
  --pv-red:  #D94F3D;
  --pv-green: #00a6a2;
  --pv-teal: #4BBFBF;
  --pv-purple: #8E6BBF;
  --pv-orange: #E87C3E;
  --pv-pink: #D9717A;
  --pv-dark: #2e2a2b;
  --pv-gray: #7A7A7A;
  
  --turq-1:#dffeff; --turq-2:#b9fcb5; --turq-3:#ffc926; --turq-4:#00a6a2; --turq-5:#58dce9;
  --aub-1:#e3e1ef;  --aub-2:#93b4ea;  --aub-3:#58dce9;  --aub-4:#435970;  --aub-5:#7673a2;
  --san-1:#e1eee5;  --san-2:#feffc8;  --san-3:#93b4ea;  --san-4:#ffe1a3;
  --font: 'Nunito', 'Century Gothic', 'Futura', sans-serif;
  --font-body: 'Nunito Sans', 'Century Gothic', sans-serif;
  --font-logo: 'CheddarJack', 'Nunito', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #F5EFE0;  
  color: var(--pv-dark);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--turq-3); 
}
.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 900; font-size: 1.4rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
  color: #00a6a2;
}
.nav-tagline {
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--pv-gray);
  font-style: italic;
}
.nl-p { color: var(--pv-red); }
.nl-a { color: var(--pv-orange); }
.nl-g { color: var(--pv-yellow); }
.nl-s { color: var(--pv-green); }
.nl-i { color: var(--pv-teal); }
.nl-b { color: var(--pv-blue); }
.nl-o { color: var(--pv-purple); }
.nl-l { color: var(--pv-pink); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--pv-gray);
  text-decoration: none; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pv-blue); }
.nav-cta {
  background: #00a6a2 !important; color: white !important;
  padding: 9px 22px; border-radius: 100px;
}
.nav-cta:hover { background: #007f7c !important; }

.floaters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.f {
  position: absolute; border-radius: 4px;
  animation: floatAnim 6s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--r,0deg) + 4deg)); }
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #F5EFE0 0%, #EDE7D4 50%, #F5EFE0 100%);
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}

.hero-buildings {
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  display: flex; align-items: flex-end;
  overflow: hidden; pointer-events: none;
  gap: 2px;
  opacity: 0.45;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1160px; margin: 0 auto;
  padding: 60px 48px 180px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pv-yellow);
  color: var(--pv-dark);
  font-family: var(--font);
  font-weight: 900; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 22px;
}

h1 {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pv-dark);
  margin-bottom: 20px;
}
.h1-line1 { color: #00a6a2; }
.h1-line2 { color: var(--pv-dark); }
.h1-line3 { color: #435970; }

.hero-sub {
  font-size: 1rem; line-height: 1.75;
  color: var(--pv-gray); max-width: 460px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: nowrap; align-items: center; }
.btn-primary {
  background: #00a6a2; color: white;
  font-family: var(--font); font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(0,166,162,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,166,162,0.45); }

.btn-primary-pink {
  background: #e8607a; color: white;
  font-family: var(--font); font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(232,96,122,0.35);
}
.btn-primary-pink:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,96,122,0.5); }

.btn-outline {
  background: white; color: #00a6a2;
  font-family: var(--font); font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 13px 28px; border-radius: 100px;
  border: 2.5px solid #00a6a2;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #00a6a2; color: white; }

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
}
.badge {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 100px;
  color: var(--pv-dark); font-size: 0.73rem; font-weight: 700;
  padding: 7px 16px; display: flex; align-items: center; gap: 7px;
  letter-spacing: 0.04em;
}
.badge-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

.hero-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
}
.hero-card-img {
  height: 360px; background: #dde4ec;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: #a0a8b4; font-size: 0.77rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-card-footer {
  padding: 20px 24px; background: white;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-card-price {
  font-family: var(--font); font-weight: 900; font-size: 1.6rem;
  color: var(--pv-blue); letter-spacing: -0.01em;
}
.hero-card-price small { font-size: 0.65rem; color: var(--pv-gray); display: block; font-weight: 600; }
.hero-card-tag {
  background: var(--pv-red); color: white;
  font-family: var(--font); font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
}

.section { padding: 100px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.sec-label {
  font-family: var(--font);
  font-weight: 800; font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.sec-body {
  font-size: 0.97rem; line-height: 1.75;
  color: var(--pv-gray); max-width: 560px;
}

.wave-divider { overflow: hidden; line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; }

.offer { background: #fff0e8; }   
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.offer-img {
  height: 400px; background: #93b4ea; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: #435970; font-size: 0.77rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.offer-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #00a6a2, #ffc926, #7673a2, #58dce9);
}
.offer-points { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.offer-point {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.7); border-radius: 12px; padding: 15px 20px;
  border-left: 3px solid #ffe1a3;
}
.offer-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: #00a6a2;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: white;
  line-height: 1;
}
.offer-point strong { display: block; font-weight: 800; font-size: 0.9rem; margin-bottom: 1px; }
.offer-point span { font-size: 0.8rem; color: var(--pv-gray); }

.track {
  background: #1a2e4a;
  position: relative; overflow: hidden;
}
.track::after {
  content: '';
  position: absolute; inset: 0;
  background: url('https://mcusercontent.com/decd632b5a60baddc037e8a22/images/b47ad8a7-34da-45c9-670f-164ffeaba6f1.png') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.track::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(118,115,162,0.1) 0%, transparent 60%);
}
.track-bldgs {
  position: absolute; bottom: 0; right: 0; display: flex; align-items: flex-end; opacity: 0.12;
}
.track-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 0; align-items: stretch;
}
.track-text { padding: 64px 48px 64px 0; border-right: 1px solid rgba(255,255,255,0.2); }
.track-stat {
  padding: 64px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.track-stat:last-child { border-right: none; }
.track-num {
  font-family: var(--font); font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: #ffc926; line-height: 1; margin-bottom: 8px;
}
.track-lbl { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.track-text .sec-label { color: #ffc926; }
.track-text .sec-title { color: white; }
.track-text .sec-body { color: rgba(255,255,255,0.75); max-width: 400px; }

.preview {
  height: 520px; background: #cdd5de;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: #99a5b3; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative;
}
.preview-label {
  position: absolute; top: 32px; left: 48px;
  background: white; border-radius: 100px;
  font-family: var(--font); font-weight: 900; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 24px; color: var(--pv-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.preview-rainbow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #00a6a2, #ffc926, #7673a2, #58dce9, #58dce9, #93b4ea, #ffe1a3);
}

.cip { background: #e1eee5; }
.cip-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }

.cip-photos {
  display: flex; flex-direction: column; gap: 14px;
}
.cip-photo-top,
.cip-photo-bottom {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.cip-photo-top { flex: 1.1; }
.cip-photo-bottom { flex: 0.9; }
.cip-photo-top img,
.cip-photo-bottom img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.cip-photo-top:hover img,
.cip-photo-bottom:hover img { transform: scale(1.04); }
.cip-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.cip-feat {
  background: white; border-radius: 14px; padding: 20px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  border-top: 4px solid #00a6a2;
}
.cip-feat:nth-child(2) { border-color: #7673a2; }
.cip-feat:nth-child(3) { border-color: #58dce9; }
.cip-feat:nth-child(4) { border-color: #ffc926; }
.cip-feat-lbl {
  font-family: var(--font); font-weight: 900; font-size: 0.82rem;
  color: #00a6a2; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px;
}
.cip-feat:nth-child(2) .cip-feat-lbl { color: #7673a2; }
.cip-feat:nth-child(3) .cip-feat-lbl { color: #58dce9; }
.cip-feat:nth-child(4) .cip-feat-lbl { color: #b8960a; }
.cip-feat-desc { font-size: 0.8rem; color: var(--pv-gray); line-height: 1.5; }

.feat-section { background: #F5EFE0; }
.feat-section.alt { background: #e3e1ef; }

.feat-section.alt .feat-card { background: #f8f7ff; }
.feat-section.alt .feat-card-title { color: #2e2a2b; }
.feat-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-section.alt .feat-card { background: #f8f7ff; }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.feat-card-img {
  aspect-ratio: 4 / 3;
  background: #d5dde6;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: #9aa4b0; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  overflow: hidden;
}
.feat-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.feat-card-body { padding: 18px 20px 22px; }
.feat-card-title {
  font-family: var(--font); font-weight: 800; font-size: 0.92rem; margin-bottom: 5px;
}
.feat-card-desc { font-size: 0.8rem; color: var(--pv-gray); line-height: 1.5; }

.room-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.room-card {
  border-radius: 20px; overflow: hidden;
  background: var(--cream); box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  position: relative;
}
.room-img {
  height: 360px; background: #d5dde6;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: #9aa4b0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.room-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 22px 20px;
  background: linear-gradient(transparent, rgba(20,20,20,0.85));
  z-index: 2;
}
.room-title {
  font-family: var(--font); font-weight: 900; font-size: 1.25rem;
  color: white; margin-bottom: 10px;
}
.room-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.room-tag {
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.4);
  color: white; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}

.stairs-banner {
  height: 380px; background: #c8d2dc;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; position: relative;
  color: #8c99a6; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.stairs-chip {
  position: absolute; bottom: 28px; left: 48px;
  background: #ffc926; color: #2e2a2b;
  font-family: var(--font); font-weight: 900; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 24px; border-radius: 100px;
}

.amenities { background: white; }
.amenity-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 52px; }
.amenity-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s; cursor: default; background: var(--cream);
}
.amenity-card:hover { transform: translateY(-5px); }
.amenity-img {
  aspect-ratio: 1; background: #d5dde6;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.amenity-card:nth-child(1) .amenity-img { background: #d4e4f5; }
.amenity-card:nth-child(2) .amenity-img { background: #fdf0cc; }
.amenity-card:nth-child(3) .amenity-img { background: #fce8d8; }
.amenity-card:nth-child(4) .amenity-img { background: #d5f0e0; }
.amenity-card:nth-child(5) .amenity-img { background: #d4eded; }
.amenity-name {
  padding: 12px 14px;
  font-family: var(--font); font-weight: 800; font-size: 0.78rem; line-height: 1.3;
}

.safe { background: #2e2a2b; position: relative; overflow: hidden; }
.safe::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(0,166,162,0.2) 0%, transparent 60%);
}
.safe-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.safe-img {
  height: auto; background: #3a3536; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(255,255,255,0.2); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.safe .sec-label { color: #58dce9; }
.safe .sec-title { color: white; }
.safe .sec-body { color: rgba(255,255,255,0.6); }
.safe-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 28px; }
.safe-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 0.87rem; font-weight: 600;
}
.safe-check {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: #00a6a2;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: white; font-weight: 900;
}

.locations { background: #b9fcb5; }  
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 52px; }
.loc-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s; cursor: default;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.loc-top { height: 6px; }
.lc1 .loc-top { background: #00a6a2; }
.lc2 .loc-top { background: #ffc926; }
.lc3 .loc-top { background: #7673a2; }
.lc4 .loc-top { background: #435970; }
.lc5 .loc-top { background: #58dce9; }
.lc5 .loc-num { -webkit-text-stroke: 2px #58dce9; color: transparent; }
.lc5 .loc-btn { background: #58dce9; }
.loc-body { padding: 28px 24px 32px; }
.loc-num {
  font-family: var(--font); font-weight: 900; font-size: 3rem;
  line-height: 1; margin-bottom: 8px; opacity: 0.1;
}
.lc1 .loc-num { -webkit-text-stroke: 2px #00a6a2; color: transparent; }
.lc2 .loc-num { -webkit-text-stroke: 2px #ffc926; color: transparent; }
.lc3 .loc-num { -webkit-text-stroke: 2px #7673a2; color: transparent; }
.lc4 .loc-num { -webkit-text-stroke: 2px #435970; color: transparent; }
.loc-province {
  font-family: var(--font); font-weight: 900; font-size: 1.4rem; margin-bottom: 6px;
}
.loc-detail { font-size: 0.82rem; color: var(--pv-gray); line-height: 1.5; margin-bottom: 20px; }
.loc-btn {
  display: inline-block; font-family: var(--font); font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 100px; text-decoration: none; color: white;
  transition: opacity 0.2s;
}
.loc-btn:hover { opacity: 0.85; }
.lc1 .loc-btn { background: #00a6a2; }
.lc2 .loc-btn { background: #b8960a; }
.lc3 .loc-btn { background: #7673a2; }
.lc4 .loc-btn { background: #435970; }

.guide { background: #F5EFE0; }
.guide-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; margin-top: 56px; }

.pricing-card {
  background: #435970; border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(67,89,112,0.4);
}
.pricing-top { padding: 36px 36px 28px; position: relative; overflow: hidden; }
.pricing-top::before {
  content: '';
  position: absolute; top: -30px; right: -30px; width: 120px; height: 120px;
  border-radius: 50%; background: rgba(255,255,255,0.1);
}
.pricing-top::after {
  content: '';
  position: absolute; bottom: -20px; left: -20px; width: 90px; height: 90px;
  border-radius: 50%; background: rgba(255,255,255,0.07);
}
.price-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.price-amt { font-family: var(--font); font-weight: 900; font-size: 3.2rem; color: var(--pv-yellow); line-height: 1; }
.price-amt sup { font-size: 45%; vertical-align: super; }
.price-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.pricing-feats { padding: 28px 36px 32px; background: rgba(0,0,0,0.15); }
.price-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; font-weight: 600; color: white;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-feat:last-child { border-bottom: none; }
.price-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #ffc926; color: #2e2a2b;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; flex-shrink: 0;
}
.pagibig-badge {
  background: #ffc926; border-radius: 14px; padding: 18px 24px; margin-top: 16px;
  display: flex; align-items: center; gap: 14px;
}
.pagibig-badge-text strong { display: block; font-family: var(--font); font-weight: 900; font-size: 0.82rem; color: var(--pv-dark); letter-spacing: 0.04em; }
.pagibig-badge-text span { font-size: 0.73rem; color: rgba(0,0,0,0.55); }

.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1.5px solid var(--cream2);
}
.step:last-child { border-bottom: none; }
.step-num-wrap {
  position: relative; flex-shrink: 0;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 900; font-size: 1.2rem; color: white;
}
.s1 .step-num { background: #00a6a2; }
.s2 .step-num { background: #7673a2; }
.s3 .step-num { background: #58dce9; }
.s4 .step-num { background: #435970; }
.step-title { font-family: var(--font); font-weight: 800; font-size: 1rem; margin-bottom: 5px; }
.step-desc { font-size: 0.85rem; color: var(--pv-gray); line-height: 1.6; }

.final-cta {
  background: #e3e1ef; position: relative; overflow: hidden;
  padding: 0;
}
.cta-bg-img {
  position: absolute; inset: 0; background: #cdd5de;
  display: flex; align-items: center; justify-content: center;
  color: #a0aab5; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  overflow: hidden;
}

.cta-confetti { position: absolute; inset: 0; pointer-events: none; }
.cc { position: absolute; border-radius: 3px; }

/* Photo-left / text-right split layout */
.cta-inner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 520px;
}
.cta-photo-side { position: relative; overflow: hidden; }
.cta-photo-side img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
}
.cta-text-side {
  background: var(--white);
  display: flex; align-items: center;
  padding: 60px 0;
}

.cta-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto; padding: 0 48px;
  text-align: center;
}
.cta-content--split {
  max-width: 560px; margin: 0; padding: 0 56px;
  text-align: left;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pv-yellow); border-radius: 100px;
  font-family: var(--font); font-weight: 900; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; margin-bottom: 20px; color: var(--pv-dark);
}
.cta-title {
  font-family: var(--font); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--pv-dark); margin-bottom: 16px;
}
.cta-title span { color: var(--pv-blue); }
.cta-sub { color: var(--pv-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-content--split .cta-btns { justify-content: flex-start; }
.cta-fb-note { margin-top: 20px; font-size: 0.78rem; color: var(--pv-gray); }
.cta-fb-link { color: #00a6a2; font-weight: 700; }

@media (max-width: 900px) {
  .cta-inner-grid { grid-template-columns: 1fr; min-height: 0; }
  .cta-photo-side img { min-height: 260px; }
  .cta-text-side { padding: 48px 0; }
  .cta-content--split {
    max-width: 100%; padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .cta-content--split { padding: 0 24px; text-align: center; }
  .cta-content--split .cta-btns { justify-content: center; }
}

footer {
  background: #2e2a2b; padding: 52px 48px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px;
}
.footer-logo { font-family: var(--font); font-weight: 900; font-size: 1.1rem; letter-spacing: 0.06em; }
.footer-logo-text { font-family: 'Dancing Script', cursive; font-weight: 900; font-size: 2rem; letter-spacing: 0.02em; margin-bottom: 6px; }
.footer-tagline { color: var(--pv-yellow); font-family: var(--font); font-weight: 800; font-style: italic; font-size: 0.95rem; margin-top: 5px; }
.footer-dev { color: rgba(255,255,255,0.4); font-size: 0.77rem; margin-top: 8px; line-height: 1.6; }
.footer-bottom {
  max-width: 1160px; margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.72rem; }
.footer-disclaimer { max-width: 660px; color: rgba(255,255,255,0.25) !important; font-size: 0.68rem !important; line-height: 1.5; }

.hero-card-pill {
  background: #435970;
  color: white;
  font-family: var(--font); font-weight: 900;
  font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 24px;
  text-align: center;
  border-bottom: 3px solid #ffc926;
}

.hero-carousel-wrap {
  width: 540px; height: 360px;
  position: relative; overflow: hidden;
  background: #dde4ec;
  border-radius: 0; 
}
.carousel-track {
  display: flex;
  width: 300%; 
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  width: calc(100% / 3); 
  height: 100%;
  position: relative; flex-shrink: 0;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.carousel-label {
  position: absolute; bottom: 14px; left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--pv-dark);
  font-family: var(--font); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  pointer-events: none;
}
.c-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  font-size: 1rem; color: var(--pv-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.15s;
  z-index: 10; line-height: 1;
}
.c-arrow:hover { background: white; transform: translateY(-50%) scale(1.08); }
.c-prev { left: 12px; }
.c-next { right: 12px; }
.c-dots {
  position: absolute; bottom: 14px; right: 16px;
  display: flex; gap: 7px; z-index: 10;
}
.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.c-dot.active { background: white; transform: scale(1.35); }

.amenity-grid-new { display: flex; flex-direction: column; gap: 3px; margin-top: 48px; }
.amenity-row {
  display: grid; grid-template-columns: 1fr 1.8fr;
  min-height: 200px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
}
.amenity-info {
  background: var(--turq-1);
  display: flex; align-items: center; gap: 20px;
  padding: 32px 28px;
}
.amenity-icon-big { font-size: 2.8rem; flex-shrink: 0; }
.amenity-title {
  font-family: var(--font); font-weight: 900; font-size: 1.1rem;
  color: var(--pv-dark); margin-bottom: 6px;
}
.amenity-desc { font-size: 0.84rem; color: var(--pv-gray); line-height: 1.55; }
.amenity-photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #8c99a6; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  min-height: 200px;
}

.track-award-band {
  display: flex; align-items: center; gap: 10px;
  background: var(--pv-yellow); border-radius: 10px;
  padding: 12px 20px; margin-top: 16px;
  font-family: var(--font); font-weight: 800; font-size: 0.82rem;
  color: var(--pv-dark); line-height: 1.4;
}

:root {
  --usp-bg:       #edf7f6;
  --usp-ze-bg:    #00a6a2;
  --usp-ze-hov:   #008580;
  --usp-gr-bg:    #d4f0dc;
  --usp-gr-hov:   #abe8bd;
  --usp-ye-bg:    #fff3cc;
  --usp-ye-hov:   #ffe79a;
  --usp-cy-bg:    #cdf3f2;
  --usp-cy-hov:   #9ee8e6;
  --usp-dark:     #1a3a3a;
  --usp-muted:    #3a5a58;
  --usp-radius:   20px;
}
.usp-section {
  background: var(--usp-bg);
  padding: 96px 0;
}
.usp-section-header {
  text-align: center;
  max-width: 660px; margin: 0 auto 60px;
}
.usp-eyebrow {
  font-family: var(--font); font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #00a6a2; margin-bottom: 12px; display: block;
}
.usp-section-title {
  font-family: var(--font); font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--usp-dark); margin-bottom: 16px;
}
.usp-section-sub {
  font-size: 0.97rem; line-height: 1.78; color: var(--usp-muted);
}
.usp-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.benefit-card {
  border-radius: var(--usp-radius);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.13);
}
.benefit-card:hover .icon-circle { transform: scale(1.08); }
.bc-ze {
  background: var(--usp-ze-bg);
  box-shadow: 0 6px 24px rgba(0,166,162,0.2);
}
.bc-ze:hover { background: var(--usp-ze-hov); }
.bc-ze::after {
  content: '₱0';
  position: absolute; bottom: -18px; right: -8px;
  font-family: var(--font); font-weight: 900; font-size: 8rem;
  line-height: 1; color: rgba(255,255,255,0.07);
  pointer-events: none; user-select: none;
}
.bc-gr {
  background: var(--usp-gr-bg);
  box-shadow: 0 4px 18px rgba(0,120,80,0.08);
}
.bc-gr:hover { background: var(--usp-gr-hov); }
.bc-ye {
  background: var(--usp-ye-bg);
  box-shadow: 0 4px 18px rgba(180,140,0,0.08);
}
.bc-ye:hover { background: var(--usp-ye-hov); }
.bc-cy {
  background: var(--usp-cy-bg);
  box-shadow: 0 4px 18px rgba(0,140,140,0.08);
}
.bc-cy:hover { background: var(--usp-cy-hov); }
.icon-circle {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}
.bc-ze .icon-circle { background: rgba(255,255,255,0.2); }
.bc-gr .icon-circle { background: rgba(0,140,90,0.14); }
.bc-ye .icon-circle { background: rgba(0,120,110,0.12); }
.bc-cy .icon-circle { background: rgba(0,130,130,0.14); }
.bc-badge {
  display: inline-flex; background: #ffc926; color: #1a3a3a;
  font-family: var(--font); font-weight: 900; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; width: fit-content;
}
.bc-ze .bc-title {
  font-family: var(--font); font-weight: 900;
  font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.02em;
  color: white;
}
.bc-ze .bc-body { font-size: 0.86rem; color: rgba(255,255,255,0.82); line-height: 1.65; }
.bc-divider {
  width: 40px; height: 3px; background: #ffc926; border-radius: 2px;
}
.bc-title {
  font-family: var(--font); font-weight: 800;
  font-size: 1.05rem; line-height: 1.25;
  color: var(--usp-dark);
}
.bc-body { font-size: 0.85rem; color: var(--usp-muted); line-height: 1.65; }
.bc-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.bc-cta-primary {
  display: block; background: white; color: var(--usp-ze-bg);
  font-family: var(--font); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.06em; text-align: center;
  padding: 12px 20px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bc-cta-primary:hover { background: #ffc926; color: #1a3a3a; }
.bc-cta-secondary {
  display: block; background: transparent; color: rgba(255,255,255,0.85);
  font-family: var(--font); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.05em; text-align: center;
  padding: 10px 20px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.bc-cta-secondary:hover { border-color: white; color: white; }

.usp-cta-row {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 44px; flex-wrap: wrap;
}
.usp-cta-primary {
  background: #00a6a2; color: white;
  font-family: var(--font); font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.06em; padding: 14px 34px; border-radius: 100px;
  text-decoration: none; display: inline-block;
  box-shadow: 0 6px 20px rgba(0,166,162,0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.usp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,166,162,0.38); }
.usp-cta-secondary {
  background: white; color: #00a6a2;
  font-family: var(--font); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; padding: 13px 30px; border-radius: 100px;
  text-decoration: none; display: inline-block;
  border: 2px solid #00a6a2;
  transition: background 0.2s, color 0.2s;
}
.usp-cta-secondary:hover { background: #00a6a2; color: white; }

.offer-left-stack {
  display: flex; flex-direction: column; gap: 0;
}
.offer-left-stack .offer-img {
  border-radius: 16px 16px 0 0;
}
.offer-left-stack .offer-sqm-highlight {
  border-radius: 0 0 16px 16px;
  margin-bottom: 0;
}

.offer-sqm-highlight {
  display: flex; align-items: center; gap: 0;
  background: #2e2a2b; border-radius: 16px; overflow: hidden;
  margin-bottom: 24px;
}
.offer-sqm-block {
  flex: 1; padding: 20px 16px; text-align: center;
}
.offer-sqm-num {
  font-family: var(--font); font-weight: 900;
  font-size: 2.4rem; line-height: 1; color: #ffc926;
  letter-spacing: -0.03em;
}
.offer-sqm-unit {
  font-family: var(--font); font-weight: 800; font-size: 0.72rem;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em;
}
.offer-sqm-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px;
}
.offer-sqm-divider {
  width: 1px; height: 56px; background: rgba(255,255,255,0.15); flex-shrink: 0;
}

.track-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.track-text { flex: 1; padding: 0; border: none; }
.track-stats-row {
  display: flex; gap: 32px; margin-top: 28px;
}
.track-stat-inline { text-align: left; }

.track-photo-wrap {
  width: 100%;
  background: #dff0f8;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative; z-index: 1;
}
.track-photo-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
.track-photo-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@keyframes awardPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,199,38,0); }
  50% { box-shadow: 0 0 0 8px rgba(255,199,38,0.15); }
}
@keyframes trophyBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.track-award-big {
  text-align: center; padding: 40px 40px;
  background: #1a2e4a;
  border-radius: 16px;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,199,38,0.35);
  overflow: hidden;
  animation: awardPulse 3s ease-in-out infinite;
}

.track-award-big::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    transparent 20%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.05) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}
.track-award-big::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ffc926, #ffe080, #ffc926);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}
.track-award-stars {
  font-size: 1.9rem; letter-spacing: 0.1em; margin-bottom: 14px;
  display: block;
  animation: fadeSlideUp 0.8s ease both;
}

.track-award-stars span {
  display: inline-block;
  animation: trophyBounce 2s ease-in-out infinite;
}
.track-award-stars span:nth-child(1) { animation-delay: 0s; }
.track-award-stars span:nth-child(2) { animation-delay: 0.1s; }
.track-award-stars span:nth-child(3) { animation-delay: 0.2s; }
.track-award-stars span:nth-child(4) { animation-delay: 0.3s; }
.track-award-stars span:nth-child(5) { animation-delay: 0.4s; }
.track-award-stars span:nth-child(6) { animation-delay: 0.5s; }
.track-award-stars span:nth-child(7) { animation-delay: 0.6s; }
.track-award-stars span:nth-child(8) { animation-delay: 0.7s; }
.track-award-title {
  font-family: var(--font); font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1; letter-spacing: -0.01em;
  background: linear-gradient(90deg, #ffc926, #ffe080, #ffd740, #ffc926);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite, fadeSlideUp 0.8s 0.2s ease both;
}
.track-award-sub {
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  color: rgba(255,255,255,0.7); margin-top: 8px;
  animation: fadeSlideUp 0.8s 0.35s ease both;
}

.cip-feat-icon {
  font-size: 1.8rem; margin-bottom: 8px; display: block;
}

.amenity-grid-new { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.amenity-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.amenity-photo-box {
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; position: relative; overflow: hidden;
  color: #2e2a2b; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; padding: 16px;
}
.amenity-photo-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); color: #2e2a2b;
  font-family: var(--font); font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.amenity-photo-label-in {
  background: #2e2a2b; color: #ffc926;
}

.amenity-info { display: none; }

.kitchen-switcher {
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 10;
  margin-top: 6px;
}
.ktag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white;
  font-family: var(--font); font-weight: 700; font-size: 0.73rem;
  letter-spacing: 0.04em;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  cursor: pointer;
  position: relative; z-index: 10; pointer-events: all;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}
.ktag::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.2s ease;
}
.ktag:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.ktag.active {
  background: white;
  color: #2e2a2b;
  border-color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.ktag.active::before {
  background: #00a6a2;
  transform: scale(1.2);
}

.ktag:nth-child(1)::before { background: rgba(255,255,255,0.5); }
.ktag:nth-child(2)::before { background: rgba(255,199,38,0.8); }
.ktag:nth-child(3)::before { background: rgba(147,180,234,0.9); }
.ktag:nth-child(4)::before { background: rgba(88,220,233,0.9); }
.ktag:nth-child(1).active::before { background: #00a6a2; }
.ktag:nth-child(2).active::before { background: #ffc926; }
.ktag:nth-child(3).active::before { background: #93b4ea; }
.ktag:nth-child(4).active::before { background: #58dce9; }

.amenity-carousel-box { cursor: default; }
.am-carousel-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.am-slide {
  min-width: 100%; height: 100%;
  object-fit: cover; display: block; flex-shrink: 0;
}

.am-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #2e2a2b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s;
  z-index: 6; line-height: 1;
}
.am-arrow:hover { background: white; transform: translateY(-50%) scale(1.1); }
.am-prev { left: 10px; }
.am-next { right: 10px; }

.am-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.am-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: background 0.3s, transform 0.3s; border: none; padding: 0;
}
.am-dot.active { background: white; transform: scale(1.3); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #00a6a2;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

img,
video {
  max-width: 100%;
}

.hero-card,
.offer-img,
.preview,
.safe-img,
.room-card,
.amenity-photo-box,
.track-photo-wrap {
  max-width: 100%;
}

@media (max-width: 1180px) {
  nav {
    padding: 0 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-carousel-wrap {
    width: 100%;
  }

  .hero-content,
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .loc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  nav {
    height: 64px;
    padding: 0 20px;
  }

  .nav-logo {
    font-size: 1.15rem;
    line-height: 1.1;
    max-width: calc(100% - 60px);
  }

  .nav-tagline {
    display: block;
    font-size: 0.62rem;
    margin-top: 2px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 301;
  }

  nav .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 300;
    overflow-y: auto;
  }

  body.nav-open nav .nav-links {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 8px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .section,
  .usp-section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas,
  .cta-btns,
  .usp-cta-row {
    align-items: stretch;
  }

  .hero-ctas a,
  .cta-btns a,
  .usp-cta-row a,
  .bc-ctas a {
    width: 100%;
    text-align: center;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-carousel-wrap,
  .hero-card-img {
    width: 100%;
    height: clamp(240px, 62vw, 360px);
  }

  .offer-grid,
  .cip-inner,
  .safe-inner,
  .guide-inner,
  .track-top,
  .room-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .track-inner {
    grid-template-columns: 1fr;
  }

  .track-text,
  .track-stat {
    padding: 0;
    border: none;
  }

  .track-stats-row {
    flex-direction: column;
    gap: 18px;
  }

  .track-award-big {
    padding: 30px 20px;
  }

  .offer-img,
  .safe-img,
  .preview,
  .stairs-banner {
    height: clamp(260px, 60vw, 400px);
  }

  .feat-header {
    display: block;
    margin-bottom: 32px;
  }

  .feat-header .sec-body {
    margin-top: 12px;
  }

  .feat-grid,
  .cip-feats,
  .loc-grid,
  .usp-layout {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-grid-new,
  .amenity-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .safe-checks {
    grid-template-columns: 1fr;
  }

  .price-amt {
    font-size: 2.6rem;
  }

  footer {
    padding: 42px 24px 28px;
  }

  .footer-inner,
  .footer-bottom {
    display: block;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content,
  .cta-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 82px;
  }

  .hero-buildings {
    height: 84px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .hero-sub,
  .sec-body,
  .cta-sub,
  .usp-section-sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .sec-title,
  .usp-section-title,
  .cta-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .btn-primary,
  .btn-primary-pink,
  .btn-outline,
  .usp-cta-primary,
  .usp-cta-secondary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feat-grid,
  .cip-feats,
  .loc-grid,
  .usp-layout,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .room-img {
    height: 300px;
  }

  .kitchen-switcher,
  .room-tags {
    gap: 6px;
  }

  .ktag,
  .room-tag {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .offer-sqm-highlight,
  .pagibig-badge,
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-sqm-block {
    width: 100%;
  }

  .offer-sqm-divider {
    width: 100%;
    height: 1px;
  }

  .pricing-top,
  .pricing-feats {
    padding-left: 24px;
    padding-right: 24px;
  }

  .preview-label,
  .stairs-chip {
    left: 20px;
    right: 20px;
    width: auto;
    text-align: center;
  }

  .am-arrow,
  .c-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 420px) {
  .nav-logo {
    font-size: 1rem;
  }

  .nav-tagline {
    font-size: 0.55rem;
  }

  .hero-card-price {
    font-size: 1.35rem;
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .track-num {
    font-size: 3rem;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.site-nav,
.hero,
.section,
.usp-section,
.final-cta,
footer {
  max-width: 100vw;
  overflow-x: clip;
}

.container,
.hero-content,
.cta-content,
.footer-inner,
.footer-bottom {
  width: 100%;
  max-width: min(1160px, 100%);
}

.hero-card {
  width: min(540px, 100%) !important;
  min-width: 0;
}

.hero-carousel-wrap,
.carousel-track,
.carousel-slide,
.room-img,
.am-carousel-track,
.am-slide {
  min-width: 0;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 31, 0.66);
  backdrop-filter: blur(4px);
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  border-top: 6px solid #ffc926;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  color: #2e2a2b;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-close:hover {
  background: #00a6a2;
  color: #fff;
}

.lead-modal-kicker {
  width: fit-content;
  background: #dffeff;
  color: #007f7c;
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.lead-modal-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
  color: #2e2a2b;
  padding-right: 42px;
  margin-bottom: 10px;
}

.lead-modal-sub {
  color: var(--pv-gray);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 620px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #435970;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1.5px solid #d9dfdf;
  border-radius: 14px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #2e2a2b;
  background: #fff;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #00a6a2;
  box-shadow: 0 0 0 4px rgba(0,166,162,0.12);
}

.lead-consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  background: #f7fbfb;
  border: 1.5px solid #d9efee;
  border-radius: 14px;
  padding: 13px 14px;
  color: #435970 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
}

.lead-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #00a6a2;
  cursor: pointer;
}

.lead-consent span {
  display: block;
}

.lead-consent:focus-within {
  border-color: #00a6a2;
  box-shadow: 0 0 0 4px rgba(0,166,162,0.12);
}

.lead-submit {
  width: fit-content;
  border: 0;
  border-radius: 100px;
  background: #00a6a2;
  color: #fff;
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,166,162,0.25);
}

.lead-submit:hover {
  background: #007f7c;
}

.lead-note {
  font-size: 0.74rem;
  color: var(--pv-gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .loc-grid[style] {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-card[style] {
    width: 100% !important;
    flex-shrink: 1 !important;
  }

  .lead-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .lead-modal-panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 22px 22px 0 0;
    padding: 28px 22px 24px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: 100%;
  }

  .nav-links {
    max-width: 100vw;
  }

  .loc-grid[style],
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-ctas,
  .cta-btns,
  .usp-cta-row,
  .kitchen-switcher,
  .room-tags {
    flex-wrap: wrap;
  }

  .carousel-label,
  .c-dots {
    bottom: 10px;
  }

  .carousel-label {
    left: 12px;
    max-width: calc(100% - 88px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lead-modal-title {
    padding-right: 34px;
  }

  .lead-submit {
    width: 100%;
  }
}

@supports not (overflow: clip) {
  .site-nav,
  .hero,
  .section,
  .usp-section,
  .final-cta,
  footer {
    overflow-x: hidden;
  }
}

.site-footer {
  background: #2e2a2b;
  color: #ffffff;
  padding: 56px 48px 30px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.site-footer * {
  min-width: 0;
}

.site-footer .footer-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, auto);
  gap: 36px;
  align-items: start;
}

.footer-inner--simple {
  justify-content: space-between;
}

.footer-brand,
.footer-award {
  width: 100%;
}

.site-footer .footer-logo-text {
  display: block;
  color: #ffffff;
  font-family: 'Dancing Script', cursive;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  word-break: normal;
  overflow-wrap: anywhere;
}

.site-footer .footer-tagline {
  color: #ffc926;
  font-family: var(--font);
  font-weight: 900;
  font-style: italic;
  font-size: 0.98rem;
  margin-top: 5px;
}

.site-footer .footer-dev {
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 360px;
}

.footer-award--right {
  text-align: right;
}

.footer-award-text {
  font-family: var(--font);
  font-weight: 800;
  color: #ffc926;
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer .footer-bottom {
  max-width: 1160px;
  width: 100%;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: 20px;
  align-items: start;
}

.site-footer .footer-bottom p {
  color: rgba(255,255,255,0.42);
  font-size: 0.74rem;
  line-height: 1.6;
  margin: 0;
}

.site-footer .footer-disclaimer {
  max-width: 720px;
  color: rgba(255,255,255,0.32) !important;
  font-size: 0.7rem !important;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 46px 24px 28px;
    text-align: left;
  }

  .site-footer .footer-inner {
    gap: 30px 24px;
  }

  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 42px 20px 26px;
    text-align: center;
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-dev {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-award--right {
    text-align: center;
  }

  .site-footer .footer-bottom {
    text-align: center;
  }
}

.hero-copy {
  min-width: 0;
}

.image-fallback {
  background: #eaf3f3;
  object-fit: cover;
}

@media (min-width: 901px) {
  .hero-content {
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
  }

  .hero-copy .hero-ctas {
    margin-top: auto;
    padding-top: 34px;
  }

  .hero-card {
    align-self: center;
  }
}

img,
.carousel-slide img,
.feat-card-img img,
.room-img img,
.amenity-photo-box img,
.am-slide,
.track-photo-img {
  display: block;
  max-width: 100%;
}

.hero-card[style],
.hero-carousel-wrap[style],
.loc-grid[style] {
  max-width: 100% !important;
}

@media (max-width: 900px) {
  .hero-copy .hero-ctas {
    margin-top: 26px;
    padding-top: 0;
  }
}

:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.8s var(--motion-ease), transform 0.8s var(--motion-ease);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal.visible .feat-card,
.reveal.visible .benefit-card,
.reveal.visible .loc-card,
.reveal.visible .step,
.reveal.visible .amenity-photo-box,
.reveal.visible .cip-feat {
  animation: softRise 0.72s var(--motion-ease-soft) both;
}

.reveal.visible .feat-card:nth-child(2),
.reveal.visible .benefit-card:nth-child(2),
.reveal.visible .loc-card:nth-child(2),
.reveal.visible .step:nth-child(2),
.reveal.visible .amenity-photo-box:nth-child(2),
.reveal.visible .cip-feat:nth-child(2) { animation-delay: 0.06s; }

.reveal.visible .feat-card:nth-child(3),
.reveal.visible .benefit-card:nth-child(3),
.reveal.visible .loc-card:nth-child(3),
.reveal.visible .step:nth-child(3),
.reveal.visible .amenity-photo-box:nth-child(3),
.reveal.visible .cip-feat:nth-child(3) { animation-delay: 0.12s; }

.reveal.visible .feat-card:nth-child(4),
.reveal.visible .benefit-card:nth-child(4),
.reveal.visible .loc-card:nth-child(4),
.reveal.visible .step:nth-child(4),
.reveal.visible .amenity-photo-box:nth-child(4),
.reveal.visible .cip-feat:nth-child(4) { animation-delay: 0.18s; }

.btn-primary,
.btn-primary-pink,
.btn-outline,
.loc-btn,
.lead-submit,
.nav-cta,
.usp-cta-primary,
.usp-cta-secondary {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.btn-primary:hover,
.btn-primary-pink:hover,
.loc-btn:hover,
.lead-submit:hover,
.nav-cta:hover,
.usp-cta-primary:hover {
  transform: translate3d(0, -2px, 0);
}

.lead-modal.is-open .lead-modal-backdrop {
  animation: modalFade 0.24s ease both;
}

.lead-modal.is-open .lead-modal-panel {
  animation: modalLift 0.32s var(--motion-ease-soft) both;
}

.lead-form label.field-selected select {
  border-color: #ffc926;
  box-shadow: 0 0 0 4px rgba(255,199,38,0.2);
}

.loc-btn[data-location]::after {
  content: ' ›';
  font-weight: 900;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

.privacy-link {
  color: #00a6a2;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-link:hover {
  color: #007f7c;
}

.lead-consent label {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  color: #435970 !important;
  cursor: pointer;
}

.privacy-panel {
  width: min(760px, 100%);
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #435970;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 8px 0 24px;
}

.privacy-note {
  background: #fff8df;
  border-left: 4px solid #ffc926;
  border-radius: 12px;
  color: #6b5a18;
  padding: 12px 14px;
  font-size: 0.84rem;
}

.privacy-accept {
  margin-top: 2px;
}

.lead-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1200;
  width: min(440px, calc(100vw - 32px));
  padding: 15px 20px;
  border-radius: 16px;
  background: #00a6a2;
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(0,0,0,0.22);
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 18px, 0) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s var(--motion-ease-soft);
}

.lead-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.lead-toast.is-success::before {
  content: '✓ ';
}

@media (max-width: 640px) {
  .privacy-content {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .lead-toast {
    bottom: 16px;
    border-radius: 14px;
    font-size: 0.84rem;
  }
}

.lead-modal {
  overflow: hidden;
  overscroll-behavior: contain;
}

.lead-modal-panel {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 44px);
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lead-modal-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.lead-modal-kicker,
.lead-modal-title,
.lead-modal-sub,
.lead-modal-close,
.lead-note,
.privacy-accept {
  flex-shrink: 0;
}

.lead-modal-close {
  z-index: 3;
}

.lead-form,
.privacy-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lead-form::-webkit-scrollbar,
.privacy-content::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.lead-form {
  padding-right: 2px;
}

.privacy-content {
  padding-right: 2px;
}

@media (max-width: 900px) {
  .lead-modal {
    padding: 12px;
  }

  .lead-modal-panel {
    max-height: calc(100dvh - 24px);
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}


.ph-icon {
  font-size: 2.7rem !important;
  line-height: 1;
  opacity: 0.28 !important;
  filter: grayscale(1);
}

.ph-text {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(46,42,43,0.68);
}

.amenity-photo-box .ph-text,
.safe-img .ph-text,
.cta-bg-img .ph-text {
  padding: 0 16px;
  text-align: center;
}

.amenity-photo-box .ph-text span {
  display: none;
}

@media (max-width: 640px) {
  .ph-icon {
    font-size: 2.2rem !important;
  }

  .ph-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}

.lead-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none !important;
}

.lead-toast.is-error {
  background: #d94f3d;
}

.lead-toast.is-error::before {
  content: '! ';
}
.lead-submit.is-loading,
.lead-submit.is-success,
.lead-submit.is-error {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lead-submit.is-loading {
    opacity: 0.9;
    pointer-events: none;
}

.lead-submit.is-success {
    background: #00a6a2 !important;
    color: #ffffff !important;
}

.lead-submit.is-error {
    background: #d94f3d !important;
    color: #ffffff !important;
}

.lead-btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: leadSpin 0.7s linear infinite;
}

@keyframes leadSpin {
    to {
        transform: rotate(360deg);
    }
}