  :root {
      --orange: #E8611A;
      --orange-dark: #bf4d10;
      --black: #0a0a0a;
      --dark: #111111;
      --dark-2: #1a1a1a;
      --white: #f5f0ea;
      --gray: #888;
      --light-gray: #333;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --nav-h: 72px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.65;
      overflow-x: hidden;
      cursor: none;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

    /* Cursor */
    .cursor {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
    }
    .cursor-dot {
      position: fixed;
      width: 5px;
      height: 5px;
      background: var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }
    .cursor.hover { width: 60px; height: 60px; mix-blend-mode: difference; }

    /* Nav */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      transition: background var(--transition), backdrop-filter var(--transition);
    }
    .nav.scrolled {
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(232, 97, 26, 0.15);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      color: var(--white);
    }
    .nav-logo span { color: var(--orange); }
    .nav-logo.large { font-size: 2rem; }
    .nav-links { display: flex; gap: 2.5rem; }
    .nav-links a {
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray);
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta {
      background: var(--orange);
      color: var(--white);
      padding: 0.6rem 1.4rem;
      border-radius: 2rem;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: background var(--transition), transform 0.2s;
    }
    .nav-cta:hover { background: var(--orange-dark); transform: scale(1.04); }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: var(--transition);
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(340px, 90vw);
      height: 100vh;
      background: var(--dark);
      z-index: 99;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      border-left: 1px solid var(--light-gray);
    }
    .mobile-menu.open { right: 0; }
    .mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
    .mobile-link {
      font-family: var(--font-display);
      font-size: 2rem;
      letter-spacing: 0.1em;
      color: var(--white);
      transition: color 0.25s;
    }
    .mobile-link:hover, .mobile-link.cta-link { color: var(--orange); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232, 97, 26, 0.28) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 80% 80%, rgba(191, 77, 16, 0.2) 0%, transparent 60%),
        var(--black);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
    }
    .grain {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: calc(var(--nav-h) + 2rem) 2.5rem 6rem;
      max-width: 760px;
    }
    .hero-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 400;
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(4.5rem, 11vw, 9.5rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      margin-bottom: 1.8rem;
      display: block;
    }
    .hero-title .line { display: block; }
    .white-text { color: var(--white); }
    .orange-text { color: var(--orange); }
    .hero-sub {
      font-size: 1rem;
      color: rgba(245, 240, 234, 0.7);
      max-width: 480px;
      margin-bottom: 2.8rem;
      line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      right: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      z-index: 2;
    }
    .hero-scroll span {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.5); opacity: 0.4; }
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      border-radius: 2rem;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: all 0.3s ease;
      cursor: none;
      border: none;
    }
    .btn-small { padding: 0.4rem 1.2rem; font-size: 0.75rem; border-radius: 1.5rem; }
    .btn-primary { background: var(--orange); color: var(--white); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 97, 26, 0.35); }
    .btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(245, 240, 234, 0.4); }
    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
    .btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
    .btn-outline:hover { background: var(--orange); color: var(--white); }
    .btn.full-width { width: 100%; justify-content: center; }
    .btn-whatsapp { background: #25D366; color: white; }
    .btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35); }
    .btn-email { background: #ea4335; color: white; }
    .btn-email:hover { background: #d33426; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(234, 67, 53, 0.35); }

    /* Marquee */
    .marquee-strip { background: var(--orange); padding: 0.85rem 0; overflow: hidden; }
    .marquee-track {
      display: flex;
      gap: 2rem;
      white-space: nowrap;
      animation: marquee 25s linear infinite;
      width: max-content;
    }
    .marquee-track span { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; color: var(--black); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* About */
    .about { padding: 8rem 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-visual { position: relative; }
    .about-img-frame {
      position: relative;
      background: var(--dark-2);
      border-radius: 2px;
      aspect-ratio: 4/5;
      overflow: hidden;
      border: 1px solid var(--light-gray);
    }
    .about-image { width: 100%; height: 100%; object-fit: cover; }
    .about-tag {
      position: absolute;
      bottom: 1.5rem;
      right: -1.5rem;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      padding: 0.75rem 1.25rem;
    }
    .about-stat-block { display: flex; gap: 2rem; margin-top: 2rem; }
    .stat { display: flex; flex-direction: column; }
    .stat-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--orange); line-height: 1; }
    .stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

    /* Section */
    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 400;
      margin-bottom: 1rem;
    }
    .section-label.center { text-align: center; }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      margin-bottom: 1.8rem;
      color: var(--white);
    }
    .section-title em { font-style: italic; color: var(--orange); font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 0.7em; }
    .body-text { color: rgba(245, 240, 234, 0.65); margin-bottom: 1.2rem; font-size: 1rem; }

    /* Portfolio */
    .portfolio { padding: 8rem 0; background: var(--dark); }
    .section-header { margin-bottom: 3rem; }
    .portfolio-filters { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
    .filter-btn {
      background: transparent;
      border: 1px solid var(--light-gray);
      color: var(--gray);
      padding: 0.5rem 1.25rem;
      border-radius: 2rem;
      font-family: var(--font-body);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      cursor: none;
      transition: all 0.25s;
    }
    .filter-btn.active, .filter-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 280px;
      gap: 1rem;
    }
    .portfolio-item { overflow: hidden; border-radius: 2px; cursor: none; position: relative; }
    .portfolio-item.large { grid-column: span 2; }
    .portfolio-item.hidden { display: none; }
    .portfolio-img {
      width: 100%;
      height: 100%;
      position: relative;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      overflow: hidden;
    }
    .portfolio-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .portfolio-item:hover .portfolio-img { transform: scale(1.04); }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.35s;
    }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.25rem; }
    .portfolio-overlay h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

    /* Services */
    .services { padding: 8rem 0; }
    .section-header.center { text-align: center; }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 4rem; }
    .service-card { padding: 3rem 2.5rem; border: 1px solid var(--light-gray); position: relative; transition: background 0.35s; }
    .service-card:hover, .service-card.featured { background: var(--dark-2); }
    .service-card.featured { border-color: var(--orange); }
    .service-num { font-family: var(--font-display); font-size: 4rem; color: rgba(232, 97, 26, 0.18); line-height: 1; margin-bottom: 1rem; transition: color 0.3s; }
    .service-card:hover .service-num { color: rgba(232, 97, 26, 0.4); }
    .service-card h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; margin-bottom: 1rem; color: var(--white); }
    .service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
    .service-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.4s ease; }
    .service-card:hover .service-line { width: 100%; }

    /* Booking */
    .booking { padding: 8rem 0; background: var(--dark); }
    .booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3rem; align-items: start; }
    .booking-info { display: flex; flex-direction: column; gap: 2rem; }
    .booking-highlight { background: var(--black); padding: 2.5rem; border-radius: 2px; border: 1px solid var(--light-gray); }
    .booking-highlight i.fa-camera { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; }
    .booking-highlight h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
    .booking-highlight ul { display: flex; flex-direction: column; gap: 0.75rem; }
    .booking-highlight ul li { display: flex; align-items: center; gap: 0.75rem; color: rgba(245, 240, 234, 0.8); font-size: 0.95rem; }
    .booking-highlight ul li i { color: var(--orange); font-size: 1.1rem; }
    .booking-quick-contact { background: var(--black); padding: 2rem; border-radius: 2px; border: 1px solid var(--light-gray); }
    .booking-quick-contact h4 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
    .quick-contact-btn {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.25rem;
      background: var(--dark-2);
      border-radius: 2px;
      margin-bottom: 0.5rem;
      transition: all 0.3s ease;
      color: rgba(245, 240, 234, 0.8);
    }
    .quick-contact-btn:last-child { margin-bottom: 0; }
    .quick-contact-btn:hover { background: var(--orange); color: var(--white); transform: translateX(5px); }
    .quick-contact-btn.whatsapp:hover { background: #25D366; }
    .quick-contact-btn.call:hover { background: #34B7F1; }

    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      background: var(--black);
      padding: 2.5rem;
      border-radius: 2px;
      border: 1px solid var(--light-gray);
    }
    .booking-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    .booking-actions .btn {
      justify-content: center;
      padding: 0.85rem 1rem;
      font-size: 0.9rem;
    }

    /* Contact */
    .contact { padding: 8rem 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
    .contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
    .contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
    .contact-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
    .contact-item a, .contact-item span { font-size: 0.95rem; color: rgba(245, 240, 234, 0.75); transition: color 0.25s; }
    .contact-item a:hover { color: var(--orange); }
    .contact-social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }
    .contact-social-links a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--dark-2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: 1px solid var(--light-gray);
    }
    .contact-social-links a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }
    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.45rem; }
    .form-group label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
    .form-group label span { color: var(--orange); }
    .form-group input, .form-group select, .form-group textarea {
      background: var(--dark-2);
      border: 1px solid var(--light-gray);
      color: var(--white);
      padding: 0.85rem 1rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.25s;
      cursor: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
    .form-group select option { background: var(--dark-2); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-note { font-size: 0.82rem; color: var(--orange); text-align: center; min-height: 1.2em; }

    /* Footer */
    .footer { border-top: 1px solid var(--light-gray); padding: 3rem 0 2rem; background: var(--black); }
    .footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--light-gray); }
    .footer-socials { display: flex; gap: 1.5rem; }
    .footer-socials a { font-size: 1.1rem; color: var(--gray); transition: color 0.25s, transform 0.2s; }
    .footer-socials a:hover { color: var(--orange); transform: translateY(-3px); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 0.8rem; color: var(--gray); }
    .footer-bottom .fa-heart { color: var(--orange); }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--dark-2);
      border: 1px solid var(--orange);
      border-radius: 2px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 9998;
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.4s ease;
      min-width: 300px;
      max-width: 420px;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast-icon { color: var(--orange); font-size: 1.8rem; }
    .toast-content h4 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; }
    .toast-content p { font-size: 0.85rem; color: var(--gray); }
    .toast-close { background: none; border: none; color: var(--gray); font-size: 1.5rem; cursor: none; margin-left: auto; transition: color 0.25s; }
    .toast-close:hover { color: var(--white); }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      width: 60px;
      height: 60px;
      background: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      z-index: 9997;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); color: white; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 1024px) { 
      .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
      .booking-actions { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-tag { right: 1rem; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
      .portfolio-item.large { grid-column: span 2; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      .booking-form { padding: 1.5rem; }
    }
    @media (max-width: 580px) {
      .portfolio-grid { grid-template-columns: 1fr; }
      .portfolio-item.large { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .btn { text-align: center; justify-content: center; }
      .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
      .toast { left: 1rem; right: 1rem; min-width: unset; width: auto; }
      .booking-actions { grid-template-columns: 1fr; }
    }