:root {
    --black: #0a0a0a;
    --charcoal: #141414;
    --dark: #1c1c1c;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dim: rgba(201,168,76,0.15);
    --white: #f5f2ec;
    --gray: #888;
    --light-gray: #333;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ─────────────────────────────── */
  #cursor {
    position: fixed;
    width: 12px; 
    height: 12px;
    background: var(--gold); 
    border-radius: 50%;
    pointer-events: none; 
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }
  #cursor-ring {
    position: fixed; 
    width: 40px; 
    height: 40px;
    border: 1px solid rgba(201,168,76,0.6);
    border-radius: 50%; 
    pointer-events: none;
    z-index: 9998; 
    transform: translate(-50%,-50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
  }
  body.cursor-hover #cursor { width: 20px; height: 20px; }
  body.cursor-hover #cursor-ring { width: 60px; height: 60px; opacity: 0.4; }

  /* ── SCROLLBAR ─────────────────────────────────── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── PAGE LOADER ───────────────────────────────── */
  #loader {
    position: fixed; inset: 0; background: var(--black);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s;
  }
  #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-name {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--white); letter-spacing: 0.05em;
  }
  .loader-name span { color: var(--gold); }
  .loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; }
  .loader-bar { height: 100%; background: var(--gold); animation: load 1.8s ease forwards; }
  @keyframes load { from { width: 0 } to { width: 100% } }

  /* ── NAVBAR ────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 60px; display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .nav-logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--white); text-decoration: none; letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: rgba(245,242,236,0.7); text-decoration: none;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 24px; border: 1px solid var(--gold);
    color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none; font-weight: 600;
    transition: all 0.3s; background: transparent;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
  .hamburger span { width: 26px; height: 1.5px; background: var(--white); transition: all 0.3s; }

  /* ── HERO ──────────────────────────────────────── */
  #hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 10% 90%, rgba(201,168,76,0.04) 0%, transparent 50%),
      linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: linear-gradient(rgba(201,168,76,0.8) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201,168,76,0.8) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1400px; margin: 0 auto;
    padding: 120px 60px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .hero-text { }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 24px;
    opacity: 0; animation: fadeSlideUp 0.8s 0.3s ease forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 40px; height: 1px; background: var(--gold);
  }
  .hero-name {
    font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900; line-height: 1.05; margin-bottom: 8px;
    opacity: 0; animation: fadeSlideUp 0.8s 0.5s ease forwards;
  }
  .hero-name .highlight { color: var(--gold); font-style: italic; }
  .hero-tagline {
    font-family: var(--font-accent); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic; color: rgba(245,242,236,0.55); margin-bottom: 28px;
    opacity: 0; animation: fadeSlideUp 0.8s 0.7s ease forwards;
  }
  .hero-desc {
    font-size: 1rem; line-height: 1.8; color: rgba(245,242,236,0.6);
    max-width: 480px; margin-bottom: 44px;
    opacity: 0; animation: fadeSlideUp 0.8s 0.9s ease forwards;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeSlideUp 0.8s 1.1s ease forwards;
  }
  .btn-primary {
    padding: 15px 36px; background: var(--gold); color: var(--black);
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; border: 2px solid var(--gold);
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0; background: var(--black);
    transform: translateX(-101%); transition: transform 0.3s ease;
  }
  .btn-primary:hover { color: var(--gold); }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-outline {
    padding: 15px 36px; border: 1.5px solid rgba(245,242,236,0.3);
    color: var(--white); font-weight: 500; font-size: 0.82rem;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Hero Image */
  .hero-image-wrap {
    position: relative;
    opacity: 0; animation: fadeSlideLeft 1s 0.6s ease forwards;
  }
  .hero-img-frame {
    position: relative; border-radius: 2px;
    overflow: hidden; aspect-ratio: 3/4;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,168,76,0.15);
  }
  .hero-img-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    filter: contrast(1.05) saturate(0.9);
  }
  .hero-img-frame:hover img { transform: scale(1.03); }
  .hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
  }
  .hero-img-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.3); padding: 16px 20px;
  }
  .badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
  .badge-txt { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,236,0.5); margin-top: 2px; }
  .hero-decor-line {
    position: absolute; top: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 2px;
  }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s 1.5s ease forwards;
  }
  .scroll-txt { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,242,236,0.4); }
  .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent); animation: scrollAnim 2s ease-in-out infinite; }
  @keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity:1; } 50% { transform: scaleY(0.5); opacity:0.4; } }

  /* ── SECTION BASE ──────────────────────────────── */
  section { padding: 120px 60px; max-width: 1400px; margin: 0 auto; }
  .section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 16px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-divider { width: 100%; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.3), transparent); margin-bottom: 80px; }

  /* ── ABOUT ─────────────────────────────────────── */
  #about { background: var(--charcoal); max-width: 100%; padding: 120px 0; }
  .about-inner { max-width: 1400px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .about-img-col { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    filter: contrast(1.05) saturate(0.9);
  }
  .about-img-secondary {
    position: absolute; bottom: -40px; right: -40px;
    width: 55%; aspect-ratio: 1;
    object-fit: cover; border-radius: 2px;
    border: 4px solid var(--charcoal);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .about-exp-badge {
    position: absolute; top: 30px; right: -30px;
    background: var(--gold); color: var(--black);
    padding: 20px 24px; text-align: center;
  }
  .about-exp-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; }
  .about-exp-badge .lbl { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
  .about-text-col {}
  .about-bio { font-size: 1.05rem; line-height: 1.9; color: rgba(245,242,236,0.65); margin-bottom: 32px; }
  .about-philosophy {
    font-family: var(--font-accent); font-size: 1.3rem; font-style: italic;
    color: var(--gold-light); border-left: 2px solid var(--gold);
    padding-left: 24px; margin-bottom: 40px; line-height: 1.7;
  }
  .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
  .stat-card {
    padding: 20px; border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    text-align: center;
  }
  .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
  .stat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,236,0.4); margin-top: 4px; }
  .about-timeline { }
  .timeline-item { display: flex; gap: 20px; margin-bottom: 24px; }
  .timeline-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
  .timeline-content { }
  .timeline-year { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
  .timeline-title { font-weight: 600; font-size: 0.95rem; margin: 2px 0; }
  .timeline-sub { font-size: 0.85rem; color: rgba(245,242,236,0.5); }

  /* ── PORTFOLIO ─────────────────────────────────── */
  #portfolio { }
  .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
  .filter-tab {
    padding: 8px 22px; border: 1px solid rgba(245,242,236,0.15);
    background: transparent; color: rgba(245,242,236,0.5);
    font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: none; transition: all 0.3s;
  }
  .filter-tab:hover, .filter-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
  .masonry-grid {
    columns: 3; column-gap: 16px;
  }
  .masonry-item {
    break-inside: avoid; margin-bottom: 16px;
    position: relative; overflow: hidden; cursor: none;
    border-radius: 2px;
  }
  .masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
  .masonry-item:hover img { transform: scale(1.06); }
  .masonry-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 40%, transparent 70%);
    opacity: 0; transition: opacity 0.4s;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
  }
  .masonry-item:hover .masonry-overlay { opacity: 1; }
  .overlay-cat { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .overlay-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
  .overlay-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 50px; height: 50px; border: 1.5px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s 0.1s; color: var(--gold); font-size: 1.2rem;
  }
  .masonry-item:hover .overlay-icon { opacity: 1; }

  /* Lightbox */
  #lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 5000; display: none; align-items: center; justify-content: center;
    padding: 40px;
  }
  #lightbox.open { display: flex; }
  #lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
  #lb-close {
    position: absolute; top: 30px; right: 40px;
    font-size: 2rem; color: var(--white); cursor: none;
    background: none; border: none; font-family: var(--font-body);
    transition: color 0.2s;
  }
  #lb-close:hover { color: var(--gold); }
  #lb-prev, #lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    color: var(--white); font-size: 1.5rem; cursor: none; padding: 16px 20px;
    transition: all 0.3s;
  }
  #lb-prev { left: 30px; } #lb-next { right: 30px; }
  #lb-prev:hover, #lb-next:hover { background: var(--gold); color: var(--black); }
  #lb-caption { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-family: var(--font-accent); font-style: italic; color: rgba(245,242,236,0.6); }

  /* ── SERVICES ──────────────────────────────────── */
  #services { background: var(--charcoal); max-width: 100%; padding: 120px 0; }
  .services-inner { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
  .service-card {
    background: var(--dark); border: 1px solid rgba(201,168,76,0.1);
    padding: 40px 30px; transition: all 0.4s;
    cursor: none; position: relative; overflow: hidden;
    transform-style: preserve-3d;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.4); box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2); }
  .service-card:hover::before { opacity: 1; }
  .service-icon { font-size: 2.2rem; margin-bottom: 24px; display: block; }
  .service-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
  .service-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(245,242,236,0.5); margin-bottom: 28px; }
  .service-price { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; font-weight: 600; }
  .service-cta {
    display: block; margin-top: 20px; padding: 12px 20px;
    text-align: center; border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; transition: all 0.3s;
  }
  .service-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

  /* ── PROJECTS ──────────────────────────────────── */
  #projects { }
  .projects-scroll {
    display: flex; gap: 24px; overflow-x: auto; padding-bottom: 24px;
    scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
    margin-top: 60px;
  }
  .project-card {
    flex: 0 0 400px; background: var(--charcoal);
    border: 1px solid rgba(201,168,76,0.1); overflow: hidden;
    cursor: none; position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
  .project-img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s; }
  .project-card:hover .project-img { transform: scale(1.04); }
  .project-info { padding: 28px; }
  .project-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: -10px; }
  .project-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
  .project-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(245,242,236,0.5); }
  .project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
  .project-tag { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding: 4px 10px; border: 1px solid rgba(201,168,76,0.3); }

  /* ── CONTACT ───────────────────────────────────── */
  #contact { background: var(--charcoal); max-width: 100%; padding: 120px 0; }
  .contact-inner { max-width: 1400px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
  .contact-info { }
  .contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .contact-detail-icon { font-size: 1.3rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
  .contact-detail-text label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
  .contact-detail-text p { font-size: 0.95rem; color: rgba(245,242,236,0.7); }
  .social-links { display: flex; gap: 12px; margin-top: 48px; }
  .social-link {
    width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,242,236,0.5); font-size: 1rem; text-decoration: none;
    transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
  .contact-form { }
  .form-group { margin-bottom: 24px; position: relative; }
  .form-group input, .form-group textarea {
    width: 100%; background: rgba(245,242,236,0.03);
    border: 1px solid rgba(245,242,236,0.12);
    padding: 16px 20px; color: var(--white); font-family: var(--font-body);
    font-size: 0.95rem; outline: none; transition: border-color 0.3s;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,242,236,0.3); }
  .form-group textarea { height: 140px; resize: none; }
  .form-label {
    position: absolute; top: 17px; left: 20px;
    font-size: 0.8rem; color: rgba(245,242,236,0.35);
    transition: all 0.3s; pointer-events: none;
    background: var(--charcoal); padding: 0 4px;
  }
  .form-group input:focus + .form-label,
  .form-group input:not(:placeholder-shown) + .form-label,
  .form-group textarea:focus + .form-label,
  .form-group textarea:not(:placeholder-shown) + .form-label {
    top: -9px; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em;
  }
  .btn-send {
    width: 100%; padding: 18px; background: var(--gold); color: var(--black);
    border: none; font-family: var(--font-body); font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: none; transition: all 0.3s; position: relative; overflow: hidden;
  }
  .btn-send::before {
    content: ''; position: absolute; inset: 0; background: var(--black);
    transform: translateX(-101%); transition: transform 0.35s ease;
  }
  .btn-send:hover { color: var(--gold); }
  .btn-send:hover::before { transform: translateX(0); }
  .btn-send span { position: relative; z-index: 1; }

  /* ── FOOTER ────────────────────────────────────── */
  footer {
    background: var(--black); border-top: 1px solid rgba(201,168,76,0.1);
    padding: 60px; display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 40px; align-items: center;
  }
  .footer-brand { }
  .footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-family: var(--font-accent); font-style: italic; color: rgba(245,242,236,0.4); font-size: 0.9rem; }
  .footer-links { display: flex; gap: 28px; justify-content: center; }
  .footer-links a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,236,0.4); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { text-align: right; font-size: 0.78rem; color: rgba(245,242,236,0.3); }
  .footer-copy span { color: var(--gold); }

  /* ── ANIMATIONS ────────────────────────────────── */
  @keyframes fadeSlideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeSlideLeft { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
  @keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ── MOBILE MENU ───────────────────────────────── */
  .mobile-menu {
    position: fixed; inset: 0; background: rgba(10,10,10,0.98);
    z-index: 999; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
    transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); text-decoration: none; }
  .mobile-menu a:hover { color: var(--gold); }

  /* ── RESPONSIVE ────────────────────────────────── */
  @media(max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { columns: 2; }
  }
  @media(max-width: 900px) {
    nav { padding: 16px 30px; }
    nav.scrolled { padding: 12px 30px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 100px 30px 60px; }
    .hero-image-wrap { order: -1; }
    .hero-img-frame { aspect-ratio: 3/2; max-width: 500px; margin: 0 auto; }
    .about-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 30px; }
    .about-img-secondary { display: none; }
    .about-exp-badge { right: 20px; }
    section { padding: 80px 30px; }
    .services-inner { padding: 0 30px; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 30px; }
    footer { grid-template-columns: 1fr; text-align: center; padding: 40px 30px; }
    .footer-copy { text-align: center; }
    .footer-links { flex-wrap: wrap; }
  }
  @media(max-width: 600px) {
    nav { padding: 12px 20px; }
    nav.scrolled { padding: 10px 20px; }
    .hero-inner { padding: 80px 20px 40px; }
    section { padding: 60px 20px; }
    .about-inner, .services-inner, .contact-inner { padding: 0 20px; }
    footer { padding: 40px 20px; }
    .masonry-grid { columns: 1; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { text-align: center; width: 100%; }
    .project-card { flex: 0 0 85vw; }
    #toast { right: 20px; left: 20px; bottom: 20px; text-align: center; padding: 12px 16px; width: auto; }
  }

  /* Tilt card style */
  .tilt-card { transform-style: preserve-3d; transition: transform 0.1s; }

  /* Notification toast */
  #toast {
    position: fixed; bottom: 40px; right: 40px;
    background: var(--gold); color: var(--black);
    padding: 16px 28px; font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.05em; z-index: 9000;
    transform: translateY(100px); opacity: 0;
    transition: all 0.4s ease;
  }
  #toast.show { transform: translateY(0); opacity: 1; }

  /* ── WHATSAPP BUTTON ───────────────────────────── */
  #whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: none;
  }
  #whatsapp-float svg { width: 34px; height: 34px; }
  #whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }

  @media(max-width: 600px) {
    #whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
    }
    #whatsapp-float svg { width: 28px; height: 28px; }
  }
