    /* ═══════════════════════════════════════════════════
       RESET & VARIABLES
    ═══════════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --cream:    #FEF7F1;
      --beige:    #F0E8DC;
      --tan:      #D9C9B4;
      --brown:    #5C3D2E;
      --brown-lt: #7A5140;
      --gold:     #C9A96E;
      --gold-lt:  #E2C99A;
      --black:    #1A1208;
      --white:    #FFFFFF;
      --text:     #3A2518;
      --text-lt:  #7A6555;
      --serif:    'Playfair Display', Georgia, serif;
      --sans:     'Poppins', sans-serif;
      --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
      cursor: default;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
    section { position: relative; }

    /* ═══════════════════════════════════════════════════
       SCROLLBAR
    ═══════════════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--beige); }
    ::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

    /* ═══════════════════════════════════════════════════
       LOADER
    ═══════════════════════════════════════════════════ */
    #loader {
      position: fixed; inset: 0; background: var(--brown); z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 20px;
      transition: opacity 0.6s var(--ease), visibility 0.6s;
    }
    #loader.hide { opacity: 0; visibility: hidden; }
    .loader-logo {
      font-family: var(--serif); font-size: 2rem; color: var(--gold);
      letter-spacing: 0.2em; opacity: 0; animation: fadeInUp 0.8s 0.3s forwards;
    }
    .loader-line {
      width: 0; height: 1px; background: var(--gold-lt);
      animation: grow 1.2s 0.5s var(--ease) forwards;
    }
    @keyframes grow { to { width: 180px; } }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══════════════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════════════ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 22px 0;
      transition: background 0.4s var(--ease), padding 0.4s var(--ease),
                  box-shadow 0.4s var(--ease);
    }
    #navbar.scrolled {
      background: rgba(250,246,241,0.97);
      backdrop-filter: blur(12px);
      padding: 14px 0;
      box-shadow: 0 2px 40px rgba(92,61,46,0.08);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center;
    }
    .nav-logo img {
      height: 52px; width: auto;
      display: block;
      transition: opacity 0.3s var(--ease);
    }
    .nav-logo:hover img { opacity: 0.85; }
    .nav-links {
      display: flex; gap: 36px; align-items: center;
    }
    .nav-links a {
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 500; color: var(--brown); position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold); transform: scaleX(0);
      transform-origin: left; transition: transform 0.3s var(--ease);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: var(--brown); color: var(--gold-lt) !important;
      padding: 10px 22px; border-radius: 2px;
      font-size: 0.72rem !important; letter-spacing: 0.12em !important;
      transition: background 0.3s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; transform: translateY(-1px); }
    .nav-cta::after { display: none !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px; background: var(--brown);
      transition: all 0.3s var(--ease);
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
    .mobile-menu {
      display: none; position: fixed; inset: 0; background: var(--cream);
      z-index: 999; flex-direction: column; align-items: center;
      justify-content: center; gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--serif); font-size: 2rem; color: var(--brown);
      letter-spacing: 0.05em; transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ═══════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════ */
    #hero {
      height: 100vh; min-height: 700px;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 60px 80px 80px; position: relative; z-index: 2;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: 28px;
      opacity: 0; animation: fadeInUp 0.8s 1s forwards;
    }
    .hero-tag::before {
      content: ''; width: 32px; height: 1px; background: var(--gold);
    }
    .hero-h1 {
      font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem);
      line-height: 1.1; color: var(--brown); margin-bottom: 24px;
      opacity: 0; animation: fadeInUp 0.8s 1.2s forwards;
    }
    .hero-h1 em { color: var(--gold); font-style: italic; }
    .hero-desc {
      font-size: 0.95rem; color: var(--text-lt); line-height: 1.9;
      max-width: 420px; margin-bottom: 44px;
      opacity: 0; animation: fadeInUp 0.8s 1.4s forwards;
    }
    .hero-actions {
      display: flex; gap: 18px; align-items: center;
      opacity: 0; animation: fadeInUp 0.8s 1.6s forwards;
    }
    .btn-primary {
      background: var(--brown); color: var(--gold-lt);
      padding: 16px 36px; font-size: 0.8rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 500; border: none; cursor: pointer;
      transition: all 0.3s var(--ease); position: relative; overflow: hidden;
      display: inline-block;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0; background: var(--gold);
      transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
      z-index: 0;
    }
    .btn-primary:hover::before { transform: scaleX(1); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(92,61,46,0.25); }
    .btn-outline {
      border: 1px solid var(--tan); color: var(--brown);
      padding: 15px 28px; font-size: 0.8rem; letter-spacing: 0.1em;
      text-transform: uppercase; font-weight: 500; cursor: pointer;
      transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-img-main {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 8s var(--ease);
      animation: heroZoom 8s ease-out 1.5s forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to   { transform: scale(1); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
      z-index: 1;
    }
    .hero-right::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .hero-badge {
      position: absolute; bottom: 40px; left: 24px; z-index: 3;
      background: var(--white); padding: 22px 26px; box-shadow: 0 20px 60px rgba(92,61,46,0.12);
      opacity: 0; animation: fadeInUp 0.8s 2s forwards;
    }
    .hero-badge-num {
      font-family: var(--serif); font-size: 2.4rem; color: var(--brown); line-height: 1;
    }
    .hero-badge-text {
      font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--text-lt); margin-top: 6px;
    }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--text-lt); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      opacity: 0; animation: fadeInUp 0.8s 2.2s forwards; cursor: pointer; z-index: 10;
    }
    .scroll-line {
      width: 1px; height: 48px; background: var(--tan); position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 100%; height: 100%; background: var(--gold);
      animation: scrollDrop 1.8s 2.5s var(--ease) infinite;
    }
    @keyframes scrollDrop { to { top: 200%; } }

    /* ═══════════════════════════════════════════════════
       MARQUEE STRIP
    ═══════════════════════════════════════════════════ */
    .marquee-strip {
      background: var(--brown); overflow: hidden; padding: 14px 0;
    }
    .marquee-track {
      display: flex; gap: 0; width: max-content;
      animation: marqueeRun 28s linear infinite;
    }
    .marquee-track span {
      white-space: nowrap; padding: 0 40px;
      font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold-lt); font-weight: 300;
    }
    .marquee-track span.dot { color: var(--gold); padding: 0 4px; }
    @keyframes marqueeRun { to { transform: translateX(-50%); } }

    /* ═══════════════════════════════════════════════════
       SECTION HEADER SHARED
    ═══════════════════════════════════════════════════ */
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-tag {
      display: inline-block; font-size: 0.68rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold); font-weight: 500;
      margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
      color: var(--brown); line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-divider {
      width: 48px; height: 1px; background: var(--gold); margin: 20px auto 0;
    }
    .section-subtitle {
      font-size: 0.9rem; color: var(--text-lt); line-height: 1.9;
      max-width: 540px; margin: 20px auto 0;
    }

    /* FADE IN ANIMATIONS */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right {
      opacity: 0; transform: translateX(40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .reveal-right.visible { opacity: 1; transform: none; }
    .delay-1 { transition-delay: 0.1s !important; }
    .delay-2 { transition-delay: 0.2s !important; }
    .delay-3 { transition-delay: 0.3s !important; }
    .delay-4 { transition-delay: 0.4s !important; }
    .delay-5 { transition-delay: 0.5s !important; }

    /* ═══════════════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════════════ */
    #about { padding: 120px 0; background: var(--white); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img-main {
      width: 100%; height: 540px; object-fit: cover;
      box-shadow: 30px 30px 0 var(--beige);
    }
    .about-img-accent {
      position: absolute; bottom: -32px; right: -32px;
      width: 55%; height: 55%; object-fit: cover;
      border: 6px solid var(--white);
      box-shadow: 0 20px 60px rgba(92,61,46,0.15);
    }
    .about-since {
      position: absolute; top: 32px; left: -32px;
      background: var(--brown); color: var(--gold-lt);
      padding: 24px 28px; text-align: center;
    }
    .about-since strong {
      display: block; font-family: var(--serif); font-size: 2.4rem;
      line-height: 1;
    }
    .about-since small {
      font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em;
      opacity: 0.75; display: block; margin-top: 4px;
    }
    .about-tag { /* reuse */ }
    .about-title {
      font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--brown); line-height: 1.2; margin-bottom: 22px;
    }
    .about-title em { font-style: italic; color: var(--gold); }
    .about-text {
      font-size: 0.92rem; color: var(--text-lt); line-height: 1.9;
      margin-bottom: 18px;
    }
    .about-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 40px; padding-top: 40px;
      border-top: 1px solid var(--beige);
    }
    .stat-num {
      font-family: var(--serif); font-size: 2.2rem; color: var(--brown); font-weight: 700;
    }
    .stat-num span { color: var(--gold); }
    .stat-label {
      font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
      color: var(--text-lt); margin-top: 4px;
    }

    /* ═══════════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════════ */
    #services { padding: 120px 0; background: var(--cream); }
    .services-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
    }
    .service-card {
      background: var(--white); overflow: hidden; cursor: pointer;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      position: relative;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(92,61,46,0.12);
    }
    .service-img-wrap {
      overflow: hidden; height: 240px; position: relative;
    }
    .service-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s var(--ease);
    }
    .service-card:hover .service-img-wrap img { transform: scale(1.08); }
    .service-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(92,61,46,0.5) 0%, transparent 60%);
    }
    .service-body { padding: 28px 24px; }
    .service-icon {
      width: 44px; height: 44px; background: var(--beige); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; color: var(--gold); font-size: 1.1rem;
      transition: background 0.3s, color 0.3s;
    }
    .service-card:hover .service-icon { background: var(--brown); }
    .service-name {
      font-family: var(--serif); font-size: 1.2rem; color: var(--brown); margin-bottom: 10px;
    }
    .service-desc {
      font-size: 0.82rem; color: var(--text-lt); line-height: 1.8;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-top: 16px;
      transition: gap 0.3s;
    }
    .service-card:hover .service-link { gap: 12px; }

    /* ═══════════════════════════════════════════════════
       PORTFOLIO
    ═══════════════════════════════════════════════════ */
    #portfolio { padding: 120px 0; background: var(--white); }
    .portfolio-filter {
      display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
    }
    .filter-btn {
      padding: 8px 22px; font-size: 0.73rem; letter-spacing: 0.1em;
      text-transform: uppercase; border: 1px solid var(--tan); background: transparent;
      color: var(--text-lt); cursor: pointer; transition: all 0.3s var(--ease);
      font-family: var(--sans);
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--brown); border-color: var(--brown); color: var(--gold-lt);
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 16px;
    }
    .portfolio-item {
      overflow: hidden; position: relative; cursor: pointer;
    }
    .portfolio-item:nth-child(1) { grid-column: span 5; grid-row: span 2; height: 520px; }
    .portfolio-item:nth-child(2) { grid-column: span 7; height: 250px; }
    .portfolio-item:nth-child(3) { grid-column: span 4; height: 250px; }
    .portfolio-item:nth-child(4) { grid-column: span 3; height: 250px; }
    .portfolio-item:nth-child(5) { grid-column: span 4; height: 250px; }
    .portfolio-item:nth-child(6) { grid-column: span 5; height: 250px; }
    .portfolio-item:nth-child(7) { grid-column: span 3; height: 250px; }
    .portfolio-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s var(--ease);
    }
    .portfolio-item:hover img { transform: scale(1.08); }
    .portfolio-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,18,8,0.75) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.4s var(--ease);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 28px 24px;
    }
    .portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
    .portfolio-item-title {
      font-family: var(--serif); font-size: 1.15rem; color: var(--white); margin-bottom: 6px;
    }
    .portfolio-item-cat {
      font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-lt);
    }
    .portfolio-item-zoom {
      position: absolute; top: 20px; right: 20px;
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 0.9rem;
      opacity: 0; transform: scale(0.7);
      transition: all 0.3s var(--ease);
    }
    .portfolio-item:hover .portfolio-item-zoom { opacity: 1; transform: scale(1); }

    /* Lightbox */
    #lightbox {
      position: fixed; inset: 0; background: rgba(26,18,8,0.95);
      z-index: 9000; display: none; align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img {
      max-width: 90vw; max-height: 85vh; object-fit: contain;
      border: 2px solid rgba(201,169,110,0.3);
    }
    #lightbox-close {
      position: absolute; top: 30px; right: 40px;
      color: var(--gold-lt); font-size: 2rem; cursor: pointer;
      transition: color 0.3s; line-height: 1;
    }
    #lightbox-close:hover { color: var(--gold); }

    /* ═══════════════════════════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════════════════════════ */
    #why { padding: 120px 0; background: var(--brown); position: relative; overflow: hidden; }
    #why::before {
      content: 'NS'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
      font-family: var(--serif); font-size: 20rem; font-weight: 700; line-height: 1;
      color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
    }
    #why .section-title { color: var(--gold-lt); }
    #why .section-tag { color: var(--gold); }
    #why .section-divider { background: var(--gold); }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px;
    }
    .why-card {
      padding: 40px 36px; border: 1px solid rgba(201,169,110,0.2);
      transition: border-color 0.3s, background 0.3s;
    }
    .why-card:hover {
      border-color: var(--gold); background: rgba(201,169,110,0.05);
    }
    .why-icon {
      font-size: 1.8rem; color: var(--gold); margin-bottom: 22px;
    }
    .why-title {
      font-family: var(--serif); font-size: 1.2rem; color: var(--gold-lt);
      margin-bottom: 14px;
    }
    .why-text {
      font-size: 0.85rem; color: rgba(226,201,154,0.65); line-height: 1.9;
    }

    /* ═══════════════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════════════ */
    #process { padding: 120px 0; background: var(--beige); }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px;
      position: relative;
    }
    .process-steps::after {
      content: ''; position: absolute; top: 28px; left: 12%; right: 12%;
      height: 1px; background: var(--tan); z-index: 0;
    }
    .process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--brown); color: var(--gold-lt);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
      margin: 0 auto 24px; border: 3px solid var(--beige);
    }
    .step-name {
      font-family: var(--serif); font-size: 1.05rem; color: var(--brown);
      margin-bottom: 12px;
    }
    .step-text {
      font-size: 0.82rem; color: var(--text-lt); line-height: 1.8;
    }

    /* ═══════════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════════ */
    #testimonials { padding: 120px 0; background: var(--cream); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .testimonial-card {
      background: var(--white); padding: 40px 36px; position: relative;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      border-bottom: 3px solid transparent;
    }
    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(92,61,46,0.1);
      border-bottom-color: var(--gold);
    }
    .quote-mark {
      font-family: var(--serif); font-size: 5rem; color: var(--beige);
      line-height: 0.6; position: absolute; top: 32px; left: 32px;
      user-select: none;
    }
    .testimonial-text {
      font-size: 0.9rem; color: var(--text); line-height: 1.9;
      font-style: italic; margin: 28px 0 28px; position: relative; z-index: 1;
    }
    .testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 20px; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .author-avatar {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--gold-lt);
    }
    .author-name {
      font-weight: 600; font-size: 0.9rem; color: var(--brown);
    }
    .author-loc {
      font-size: 0.73rem; color: var(--text-lt); margin-top: 2px;
    }

    /* ═══════════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════════ */
    #contact { padding: 120px 0; background: var(--white); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }
    .contact-info-item {
      display: flex; gap: 18px; align-items: flex-start; margin-bottom: 32px;
    }
    .contact-icon {
      width: 46px; height: 46px; background: var(--beige); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.05rem; flex-shrink: 0;
    }
    .contact-detail-label {
      font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em;
      color: var(--text-lt); margin-bottom: 4px;
    }
    .contact-detail-value {
      font-size: 0.95rem; color: var(--brown); font-weight: 500;
    }
    .contact-map {
      margin-top: 36px; border-radius: 2px; overflow: hidden;
      box-shadow: 0 8px 30px rgba(92,61,46,0.1);
    }
    .contact-map iframe {
      width: 100%; height: 220px; border: none; display: block;
      filter: sepia(30%) contrast(1.05);
    }
    .contact-form { }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-lt); margin-bottom: 8px; font-weight: 500;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 14px 18px; border: 1px solid var(--tan);
      background: var(--cream); font-family: var(--sans); font-size: 0.88rem;
      color: var(--text); outline: none; transition: border-color 0.3s;
      resize: none;
    }
    .form-group select {
      appearance: none; -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 18px center;
      padding-right: 44px; cursor: pointer;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group textarea { height: 130px; }
    .form-submit {
      background: var(--brown); color: var(--gold-lt); border: none;
      padding: 16px 44px; font-family: var(--sans); font-size: 0.8rem;
      letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
      width: 100%; transition: all 0.3s var(--ease); font-weight: 500;
    }
    .form-submit:hover { background: var(--gold); color: var(--white); }
    .form-note {
      font-size: 0.72rem; color: var(--text-lt); text-align: center; margin-top: 14px;
    }
    .success-msg {
      display: none; background: rgba(92,61,46,0.08); border: 1px solid var(--gold);
      padding: 18px; text-align: center; color: var(--brown); font-size: 0.88rem;
      margin-top: 16px;
    }

    /* ═══════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════ */
    #footer {
      background: var(--brown); padding: 80px 0 0;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px;
      padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand-name {
      font-family: var(--serif); font-size: 1.6rem; color: var(--gold);
      letter-spacing: 0.06em; margin-bottom: 8px;
    }
    .footer-brand-tag {
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(201,169,110,0.5); margin-bottom: 20px;
    }
    .footer-brand-desc {
      font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.9;
      max-width: 280px;
    }
    .footer-socials {
      display: flex; gap: 12px; margin-top: 28px;
    }
    .footer-social {
      width: 38px; height: 38px; border: 1px solid rgba(201,169,110,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-lt); font-size: 0.85rem;
      transition: all 0.3s; cursor: pointer;
    }
    .footer-social:hover {
      background: var(--gold); border-color: var(--gold); color: var(--white);
    }
    .footer-col-title {
      font-family: var(--serif); font-size: 1rem; color: var(--gold-lt);
      margin-bottom: 24px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 0.82rem; color: rgba(255,255,255,0.4);
      transition: color 0.3s; display: flex; align-items: center; gap: 8px;
    }
    .footer-links a:hover { color: var(--gold-lt); }
    .footer-links a::before {
      content: '—'; font-size: 0.6rem; color: var(--gold); opacity: 0.5;
    }
    .footer-contact-item {
      display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
    }
    .footer-contact-item i {
      color: var(--gold); margin-top: 2px; font-size: 0.8rem; flex-shrink: 0;
    }
    .footer-contact-item span {
      font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.7;
    }
    .footer-bottom {
      padding: 24px 0; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 0.73rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em;
    }
    .footer-copy span { color: var(--gold); }
    .footer-policy {
      display: flex; gap: 24px;
    }
    .footer-policy a {
      font-size: 0.73rem; color: rgba(255,255,255,0.25); transition: color 0.3s;
    }
    .footer-policy a:hover { color: var(--gold-lt); }

    /* ═══════════════════════════════════════════════════
       WHATSAPP BUTTON
    ═══════════════════════════════════════════════════ */
    .whatsapp-btn {
      position: fixed; bottom: 32px; right: 32px; z-index: 2000;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366; color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4);
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
      animation: waPulse 2s ease infinite;
    }
    .whatsapp-btn:hover {
      transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5);
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 50px rgba(37,211,102,0.6); }
    }
    .whatsapp-tooltip {
      position: absolute; right: 68px; background: var(--black);
      color: var(--white); padding: 8px 14px; font-size: 0.75rem;
      border-radius: 4px; white-space: nowrap; opacity: 0;
      transition: opacity 0.3s; pointer-events: none;
    }
    .whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

    /* ═══════════════════════════════════════════════════
       TEAM
    ═══════════════════════════════════════════════════ */
    #team {
      padding: 140px 0; position: relative; overflow: hidden;
      background: var(--brown);
    }
    #team::before {
      content: 'TEAM'; position: absolute; left: -30px; top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      font-family: var(--serif); font-size: 10rem; font-weight: 700;
      color: rgba(201,169,110,0.03); pointer-events: none; letter-spacing: 0.15em;
    }
    #team .section-title { color: var(--gold-lt); }
    #team .section-tag { color: var(--gold); }
    #team .section-divider { background: var(--gold); }
    #team .section-subtitle { color: rgba(226,201,154,0.55); }
    .team-grid {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 40px;
      max-width: 1100px; margin-left: auto; margin-right: auto;
    }
    .team-card {
      position: relative; cursor: default;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(201,169,110,0.1);
      border-radius: 6px; overflow: hidden;
      padding: 40px 30px; display: flex; flex-direction: column;
      flex: 1 1 300px; max-width: 320px;
      transition: all 0.5s var(--ease);
    }
    .team-card:hover {
      background: rgba(255,255,255,0.04);
      border-color: rgba(201,169,110,0.3);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    /* Accent Line */
    .team-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 0; height: 3px; background: var(--gold);
      transition: width 0.6s var(--ease); z-index: 5;
    }
    .team-card:hover::before { width: 100%; }
    
    /* Watermark Monogram */
    .team-watermark {
      position: absolute; right: -10px; bottom: -20px;
      font-family: var(--serif); font-size: 8rem; font-weight: 700;
      color: rgba(201,169,110,0.03);
      line-height: 1; pointer-events: none; z-index: 0;
      transition: color 0.5s var(--ease), transform 0.5s var(--ease);
    }
    .team-card:hover .team-watermark {
      color: rgba(201,169,110,0.08);
      transform: scale(1.05);
    }

    /* Content */
    .team-info { position: relative; z-index: 2; flex-grow: 1; text-align: left; }
    .team-role {
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px; font-weight: 600;
    }
    .team-name {
      font-family: var(--serif); font-size: 1.6rem; color: var(--gold-lt);
      margin-bottom: 20px; font-weight: 400;
      transition: color 0.4s var(--ease);
    }
    .team-card:hover .team-name { color: var(--white); }
    .team-bio {
      font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5);
      margin-bottom: 30px;
    }
    .team-socials { display: flex; gap: 15px; }
    .team-social {
      color: rgba(201,169,110,0.5); font-size: 1.2rem;
      transition: color 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .team-social:hover {
      color: var(--gold); transform: translateY(-3px);
    }

    /* ═══════════════════════════════════════════════════
       BACK TO TOP
    ═══════════════════════════════════════════════════ */
    #backTop {
      position: fixed; bottom: 32px; left: 32px; z-index: 2000;
      width: 46px; height: 46px; background: var(--brown); color: var(--gold-lt);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; cursor: pointer;
      opacity: 0; transform: translateY(20px);
      transition: all 0.3s var(--ease);
    }
    #backTop.visible { opacity: 1; transform: none; }
    #backTop:hover { background: var(--gold); color: var(--white); }

    /* ═══════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .portfolio-item:nth-child(n) { grid-column: span 6; height: 240px; }
      /* Flexbox automatically handles wrapping on this breakpoint */
      .team-card:nth-child(even) { transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      #hero {
        grid-template-columns: 1fr; min-height: 100vh;
        background: linear-gradient(rgba(250,246,241,0.88), rgba(250,246,241,0.92)),
                    url('images/hero-main.jpg') center/cover no-repeat;
      }
      .hero-right { display: none; }
      .hero-left { padding: 100px 24px 60px; }
      .hero-badge { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-img-accent { display: none; }
      .about-since { display: none; }
      .about-img-main { height: 360px; }
      .services-grid { grid-template-columns: 1fr; }
      .portfolio-item:nth-child(n) { grid-column: span 12; height: 220px; }
      .why-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-steps::after { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .team-grid { gap: 20px; }
      .team-card:nth-child(even) { transform: translateY(0); }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .about-stats { grid-template-columns: repeat(3, 1fr); }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .about-stats { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; gap: 12px; align-items: flex-start; }
      /* Flexbox handles 1fr wrapping */
    }
