  /* ===== RESET & VARIABLES ===== */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --sand: #f5ede0;
        --amber: #a7531b;
        --amber2: #ffb36b;
        --dark: #1a1208;
        --espresso: #2e1d0e;
        --cream: #fdf8f2;
        --sage: #6b7c5c;
        --text: #3a2a14;
        --muted: #5f4b39;
        --white: #ffffff;
        --radius: 12px;
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--cream);
        color: var(--text);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Playfair Display", serif;
      }

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

      .skip-link {
        position: fixed;
        top: 0.75rem;
        left: 0.75rem;
        z-index: 2000;
        background: var(--white);
        color: var(--dark);
        padding: 0.65rem 1rem;
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
        transform: translateY(-150%);
        transition: transform var(--transition);
      }
      .skip-link:focus {
        transform: translateY(0);
        outline: 3px solid var(--amber2);
      }

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

      /* ===== SCROLLBAR ===== */
      ::-webkit-scrollbar {
        width: 6px;
      }
      ::-webkit-scrollbar-track {
        background: var(--sand);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--amber);
        border-radius: 3px;
      }

      /* ===== NAV ===== */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        height: 70px;
        background: rgba(26, 18, 8, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(200, 119, 58, 0.2);
        transition: var(--transition);
      }
      nav.scrolled {
        background: rgba(26, 18, 8, 0.98);
      }

      .nav-logo {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--amber2);
        letter-spacing: 0;
      }
      .nav-logo span {
        color: var(--white);
      }

      .nav-links {
        display: flex;
        gap: 1.15rem;
        list-style: none;
      }
      .nav-links a {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: color var(--transition);
        position: relative;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--amber2);
        transition: width var(--transition);
      }
      .nav-links a:hover {
        color: var(--amber2);
      }
      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-cta {
        background: var(--amber);
        color: var(--white) !important;
        padding: 0.5rem 1.4rem;
        border-radius: 50px;
        font-weight: 600 !important;
        transition:
          background var(--transition),
          transform var(--transition) !important;
      }
      .nav-cta:hover {
        background: var(--amber2) !important;
        transform: translateY(-1px);
      }
      .nav-cta::after {
        display: none !important;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        background: transparent;
        border: 0;
      }
      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
      }
      .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .hamburger.open span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }

      .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 18, 8, 0.98);
        padding: 2rem 5%;
        z-index: 999;
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(200, 119, 58, 0.2);
      }
      .mobile-menu.open {
        display: flex;
      }
      .mobile-menu a {
        color: var(--white);
        font-size: 1.1rem;
      }

      /* ===== HERO ===== */
      #home {
        min-height: 100vh;
        background:
          linear-gradient(
            160deg,
            rgba(26, 18, 8, 0.75) 0%,
            rgba(46, 29, 14, 0.55) 60%,
            rgba(200, 119, 58, 0.3) 100%
          ),
          url("../assets/images/hero-image.jpg")
            center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 110px 5% 3rem;
        position: relative;
      }

      .hero-content {
        width: 100%;
        max-width: 700px;
        align-self: flex-start;
        animation: heroIn 1.2s ease both;
      }
      @keyframes heroIn {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(200, 119, 58, 0.25);
        border: 1px solid rgba(200, 119, 58, 0.5);
        color: var(--amber2);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
      }
      .hero-badge::before {
        content: "\2022";
        font-size: 0.5rem;
        animation: pulse 1.5s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }

      .hero-content h1 {
        font-size: clamp(2.8rem, 6vw, 5rem);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 1.2rem;
      }
      .hero-content h1 em {
        color: var(--amber2);
        font-style: italic;
      }

      .hero-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        max-width: 520px;
      }

      .hero-btns {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .btn-primary {
        background: var(--amber);
        color: var(--white);
        padding: 0.85rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        border: none;
        cursor: pointer;
        transition: all var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-primary:hover {
        background: var(--amber2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 119, 58, 0.4);
      }
      .btn-primary.is-loading::after {
        content: "";
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.42);
        border-top-color: var(--white);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .btn-outline {
        background: transparent;
        color: var(--white);
        padding: 0.85rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all var(--transition);
      }
      .btn-outline:hover {
        border-color: var(--amber2);
        color: var(--amber2);
      }

      .hero-stats {
        width: 100%;
        max-width: 760px;
        align-self: flex-start;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        margin-top: clamp(2.5rem, 8vh, 5rem);
        animation: heroIn 1.4s 0.3s ease both;
      }
      .stat {
        text-align: center;
        min-width: 0;
      }
      .stat strong {
        display: block;
        font-size: 1.8rem;
        color: var(--amber2);
        font-family: "Playfair Display", serif;
      }
      .stat span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* ===== SECTION BASE ===== */
      section {
        padding: 5rem 5%;
      }
      .section-label {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--amber);
        margin-bottom: 0.8rem;
      }
      .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.2rem;
      }
      .section-sub {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 560px;
      }

      /* ===== HOW IT WORKS ===== */
      #how {
        background: var(--dark);
        color: var(--white);
      }
      #how .section-title {
        color: var(--white);
      }
      #how .section-sub {
        color: rgba(255, 255, 255, 0.55);
      }

      .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }
      .step {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(200, 119, 58, 0.15);
        border-radius: var(--radius);
        padding: 2rem;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
      }
      .step::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--amber), var(--amber2));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
      }
      .step:hover {
        border-color: rgba(200, 119, 58, 0.4);
        transform: translateY(-4px);
      }
      .step:hover::before {
        transform: scaleX(1);
      }

      .step-num {
        font-family: "Playfair Display", serif;
        font-size: 3rem;
        font-weight: 900;
        color: rgba(200, 119, 58, 0.2);
        line-height: 1;
        margin-bottom: 1rem;
      }
      .step h3 {
        font-size: 1.2rem;
        color: var(--white);
        margin-bottom: 0.6rem;
      }
      .step p {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        line-height: 1.6;
      }

      /* ===== ABOUT ===== */
      #about {
        background: var(--sand);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 1rem;
      }
      .about-img-wrap {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        aspect-ratio: 4/5;
      }
      .about-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .about-img-tag {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        background: var(--dark);
        color: var(--white);
        padding: 0.75rem 1.2rem;
        border-radius: 8px;
        font-size: 0.85rem;
      }
      .about-img-tag strong {
        display: block;
        font-size: 1.4rem;
        color: var(--amber2);
        font-family: "Playfair Display", serif;
      }

      .about-text .section-title {
        margin-bottom: 1rem;
      }
      .about-text p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 1rem;
      }

      .values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
      }
      .value-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        background: var(--white);
        padding: 1rem;
        border-radius: 8px;
      }
      .value-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
      }
      .value-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
      }
      .value-item p {
        font-size: 0.8rem;
        color: var(--muted);
        margin: 0;
      }

      /* ===== FEATURED STAYS ===== */
      #properties {
        background: var(--cream);
      }
      .stays-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .stays-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
      }

      .stay-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        cursor: pointer;
      }
      .stay-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      }

      .stay-img {
        height: 220px;
        overflow: hidden;
        position: relative;
      }
      .stay-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .stay-card:hover .stay-img img {
        transform: scale(1.05);
      }
      .stay-tag {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--amber);
        color: var(--white);
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
      }
      .stay-fav {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--white);
        border: none;
        cursor: pointer;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: var(--transition);
      }
      .stay-fav:hover {
        transform: scale(1.15);
      }

      .stay-body {
        padding: 1.2rem;
      }
      .stay-location {
        font-size: 0.78rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.4rem;
      }
      .stay-body h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
      }
      .stay-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.8rem;
      }
      .stay-price {
        font-size: 1rem;
        font-weight: 600;
        color: var(--amber);
      }
      .stay-price span {
        font-size: 0.75rem;
        color: var(--muted);
        font-weight: 400;
      }
      .stay-rating {
        font-size: 0.82rem;
        color: var(--text);
      }
      .stay-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        margin-top: 1rem;
      }
      .stay-actions .btn-primary,
      .stay-actions .btn-outline {
        width: 100%;
        min-height: 42px;
        padding: 0.7rem 0.85rem;
        font-size: 0.82rem;
      }

      .property-modal {
        position: fixed;
        inset: 0;
        z-index: 1500;
        display: grid;
        place-items: center;
        padding: 1.5rem;
        background: rgba(15, 10, 4, 0.78);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
      }
      .property-modal.open {
        opacity: 1;
        pointer-events: all;
      }
      .property-modal-panel {
        width: min(1040px, 100%);
        max-height: min(86vh, 860px);
        overflow: auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        background: var(--cream);
        border-radius: var(--radius);
        position: relative;
        transform: translateY(24px) scale(0.98);
        transition: transform var(--transition);
      }
      .property-modal.open .property-modal-panel {
        transform: translateY(0) scale(1);
      }
      .modal-close {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        z-index: 2;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: var(--white);
        color: var(--dark);
        cursor: pointer;
        font-size: 1.6rem;
        line-height: 1;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
      }
      .modal-gallery {
        min-height: 520px;
        background: var(--dark);
        position: relative;
      }
      .modal-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
        transition: opacity 0.25s ease;
      }
      .modal-gallery img.fade {
        opacity: 0;
      }
      .gallery-controls {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
      }
      .gallery-dot {
        width: 44px;
        height: 44px;
        border: 2px solid rgba(255, 255, 255, 0.55);
        border-radius: 8px;
        padding: 0;
        overflow: hidden;
        cursor: pointer;
        background: transparent;
      }
      .gallery-dot.active {
        border-color: var(--amber2);
      }
      .gallery-dot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .modal-copy {
        padding: 2.4rem;
      }
      .modal-copy h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        margin-bottom: 0.8rem;
      }
      .modal-copy p {
        color: var(--muted);
        line-height: 1.7;
      }
      .modal-meta {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(58, 42, 20, 0.12);
        border-bottom: 1px solid rgba(58, 42, 20, 0.12);
      }
      .modal-meta strong {
        color: var(--amber);
      }
      .modal-copy h3 {
        font-size: 1rem;
        margin: 1.1rem 0 0.7rem;
      }
      .pill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
      }
      .pill-list span {
        background: var(--white);
        border: 1px solid rgba(167, 83, 27, 0.16);
        border-radius: 999px;
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
      }
      .modal-actions {
        display: flex;
        gap: 0.8rem;
        margin-top: 1.6rem;
        flex-wrap: wrap;
      }
      .btn-outline.dark {
        color: var(--dark);
        border-color: rgba(26, 18, 8, 0.35);
      }

      .admin-panel {
        display: none;
        background: var(--sand);
      }
      body.admin-route .admin-panel {
        display: block;
      }
      .admin-lock,
      .admin-workspace {
        max-width: 1100px;
        margin: 0 auto;
      }
      .admin-login,
      .property-form {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.5rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
      }
      .admin-login {
        max-width: 420px;
      }
      .admin-login label {
        display: block;
        margin-bottom: 0.45rem;
        font-size: 0.85rem;
        font-weight: 600;
      }
      .admin-error {
        color: #a51d1d;
        min-height: 1.2rem;
        margin-top: 0.75rem;
        font-size: 0.85rem;
      }
      .admin-head,
      .admin-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .admin-tabs {
        display: flex;
        gap: 0.6rem;
        margin: 1.5rem 0;
      }
      .admin-tab {
        border: 1px solid rgba(26, 18, 8, 0.18);
        background: var(--white);
        color: var(--dark);
        border-radius: 999px;
        padding: 0.65rem 1rem;
        cursor: pointer;
        font-weight: 600;
      }
      .admin-tab.active {
        background: var(--dark);
        color: var(--white);
      }
      .admin-view {
        display: none;
      }
      .admin-view.active {
        display: block;
      }
      .admin-list {
        display: grid;
        gap: 0.85rem;
      }
      .admin-property {
        display: grid;
        grid-template-columns: 92px 1fr auto;
        gap: 1rem;
        align-items: center;
        background: var(--white);
        border-radius: 8px;
        padding: 0.85rem;
      }
      .admin-property img {
        width: 92px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
      }
      .admin-property h3 {
        font-size: 1rem;
      }
      .admin-property p {
        color: var(--muted);
        font-size: 0.85rem;
      }
      .admin-property-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .admin-property-actions button,
      .image-preview button {
        border: 1px solid rgba(26, 18, 8, 0.18);
        background: var(--cream);
        color: var(--dark);
        border-radius: 6px;
        padding: 0.45rem 0.7rem;
        cursor: pointer;
      }
      .image-add {
        align-self: end;
        min-height: 48px;
      }
      .image-preview-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.8rem;
        margin: 1rem 0;
      }
      .image-preview {
        background: var(--cream);
        border-radius: 8px;
        padding: 0.5rem;
      }
      .image-preview img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 6px;
      }
      .image-preview-actions {
        display: flex;
        gap: 0.35rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
      }

      /* ===== BLOG ===== */
      #blog {
        background: var(--espresso);
      }
      #blog .section-title {
        color: var(--white);
      }
      #blog .section-sub {
        color: rgba(255, 255, 255, 0.5);
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
      }

      .blog-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        overflow: hidden;
        transition: var(--transition);
      }
      .blog-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 119, 58, 0.3);
      }

      .blog-img {
        height: 200px;
        overflow: hidden;
      }
      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .blog-card:hover .blog-img img {
        transform: scale(1.05);
      }

      .blog-body {
        padding: 1.4rem;
      }
      .blog-cat {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--amber2);
        font-weight: 600;
        margin-bottom: 0.6rem;
      }
      .blog-body h3 {
        color: var(--white);
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
      }
      .blog-body p {
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.85rem;
        line-height: 1.6;
      }
      .blog-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
      }
      .blog-date {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.68);
      }
      .blog-read {
        font-size: 0.82rem;
        color: var(--amber2);
        font-weight: 600;
      }

      /* ===== FAQ ===== */
      #faq {
        background: var(--sand);
      }
      .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
        align-items: start;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
      }

      .faq-item {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid transparent;
        transition: border-color var(--transition);
      }
      .faq-item.open {
        border-color: var(--amber);
      }

      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.1rem 1.4rem;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.95rem;
      }
      .faq-q .icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--sand);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        transition:
          transform var(--transition),
          background var(--transition);
      }
      .faq-item.open .faq-q .icon {
        transform: rotate(45deg);
        background: var(--amber);
        color: var(--white);
      }

      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.3s ease;
        font-size: 0.9rem;
        color: var(--muted);
        line-height: 1.7;
        padding: 0 1.4rem;
      }
      .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 1.4rem 1.2rem;
      }

      .faq-cta {
        background: var(--dark);
        color: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius);
      }
      .faq-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
      }
      .faq-cta p {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.7;
      }

      /* ===== CONTACT / INQUIRY ===== */
      #contact {
        background: var(--cream);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 4rem;
        margin-top: 2rem;
        align-items: start;
      }

      .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
      }
      .contact-info p {
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }

      .contact-channels {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .channel {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--white);
        padding: 1rem 1.2rem;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: var(--transition);
      }
      .channel:hover {
        border-color: var(--amber);
        transform: translateX(4px);
      }
      .channel-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
      }
      .channel-icon.email {
        background: #fff3e8;
      }
      .channel-icon.whatsapp {
        background: #e8f5e9;
      }
      .channel-icon.phone {
        background: #e8f0fe;
      }
      .channel-text h4 {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.15rem;
      }
      .channel-text span {
        font-size: 0.8rem;
        color: var(--muted);
      }

      .team-panel {
        margin-top: 1.5rem;
      }
      .team-panel .section-label {
        margin-bottom: 0.7rem;
      }
      .team-cards {
        display: grid;
        gap: 0.8rem;
      }
      .team-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--white);
        border: 1px solid rgba(200, 119, 58, 0.18);
        border-radius: 10px;
        padding: 1rem 1.2rem;
        transition: var(--transition);
      }
      .team-card:hover {
        border-color: var(--amber);
        transform: translateX(4px);
      }
      .team-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--dark);
        color: var(--amber2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        font-weight: 700;
        flex-shrink: 0;
      }
      .team-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
      }
      .team-role {
        display: block;
        color: var(--muted);
        font-size: 0.8rem;
      }

      /* ===== INQUIRY FORM ===== */
      .inquiry-form {
        background: var(--white);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
        border: 1px solid rgba(0, 0, 0, 0.06);
      }
      .inquiry-form h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
      }
      .inquiry-form > p {
        color: var(--muted);
        font-size: 0.9rem;
        margin-bottom: 2rem;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .form-group {
        margin-bottom: 1.2rem;
      }
      .other-location {
        display: none;
      }
      .other-location.visible {
        display: block;
      }
      .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
        color: var(--text);
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        color: var(--text);
        background: var(--cream);
        transition:
          border-color var(--transition),
          box-shadow var(--transition);
        outline: none;
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: var(--amber);
        box-shadow: 0 0 0 3px rgba(200, 119, 58, 0.12);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 110px;
      }
      .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a7560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
      }

      .submit-row {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .btn-whatsapp {
        background: #25d366;
        color: var(--white);
        padding: 0.85rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-whatsapp:hover {
        background: #1ebe5b;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
      }

      #form-success {
        display: none;
        background: #e8f5e9;
        border: 1px solid #a5d6a7;
        color: #2e7d32;
        padding: 1rem 1.2rem;
        border-radius: 8px;
        margin-top: 1rem;
        font-size: 0.9rem;
        font-weight: 500;
      }
      #form-success.show {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      /* ===== TESTIMONIALS & RATINGS ===== */
      #testimonials {
        background: var(--cream);
      }
      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-top: 2.5rem;
      }
      .testimonial-card {
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: var(--radius);
        padding: 1.5rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      }
      .testimonial-rating {
        color: #9a4b14;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
      }
      .testimonial-card p {
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 1rem;
      }
      .testimonial-card h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
      }
      .testimonial-card span {
        color: var(--muted);
        font-size: 0.85rem;
      }
      #ratings {
        background: var(--sand);
      }
      .ratings-grid {
        display: grid;
        grid-template-columns: minmax(220px, 0.75fr) 1.25fr;
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
      }
      .rating-summary {
        background: var(--dark);
        color: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
      }
      .rating-summary strong {
        display: block;
        font-size: 3.2rem;
        font-family: "Playfair Display", serif;
        color: var(--amber2);
        line-height: 1;
      }
      .rating-summary span {
        display: block;
        margin: 0.75rem 0;
      }
      .rating-summary p {
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.6;
      }
      .rating-bars {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.5rem;
        display: grid;
        gap: 1rem;
      }
      .rating-row {
        display: grid;
        grid-template-columns: minmax(120px, 1fr) 2fr auto;
        align-items: center;
        gap: 1rem;
      }
      .rating-row span,
      .rating-row strong {
        font-size: 0.9rem;
      }
      .rating-row meter {
        width: 100%;
        height: 0.8rem;
      }

      /* ===== FOOTER ===== */
      footer {
        background: #0f0a04;
        color: rgba(255, 255, 255, 0.6);
        padding: 4rem 5% 2rem;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.6fr repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
      }
      .footer-brand .nav-logo {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        display: block;
      }
      .footer-brand p {
        font-size: 0.88rem;
        line-height: 1.7;
        max-width: 280px;
      }

      .footer-col h4 {
        color: var(--white);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
        font-family: "DM Sans", sans-serif;
        font-weight: 600;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }
      .footer-col a {
        font-size: 0.88rem;
        transition: color var(--transition);
      }
      .footer-col a:hover {
        color: var(--amber2);
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.82rem;
      }
      .footer-bottom a {
        color: var(--amber2);
      }

      /* ===== BACK TO TOP ===== */
      #back-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--amber);
        color: var(--white);
        border: none;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(200, 119, 58, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 900;
      }
      #back-top.visible {
        opacity: 1;
        pointer-events: all;
      }
      #back-top:hover {
        background: var(--amber2);
        transform: translateY(-3px);
      }

      /* ===== WHATSAPP FLOAT ===== */
      #wa-float {
        position: fixed;
        bottom: 5.5rem;
        right: 2rem;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #25d366;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 900;
        transition: var(--transition);
        animation: bounce 2s 2s infinite;
      }
      #wa-float:hover {
        background: #1ebe5b;
        transform: scale(1.1);
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 900px) {
        .about-grid {
          grid-template-columns: 1fr;
        }
        .about-img-wrap {
          aspect-ratio: 16/9;
        }
        .faq-grid {
          grid-template-columns: 1fr;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .ratings-grid {
          grid-template-columns: 1fr;
        }
        .stays-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .property-modal-panel {
          grid-template-columns: 1fr;
        }
        .modal-gallery {
          min-height: 340px;
        }
      }

      @media (max-width: 700px) {
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        #home {
          justify-content: flex-start;
          padding-top: 100px;
        }
        .hero-stats {
          gap: 0.75rem;
          margin-top: 2rem;
        }
        .stat strong {
          font-size: clamp(1.45rem, 8vw, 1.8rem);
        }
        .stat span {
          font-size: 0.7rem;
          letter-spacing: 0.6px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .values {
          grid-template-columns: 1fr;
        }
        .hero-btns {
          flex-direction: column;
        }
        .btn-primary,
        .btn-outline {
          width: 100%;
          justify-content: center;
        }
        .rating-row {
          grid-template-columns: 1fr;
          gap: 0.4rem;
        }
        .stays-grid,
        .admin-property {
          grid-template-columns: 1fr;
        }
        .modal-actions,
        .admin-tabs {
          flex-direction: column;
        }
        .stay-actions {
          grid-template-columns: 1fr;
        }
        .modal-copy {
          padding: 1.3rem;
        }
        .property-modal {
          padding: 0.75rem;
        }
        .property-modal-panel {
          max-height: 92vh;
        }
      }
