 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  .custom-home{
    --navy: #1a1f2e;
    --navy-light: #252c3d;
    --gold: #b8965a;
    --gold-light: #d4af7a;
    --gold-pale: #f0e4cc;
    --cream: #faf7f2;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e8e2d9;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', sans-serif;
  }
  html { scroll-behavior: smooth; }
  .custom-home { font-family: var(--font-sans); color: var(--navy); background: var(--cream); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
 /* nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(8px);
    padding: 0 6vw; display: flex; align-items: center; justify-content: space-between;
    height: 100px; border-bottom: 3px solid #3b2314;
  }
  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo-img { height: 88px; width: auto; }
  .nav-phone { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; }
  .nav-cta { background: var(--gold); color: var(--white); font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 10px 22px; border-radius: 2px; transition: background 0.25s; }
  .nav-cta:hover { background: var(--gold-light); }
  @media (max-width: 600px) { .nav-cta { display: none; } }
*/

  /* HERO */
  .hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; justify-content: space-between; padding-top: 100px; overflow: hidden; }
  .hero-bg-slideshow { position: absolute; inset: 0; z-index: 0; }
  .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(26,31,46,0.88) 0%, rgba(26,31,46,0.75) 50%, rgba(26,31,46,0.45) 100%), linear-gradient(to top, rgba(26,31,46,0.6) 0%, transparent 40%); }
  .hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw; max-width: 680px; }
  .hero-quote-card { position: relative; z-index: 2; flex-shrink: 0; width: 370px; margin-right: 15vw; padding: 32px 30px; background: rgba(252,250,245,0.97); border-top: 3px solid var(--gold); border-radius: 3px; box-shadow: 0 28px 60px rgba(0,0,0,0.4); }
  .hqc-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
  .hqc-sub { font-size: 0.78rem; color: var(--gray); font-weight: 300; line-height: 1.5; margin-bottom: 20px; }
  .hqc-note { font-size: 0.68rem; color: var(--gray); text-align: center; margin-top: 10px; font-weight: 300; }
  .hero-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
  .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
  .hero-headline { font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 500; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
  .hero-headline em { font-style: italic; color: var(--gold-light); }
  .hero-sub { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 480px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .custom-home .btn-primary { background: var(--gold); color: var(--navy); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 16px 34px; border-radius: 2px; transition: background 0.25s, transform 0.2s; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
 .custom-home .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
 .custom-home .btn-ghost { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(184,150,90,0.4); padding-bottom: 2px; transition: color 0.25s; }
 .custom-home .btn-ghost:hover { color: var(--gold-light); }
  .hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-number { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--gold-light); line-height: 1; }
  .stat-label { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }

  /* HERO SLIDESHOW */
  .hero-visual { position: relative; overflow: hidden; }
  .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
  .hero-slide.active { opacity: 1; }
  .slide-label { position: absolute; bottom: 20px; left: 20px; z-index: 5; background: rgba(26,31,46,0.85); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); padding: 6px 12px; border-radius: 2px; backdrop-filter: blur(4px); }
  .slide-dots { position: absolute; bottom: 20px; right: 20px; z-index: 5; display: flex; gap: 6px; }
  .slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; }
  .slide-dot.active { background: var(--gold); transform: scale(1.3); }

  /* TRUST BAR */
  .trust-bar { background: var(--gold); padding: 16px 7vw; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
  .trust-sep { width: 1px; height: 18px; background: rgba(26,31,46,0.25); }

  /* SECTIONS */
  .section { padding: 90px 7vw; }
  .section-alt { background: var(--white); }
  .section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .section-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc { font-size: 0.92rem; font-weight: 300; color: var(--gray); max-width: 560px; line-height: 1.7; margin-bottom: 32px; }

  /* SERVICE CARDS */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 3px; }
  .service-card { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
  .service-slideshow { position: relative; height: 220px; overflow: hidden; }
  .service-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
  .service-slide.active { opacity: 1; }
  .service-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,31,46,0.7) 0%, transparent 60%); }
  .service-nav { position: absolute; bottom: 10px; right: 10px; z-index: 3; display: flex; gap: 5px; }
  .service-nav button { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.3s; }
  .service-nav button.active { background: var(--gold); }
  .service-body { padding: 20px 24px 22px; position: relative; }
  .service-body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
  .service-card:hover .service-body::before { transform: scaleX(1); }
  .service-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 6px; }
  .service-desc { font-size: 0.83rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 14px; }
  .service-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: gap 0.2s; }
  .service-cta:hover { gap: 14px; }

  /* PROJECT GALLERY STRIP */
  .gallery-section { padding: 0 0 90px; background: var(--cream); }
  .reviews-cta { text-align: center; padding: 44px 0 80px; background: var(--cream); }
  .gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; background: var(--navy); }
  .gallery-item { position: relative; overflow: hidden; aspect-ratio: 1 / 1; cursor: pointer; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(26,31,46,0.85) 0%, transparent 100%); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); opacity: 0; transition: opacity 0.3s; }
  .gallery-item:hover .gallery-caption { opacity: 1; }
  .gallery-item.tall { grid-row: span 2; height: 100%; }

  /* BEFORE/AFTER SECTION */
  .ba-section { padding: 90px 7vw; background: var(--navy); }
  .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
  .ba-card { position: relative; overflow: hidden; }
  .ba-split { display: grid; grid-template-columns: 1fr 1fr; height: 320px; gap: 2px; }
  .ba-panel { position: relative; overflow: hidden; }
  .ba-panel img { width: 100%; height: 100%; object-fit: cover; }
  .ba-label { position: absolute; top: 14px; left: 14px; background: rgba(26,31,46,0.85); color: var(--gold-light); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
  .ba-label.after { background: var(--gold); color: var(--navy); }
  .ba-info { background: var(--navy-light); padding: 22px 26px; border-top: 2px solid var(--gold); }
  .ba-project { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--white); margin-bottom: 4px; }
  .ba-location { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }

  /* WHY */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-image-stack { position: relative; height: 520px; }
  .why-img-back { position: absolute; top: 0; left: 0; width: 78%; height: 85%; overflow: hidden; border-radius: 2px; background-size: cover; background-position: center; }
  .why-img-front { position: absolute; bottom: 0; right: 0; width: 52%; height: 58%; overflow: hidden; border-radius: 2px; border: 4px solid var(--cream); background-size: cover; background-position: center; }
  .rating-badge { position: absolute; top: 36px; right: 16px; background: var(--gold); padding: 14px 18px; border-radius: 2px; text-align: center; z-index: 5; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .rating-badge .stars { font-size: 0.85rem; letter-spacing: 2px; color: var(--navy); }
  .rating-badge .rating-num { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; color: var(--navy); line-height: 1; margin: 3px 0; }
  .rating-badge .rating-text { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,31,46,0.7); }
  .why-points { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
  .why-point { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--gray-light); }
  .why-point:last-child { border-bottom: none; }
  .why-point-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; flex-shrink: 0; width: 32px; }
  .why-point-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
  .why-point-desc { font-size: 0.83rem; font-weight: 300; color: var(--gray); line-height: 1.7; }

  /* TESTIMONIALS */
  .testimonials-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
  .testimonial { background: var(--white); padding: 36px 32px; position: relative; }
  .testimonial-quote { font-family: var(--font-serif); font-size: 3rem; line-height: 1; color: var(--gold-pale); position: absolute; top: 16px; right: 24px; }
  .testimonial-text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; line-height: 1.65; color: var(--navy); margin-bottom: 20px; }
  .author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
  .author-name { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
  .author-stars { font-size: 0.68rem; color: var(--gold); }
  .testimonial-author { display: flex; align-items: center; gap: 10px; }

  /* PROCESS */
  .process-row { display: flex; }
  .process-step { flex: 1; padding: 28px 28px; border-right: 1px solid var(--gray-light); }
  .process-step:last-child { border-right: none; }
  .step-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 12px; }
  .step-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
  .step-desc { font-size: 0.82rem; font-weight: 300; color: var(--gray); line-height: 1.7; }

  /* CTA SECTION */
  .cta-section { background: var(--navy); padding: 90px 7vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
  .cta-title em { font-style: italic; color: var(--gold-light); }
  .cta-desc { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
  .cta-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
  .cta-check { display: flex; gap: 12px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 300; }
  .check-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

  /* FORM */
  .cta-form { background: var(--cream); padding: 44px 40px; border-radius: 2px; }
  .form-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
  .form-sub { font-size: 0.78rem; color: var(--gray); font-weight: 300; margin-bottom: 24px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--white); border: 1px solid var(--gray-light); border-radius: 2px; padding: 11px 14px; font-family: var(--font-sans); font-size: 0.87rem; color: var(--navy); outline: none; transition: border-color 0.2s; appearance: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
  .form-group textarea { resize: vertical; min-height: 72px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-submit { width: 100%; background: var(--gold); color: var(--navy); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 17px; border: none; border-radius: 2px; cursor: pointer; margin-top: 6px; transition: background 0.25s; }
  .form-submit:hover { background: var(--gold-light); }
  .form-note { font-size: 0.68rem; color: var(--gray); text-align: center; margin-top: 10px; font-weight: 300; }

  /* INFO BAR */
  .info-bar { background: var(--navy-light); padding: 36px 7vw; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(184,150,90,0.15); }
  .info-item { padding: 20px 28px; display: flex; align-items: flex-start; gap: 16px; }
  .info-icon { width: 40px; height: 40px; background: rgba(184,150,90,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; }
  .info-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
  .info-value { font-size: 0.88rem; color: var(--white); line-height: 1.5; }
  .info-value a { color: var(--gold-light); text-decoration: none; }

  /* FOOTER */
  footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 7vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 300; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; font-weight: 400; }
  .footer-links a:hover { color: var(--gold-light); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  .anim { opacity: 0; }
  .anim.visible { animation: fadeUp 0.6s ease forwards; }
  .d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; }

  /* RESPONSIVE */
  @media (max-width: 1080px) {
    .hero-quote-card { display: none; }
    .hero { justify-content: flex-start; }
  }
  @media (max-width: 900px) {
    .hero { min-height: auto; padding-top: 116px; }
    .hero-content { padding: 32px 18px 48px; }
    .section, .ba-section, .cta-section { padding: 56px 18px; }
    .gallery-section { padding-bottom: 56px; }
    .reviews-cta { padding: 32px 0 48px; }
    .why-grid, .cta-section { grid-template-columns: 1fr; gap: 40px; }
    .why-image-stack { height: 340px; }
    .testimonials-wrap { grid-template-columns: 1fr; }
    .process-row { flex-direction: column; }
    .process-step { border-right: none; border-bottom: 1px solid var(--gray-light); }
    .process-step:last-child { border-bottom: none; }
    .info-bar { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
  }