
/* PRICING */
#pricing {
  padding: 7rem 2rem;
  background: var(--warm);
  text-align: center;
}
#pricing .pricing-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#pricing .section-title {
  margin-top: 1rem;
}
.pricing-cards {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 3rem 0;
  width: 100%;
  max-width: 600px;
}
.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2.5rem 2rem;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.18);
}
.pricing-card-divider {
  width: 1px;
  height: 120px;
  background: rgba(212,160,23,0.25);
  flex-shrink: 0;
}
.pricing-card-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.pricing-card-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.pricing-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.pricing-card-desc {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.5rem;
  text-align: center;
}
@media (max-width: 600px) {
  .pricing-cards { flex-direction: column; }
  .pricing-card-divider { width: 80px; height: 1px; }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --gold: #D4A017;
    --gold-light: #F0C040;
    --dark: #0D0C0A;
    --warm: #1A1712;
    --cream: #F5F0E8;
    --text-muted: #8A8070;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; }

  /* IMAGE QUALITY OPTIMIZATIONS */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* High-DPI screens optimization */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
  }

  /* Performance optimizations */
  .hero-img-side img,
  .showcase-img img,
  .about-img-wrap img,
  .salao-img img {
    contain: layout style paint;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.4rem 4rem;
    background: linear-gradient(to bottom, rgba(13,12,10,0.95), transparent);
    backdrop-filter: blur(4px);
  }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase; font-weight: 300; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.65); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 0.65rem 1.6rem; text-decoration: none; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* HERO */
  #hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
  .hero-img-side { position: relative; overflow: hidden; }
  .hero-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    animation: slowZoom 18s ease-out forwards;
    will-change: transform;
    transform: translateZ(0);
    filter: brightness(1.02) contrast(1.05) saturate(1.02);
  }
  @keyframes slowZoom { from { transform: scale(1.06) translateZ(0); } to { transform: scale(1) translateZ(0); } }
  .hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, rgba(13,12,10,1) 100%), linear-gradient(to bottom, rgba(13,12,10,0.35) 0%, transparent 25%); }
  .hero-content-side { display: flex; flex-direction: column; justify-content: center; padding: 8rem 4rem 6rem 2rem; background: var(--dark); position: relative; }
  .hero-content-side::before { content: ''; position: absolute; top: 0; left: -80px; bottom: 0; width: 80px; background: linear-gradient(to right, transparent, var(--dark)); pointer-events: none; }
  .hero-tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,160,23,0.5); padding: 0.4rem 1rem; margin-bottom: 2rem; width: fit-content; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.0; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
  .hero-title em { font-style: italic; color: var(--gold); display: block; }
  .hero-divider { width: 50px; height: 1px; background: var(--gold); margin: 2rem 0; opacity: 0; animation: fadeIn 0.8s 0.7s forwards; }
  .hero-sub { font-size: 0.95rem; font-weight: 300; color: rgba(245,240,232,0.6); line-height: 1.8; max-width: 400px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
  .hero-actions { margin-top: 2.5rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 1rem 2.2rem; text-decoration: none; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost { color: rgba(245,240,232,0.6); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid rgba(245,240,232,0.25); padding-bottom: 2px; transition: all 0.3s; }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
  .hero-badges { margin-top: 3rem; display: flex; gap: 1.5rem; opacity: 0; animation: fadeUp 0.8s 1.1s forwards; }
  .badge { text-align: center; padding: 0.8rem 1.2rem; border: 1px solid rgba(212,160,23,0.2); background: rgba(212,160,23,0.04); }
  .badge-val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
  .badge-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { to { opacity: 1; } }

  /* NUMBERS */
  #numbers { background: var(--gold); display: flex; }
  .num-item { flex: 1; text-align: center; padding: 1.8rem 1rem; border-right: 1px solid rgba(13,12,10,0.15); }
  .num-item:last-child { border-right: none; }
  .num-val { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--dark); line-height: 1; }
  .num-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(13,12,10,0.55); margin-top: 0.3rem; }

  /* ABOUT */
  #about { padding: 8rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-img-wrap { position: relative; overflow: hidden; }
  .about-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    filter: brightness(1.01) contrast(1.02);
  }
  .about-img-wrap:hover img { transform: scale(1.03) translateZ(0); }
  .about-img-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 55%; aspect-ratio: 1; border: 2px solid var(--gold); pointer-events: none; }
  .section-tag { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15; }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body { margin-top: 1.5rem; font-size: 0.92rem; font-weight: 300; color: rgba(245,240,232,0.62); line-height: 1.85; }
  .about-features { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feat-item { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.8rem; background: rgba(212,160,23,0.04); border: 1px solid rgba(212,160,23,0.1); transition: border-color 0.3s; }
  .feat-item:hover { border-color: rgba(212,160,23,0.4); }
  .feat-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .feat-item:hover .feat-icon { transform: scale(1.15); }
  .feat-label { font-size: 0.78rem; font-weight: 500; color: var(--cream); margin-bottom: 0.15rem; }
  .feat-sub { font-size: 0.68rem; color: var(--text-muted); }

  /* ═══════════════════════════════════════
     FULLSCREEN IMMERSIVE GALLERY
  ═══════════════════════════════════════ */
  #renders { background: var(--dark); }

  .renders-header {
    text-align: center;
    padding: 8rem 4rem 5rem;
  }

  /* Each panel = 100vh, sticky image with scrolling text overlay */
  .img-showcase {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
  }

  /* Alternating: image left or right */
  .img-showcase.reverse { flex-direction: row-reverse; }

  .showcase-img {
    position: relative;
    width: 62%;
    flex-shrink: 0;
    overflow: hidden;
  }
  .showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    filter: brightness(1.02) contrast(1.03) saturate(1.01);
    transform: translateZ(0);
  }
  .img-showcase:hover .showcase-img img { transform: scale(1.04) translateZ(0); }

  /* Dark gradient on image towards the text side */
  .img-showcase:not(.reverse) .showcase-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 70%, rgba(13,12,10,0.95) 100%);
  }
  .img-showcase.reverse .showcase-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to left, transparent 70%, rgba(13,12,10,0.95) 100%);
  }

  .showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    background: var(--dark);
    position: relative;
    z-index: 1;
  }
  .img-showcase.reverse .showcase-content {
    padding: 4rem 3rem 4rem 4rem;
  }

  .showcase-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 300;
    color: rgba(212,160,23,0.12);
    line-height: 1;
    margin-bottom: -1rem;
  }
  .showcase-room {
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .showcase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.1;
    color: var(--cream);
  }
  .showcase-title em { font-style: italic; color: var(--gold); }
  .showcase-line {
    width: 40px; height: 1px; background: var(--gold);
    margin: 1.5rem 0;
  }
  .showcase-desc {
    font-size: 0.88rem; font-weight: 300;
    color: rgba(245,240,232,0.55); line-height: 1.85;
    max-width: 320px;
  }
  .showcase-specs {
    margin-top: 2rem;
    display: flex; flex-direction: column; gap: 0.6rem;
  }
  .showcase-spec {
    display: flex; gap: 0.8rem; align-items: center;
    font-size: 0.78rem; color: rgba(245,240,232,0.5);
  }
  .showcase-spec::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

  /* Divider between panels */
  .showcase-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,160,23,0.25), transparent);
    margin: 0 4rem;
  }

  /* PLANTS */
  #plants { padding: 8rem 4rem; background: var(--warm); }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .plants-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 3rem; border: 1px solid rgba(212,160,23,0.2); width: fit-content; margin-left: auto; margin-right: auto; }
  .tab-btn { padding: 0.8rem 2rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; background: transparent; border: none; border-right: 1px solid rgba(212,160,23,0.2); color: var(--text-muted); cursor: pointer; transition: all 0.3s; font-family: 'Outfit', sans-serif; }
  .tab-btn:last-child { border-right: none; }
  .tab-btn:hover, .tab-btn.active { background: var(--gold); color: var(--dark); }
  .plant-panel { display: none; max-width: 920px; margin: 0 auto; }
  .plant-panel.active { display: block; }
  .plant-panel img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(212,160,23,0.12);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.05) brightness(1.01);
  }
  .plant-info { margin-top: 1.2rem; display: flex; gap: 2px; flex-wrap: wrap; }
  .plant-spec { flex: 1; min-width: 130px; padding: 1rem 1.2rem; background: rgba(212,160,23,0.05); border-top: 2px solid var(--gold); }
  .plant-spec-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
  .plant-spec-val { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); margin-top: 0.2rem; }

  /* AMENITIES */
  #amenities { padding: 8rem 4rem; }
  .amenities-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
  .salao-img { position: relative; overflow: hidden; height: 440px; }
  .salao-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    filter: brightness(1.02) contrast(1.03);
  }
  .salao-img:hover img { transform: scale(1.04) translateZ(0); }
  .salao-img-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,12,10,0.85), transparent); padding: 2rem 1.2rem 0.85rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.9); }
  .amenities-list { display: flex; flex-direction: column; gap: 1px; }
  .am-row { display: flex; gap: 1.5rem; align-items: center; padding: 1.4rem 1.5rem; background: rgba(212,160,23,0.04); border: 1px solid rgba(212,160,23,0.08); transition: all 0.3s; }
  .am-row:hover { background: rgba(212,160,23,0.09); border-color: rgba(212,160,23,0.3); }
  .am-row-icon { font-size: 1.5rem; width: 70px; height: 70px; text-align: center; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .am-row-icon img { width: 100%; height: 100%; object-fit: contain; }
  .am-row:hover .am-row-icon img { transform: scale(1.1); transition: transform 0.3s; }
  .am-row-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.2rem; }
  .am-row-desc { font-size: 0.73rem; color: var(--text-muted); line-height: 1.5; }

  /* CTA */
  #cta { padding: 10rem 4rem; text-align: center; position: relative; overflow: hidden; background: var(--warm); }
  .cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(212,160,23,0.11) 0%, transparent 65%); pointer-events: none; }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; line-height: 1.05; }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-contact { margin-top: 3.5rem; display: flex; justify-content: center; gap: 4rem; align-items: center; }
  .contact-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
  .contact-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); }
  .contact-divider { width: 1px; height: 60px; background: rgba(245,240,232,0.1); }

  /* FOOTER */
  footer { padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(245,240,232,0.07); background: var(--dark); }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; font-weight: 300; }
  .footer-text { font-size: 0.68rem; color: var(--text-muted); text-align: center; line-height: 1.7; }
  .footer-inc { font-size: 0.62rem; color: var(--text-muted); text-align: right; line-height: 1.7; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-img-side { height: 55vw; min-height: 260px; }
    .hero-content-side { padding: 3rem 1.5rem 4rem; }
    .hero-content-side::before { display: none; }
    #numbers { flex-wrap: wrap; }
    .num-item { min-width: 50%; border-bottom: 1px solid rgba(13,12,10,0.15); }
    #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .about-img-wrap img { height: 280px; }
    .about-img-accent { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .renders-header { padding: 5rem 1.5rem 3rem; }
    .img-showcase, .img-showcase.reverse { flex-direction: column; height: auto; }
    .showcase-img { width: 100%; height: 60vw; min-height: 260px; }
    .img-showcase:not(.reverse) .showcase-img::after,
    .img-showcase.reverse .showcase-img::after { background: linear-gradient(to bottom, transparent 60%, rgba(13,12,10,0.95) 100%); }
    .showcase-content { padding: 2.5rem 1.5rem 3rem; }
    .img-showcase.reverse .showcase-content { padding: 2.5rem 1.5rem 3rem; }
    .showcase-divider { margin: 0 1.5rem; }
    #plants, #amenities, #cta { padding: 5rem 1.5rem; }
    .amenities-layout { grid-template-columns: 1fr; gap: 3rem; }
    .salao-img { height: 280px; }
    .cta-contact { flex-direction: column; gap: 2rem; }
    .contact-divider { width: 50px; height: 1px; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-inc { text-align: center; }
  }
