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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      color: #1f2937;
      line-height: 1.65;
      overflow-x: hidden;
      background: #f8f7f4;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e5e7eb;
    }

    nav .logo {
      font-family: 'Cinzel', serif;
      color: #111827;
      font-weight: 600;
      font-size: 1.25rem;
      letter-spacing: 0.5px;
      text-decoration: none;
    }

    nav ul {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    nav a {
      color: #374151;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #2563eb;
    }
	
	div.pane {
		max-width: 400px;
		margin: 0 auto;
		background: url(tile.png) repeat;
		padding: 20px 0 0 0;
		border: 1px dashed #374151;
	}

    /* Parallax sections */
    .parallax {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      padding: 7rem 1.5rem 4rem;
    }

    .parallax::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(248, 247, 244, 0.78);
      z-index: 1;
    }

    .content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      width: 100%;
      text-align: center;
      color: #1f2937;
    }

    .content h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      font-weight: 600;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
      color: #111827;
      line-height: 1.15;
    }

    .content h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 4.5vw, 2.7rem);
      font-weight: 600;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
      color: #111827;
      line-height: 1.2;
    }

    .content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: #374151;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
	  font-family: sans-serif;
      display: inline-block;
      background: #2563eb;
      color: #ffffff;
      padding: 0.85rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
      margin-top: 0.5rem;
    }

    .btn:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    /* Background images */
    #hero {
      background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000');
    }
    #standard {
      background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2000');
    }
    #drone {
      background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2000');
    }
    #video {
      background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=2000');
    }
    #tours {
      background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=2000');
    }
    #contact {
      background-image: url('https://images.unsplash.com/photo-1600573472592-401b489a3cdc?q=80&w=2000');
    }

    /* ========== CAROUSEL STYLES ========== */
    .carousel {
      position: relative;
      max-width: 900px;
      margin: 2rem auto 0;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
      background: #fff;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.45s ease;
    }

    .carousel-slide {
      min-width: 100%;
      height: 420px;
      position: relative;
    }

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

    /* Matterport + Vimeo iframe styling */
    .carousel-slide iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.92);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.4rem;
      color: #111;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: background 0.2s;
      z-index: 10;
    }

    .carousel-btn:hover {
      background: #fff;
    }

    .carousel-btn.prev {
      left: 12px;
    }

    .carousel-btn.next {
      right: 12px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 14px 0;
      background: #fff;
    }

    .carousel-dots button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: #d1d5db;
      cursor: pointer;
      transition: background 0.2s;
    }

    .carousel-dots button.active {
      background: #2563eb;
    }

    /* Cards */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 1.75rem;
      text-align: left;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    }

    .card h3 {
      font-family: 'Cinzel', serif;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: #111827;
    }

    .card p {
      color: #4b5563;
      font-size: 0.98rem;
      margin-bottom: 0;
      text-align: left;
    }

    /* Contact form */
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 480px;
      margin: 1.5rem auto 0;
      text-align: left;
    }

    input, textarea {
      width: 100%;
      padding: 0.9rem 1.1rem;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      background: #ffffff;
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      font-size: 1rem;
      color: #111827;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    button[type="submit"] {
      background: #2563eb;
      color: #ffffff;
      border: none;
      padding: 1rem;
      border-radius: 12px;
      font-family: sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    button[type="submit"]:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    .contact-info {
      margin-top: 2rem;
      font-size: 1.05rem;
      color: #374151;
    }

    .contact-info a {
      color: #2590eb;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    /* Mobile */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1rem 0.9rem;
      }

      nav .logo {
        font-size: 1.1rem;
      }

      nav ul {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      nav a {
        font-size: 0.85rem;
      }

      .parallax {
        background-attachment: scroll;
        padding: 8rem 1.25rem 3.5rem;
        align-items: flex-start;
      }

      .content h1 {
        font-size: 2.2rem;
      }

      .content h2 {
        font-size: 1.7rem;
      }

      .carousel-slide {
        height: 280px;
      }

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