
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: color .3s; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button, input { font-family: inherit; border: none; outline: none; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
    .section-pad { padding: 100px 0; }
    .section-pad-sm { padding: 70px 0; }
    .text-center { text-align: center; }
    .playfair { font-family: 'Playfair Display', serif; }
    .accent { color: #b8860b; }
    .bg-light { background: #f8f8f6; }
    .bg-dark { background: #111; color: #fff; }

    .section-label {
      font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
      color: #b8860b; margin-bottom: 12px; display: inline-block;
    }
    .section-title {
      font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px);
      font-weight: 700; line-height: 1.2; margin-bottom: 20px;
    }
    .section-desc {
      font-size: 16px; color: #666; max-width: 620px; line-height: 1.8;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 34px; border-radius: 50px; font-size: 14px;
      font-weight: 600; letter-spacing: .5px; cursor: pointer; transition: all .3s;
    }
    .btn-primary { background: #111; color: #fff; }
    .btn-primary:hover { background: #b8860b; }
    .btn-outline { border: 2px solid #111; color: #111; background: transparent; }
    .btn-outline:hover { background: #111; color: #fff; }
    .btn-white { background: #fff; color: #111; }
    .btn-white:hover { background: #b8860b; color: #fff; }

    /* ===== TOPBAR ===== */
    .topbar {
      background: #111; color: #ccc; font-size: 13px; padding: 10px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    }
    .topbar-left { display: flex; gap: 24px; align-items: center; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-left i { color: #b8860b; font-size: 12px; }
    .topbar-right { display: flex; gap: 16px; }
    .topbar-right a { color: #999; font-size: 14px; transition: color .3s; }
    .topbar-right a:hover { color: #b8860b; }

    /* ===== NAVBAR ===== */
    .navbar {
      background: #fff; padding: 18px 0; position: sticky; top: 0; z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,.06);
    }
    .navbar .container {
      display: flex; justify-content: space-between; align-items: center;
    }
    .logo {
      font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800;
      color: #111; display: flex; align-items: center; gap: 8px;
    }
    .logo i { color: #b8860b; font-size: 22px; }
    .nav-links { display: flex; gap: 36px; align-items: center; }
    .nav-links a {
      font-size: 15px; font-weight: 500; color: #333; position: relative;
      padding: 4px 0; transition: color .3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
      height: 2px; background: #b8860b; transition: width .3s;
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: #111; }
    .nav-icons { display: flex; gap: 18px; align-items: center; }
    .nav-icons button {
      background: none; cursor: pointer; font-size: 18px; color: #333;
      transition: color .3s;
    }
    .nav-icons button:hover { color: #b8860b; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #111; transition: .3s; }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 92vh; display: flex; align-items: center;
      background: linear-gradient(135deg, #f8f8f6 0%, #fff 50%, #f0efe9 100%);
      overflow: hidden;
    }
    .hero-bg-pattern {
      position: absolute; top: 0; right: 0; width: 55%; height: 100%;
      opacity: .06;
      background: repeating-linear-gradient(45deg, #111 0, #111 1px, transparent 1px, transparent 30px);
    }
    .hero .container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
    .hero-content { flex: 1; max-width: 580px; }
    .hero-label {
      font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
      color: #b8860b; margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
    }
    .hero-label::before { content: ''; width: 40px; height: 2px; background: #b8860b; }
    .hero-title {
      font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 62px);
      font-weight: 800; line-height: 1.1; margin-bottom: 18px; color: #111;
    }
    .hero-subtitle {
      font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 36px; max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
    .hero-stats { display: flex; gap: 50px; }
    .hero-stat h3 {
      font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: #111;
    }
    .hero-stat h3 span { color: #b8860b; }
    .hero-stat p { font-size: 14px; color: #777; margin-top: 4px; }
    .hero-image { flex: 1; position: relative; }
    .hero-image img {
      width: 100%; max-width: 520px; border-radius: 12px;
      box-shadow: 0 30px 60px rgba(0,0,0,.12);
    }
    .hero-image-badge {
      position: absolute; bottom: -20px; left: -30px; background: #b8860b;
      color: #fff; padding: 20px 28px; border-radius: 12px;
      font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
      box-shadow: 0 10px 30px rgba(184,134,11,.3);
    }

    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative; height: 500px; overflow: hidden;
    }
    .video-section img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .video-overlay {
      position: absolute; inset: 0; background: rgba(0,0,0,.45);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .play-btn {
      width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.2);
      border: 2px solid #fff; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .3s; backdrop-filter: blur(4px);
    }
    .play-btn:hover { background: #b8860b; border-color: #b8860b; transform: scale(1.1); }
    .play-btn i { color: #fff; font-size: 24px; margin-left: 4px; }
    .video-text {
      color: #fff; margin-top: 24px; font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 600;
    }

    /* ===== ABOUT / SERVICES GRID ===== */
    .about-section .about-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 30px; margin-bottom: 60px;
    }
    .about-header .left { max-width: 500px; }
    .services-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    }
    .service-card {
      background: #fff; border: 1px solid #eee; border-radius: 12px;
      padding: 40px 28px; text-align: center; transition: all .4s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
      background: #b8860b; transform: scaleX(0); transition: transform .4s;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
    .service-icon {
      width: 70px; height: 70px; border-radius: 50%; background: #f8f8f6;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 26px; color: #b8860b; transition: all .3s;
    }
    .service-card:hover .service-icon { background: #b8860b; color: #fff; }
    .service-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
    .service-card p { font-size: 14px; color: #777; line-height: 1.7; }

    /* ===== CLIENT LOGOS ===== */
    .clients-section { padding: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
    .clients-grid {
      display: flex; justify-content: center; align-items: center;
      gap: 60px; flex-wrap: wrap;
    }
    .client-logo {
      font-size: 22px; font-weight: 700; color: #ccc; letter-spacing: 2px;
      text-transform: uppercase; transition: color .3s; cursor: default;
    }
    .client-logo:hover { color: #111; }

    /* ===== GLOBAL INSPIRATION ===== */
    .inspiration-section .container {
      display: flex; gap: 60px; align-items: center;
    }
    .inspiration-image { flex: 1; }
    .inspiration-image img { border-radius: 12px; width: 100%; }
    .inspiration-content { flex: 1; }
    .progress-bars { margin-top: 36px; }
    .progress-item { margin-bottom: 28px; }
    .progress-item .label {
      display: flex; justify-content: space-between; margin-bottom: 10px;
      font-size: 15px; font-weight: 500;
    }
    .progress-track {
      height: 8px; background: #eee; border-radius: 4px; overflow: hidden;
    }
    .progress-fill {
      height: 100%; background: linear-gradient(90deg, #b8860b, #d4a843);
      border-radius: 4px; width: 0; transition: width 1.5s ease;
    }

    /* ===== SERVICES (6-card) ===== */
    .services-full-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }
    .service-full-card {
      position: relative; border-radius: 12px; overflow: hidden;
      height: 340px; cursor: pointer;
    }
    .service-full-card img {
      width: 100%; height: 100%; object-fit: cover; transition: transform .6s;
    }
    .service-full-card:hover img { transform: scale(1.08); }
    .service-full-card .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
    }
    .service-full-card .overlay h4 {
      color: #fff; font-size: 22px; font-weight: 600; margin-bottom: 6px;
    }
    .service-full-card .overlay p { color: #ccc; font-size: 14px; }
    .service-full-card .overlay .arrow {
      position: absolute; top: 24px; right: 24px; width: 40px; height: 40px;
      border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 14px; transition: all .3s;
    }
    .service-full-card:hover .overlay .arrow { background: #b8860b; border-color: #b8860b; }

    /* ===== CTA ===== */
    .cta-section {
      position: relative; padding: 100px 0; overflow: hidden;
    }
    .cta-section .cta-bg {
      position: absolute; inset: 0;
    }
    .cta-section .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
    .cta-section .cta-bg::after {
      content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.7);
    }
    .cta-section .container {
      position: relative; z-index: 2; text-align: center; color: #fff;
    }
    .cta-section .section-title { color: #fff; }
    .cta-section .section-desc { color: #bbb; margin: 0 auto 40px; }
    .newsletter-form {
      display: flex; max-width: 500px; margin: 0 auto;
      background: rgba(255,255,255,.1); border-radius: 50px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.2);
    }
    .newsletter-form input {
      flex: 1; padding: 16px 24px; background: transparent; color: #fff;
      font-size: 15px;
    }
    .newsletter-form input::placeholder { color: #999; }
    .newsletter-form button {
      padding: 16px 32px; background: #b8860b; color: #fff; font-weight: 600;
      cursor: pointer; transition: background .3s; border-radius: 0 50px 50px 0;
    }
    .newsletter-form button:hover { background: #d4a843; }

    /* ===== PROJECTS ===== */
    .filter-tabs {
      display: flex; justify-content: center; gap: 12px; margin-bottom: 50px; flex-wrap: wrap;
    }
    .filter-tab {
      padding: 10px 28px; border-radius: 50px; font-size: 14px; font-weight: 500;
      cursor: pointer; transition: all .3s; background: #f4f4f2; color: #555; border: none;
    }
    .filter-tab.active, .filter-tab:hover { background: #111; color: #fff; }
    .projects-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .project-card {
      position: relative; border-radius: 12px; overflow: hidden;
      height: 320px; cursor: pointer;
    }
    .project-card img {
      width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
    }
    .project-card:hover img { transform: scale(1.06); }
    .project-card .project-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
      opacity: 0; transition: opacity .4s;
    }
    .project-card:hover .project-overlay { opacity: 1; }
    .project-card .project-overlay h4 { color: #fff; font-size: 20px; font-weight: 600; }
    .project-card .project-overlay span { color: #b8860b; font-size: 13px; margin-top: 4px; }

    /* ===== PROCESS ===== */
    .process-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
      position: relative;
    }
    .process-grid::before {
      content: ''; position: absolute; top: 50px;
      left: 16.66%; right: 16.66%; height: 2px;
      background: repeating-linear-gradient(90deg, #ddd 0, #ddd 8px, transparent 8px, transparent 16px);
    }
    .process-step { text-align: center; position: relative; }
    .process-number {
      width: 100px; height: 100px; border-radius: 50%; background: #f8f8f6;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; font-family: 'Playfair Display', serif;
      font-size: 36px; font-weight: 700; color: #b8860b;
      border: 2px solid #eee; position: relative; z-index: 2;
      transition: all .3s;
    }
    .process-step:hover .process-number {
      background: #b8860b; color: #fff; border-color: #b8860b;
    }
    .process-step h4 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
    .process-step p { font-size: 14px; color: #777; max-width: 280px; margin: 0 auto; line-height: 1.7; }

    /* ===== FEATURED BLOG ===== */
    .featured-blog .container {
      display: flex; gap: 60px; align-items: center;
    }
    .featured-blog-image { flex: 1; }
    .featured-blog-image img { border-radius: 12px; width: 100%; }
    .featured-blog-content { flex: 1; }
    .blog-tag {
      display: inline-block; padding: 6px 16px; background: rgba(184,134,11,.1);
      color: #b8860b; font-size: 12px; font-weight: 600; border-radius: 50px;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
    }
    .featured-blog-content h3 {
      font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700;
      line-height: 1.3; margin-bottom: 16px;
    }
    .featured-blog-content p { color: #666; font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
    .blog-meta { display: flex; gap: 24px; color: #999; font-size: 13px; margin-bottom: 24px; }
    .blog-meta span { display: flex; align-items: center; gap: 6px; }

    /* ===== ARCHITECTS ===== */
    .architects-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }
    .architect-card { text-align: center; }
    .architect-card .img-wrap {
      width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px;
      height: 380px;
    }
    .architect-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .architect-card:hover img { transform: scale(1.05); }
    .architect-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
    .architect-card p { color: #999; font-size: 14px; }
    .architect-socials { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
    .architect-socials a {
      width: 36px; height: 36px; border-radius: 50%; background: #f4f4f2;
      display: flex; align-items: center; justify-content: center;
      color: #777; font-size: 14px; transition: all .3s;
    }
    .architect-socials a:hover { background: #b8860b; color: #fff; }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { background: #f8f8f6; }
    .testimonial-carousel { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
    .testimonial-slide { display: none; }
    .testimonial-slide.active { display: block; }
    .testimonial-quote {
      font-size: 20px; line-height: 1.8; color: #444; font-style: italic;
      margin-bottom: 30px; position: relative;
    }
    .testimonial-quote::before {
      content: '\201C'; font-family: 'Playfair Display', serif;
      font-size: 80px; color: #b8860b; opacity: .3; position: absolute;
      top: -30px; left: -10px; line-height: 1;
    }
    .testimonial-author h5 { font-size: 17px; font-weight: 600; }
    .testimonial-author p { color: #999; font-size: 14px; }
    .carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
    .carousel-dot {
      width: 10px; height: 10px; border-radius: 50%; background: #ccc;
      cursor: pointer; transition: all .3s; border: none;
    }
    .carousel-dot.active { background: #b8860b; transform: scale(1.2); }

    /* ===== LATEST NEWS ===== */
    .news-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }
    .news-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .3s; }
    .news-card:hover { transform: translateY(-6px); }
    .news-card-img { height: 240px; overflow: hidden; }
    .news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .news-card:hover .news-card-img img { transform: scale(1.06); }
    .news-card-body { padding: 28px; }
    .news-card-body .date { font-size: 13px; color: #999; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .news-card-body h4 { font-size: 19px; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
    .news-card-body p { font-size: 14px; color: #777; line-height: 1.7; }
    .news-card-body .read-more { color: #b8860b; font-size: 14px; font-weight: 600; margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }
    .news-card-body .read-more:hover { gap: 10px; }

    /* ===== FOOTER ===== */
    .footer { background: #111; color: #aaa; padding: 80px 0 0; }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 50px;
      padding-bottom: 60px; border-bottom: 1px solid #222;
    }
    .footer h4 {
      color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 24px;
    }
    .footer-about .logo { color: #fff; margin-bottom: 16px; }
    .footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a {
      width: 40px; height: 40px; border-radius: 50%; background: #222;
      display: flex; align-items: center; justify-content: center;
      color: #999; font-size: 15px; transition: all .3s;
    }
    .footer-socials a:hover { background: #b8860b; color: #fff; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; color: #888; transition: color .3s; }
    .footer-links a:hover { color: #b8860b; }
    .footer-address p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
    .footer-address i { color: #b8860b; margin-top: 4px; }
    .footer-bottom {
      padding: 24px 0; text-align: center; font-size: 13px; color: #666;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      display: none; position: fixed; inset: 0; background: #fff; z-index: 9999;
      flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 22px; font-weight: 500; color: #111; }
    .mobile-nav .close-btn {
      position: absolute; top: 24px; right: 24px; font-size: 28px;
      background: none; border: none; cursor: pointer; color: #111;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .services-full-grid { grid-template-columns: repeat(2, 1fr); }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero .container { flex-direction: column; text-align: center; }
      .hero-content { max-width: 100%; }
      .hero-label { justify-content: center; }
      .hero-subtitle { margin: 0 auto 36px; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-image { display: none; }
      .inspiration-section .container { flex-direction: column; }
      .featured-blog .container { flex-direction: column; }
      .services-grid { grid-template-columns: 1fr; }
      .services-full-grid { grid-template-columns: 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .process-grid::before { display: none; }
      .architects-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .about-section .about-header { flex-direction: column; align-items: flex-start; }
      .video-section { height: 350px; }
    }
    @media (max-width: 480px) {
      .hero-stats { flex-direction: column; gap: 20px; }
      .hero-stat { text-align: center; }
      .clients-grid { gap: 30px; }
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
  