    h1, h2, h3, h4, h5, h6 {
      font-family: 'Cormorant Garamond', serif;
    }

    /* Top Bar */
    .top-bar {
      background: #1a2744;
      color: #f5f0e8;
      padding: 8px 0;
      font-size: 14px;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar a {
      color: #f5f0e8;
      text-decoration: none;
      margin-left: 20px;
      transition: color 0.3s;
    }

    .top-bar a:hover {
      color: #d4a853;
    }

    /* Navbar */
    .navbar {
      background: white;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 700;
        color: #1a2744;
        max-width: 35%;
        height: auto;
    }

    .logo span {
      color: #d4a853;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1a2744;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: #d4a853;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #d4a853;
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #1a2744;
    }

    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Slider */
    .hero {
      position: relative;
      height: 85vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.05);
      transition: all 0.7s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

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

    .hero-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(26, 39, 68, 0.4);
      border: none;
      color: #f5f0e8;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
      z-index: 10;
    }

    .hero-nav:hover {
      background: rgba(26, 39, 68, 0.6);
    }

    .hero-nav.prev {
      left: 20px;
    }

    .hero-nav.next {
      right: 20px;
    }

    .hero-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(245, 240, 232, 0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .hero-dot.active {
      background: #d4a853;
      width: 32px;
      border-radius: 6px;
    }
    .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--primary);
    }

    .btn-primary:hover {
      background: var(--accent-light);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-image::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .top-bar .container {
        flex-direction: column;
        gap: 10px;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        display: flex;
      }

      .mobile-menu-btn {
        display: block;
      }

      .services-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        height: 60vh;
      }

      .section-title h2 {
        font-size: 32px;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
    }