/*
Theme Name: Alomair Interiors
Author: PK Tech Solutions
Version: 1.0
*/


:root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #8B6914;
    --charcoal: #1A1A1A;
    --dark: #111111;
    --mid: #2C2C2C;
    --light-bg: #F8F5F0;
    --white: #FFFFFF;
    --text-muted: #888888;
    --border: rgba(201,169,110,0.25);
    --section-pad: 110px 0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: transform .1s; }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); transition: all .18s ease; }
  body:hover .cursor-ring { opacity: 1; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* LOADER */
  #loader { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity .6s .3s, visibility .6s .3s; }
  #loader.hidden { opacity: 0; visibility: hidden; }
  .loader-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; letter-spacing: 0.3em; color: var(--gold); animation: fadeUp .8s ease forwards; }
  .loader-line { width: 0; height: 1px; background: var(--gold); margin-top: 20px; animation: expandLine 1.2s .4s ease forwards; }
  @keyframes expandLine { to { width: 200px; } }
  @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

  /* NAVIGATION */
  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 .4s ease;
    background: transparent;
  }
  nav.scrolled { background: rgba(17,17,17,.97); backdrop-filter: blur(20px); padding: 16px 60px; border-bottom: 1px solid var(--border); }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; letter-spacing: .25em; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 38px; list-style: none; }
  .nav-links a { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.75); text-decoration: none; position: relative; font-weight: 400; transition: color .3s; }
  .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition: width .3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 26px; font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; cursor: none; transition: all .3s; text-decoration: none; }
  .nav-cta:hover { background: var(--gold); color: var(--dark); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
  .hamburger span { width: 28px; height: 1px; background: var(--white); transition: all .3s; }

  /* MOBILE MENU */
  .mobile-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--white); text-decoration: none; letter-spacing: .1em; transition: color .3s; }
  .mobile-menu a:hover { color: var(--gold); }
  .close-menu { position: absolute; top: 30px; right: 40px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: none; }

  /* PAGE SECTIONS — show/hide */
  .page { display: none; }
  .page.active { display: block; }

  /* ===================== HOME ===================== */
  /* HERO */
  .hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1209 40%, #0d0d0d 100%);
  }
  .hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,.12) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: .04;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content { position: relative; text-align: center; padding: 0 20px; max-width: 900px; }
  .hero-eyebrow { font-size: .65rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; opacity: 0; animation: fadeUp .8s .8s ease forwards; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 300; line-height: 1.08; margin-bottom: 28px; opacity: 0; animation: fadeUp .9s 1s ease forwards; }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-subtitle { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.6); letter-spacing: .08em; max-width: 520px; margin: 0 auto 52px; line-height: 1.9; opacity: 0; animation: fadeUp .9s 1.2s ease forwards; }
  .hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s 1.4s ease forwards; }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 16px 44px; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; border: none; cursor: none; font-family: 'Jost', sans-serif; font-weight: 500; transition: all .3s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--white); padding: 16px 44px; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; cursor: none; font-family: 'Jost', sans-serif; font-weight: 400; transition: all .3s; text-decoration: none; display: inline-block; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp .8s 1.8s ease forwards; }
  .hero-scroll span { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; color: var(--text-muted); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
  @keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.6);opacity:.5} }

  /* MARQUEE */
  .marquee-strip { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
  .marquee-inner { display: inline-flex; gap: 60px; animation: marquee 25s linear infinite; }
  .marquee-inner span { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--dark); font-weight: 600; }
  .marquee-dot { color: var(--dark); opacity: .5; }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* STATS */
  .stats-section { padding: 90px 60px; background: var(--charcoal); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }
  .stat-item { background: var(--charcoal); padding: 52px 40px; text-align: center; border: none; transition: background .3s; }
  .stat-item:hover { background: var(--mid); }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1; }
  .stat-label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted); margin-top: 12px; font-weight: 400; }

  /* INTRO SPLIT */
  .intro-split { padding: var(--section-pad); max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding-left: 60px; padding-right: 60px; }
  .intro-label { font-size: .62rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
  .intro-heading { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; line-height: 1.2; margin-bottom: 32px; }
  .intro-heading em { font-style: italic; color: var(--gold); }
  .intro-body { color: rgba(255,255,255,.6); line-height: 1.95; font-size: .92rem; font-weight: 300; margin-bottom: 40px; }
  .intro-visual { position: relative; }
  .intro-img-frame { width: 100%; aspect-ratio: 4/5; background: var(--mid); position: relative; overflow: hidden; }
  .intro-img-frame::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(201,169,110,.15) 0%, transparent 60%); z-index:1; }
  .abstract-room { width:100%; height:100%; position:relative; }
  .room-floor { position:absolute; bottom:0; left:0; right:0; height:40%; background:linear-gradient(to top, #1a140a, #2a1f10); }
  .room-wall { position:absolute; top:0; left:0; right:0; height:65%; background:linear-gradient(135deg, #1c1c1c, #2a2018); }
  .room-accent { position:absolute; left:15%; top:10%; width:4px; height:70%; background:linear-gradient(to bottom, var(--gold), transparent); }
  .room-window { position:absolute; right:15%; top:12%; width:30%; height:55%; border:1px solid rgba(201,169,110,.4); background:linear-gradient(135deg, rgba(201,169,110,.08), transparent); }
  .room-sofa { position:absolute; bottom:22%; left:10%; width:55%; height:22%; background:linear-gradient(to top, #2d1f0e, #3d2a14); border-radius:4px 4px 0 0; }
  .room-lamp { position:absolute; right:25%; bottom:35%; width:3px; height:30%; background:var(--gold); opacity:.6; }
  .room-lamp::after { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:20px; height:20px; background:rgba(201,169,110,.3); border-radius:50%; filter:blur(8px); }
  .intro-badge { position: absolute; bottom: -20px; right: -20px; width: 130px; height: 130px; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .intro-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--dark); line-height: 1; }
  .intro-badge-text { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dark); text-align: center; font-weight: 600; margin-top: 4px; }

  /* SERVICES PREVIEW */
  .services-preview { padding: var(--section-pad); background: var(--light-bg); }
  .section-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
  .section-label { font-size: .62rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--charcoal); line-height: 1.2; }
  .section-title.light { color: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  .service-card { background: var(--white); padding: 50px 40px; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; group: true; }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,.15); }
  .service-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
  .service-card:hover::before { transform:scaleX(1); }
  .service-icon { width: 52px; height: 52px; margin-bottom: 28px; }
  .service-icon svg { width: 100%; height: 100%; }
  .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; }
  .service-desc { font-size: .85rem; color: #666; line-height: 1.85; font-weight: 300; }
  .service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-weight: 500; transition: gap .3s; }
  .service-link:hover { gap: 14px; }

  /* PORTFOLIO PREVIEW */
  .portfolio-preview { padding: var(--section-pad); max-width: 1400px; margin: 0 auto; padding-left: 60px; padding-right: 60px; }
  .portfolio-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; margin-top: 60px; }
  .port-item { position: relative; overflow: hidden; background: var(--mid); cursor: none; }
  .port-item:first-child { grid-row: 1 / 3; }
  .port-visual { width: 100%; height: 100%; min-height: 280px; position: relative; transition: transform .6s ease; }
  .port-item:hover .port-visual { transform: scale(1.05); }
  .port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%); opacity: 0; transition: opacity .4s; }
  .port-item:hover .port-overlay { opacity: 1; }
  .port-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; transform: translateY(10px); transition: transform .4s; opacity: 0; }
  .port-item:hover .port-info { transform: translateY(0); opacity: 1; }
  .port-cat { font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .port-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--white); }

  /* Abstract room visuals for portfolio */
  .pv1 { background: linear-gradient(135deg, #2a1f10 0%, #1a1a1a 50%, #0d0a06 100%); }
  .pv2 { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%); }
  .pv3 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
  .pv4 { background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%); }
  .pv5 { background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 100%); }

  /* TESTIMONIALS */
  .testimonials { padding: var(--section-pad); background: var(--charcoal); }
  .testimonials-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
  .testi-track { display: flex; gap: 30px; overflow: hidden; }
  .testi-card { flex: 0 0 calc(50% - 15px); background: var(--mid); padding: 50px; position: relative; }
  .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold); line-height: .5; margin-bottom: 20px; font-weight: 300; }
  .testi-text { font-size: .92rem; line-height: 1.95; color: rgba(255,255,255,.75); font-weight: 300; font-style: italic; margin-bottom: 30px; }
  .testi-author { display: flex; align-items: center; gap: 16px; }
  .testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark); }
  .testi-name { font-size: .82rem; font-weight: 500; }
  .testi-role { font-size: .7rem; color: var(--text-muted); margin-top: 3px; }
  .testi-nav { display: flex; gap: 12px; margin-top: 40px; justify-content: center; }
  .testi-dot { width: 8px; height: 8px; background: var(--text-muted); cursor: none; transition: background .3s, width .3s; border: none; }
  .testi-dot.active { background: var(--gold); width: 28px; }

  /* CTA BANNER */
  .cta-banner { padding: 120px 60px; background: var(--dark); position: relative; overflow: hidden; text-align: center; }
  .cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(201,169,110,.1) 0%, transparent 70%); }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; margin-bottom: 24px; position:relative; }
  .cta-sub { font-size: .9rem; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto 48px; line-height: 1.9; font-weight: 300; position:relative; }

  /* ===================== ABOUT ===================== */
  .page-hero { height: 60vh; display: flex; align-items: flex-end; justify-content: flex-start; padding: 80px 80px; background: linear-gradient(135deg, #0a0a0a 0%, #1a140a 60%, #111 100%); position: relative; overflow: hidden; }
  .page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 80% 50%, rgba(201,169,110,.12) 0%, transparent 55%); }
  .page-hero-content { position: relative; }
  .page-hero-label { font-size: .62rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
  .page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; line-height: 1.05; }
  .about-story { padding: 100px 80px; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
  .about-story-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; margin-bottom: 28px; line-height: 1.2; }
  .about-story-text p { color: rgba(255,255,255,.65); line-height: 1.95; font-size: .9rem; font-weight: 300; margin-bottom: 20px; }
  .about-visual-stack { position: relative; }
  .about-img-main { width: 100%; aspect-ratio: 3/4; background: var(--mid); position: relative; overflow: hidden; }
  .about-img-float { position: absolute; width: 55%; aspect-ratio: 1; background: var(--charcoal); bottom: -40px; right: -40px; border: 6px solid var(--dark); }
  .about-values { padding: 100px 80px; background: var(--charcoal); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 60px auto 0; }
  .value-item { padding: 50px 40px; border: 1px solid var(--border); position: relative; transition: border-color .3s; }
  .value-item:hover { border-color: var(--gold); }
  .value-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--border); position: absolute; top: 20px; right: 30px; }
  .value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--gold); margin-bottom: 16px; }
  .value-text { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.9; font-weight: 300; }
  .team-section { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
  .team-card { }
  .team-photo { width: 100%; aspect-ratio: 3/4; background: var(--mid); position: relative; overflow: hidden; margin-bottom: 20px; }
  .team-photo-inner { width:100%; height:100%; }
  .team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 5px; }
  .team-role { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

  /* ===================== SERVICES PAGE ===================== */
  .services-full { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }
  .services-list { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
  .service-row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; padding: 60px 0; border-bottom: 1px solid var(--border); align-items: start; transition: background .3s; cursor: none; }
  .service-row:hover { background: rgba(201,169,110,.03); }
  .service-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--border); }
  .service-details h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 16px; }
  .service-details p { color: rgba(255,255,255,.6); line-height: 1.9; font-size: .88rem; font-weight: 300; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 10px; }
  .tag { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; border: 1px solid var(--border); padding: 6px 14px; color: var(--text-muted); }
  .service-process { padding: 100px 80px; background: var(--charcoal); }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; max-width: 1200px; margin: 60px auto 0; position: relative; }
  .process-steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
  .step { text-align: center; padding: 0 20px; }
  .step-num { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); background: var(--charcoal); }
  .step-title { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
  .step-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

  /* ===================== PORTFOLIO PAGE ===================== */
  .portfolio-full { padding: 80px 60px; max-width: 1400px; margin: 0 auto; }
  .filter-bar { display: flex; gap: 8px; margin-bottom: 50px; flex-wrap: wrap; }
  .filter-btn { background: transparent; border: 1px solid var(--border); color: var(--text-muted); padding: 10px 24px; font-family: 'Jost', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; cursor: none; transition: all .3s; }
  .filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
  .portfolio-masonry { columns: 3; column-gap: 20px; }
  .masonry-item { break-inside: avoid; margin-bottom: 20px; position: relative; overflow: hidden; cursor: none; }
  .masonry-img { width: 100%; display: block; background: var(--mid); position: relative; }
  .mi1 { height: 380px; }
  .mi2 { height: 280px; }
  .mi3 { height: 450px; }
  .mi4 { height: 300px; }
  .mi5 { height: 360px; }
  .mi6 { height: 260px; }
  .mi7 { height: 400px; }
  .mi8 { height: 320px; }
  .mi9 { height: 290px; }
  .masonry-hover { position: absolute; inset: 0; background: rgba(17,17,17,.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s; }
  .masonry-item:hover .masonry-hover { opacity: 1; }
  .masonry-hover-cat { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .masonry-hover-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; text-align: center; padding: 0 20px; }

  /* Portfolio visual designs */
  .pf-office { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); }
  .pf-hotel { background: linear-gradient(135deg, #2d1b00 0%, #4a2f00 50%, #3d2600 100%); }
  .pf-restaurant { background: linear-gradient(135deg, #1a0a0a 0%, #3d1515 50%, #2d0d0d 100%); }
  .pf-retail { background: linear-gradient(160deg, #0d1a0d 0%, #1a3d1a 100%); }
  .pf-medical { background: linear-gradient(135deg, #0a1a2d 0%, #162b4d 100%); }
  .pf-villa { background: linear-gradient(135deg, #1a1209 0%, #2d1f0e 50%, #1a1209 100%); }
  .pf-bank { background: linear-gradient(135deg, #1a1a0a 0%, #2d2d0a 100%); }
  .pf-showroom { background: linear-gradient(160deg, #1a001a 0%, #2d0d2d 100%); }
  .pf-edu { background: linear-gradient(135deg, #001a1a 0%, #0d3333 100%); }
  /* Decorative elements in masonry items */
  .deco-lines { position: absolute; inset: 0; overflow: hidden; }
  .deco-lines::before { content:''; position:absolute; top:20%; left:15%; width:1px; height:60%; background:rgba(201,169,110,.3); }
  .deco-lines::after { content:''; position:absolute; top:20%; left:15%; width:60%; height:1px; background:rgba(201,169,110,.3); }

  /* ===================== MEDIA PAGE ===================== */
  .media-section { padding: 80px 60px; max-width: 1300px; margin: 0 auto; }
  .media-tabs { display: flex; gap: 0; margin-bottom: 50px; border-bottom: 1px solid var(--border); }
  .media-tab { background: none; border: none; color: var(--text-muted); padding: 14px 32px; font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; cursor: none; transition: color .3s; position: relative; }
  .media-tab.active { color: var(--gold); }
  .media-tab.active::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:1px; background:var(--gold); }
  .media-content { display: none; }
  .media-content.active { display: block; }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .news-card { background: var(--charcoal); overflow: hidden; transition: transform .3s; }
  .news-card:hover { transform: translateY(-6px); }
  .news-thumb { width: 100%; height: 220px; background: var(--mid); position: relative; overflow: hidden; }
  .news-body { padding: 30px; }
  .news-date { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; line-height: 1.4; margin-bottom: 14px; }
  .news-excerpt { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.85; font-weight: 300; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .gallery-item { aspect-ratio: 1; background: var(--mid); overflow: hidden; cursor: none; position: relative; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-box { width: 100%; height: 100%; transition: transform .5s; }
  .video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .video-card { background: var(--charcoal); overflow: hidden; }
  .video-thumb { width: 100%; height: 280px; background: var(--mid); display: flex; align-items: center; justify-content: center; position: relative; cursor: none; }
  .play-btn { width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s; }
  .video-card:hover .play-btn { background: var(--gold); }
  .play-btn::after { content:''; border-left: 20px solid var(--gold); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; transition: border-left-color .3s; }
  .video-card:hover .play-btn::after { border-left-color: var(--dark); }
  .video-body { padding: 24px; }
  .video-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
  .video-meta { font-size: .7rem; color: var(--text-muted); }

  /* ===================== CAREERS PAGE ===================== */
  .careers-hero-text { padding: 80px; max-width: 800px; }
  .careers-hero-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 20px; }
  .careers-hero-text p { color: rgba(255,255,255,.6); line-height: 1.9; font-size: .9rem; font-weight: 300; }
  .culture-section { padding: 100px 80px; background: var(--charcoal); }
  .culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 60px auto 0; }
  .culture-card { padding: 40px; border: 1px solid var(--border); }
  .culture-icon { width: 44px; height: 44px; margin-bottom: 22px; color: var(--gold); }
  .culture-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
  .culture-text { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.85; font-weight: 300; }
  .jobs-section { padding: 100px 80px; max-width: 1200px; margin: 0 auto; }
  .jobs-list { display: flex; flex-direction: column; gap: 0; margin-top: 50px; }
  .job-item { padding: 36px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; cursor: none; transition: padding-left .3s; }
  .job-item:hover { padding-left: 16px; }
  .job-title-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 6px; }
  .job-meta { display: flex; gap: 20px; }
  .job-badge { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; padding: 4px 12px; background: var(--mid); color: var(--text-muted); }
  .job-badge.type { background: rgba(201,169,110,.15); color: var(--gold); }
  .apply-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 12px 28px; font-family: 'Jost', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; cursor: none; transition: all .3s; }
  .apply-btn:hover { background: var(--gold); color: var(--dark); }

  /* ===================== CONTACT PAGE ===================== */
  .contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
  .contact-info { padding: 100px 80px; background: var(--charcoal); }
  .contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; margin-bottom: 20px; }
  .contact-info p { color: rgba(255,255,255,.6); line-height: 1.9; font-size: .9rem; font-weight: 300; margin-bottom: 50px; }
  .contact-items { display: flex; flex-direction: column; gap: 32px; }
  .contact-item { display: flex; gap: 20px; }
  .contact-item-icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
  .contact-item-label { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
  .contact-item-value { font-size: .9rem; color: var(--white); font-weight: 300; line-height: 1.6; }
  .contact-form-wrap { padding: 100px 80px; background: var(--dark); }
  .contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { margin-bottom: 24px; }
  .form-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; display: block; }
  .form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 12px 0; color: var(--white); font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 300; outline: none; transition: border-color .3s; }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: rgba(255,255,255,.3); }
  select.form-input { cursor: none; background: var(--dark); }
  select.form-input option { background: var(--dark); }
  .form-textarea { width: 100%; background: transparent; border: 1px solid var(--border); padding: 16px; color: var(--white); font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 300; outline: none; resize: vertical; min-height: 130px; transition: border-color .3s; }
  .form-textarea:focus { border-color: var(--gold); }
  .form-textarea::placeholder { color: rgba(255,255,255,.3); }
  .form-submit { background: var(--gold); border: none; color: var(--dark); padding: 18px 50px; font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; cursor: none; font-weight: 600; transition: all .3s; margin-top: 10px; }
  .form-submit:hover { background: var(--gold-light); }
  .map-section { height: 400px; background: var(--mid); position: relative; overflow: hidden; }
  .map-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #0d1117 0%, #161b22 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
  .map-pin { font-size: 3rem; }
  .map-text { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted); }
  .map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,169,110,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,110,.06) 1px, transparent 1px); background-size: 40px 40px; }

  /* ===================== FOOTER ===================== */
  footer { background: #0a0a0a; padding: 80px 60px 40px; border-top: 1px solid var(--border); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand-desc { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.9; font-weight: 300; margin: 20px 0 30px; max-width: 320px; }
  .footer-social { display: flex; gap: 12px; }
  .social-link { width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all .3s; font-size: .75rem; }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .83rem; font-weight: 300; transition: color .3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: .75rem; color: var(--text-muted); }
  .footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: .9rem; font-style: italic; color: var(--text-muted); }

  /* ANIMATIONS */
  .fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
  @media (max-width: 1024px) {
    nav { padding: 20px 30px; }
    nav.scrolled { padding: 14px 30px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .intro-split, .about-story { grid-template-columns: 1fr; gap: 50px; padding: 60px 30px; }
    .services-grid { grid-template-columns: repeat(2,1fr); padding: 0 30px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid .port-item:first-child { grid-row: auto; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .process-steps { grid-template-columns: repeat(3,1fr); gap: 30px; }
    .process-steps::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .portfolio-masonry { columns: 2; }
    .news-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .contact-split { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .culture-grid { grid-template-columns: 1fr 1fr; }
    .service-row { grid-template-columns: 60px 1fr; }
    .service-tags { display: none; }
  }
  
  @media (max-width: 600px) {
    .hero-title { font-size: 2.8rem; }
    .services-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testi-track { flex-direction: column; }
    .testi-card { flex: 0 0 100%; }
    .portfolio-masonry { columns: 1; }
    .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .values-grid, .culture-grid, .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .page-hero { padding: 60px 30px; }
    .about-story, .about-values, .team-section, .services-full, .service-process, .portfolio-full, .media-section, .careers-hero-text, .culture-section, .jobs-section, .contact-info, .contact-form-wrap { padding: 60px 30px; }
    .intro-split { padding: 60px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .section-header { padding: 0 20px; }
    .hero-btns { flex-direction: column; align-items: center; }
  }