:root {
  --navy: #07111f;
  --navy-2: #0d1c31;
  --gold: #d12023;
  --gold-2: #d12023;
  --white: #ffffff;
  --gray: #f4f6f8;
  --muted: #aeb8c6;
  --text: #182235;
  --line: rgba(201, 164, 92, 0.22);
  --shadow: 0 24px 70px rgba(5, 13, 27, 0.18);
  --radius: 8px;
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

*::selection{
  background-color: #d12023;
  color: #fff;
}

.d-none{
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

img.pc-size {
    width: 150px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.nav-menu {
  position: absolute;
  top: 76px;
  left: 14px;
  right: 14px;
  display: grid;
  gap: 2px;
  padding: 16px;
  background: rgba(7, 17, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu a {
  color: var(--white);
  padding: 11px 12px;
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-2) !important;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 120px 0 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.64), rgba(7, 17, 31, 0.2)),
    url("https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=2200&q=85")
      center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.12) 55%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--heading);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 16vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.35rem, 10vw, 4.25rem);
}

h3 {
  color: var(--navy);
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d12023);
  color: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 164, 92, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.5);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.75rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  background: var(--gold-2);
  border-radius: 8px;
  transform: translateX(-50%);
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 14px);
  }
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.about {
  background: var(--gray);
}

.about-grid,
.contact-grid,
.location-grid {
  display: grid;
  gap: 28px;
}

.about-copy p {
  color: #4a5568;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.trust-row div,
.highlight-panel,
.floor-card,
.testimonial-shell,
.inquiry-form,
.contact-card {
  border: 1px solid rgba(7, 17, 31, 0.08);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.06);
}

.trust-row div {
  padding: 22px;
}

.trust-row strong {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 2.5rem;
  line-height: 1;
}

.trust-row span {
  color: #5d6878;
  font-size: 0.9rem;
}

.highlight-panel {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.highlight-panel h3 {
  color: var(--white);
  font-family: var(--heading);
  font-size: 2rem;
}

.highlight-panel ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight-panel i {
  color: var(--gold-2);
  margin-right: 10px;
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.82), transparent);
}

.gallery-item:hover img {
  opacity: 0.78;
  transform: scale(1.06);
}

.floor-section {
  background: var(--navy);
}

.floor-section h2 {
  color: var(--white);
}

.floor-grid {
  display: grid;
  gap: 18px;
}

.floor-card {
  overflow: hidden;
}

.plan-image {
  position: relative;
  background: #dde3ea;
}

.plan-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
}

.zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.floor-body {
  padding: 24px;
}

.floor-body p {
  color: #5b6575;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.amenities {
  background: var(--gray);
}

.amenities-grid,
.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.amenity-card,
.distance-card {
  min-height: 132px;
    padding: 22px 14px;
    display: flex;
    align-content: center;
    gap: 20px;
    text-align: center;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.amenity-card:hover,
.distance-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.1);
}

.amenity-card i,
.distance-card i {
  color: var(--gold);
  font-size: 1.6rem;
}

.amenity-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.testimonials {
  background: #fbfcfd;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial {
  display: none;
  min-height: 230px;
  place-content: center;
  text-align: center;
}

.testimonial.active {
  display: grid;
}

.testimonial p {
  color: #344054;
  font-family: var(--heading);
  font-size: clamp(1.65rem, 7vw, 2.6rem);
  line-height: 1.08;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: #667085;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

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

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.distance-card strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 1;
}

.distance-card span {
  color: #5d6878;
  font-size: 0.84rem;
}

.faq {
  background: var(--gray);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  width: 100%;
  padding: 20px 52px 20px 20px;
  text-align: left;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item span {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

.faq-item i {
  position: absolute;
  right: 20px;
  top: 23px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
  color: #5b6575;
}

.faq-item.active p {
  display: block;
}

.faq-item.active i {
  transform: rotate(45deg);
}

.contact {
  background: var(--navy);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  color: var(--text);
}

.contact-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-2);
}

.contact-card strong,
.contact-card a {
  display: block;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.12);
}

.error-message {
  min-height: 16px;
  color: #c0392b;
  font-size: 0.78rem;
}

.form-success {
  min-height: 20px;
  color: #1f7a4d;
  font-weight: 700;
}

.site-footer {
  background: #050b14;
  color: var(--muted);
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
}

.back-to-top,
.float-btn {
  position: fixed;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.back-to-top {
  right: 18px;
  bottom: 138px;
  background: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.float-btn.whatsapp {
  right: 18px;
  bottom: 82px;
  background: #25d366;
}

.float-btn.call {
  right: 18px;
  bottom: 26px;
  background: var(--navy-2);
  border: 1px solid var(--gold);
}

.lightbox,
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 11, 20, 0.86);
}

.lightbox.active,
.lead-popup.active {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close,
.popup-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.popup-card h2 {
  margin-bottom: 12px;
}

.popup-card p:not(.eyebrow) {
  color: #5d6878;
}

.popup-card .popup-close {
  color: var(--navy);
  background: var(--gray);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .nav-cta {
    margin-left: 8px;
    padding-inline: 18px !important;
  }

  .hero {
    align-items: center;
    padding: 126px 0 70px;
  }

  .hero-copy {
    font-size: 1.14rem;
  }

  .section {
    padding: 112px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .location-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

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

  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

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

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .distance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-form {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

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