/* suite-detail.css — extrahiert aus junior-suite.html <style>-Block.
   Wird auf /residencia/{junior,superior,deluxe}-suite via ResidenciaPage.php geladen.
   Asset-Pfade → WP-Mediathek. (Embed-Pattern: <style> im Body wird von wpautop zerstört,
   daher als Plugin-Datei enqueued.) */


    /* ===== SUITE PAGE STYLES ===== */
    body { overflow-x: hidden; }

    /* -- Hero -- */
    .suite-hero {
      position: relative; height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .suite-hero-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 120%;
      background-size: cover; background-position: center;
      will-change: transform;
    }
    .suite-hero-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.6) 100%);
    }
    .suite-hero-content {
      position: relative; z-index: 2; text-align: center; color: #fff;
      padding: 0 30px;
    }
    .suite-hero-content h1 {
      font-family: 'Playfair Display', serif; font-size: 5rem;
      font-weight: 400; margin-bottom: 20px; letter-spacing: 0.04em;
      opacity: 0; transform: translateY(40px);
      animation: heroFadeUp 1.2s ease forwards 0.3s;
    }
    .suite-hero-tagline {
      font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
      letter-spacing: 0.4em; text-transform: uppercase;
      color: #d4b96a; margin-bottom: 0;
      opacity: 0; transform: translateY(20px);
      animation: heroFadeUp 1s ease forwards 0.7s;
    }
    .suite-scroll-indicator {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center;
      gap: 8px; opacity: 0; animation: heroFadeUp 1s ease forwards 1.2s;
    }
    .suite-scroll-indicator span {
      font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
      letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6);
    }
    .suite-scroll-arrow {
      width: 1px; height: 40px; background: rgba(255,255,255,0.3);
      position: relative; overflow: hidden;
    }
    .suite-scroll-arrow::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 1px; height: 100%; background: #d4b96a;
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }
    @keyframes heroFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* -- Intro Section -- */
    .suite-intro {
      padding: 120px 0 80px; background: #faf7f2; overflow: hidden;
    }
    .suite-intro-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      max-width: 1400px; margin: 0 auto; padding: 0 60px; align-items: center;
    }
    .suite-intro-text .suite-tag {
      font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
      letter-spacing: 0.4em; text-transform: uppercase;
      color: #c9a84c; font-weight: 600; margin-bottom: 20px; display: block;
    }
    .suite-intro-text h2 {
      font-family: 'Playfair Display', serif; font-size: 2.8rem;
      color: #1a1a1a; margin-bottom: 30px; font-weight: 400; line-height: 1.2;
    }
    .suite-intro-text p {
      font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
      line-height: 1.9; color: #555; margin-bottom: 0;
    }
    .suite-intro-image {
      position: relative; overflow: hidden;
    }
    .suite-intro-image img {
      width: 100%; height: 550px; object-fit: cover;
      display: block;
    }
    .suite-intro-image::after {
      content: ''; position: absolute; top: 20px; left: 20px;
      right: -20px; bottom: -20px; border: 1px solid #c9a84c;
      z-index: -1;
    }

    /* Stats Row */
    .suite-stats {
      display: flex; justify-content: center; gap: 80px;
      max-width: 1400px; margin: 80px auto 0; padding: 60px 60px 0;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .suite-stat { text-align: center; }
    .suite-stat-number {
      font-family: 'Playfair Display', serif; font-size: 3rem;
      color: #c9a84c; font-weight: 400; line-height: 1;
    }
    .suite-stat-label {
      font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: #999; margin-top: 10px;
    }

    /* -- Parallax Divider -- */
    .suite-parallax-divider {
      position: relative; height: 60vh; min-height: 400px;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .suite-parallax-divider-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 130%;
      background-size: cover; background-position: center;
      will-change: transform;
    }
    .suite-parallax-divider-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
    }
    .suite-parallax-divider-content {
      position: relative; z-index: 2; text-align: center; padding: 0 40px;
    }
    .suite-parallax-divider-content blockquote {
      font-family: 'Playfair Display', serif; font-size: 2.2rem;
      font-style: italic; color: #fff; font-weight: 400;
      line-height: 1.5; max-width: 700px; margin: 0 auto;
    }
    .suite-parallax-divider-content .quote-line {
      width: 60px; height: 1px; background: #c9a84c;
      margin: 25px auto 0;
    }

    /* -- Amenities -- */
    .suite-amenities-section {
      padding: 120px 0; background: #1a1a1a; color: #fff;
    }
    .suite-amenities-section .section-heading {
      text-align: center; margin-bottom: 70px;
    }
    .suite-amenities-section .section-heading h2 {
      font-family: 'Playfair Display', serif; font-size: 2.5rem;
      font-weight: 400; color: #fff; margin-bottom: 15px;
    }
    .suite-amenities-section .section-heading .heading-line {
      width: 60px; height: 1px; background: #c9a84c; margin: 0 auto;
    }
    .amenities-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 50px 40px; max-width: 1100px; margin: 0 auto; padding: 0 40px;
    }
    .amenity-item { text-align: center; }
    .amenity-icon {
      font-size: 1.8rem; color: #c9a84c; margin-bottom: 15px;
      display: block; line-height: 1;
    }
    .amenity-name {
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: #fff; margin-bottom: 8px;
    }
    .amenity-desc {
      font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
      color: rgba(255,255,255,0.5); line-height: 1.5;
    }

    /* -- Gallery -- */
    .suite-gallery-section {
      padding: 100px 0; background: #faf7f2;
    }
    .suite-gallery-section .section-heading {
      text-align: center; margin-bottom: 60px;
    }
    .suite-gallery-section .section-heading h2 {
      font-family: 'Playfair Display', serif; font-size: 2.5rem;
      font-weight: 400; color: #1a1a1a;
    }
    .gallery-masonry {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 8px;
      max-width: 1400px; margin: 0 auto; padding: 0 40px;
    }
    .gallery-masonry .gm-item {
      overflow: hidden; cursor: pointer; position: relative;
    }
    .gallery-masonry .gm-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
    }
    .gallery-masonry .gm-item:hover img { transform: scale(1.08); }
    .gallery-masonry .gm-tall { grid-row: span 2; }
    .gallery-masonry .gm-wide { grid-column: span 2; }
    .gallery-masonry .gm-item img { min-height: 280px; }
    .gallery-masonry .gm-tall img { min-height: 568px; }

    /* -- CTA Section -- */
    .suite-cta-section {
      position: relative; height: 50vh; min-height: 400px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .suite-cta-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 130%;
      background-size: cover; background-position: center;
      will-change: transform;
    }
    .suite-cta-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .suite-cta-content {
      position: relative; z-index: 2; text-align: center;
      padding: 0 30px;
    }
    .suite-cta-content h2 {
      font-family: 'Playfair Display', serif; font-size: 2.5rem;
      font-weight: 400; color: #fff; margin-bottom: 10px;
    }
    .suite-cta-content h2 em {
      color: #d4b96a; font-style: italic;
    }
    .suite-cta-content p {
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
      color: rgba(255,255,255,0.7); margin-bottom: 35px;
    }
    .suite-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
    .suite-cta-buttons a {
      display: inline-block; padding: 16px 45px;
      font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      font-weight: 500; text-decoration: none; transition: all 0.4s ease;
    }
    .btn-primary-gold { background: #c9a84c; color: #fff; border: 1px solid #c9a84c; }
    .btn-primary-gold:hover { background: transparent; color: #c9a84c; }
    .btn-outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
    .btn-outline-white:hover { border-color: #c9a84c; color: #c9a84c; }

    /* -- Specs + FAQ + Lage Sections -- */
    .suite-specs-section { padding: 110px 0; background: #faf7f2; }
    .suite-specs-grid {
      max-width: 1100px; margin: 0 auto; padding: 0 30px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    }
    @media (max-width: 800px) { .suite-specs-grid { grid-template-columns: 1fr; gap: 40px; } }
    .suite-specs-block h3 {
      font-family: 'Playfair Display', serif; font-weight: 400;
      font-size: 1.6rem; color: #1a1a1a; margin-bottom: 20px;
    }
    .suite-specs-block ul { list-style: none; padding: 0; }
    .suite-specs-block li {
      font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
      color: #444; padding: 10px 0 10px 22px;
      border-bottom: 1px solid rgba(0,0,0,0.06); position: relative; line-height: 1.5;
    }
    .suite-specs-block li::before {
      content: ''; position: absolute; left: 0; top: 18px;
      width: 12px; height: 1.5px; background: #c9a84c; border-radius: 1px;
    }
    .suite-specs-block li:last-child { border-bottom: none; }

    .suite-location-section { padding: 100px 0; background: #1a1a1a; color: #fff; }
    .suite-location-section .container {
      max-width: 1000px; margin: 0 auto; padding: 0 30px;
    }
    .suite-location-section .tag {
      font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
      color: #c9a84c; margin-bottom: 18px; font-weight: 600;
    }
    .suite-location-section h2 {
      font-family: 'Playfair Display', serif; font-weight: 400;
      font-size: 2.2rem; margin-bottom: 24px;
    }
    .suite-location-section p {
      font-family: 'Montserrat', sans-serif; font-size: 1.02rem;
      line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 14px;
    }
    .suite-location-section .loc-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px; margin-top: 36px;
    }
    .suite-location-section .loc-item {
      padding: 24px; background: rgba(255,255,255,0.03);
      border-left: 2px solid #c9a84c;
    }
    .suite-location-section .loc-item .loc-num {
      font-family: 'Playfair Display', serif; font-size: 2rem;
      color: #c9a84c; line-height: 1; margin-bottom: 6px;
    }
    .suite-location-section .loc-item .loc-label {
      font-size: 0.85rem; color: rgba(255,255,255,0.7);
    }

    .suite-faq-section { padding: 110px 0; background: #faf7f2; }
    .suite-faq-section .container { max-width: 800px; margin: 0 auto; padding: 0 30px; }
    .suite-faq-section h2 {
      font-family: 'Playfair Display', serif; font-weight: 400;
      font-size: 2rem; color: #1a1a1a; margin-bottom: 12px; text-align: center;
    }
    .suite-faq-section .sub {
      text-align: center; color: #777; margin-bottom: 50px; font-size: 0.95rem;
    }
    .suite-faq-item {
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 22px 0; cursor: pointer;
    }
    .suite-faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
    .suite-faq-item summary {
      list-style: none; cursor: pointer;
      font-family: 'Playfair Display', serif; font-size: 1.15rem;
      color: #1a1a1a; font-weight: 500; padding-right: 30px; position: relative;
    }
    .suite-faq-item summary::-webkit-details-marker { display: none; }
    .suite-faq-item summary::after {
      content: '+'; position: absolute; right: 0; top: 50%;
      transform: translateY(-50%); color: #c9a84c;
      font-size: 1.5rem; font-weight: 300; transition: transform 0.2s;
    }
    .suite-faq-item[open] summary::after { content: '–'; }
    .suite-faq-item[open] { background: rgba(201,168,76,0.04); padding-left: 18px; padding-right: 18px; }
    .suite-faq-item .faq-body {
      font-family: 'Montserrat', sans-serif; font-size: 0.96rem;
      color: #4a4a4a; line-height: 1.75; padding-top: 14px;
    }

    /* -- Suite Navigation -- */
    .suite-nav-bar {
      display: flex; justify-content: center; align-items: stretch;
      background: #0a0a0a; flex-wrap: wrap; position: relative;
    }
    .suite-nav-item {
      flex: 1; max-width: 400px; text-align: center;
      padding: 30px 20px; text-decoration: none;
      border-right: 1px solid rgba(255,255,255,0.05);
      transition: all 0.4s ease; position: relative; overflow: hidden;
    }
    .suite-nav-item:last-child { border-right: none; }
    .suite-nav-item .nav-thumb {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 0.5s ease;
    }
    .suite-nav-item:hover .nav-thumb { opacity: 0.25; }
    .suite-nav-item.active .nav-thumb { opacity: 0.15; }
    .suite-nav-item .nav-item-content { position: relative; z-index: 2; }
    .suite-nav-item .nav-suite-name {
      font-family: 'Playfair Display', serif; font-size: 1.1rem;
      color: rgba(255,255,255,0.5); margin-bottom: 5px; transition: color 0.4s;
    }
    .suite-nav-item .nav-suite-size {
      font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
      letter-spacing: 0.2em; color: rgba(255,255,255,0.25); text-transform: uppercase;
    }
    .suite-nav-item:hover .nav-suite-name,
    .suite-nav-item.active .nav-suite-name { color: #c9a84c; }
    .suite-nav-item.active { background: rgba(201,168,76,0.08); }
    .suite-nav-item.active::after {
      content: ''; position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%); width: 40px; height: 2px; background: #c9a84c;
    }

    /* -- Lightbox -- */
    .suite-lightbox {
      display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.95); z-index: 9999;
      align-items: center; justify-content: center; cursor: pointer;
      opacity: 0; transition: opacity 0.3s ease;
    }
    .suite-lightbox.open { display: flex; opacity: 1; }
    .suite-lightbox img {
      max-width: 90%; max-height: 90%; object-fit: contain;
      transform: scale(0.95); transition: transform 0.3s ease;
    }
    .suite-lightbox.open img { transform: scale(1); }
    .suite-lightbox .lightbox-close {
      position: absolute; top: 30px; right: 30px;
      font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
      letter-spacing: 0.2em; color: rgba(255,255,255,0.6);
      text-transform: uppercase; cursor: pointer;
      background: none; border: none; transition: color 0.3s;
    }
    .suite-lightbox .lightbox-close:hover { color: #c9a84c; }

    /* -- Reveal animations -- */
    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.25, 0, 0.25, 1); }
    .reveal.revealed { opacity: 1; transform: translateY(0); }

    /* -- Responsive -- */
    @media (max-width: 992px) {
      .suite-hero-content h1 { font-size: 3.2rem; }
      .suite-intro-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 30px; }
      .suite-intro-image img { height: 400px; }
      .suite-stats { gap: 40px; flex-wrap: wrap; padding: 40px 30px 0; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
      .gallery-masonry { grid-template-columns: 1fr 1fr; padding: 0 20px; }
      .gallery-masonry .gm-tall { grid-row: span 1; }
      .gallery-masonry .gm-tall img { min-height: 280px; }
      .gallery-masonry .gm-wide { grid-column: span 1; }
      .suite-nav-item { padding: 20px 15px; }
      .suite-nav-item .nav-suite-name { font-size: 0.95rem; }
      .suite-parallax-divider-content blockquote { font-size: 1.6rem; }
    }
    @media (max-width: 576px) {
      .suite-hero-content h1 { font-size: 2.5rem; }
      .suite-hero-tagline { font-size: 0.65rem; letter-spacing: 0.25em; }
      .suite-intro { padding: 80px 0 40px; }
      .suite-intro-text h2 { font-size: 2rem; }
      .suite-stats { gap: 30px; }
      .suite-stat-number { font-size: 2.2rem; }
      .amenities-grid { grid-template-columns: 1fr; }
      .gallery-masonry { grid-template-columns: 1fr; }
      .suite-cta-content h2 { font-size: 1.8rem; }
      .suite-nav-bar { flex-direction: column; }
      .suite-nav-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    }
  