/* Loader Screens */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-deep);
  transition: opacity 0.8s ease;
}

.loader-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Logo Screen Extras */
.logo-screen-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.logo-screen-bg .blob-1,
.logo-screen-bg .blob-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--green-mid);
  filter: blur(40px);
}

.logo-screen-bg .blob-1 {
  top: -20%;
  left: -10%;
}

.logo-screen-bg .blob-2 {
  bottom: -20%;
  right: -10%;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--champagne);
  filter: blur(80px);
  animation: pulse-glow 4s infinite ease-in-out;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }
}

.logo-image {
  position: relative;
  z-index: 10;
  width: 300px;
  height: auto;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1.8s ease-out 0.5s, transform 1.8s ease-out 0.5s;
}

.logo-image.visible {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 640px) {
  .logo-image {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .logo-image {
    width: 500px;
  }
}

/* Coming Soon Screen */
.coming-soon-screen {
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 2s ease-out;
}

.coming-soon-screen.visible .coming-soon-bg {
  transform: scale(1);
}

.coming-soon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 42, 35, 0.6) 0%, rgba(15, 42, 35, 0.4) 50%, rgba(15, 42, 35, 0.7) 100%);
}

.coming-soon-glass {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 42, 35, 0.3);
  backdrop-filter: blur(4px);
  z-index: 10;
  opacity: 0;
  transition: opacity 2s ease-out 0.5s;
}

@media (min-width: 768px) {
  .coming-soon-glass {
    right: 50%;
    background: linear-gradient(to right, rgba(15, 42, 35, 0.4) 0%, rgba(15, 42, 35, 0.2) 50%, transparent 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
  }
}

.coming-soon-screen.visible .coming-soon-glass {
  opacity: 1;
}

.coming-soon-content {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
  text-align: center;
}

.coming-soon-content h1 {
  font-size: 3rem;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .coming-soon-content h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .coming-soon-content h1 {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .coming-soon-content h1 {
    font-size: 8rem;
  }
}

.coming-soon-content p {
  font-size: 1.125rem;
  color: var(--off-white);
  letter-spacing: 0.05em;
  text-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .coming-soon-content p {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .coming-soon-content p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .coming-soon-content p {
    font-size: 1.875rem;
  }
}

/* Main Content Wrapper */
.main-content {
  opacity: 0;
  transition: opacity 1s ease-out;
  display: none;
}

.main-content.visible {
  opacity: 1;
  display: block;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(15, 42, 35, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--off-white);
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 28rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 3rem;
  }
}

.modal-overlay.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--green-deep);
}

.modal-title {
  font-size: 2.25rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 3rem;
  }
}

.modal-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form input {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: white;
  border: 1px solid rgba(15, 42, 35, 0.2);
  color: var(--green-deep);
  border-radius: 0.125rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.modal-form input:focus {
  border-color: var(--green-deep);
}

.modal-form button {
  width: 100%;
  padding: 1rem 2.5rem;
  background-color: var(--green-deep);
  color: var(--off-white);
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
}

.modal-form button:hover {
  background-color: var(--green-mid);
  transform: scale(1.02);
}

/* Common Layouts */
.container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 6rem;
  }
}

.section-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

/* Header / Nav */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
}

@media (min-width: 768px) {
  .header {
    padding: 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 2rem 6rem;
  }
}

.header-logo img {
  height: 3rem;
}

@media (min-width: 768px) {
  .header-logo img {
    height: 3.5rem;
  }
}

.header-nav {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 247, 0.9);
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a,
.header-nav button {
  transition: color 0.3s ease;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0;
}

.header-nav a:hover,
.header-nav button:hover {
  color: var(--champagne);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 42, 35, 0.7) 0%, rgba(15, 42, 35, 0.5) 50%, rgba(15, 42, 35, 0.8) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 6rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(250, 250, 247, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.625;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.btn-primary {
  padding: 1rem 2.5rem;
  background-color: var(--champagne);
  color: var(--green-deep);
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
  font-weight: 500;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--sand);
  transform: scale(1.02);
}

.btn-dark {
  background-color: var(--green-deep);
  color: var(--off-white);
}

.btn-dark:hover {
  background-color: var(--green-mid);
}

/* Sensory Section */
.sensory-section {
  background-color: var(--background);
}

.grid-2-cols {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
}

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

.image-box:hover img {
  transform: scale(1.05);
}

.sensory-img {
  height: 600px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--green-deep);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-title.light {
  color: var(--off-white);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.section-desc.light {
  color: rgba(250, 250, 247, 0.7);
}

/* Exclusivity Section */
.exclusivity-section {
  background-color: rgba(232, 222, 210, 0.3);
  /* E8DED2 at 30% */
}

.grid-3-cols {
  display: grid;
  gap: 1.5rem;
}

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

.col-span-2 {
  grid-column: span 2;
}

.exclusivity-img {
  height: 500px;
}

/* Architecture Section */
.architecture-section {
  background-color: var(--background);
}

.architecture-img {
  height: 700px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--green-deep);
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

/* Technology Section */
.technology-section {
  background-color: var(--green-deep);
}

.tech-img {
  height: 500px;
}

/* Leisure Section */
.leisure-section {
  background-color: var(--background);
}

.leisure-img {
  height: 500px;
}

@media (min-width: 1024px) {
  .order-1-lg {
    order: 1;
  }

  .order-2-lg {
    order: 2;
  }
}

/* Location Section */
.location-section {
  background-color: var(--background);
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.location-tag span {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* Positioning Section */
.positioning-section {
  background-color: rgba(232, 222, 210, 0.3);
  text-align: center;
}

.positioning-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .positioning-title {
    font-size: 4.5rem;
  }
}

/* CTA Section */
.cta-section {
  background-color: var(--beige-warm);
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--green-deep);
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 6rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-text {
  color: rgba(250, 250, 247, 0.6);
  line-height: 1.625;
}

.footer-heading {
  color: var(--off-white);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-nav button {
  color: rgba(250, 250, 247, 0.6);
  text-align: left;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--champagne);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(250, 250, 247, 0.4);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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