:root {
      --gold: #D4AF37;
      --gold-light: #E8D5B0;
      --dark: #0D0D0D;
      --dark2: #161616;
      --dark3: #1F1F1F;
      --cream: #F5F0E8;
      --white: #FAFAFA;
      --text-muted: #888;
      --accent: #D4AF37;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom Cursor */
    .cursor {
      position: fixed; width: 10px; height: 10px;
      background: var(--gold); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease;
    }
    .cursor-ring {
      position: fixed; width: 36px; height: 36px;
      border: 1px solid rgba(201,169,110,0.5); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.18s ease;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; padding: 24px 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(13,13,13,0.96);
      backdrop-filter: blur(20px);
      padding: 16px 60px;
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }

    /* LOGO */
    .logo {
      display: flex; align-items: center; gap: 14px; text-decoration: none;
    }
    .logo-mark {
      height: 65px;
      position: relative; flex-shrink: 0;
    }
    .logo-mark svg, .logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .logo-text { line-height: 1; }
    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      letter-spacing: 0.12em; color: var(--white);
      text-transform: uppercase;
    }
    .logo-sub {
      font-size: 0.6rem; letter-spacing: 0.25em;
      color: var(--gold); text-transform: uppercase;
      font-weight: 400; margin-top: 2px;
    }

    .nav-links {
      display: flex; align-items: center; gap: 40px; list-style: none;
    }
    .nav-links a {
      text-decoration: none; color: rgba(250,250,250,0.7);
      font-size: 0.78rem; letter-spacing: 0.18em;
      text-transform: uppercase; font-weight: 400;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      padding: 10px 28px;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      border-radius: 2px;
      transition: all 0.3s ease !important;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--dark) !important;
    }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: none; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 26px; height: 1.5px;
      background: var(--white); transition: all 0.3s;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 140px 60px 100px;
      position: relative; z-index: 2;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 32px;
    }
    .hero-tag span {
      font-size: 0.65rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold); font-weight: 500;
    }
    .hero-tag::before {
      content: ''; display: block;
      width: 40px; height: 1px; background: var(--gold);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5vw, 5.5rem);
      font-weight: 300; line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }
    .hero-title em {
      font-style: italic; color: var(--gold);
    }
    .hero-desc {
      font-size: 0.95rem; line-height: 1.8;
      color: rgba(250,250,250,0.6);
      max-width: 400px; margin-bottom: 48px;
      font-weight: 300;
    }
    .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .btn-primary {
      padding: 16px 42px;
      background: var(--gold); color: var(--dark);
      font-size: 0.78rem; letter-spacing: 0.2em;
      text-transform: uppercase; font-weight: 600;
      border: none; cursor: none; border-radius: 2px;
      transition: all 0.35s ease;
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 20px 60px rgba(201,169,110,0.3);
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.78rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(250,250,250,0.7);
      text-decoration: none; transition: color 0.3s;
    }
    .btn-ghost:hover { color: var(--gold); }
    .btn-ghost::after {
      content: '→'; font-size: 1rem;
      transition: transform 0.3s;
    }
    .btn-ghost:hover::after { transform: translateX(4px); }

    .hero-stats {
      margin-top: 72px; display: flex; gap: 48px;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 300; color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.65rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--text-muted);
      margin-top: 4px;
    }

    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-img-wrap {
      position: absolute; inset: 0;
    }
    .hero-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.55) saturate(0.8);
    }
    .hero-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--dark) 0%, transparent 40%),
                  linear-gradient(to top, var(--dark) 0%, transparent 30%);
    }
    .hero-badge {
      position: absolute; bottom: 40px; right: 40px;
      background: rgba(201,169,110,0.12);
      border: 1px solid rgba(201,169,110,0.3);
      backdrop-filter: blur(10px);
      padding: 20px 28px; border-radius: 4px;
      z-index: 3;
    }
    .hero-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; color: var(--gold); font-weight: 300;
    }
    .hero-badge-text {
      font-size: 0.65rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(250,250,250,0.6);
      margin-top: 4px;
    }

    /* MARQUEE */
    .marquee-wrap {
      border-top: 1px solid rgba(201,169,110,0.15);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      background: var(--dark2); overflow: hidden;
      padding: 18px 0;
    }
    .marquee { display: flex; gap: 0; animation: marquee 28s linear infinite; }
    .marquee-item {
      flex-shrink: 0; display: flex; align-items: center; gap: 24px;
      padding: 0 40px;
      font-size: 0.65rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--text-muted);
      white-space: nowrap;
    }
    .marquee-item .dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* SECTION COMMON */
    section { padding: 120px 60px; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 24px;
    }
    .section-tag span {
      font-size: 0.63rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold);
    }
    .section-tag::before {
      content: ''; width: 32px; height: 1px; background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 300; line-height: 1.12;
      letter-spacing: -0.01em; margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-sub {
      font-size: 0.95rem; line-height: 1.8;
      color: rgba(250,250,250,0.55); font-weight: 300;
    }

    /* ABOUT */
    #about {
      background: var(--dark2);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-imgs {
      position: relative; height: 580px;
    }
    .about-img-main {
      position: absolute; top: 0; left: 0;
      width: 72%; height: 85%;
      border-radius: 3px; overflow: hidden;
    }
    .about-img-sec {
      position: absolute; bottom: 0; right: 0;
      width: 52%; height: 52%;
      border-radius: 3px; overflow: hidden;
      border: 4px solid var(--dark2);
    }
    .about-img-main img, .about-img-sec img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.75) saturate(0.85);
    }
    .about-exp-badge {
      position: absolute; top: 40%; left: 58%;
      transform: translate(-50%, -50%);
      background: var(--gold); color: var(--dark);
      padding: 22px 20px; border-radius: 3px; text-align: center;
      z-index: 5; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .about-exp-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem; font-weight: 300; line-height: 1;
    }
    .about-exp-text {
      font-size: 0.62rem; letter-spacing: 0.22em;
      text-transform: uppercase; margin-top: 4px; font-weight: 500;
    }
    .about-content .section-sub { max-width: 480px; margin-bottom: 36px; }
    .about-features {
      display: flex; flex-direction: column; gap: 16px;
      margin-bottom: 40px;
    }
    .about-feat {
      display: flex; align-items: center; gap: 14px;
      font-size: 0.88rem; color: rgba(250,250,250,0.75);
    }
    .feat-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }

    /* SERVICES */
    #services { background: var(--dark); }
    .services-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 70px;
      flex-wrap: wrap; gap: 24px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    .service-card {
      background: var(--dark3);
      padding: 48px 40px;
      transition: all 0.4s ease;
      position: relative; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.04);
    }
    .service-card::before {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: var(--gold); transform: scaleX(0);
      transition: transform 0.4s ease; transform-origin: left;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: #242424; }
    .service-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: 3px; display: flex; align-items: center;
      justify-content: center; margin-bottom: 28px;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: var(--gold); border-color: var(--gold);
    }
    .service-icon svg { width: 22px; height: 22px; transition: all 0.3s; }
    .service-card:hover .service-icon svg { filter: invert(1) brightness(0); }
    .service-num {
      position: absolute; top: 32px; right: 36px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; color: rgba(201,169,110,0.07);
      font-weight: 300; line-height: 1; pointer-events: none;
      transition: color 0.3s;
    }
    .service-card:hover .service-num { color: rgba(201,169,110,0.13); }
    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400;
      margin-bottom: 14px; color: var(--white);
    }
    .service-desc {
      font-size: 0.84rem; line-height: 1.75;
      color: rgba(250,250,250,0.5); font-weight: 300;
    }

    /* PORTFOLIO */
    #portfolio { background: var(--dark2); }
    .portfolio-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 60px;
      flex-wrap: wrap; gap: 24px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .port-card {
      position: relative; overflow: hidden; border-radius: 3px;
      cursor: none;
    }
    .port-card:first-child {
      grid-column: span 2; grid-row: span 2;
    }
    .port-card img {
      width: 100%; height: 100%; object-fit: cover;
      min-height: 200px;
      filter: brightness(0.65) saturate(0.8);
      transition: all 0.6s ease;
    }
    .port-card:first-child img { min-height: 480px; }
    .port-card:hover img {
      filter: brightness(0.45) saturate(0.6);
      transform: scale(1.04);
    }
    .port-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 28px;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.4s;
    }
    .port-card:hover .port-overlay { opacity: 1; }
    .port-cat {
      font-size: 0.6rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
    }
    .port-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300;
    }
    .port-arrow {
      position: absolute; top: 24px; right: 24px;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--gold); color: var(--dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; opacity: 0;
      transform: scale(0.7); transition: all 0.3s;
    }
    .port-card:hover .port-arrow { opacity: 1; transform: scale(1); }

    /* PROCESS */
    #process { background: var(--dark); }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; margin-top: 70px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .process-step {
      padding: 48px 36px;
      border-right: 1px solid rgba(255,255,255,0.06);
      position: relative;
      transition: background 0.3s;
    }
    .process-step:last-child { border-right: none; }
    .process-step:hover { background: var(--dark3); }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; color: rgba(201,169,110,0.12);
      font-weight: 300; line-height: 1; margin-bottom: 20px;
    }
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--white);
      margin-bottom: 12px; font-weight: 400;
    }
    .step-desc {
      font-size: 0.82rem; line-height: 1.75;
      color: rgba(250,250,250,0.45); font-weight: 300;
    }
    .step-line {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s;
    }
    .process-step:hover .step-line { transform: scaleX(1); }

    /* TESTIMONIALS */
    #testimonials { background: var(--dark2); }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 64px;
    }
    .testi-card {
      background: var(--dark3); padding: 40px 36px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.05);
      transition: border-color 0.3s, transform 0.3s;
    }
    .testi-card:hover {
      border-color: rgba(201,169,110,0.25);
      transform: translateY(-4px);
    }
    .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-style: italic;
      line-height: 1.7; color: rgba(250,250,250,0.8);
      margin-bottom: 28px; font-weight: 300;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name {
      font-size: 0.85rem; font-weight: 500; margin-bottom: 2px;
    }
    .testi-role {
      font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
    }

    /* CTA SECTION */
    #contact {
      background: var(--dark); padding: 100px 60px;
      position: relative; overflow: hidden;
    }
    .cta-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(201,169,110,0.06) 0%, transparent 65%);
    }
    .cta-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .cta-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-field {
      display: flex; flex-direction: column; gap: 8px;
    }
    .form-field label {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold);
    }
    .form-field input, .form-field textarea, .form-field select {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white); padding: 14px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; border-radius: 2px;
      transition: border-color 0.3s; outline: none;
      width: 100%;
    }
    .form-field input::placeholder, .form-field textarea::placeholder {
      color: rgba(250,250,250,0.25);
    }
    .form-field input:focus, .form-field textarea:focus {
      border-color: var(--gold);
    }
    .form-field textarea { resize: none; height: 120px; }
    .form-field select option { background: var(--dark3); }
    .form-submit {
      padding: 16px; background: var(--gold); color: var(--dark);
      font-size: 0.78rem; letter-spacing: 0.22em;
      text-transform: uppercase; font-weight: 600;
      border: none; cursor: none; border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.3s; margin-top: 4px;
    }
    .form-submit:hover { background: var(--gold-light); }

    .cta-info { }
    .cta-info .section-title { margin-bottom: 20px; }
    .cta-info .section-sub { margin-bottom: 48px; max-width: 420px; }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .contact-icon {
      width: 42px; height: 42px; border-radius: 2px;
      border: 1px solid rgba(201,169,110,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; height: 18px; }
    .contact-label {
      font-size: 0.63rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
    }
    .contact-val {
      font-size: 0.9rem; color: rgba(250,250,250,0.8);
    }

    /* FOOTER */
    footer {
      background: var(--dark2);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 30px 60px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 24px;
    }
    .footer-copy {
      font-size: 0.78rem; color: var(--text-muted);
      letter-spacing: 0.08em;
    }
    .footer-socials { display: flex; gap: 20px; }
    .social-link {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: all 0.3s;
    }
    .social-link:hover {
      border-color: var(--gold); background: var(--gold);
    }
    .social-link svg { width: 15px; height: 15px; }
    .social-link:hover svg { filter: invert(1) brightness(0); }

    /* ANIMATIONS */
    .fade-up {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-d1 { transition-delay: 0.1s; }
    .fade-up-d2 { transition-delay: 0.2s; }
    .fade-up-d3 { transition-delay: 0.3s; }

    /* HERO ANIMATION */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-tag { animation: fadeInUp 0.8s 0.3s both; }
    .hero-title { animation: fadeInUp 0.8s 0.5s both; }
    .hero-desc { animation: fadeInUp 0.8s 0.7s both; }
    .hero-actions { animation: fadeInUp 0.8s 0.9s both; }
    .hero-stats { animation: fadeInUp 0.8s 1.1s both; }

    /* MOBILE */
    @media (max-width: 1024px) {
      
.logo-mark {
    height: 50px;}
      nav, nav.scrolled { padding: 20px 30px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 50px 0px; }
      .hero-right { height: 380px; position: relative; }
      .hero-img-wrap { position: absolute; }
      #about { grid-template-columns: 1fr; gap: 50px; padding: 80px 30px; }
      .about-imgs { height: 380px; }
      #services { padding: 80px 30px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      #portfolio { padding: 80px 30px; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .port-card:first-child { grid-column: span 2; grid-row: span 1; }
      .port-card:first-child img { min-height: 280px; }
      #process { padding: 80px 30px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-step { border-right: 1px solid rgba(255,255,255,0.06); }
      .process-step:nth-child(2) { border-right: none; }
      #testimonials { padding: 80px 30px; }
      .testi-grid { grid-template-columns: 1fr; }
      #contact { padding: 80px 30px; }
      .cta-inner { grid-template-columns: 1fr; gap: 50px; }
      footer { padding: 40px 30px; }
      section { padding: 80px 30px; }
    }
    @media (max-width: 640px) {
      .hero-title { font-size: 2.8rem; }
      .hero-stats { gap: 28px; }
      .services-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .port-card:first-child { grid-column: span 1; }
      .process-steps { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-badge { display: none; }
    }

    /* Mobile menu */
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(13,13,13,0.98);
      z-index: 999; flex-direction: column;
      align-items: center; justify-content: center; gap: 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none; color: var(--white);
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 300;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .close-menu {
      position: absolute; top: 24px; right: 30px;
      background: none; border: none; color: var(--white);
      font-size: 2rem; cursor: none;
    }
