*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      font-family: 'Inter', sans-serif;
      color: #2c2420;
      background: #faf8f5;
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.25;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 2px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: #c8a47e;
      color: #fff;
    }

    .btn-primary:hover { background: #b89163; }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .btn-outline:hover {
      background: #fff;
      color: #2c2420;
    }

    .btn-block { width: 100%; }

    /* Header */
    #header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #2c2420;
    }

    .logo span { color: #c8a47e; font-weight: 400; }

    .nav { display: flex; gap: 6px; }

    .nav-btn {
      background: none;
      border: none;
      padding: 8px 16px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s;
      color: #2c2420;
    }

    .nav-btn:hover { background: rgba(200,164,126,0.15); }

    .nav-btn.active {
      background: #c8a47e;
      color: #fff;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #2c2420;
      transition: 0.3s;
    }

    /* Hero */
    .hero {
      position: relative;
      height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .hero .hero-background {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    .hero .hero-background img {
      width: 100vw;
      max-width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,36,32,0.8) 0%, rgba(44,36,32,0.4) 100%);
    }

    .hero-content {
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
      position: relative;
      max-width: 1000px;
      padding: 60px 24px;
      width: 100%;
    }
    .hero-content h1 { font-size: 3rem; margin-bottom: 8px; }
    .hero-subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; }
    
    .hero-slider {
      display: flex;
      width: max-content;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-slider img {
      width: 100vw;
      max-width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    
    .hero-slider.no-transition {
      transition: none;
    }
    
    .hero-arrows {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      z-index: 15;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      transform: translateY(-50%);
      pointer-events: none;
    }
    
    .hero-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(4px);
      border: 2px solid rgba(255,255,255,0.3);
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, transform 0.3s;
      pointer-events: auto;
      line-height: 1;
    }
    
    .hero-arrow:hover {
      background: rgba(255,255,255,0.35);
      transform: scale(1.1);
    }
    
    .hero-dots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
      display: flex;
      gap: 10px;
    }
    
    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: 2px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      padding: 0;
    }
    
    .hero-dot.active {
      background: #fff;
      transform: scale(1.3);
      border-color: #fff;
    }

    /* Views */
    .view {
      display: none;
      padding: 80px 0;
    }

    .view.active {
      display: block;
      animation: fadeIn 0.35s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #c8a47e;
      margin-bottom: 8px;
    }

    .section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
    .section-header p { font-size: 1.1rem; opacity: 0.75; max-width: 520px; margin: 0 auto; }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: #fff;
      padding: 40px 32px;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    .service-icon { font-size: 2.5rem; margin-bottom: 16px; }
    .service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
    .service-card p { font-size: 0.95rem; opacity: 0.7; }

    /* Home */
    .home-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }
    .home-card {
      background: #fff;
      border-radius: 4px;
      padding: 40px 28px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .home-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .home-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
    .home-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      margin-bottom: 10px;
    }
    .home-card p {
      font-size: 0.95rem;
      opacity: 0.7;
      margin-bottom: 16px;
      line-height: 1.6;
    }
    .home-card-link {
      color: #c8a47e;
      font-weight: 600;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .home-card:hover .home-card-link { color: #b89163; }
    .home-about {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
      padding: 32px 0;
    }
    .home-about h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .home-about p {
      font-size: 0.95rem;
      opacity: 0.7;
      line-height: 1.7;
    }

    /* Portfolio */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .portfolio-item {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      cursor: pointer;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .portfolio-item:hover img { transform: scale(1.08); }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 30%, rgba(44,36,32,0.85));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      transition: background 0.3s;
    }

    .portfolio-item:hover .portfolio-overlay {
      background: linear-gradient(transparent 10%, rgba(44,36,32,0.95));
    }
    .portfolio-overlay h3 {
      color: #fff;
      font-size: 1.2rem;
      font-family: 'Playfair Display', serif;
    }
    .portfolio-overlay p {
      color: #c8a47e;
      font-size: 0.8rem;
      font-weight: 500;
      margin-top: 4px;
      letter-spacing: 0.5px;
    }
    .false-ceiling,

    .false-ceiling img {
      display: block;
      overflow: hidden;
      object-fit: cover;
      object-position: top center;
      transform: scale(1.03);
      transform-origin: top center;
    }

    /* Booking */
    .booking-form, .success-message {
      max-width: 640px;
      margin: 0 auto;
      background: #fff;
      padding: 48px;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }

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

    .form-group { margin-bottom: 20px; }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: #2c2420;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      font-size: 0.95rem;
      font-family: inherit;
      border: 1px solid #ddd;
      border-radius: 2px;
      background: #faf8f5;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #c8a47e;
    }

    .success-message { text-align: center; }

    .success-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #c8a47e;
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .success-message h3 { font-size: 1.5rem; margin-bottom: 8px; }
    .hidden { display: none; }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }

    .contact-card {
      text-align: center;
      padding: 40px 24px;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    .contact-icon { font-size: 2.5rem; margin-bottom: 16px; }

    .contact-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      margin-bottom: 8px;
    }

    .contact-card a { color: #c8a47e; font-weight: 500; }
    .contact-card a:hover { text-decoration: underline; }
    .contact-card p { color: #666; }
    .contact-note { font-size: 0.85rem; opacity: 0.6; margin-top: 4px; }

    .whatsapp-contact-icon {
      display: inline;
      width: 18px;
      height: 18px;
      border-radius: 0;
      background: none;
      color: inherit;
      font-size: inherit;
      margin-right: 6px;
      vertical-align: middle;
    }

    section.before-footer.contact-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      padding: 40px 32px;
      background: #2c2420;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    section.before-footer.contact-cards .bf-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    section.before-footer.contact-cards .bf-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: #fff;
      margin-bottom: 4px;
    }

    section.before-footer.contact-cards .bf-col a {
      color: rgba(250,248,245,0.7);
      font-weight: 400;
      text-decoration: none;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    section.before-footer.contact-cards .bf-col a:hover {
      color: #c8a47e;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(255,255,255,0.1);
      background: #2c2420;
      color: rgba(250,248,245,0.6);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 64px;
      font-size: 0.85rem;
    }

    /* Gallery Overlay */
    .gallery-overlay {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: #faf8f5;
      overflow-y: auto;
      animation: fadeIn 0.25s ease;
    }

    .gallery-overlay.hidden { display: none; }

    .gallery-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(250,248,245,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 24px;
    }

    .gallery-back {
      background: none;
      border: 2px solid #2c2420;
      padding: 8px 18px;
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 500;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .gallery-back:hover {
      background: #2c2420;
      color: #fff;
    }

    .gallery-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      flex: 1;
    }

    .gallery-admin-area { display: flex; gap: 8px; align-items: center; }
    .gallery-admin-area.hidden { display: none; }

    .gallery-upload-btn {
      display: inline-block;
      padding: 8px 18px;
      background: #c8a47e;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 500;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .gallery-upload-btn:hover { background: #b89163; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #eee;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-item-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 24px;
      color: #999;
      font-size: 1rem;
    }

    .gallery-item-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }

    .gallery-delete-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .gallery-item:hover .gallery-delete-btn { opacity: 1; }

    .gallery-delete-btn:hover { background: #c0392b; }

    /* Admin Toggle */
    .admin-bar {
      display: none;
      background: #c8a47e;
      color: #fff;
      text-align: center;
      padding: 6px;
      font-size: 0.8rem;
      position: fixed;
      top: 0;
      width: fit-content;
      justify-content: center;
      left: 35%;
      z-index: 999;
    }
    .admin-bar.visible { display: block; }

    /* Mobile */
    @media (max-width: 768px) {
      .nav {
        position: fixed;
        top: 0;
        left: 100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        background: #fff;
        padding: 80px 32px;
        gap: 8px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.08);
        transition: left 0.3s;
        z-index: 99;
      }

      .nav.open { left: calc(100% - 260px); }

      .nav-btn { padding: 12px 16px; width: 100%; text-align: left; }

      .hamburger { display: flex; position: relative; z-index: 100; }

      .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); }

      .hero { min-height: 0; height: 400px; }
      .hero-content h1 { font-size: 2.2rem; }
      .hero-subtitle { font-size: 1rem; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .hero-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
      .hero-dot { width: 10px; height: 10px; }

      .form-row { grid-template-columns: 1fr; }
      .booking-form, .success-message { padding: 28px 20px; }
      .view { padding: 48px 0; }
      .section-header h2 { font-size: 2rem; }

      .gallery-header {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 10px;
      }
      .gallery-header h2 { font-size: 1.2rem; min-width: 100%; order: -1; }
      .gallery-grid { padding: 12px; grid-template-columns: 1fr; gap: 10px; }
      .home-card { padding: 24px 16px; }
      .home-about { padding: 24px 0; }

      .home-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
      .services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
      .contact-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

      section.before-footer.contact-cards {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        gap: 24px;
      }

      .admin-bar { left: 50%; transform: translateX(-50%); width: 90%; max-width: 400px; }
      .gallery-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .header-inner { height: 60px; }
      .logo { font-size: 1.2rem; }

      .hero { height: 320px; }
      .hero-content h1 { font-size: 1.6rem; }
      .hero-content { padding: 40px 16px; }
      .hero-arrow { width: 30px; height: 30px; font-size: 1.1rem; }
      .hero-dots { bottom: 12px; gap: 6px; }
      .hero-dot { width: 8px; height: 8px; }

      .section-header { margin-bottom: 32px; }
      .section-header h2 { font-size: 1.5rem; }

      .service-card { padding: 28px 20px; }
      .service-card h3 { font-size: 1.1rem; }
      .contact-card { padding: 28px 20px; }
      .home-card { padding: 20px 14px; }

      .booking-form, .success-message { padding: 20px 16px; }

      .gallery-header { padding: 10px 12px; gap: 8px; }
      .gallery-header h2 { font-size: 1rem; }
      .gallery-grid { padding: 10px; gap: 8px; grid-template-columns: 1fr; }
      .gallery-back { font-size: 0.75rem; padding: 6px 12px; }
      .gallery-upload-btn { font-size: 0.75rem; padding: 6px 12px; }

      .home-grid { grid-template-columns: 1fr; gap: 12px; }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .contact-grid { grid-template-columns: 1fr; gap: 16px; }

      section.before-footer.contact-cards { padding: 20px 16px; }
      .footer-inner { font-size: 0.75rem; height: 56px; padding: 0 16px; }

      .admin-bar { font-size: 0.7rem; padding: 4px; }
    }

    df-messenger {
      --df-messenger-bot-message: #f0ece8;
      --df-messenger-button-titlebar-color: #2c2420;
      --df-messenger-chat-background-color: #faf8f5;
      --df-messenger-font-color: #2c2420;
      --df-messenger-send-icon: #c8a47e;
      --df-messenger-user-message: #c8a47e;
      --df-messenger-input-box-color: #fff;
      --df-messenger-input-box-border-color: #ddd;
      --df-messenger-button-border: none;
      --df-messenger-button-box-shadow: none;
    }


    