        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6d4c41;
            --secondary: #8d6e63;
            --accent: #d4a574;
            --dark: #3e2723;
            --light: #efebe9;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        header {
            position: relative;
            background: linear-gradient(135deg, rgba(109, 76, 65, 0.95) 0%, rgba(141, 110, 99, 0.95) 100%);
            color: var(--white);
            padding: 0;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
            pointer-events: none;
        }

        .top-bar {
            background: rgba(0,0,0,0.2);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-main {
            padding: 2rem 0 3rem;
            position: relative;
            z-index: 1;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .logo-wrapper {
            position: relative;
        }

        .logo {
            width: 90px;
            height: 90px;
            /*filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));*/
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .brand-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .brand-text p {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .header-cta {
            display: flex;
            gap: 1rem;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border: 2px solid var(--white);
            background: transparent;
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-btn.primary {
            background: var(--white);
            color: var(--primary);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .cta-btn.primary:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--white);
        }

        nav {
            background: var(--white);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        nav ul li a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            padding: 1.5rem 2rem;
            display: block;
            position: relative;
            transition: color 0.3s;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: all 0.3s;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a:hover::after {
            width: 100%;
            right: 0;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        section:nth-child(even) {
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: block;
            color: var(--accent);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 2.9rem;
            margin-bottom: 1rem;
        }

        section h2 {
            color: var(--dark);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        #about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
        }

        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--accent);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            aspect-ratio: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(109, 76, 65, 0.9), rgba(212, 165, 116, 0.9));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.4s;
            z-index: 2;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            
        }

        .project-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .project-img {
            width: 100%;
            height: 300px;
            display: block;
            object-fit: cover;
            position: relative;
            overflow: hidden;
        }

        .project-info {
            padding: 2.5rem;
        }

        .project-tag {
            display: inline-block;
            background: var(--light);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .project-info h3 {
            color: var(--dark);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .project-info p {
            color: #666;
            line-height: 1.8;
        }

        #contact {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
        }

        #contact .section-label,
        #contact h2,
        #contact .section-subtitle {
            color: var(--white);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info-section h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: start;
            gap: 1.5rem;
        }

        .contact-icon {
            font-size: 2rem;
            background: rgba(255,255,255,0.2);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .error {
            color: #e53935;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }

        .success {
            background: #4caf50;
            color: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: none;
            font-weight: 600;
        }

        .btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        footer {
            background: var(--dark);
            color: #d7ccc8;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #d7ccc8;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
        }

        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 968px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .brand {
                flex-direction: column;
            }

            .brand-text h1 {
                font-size: 2.5rem;
            }

            .about-grid,
            .contact-wrapper,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            nav ul {
                flex-wrap: wrap;
            }

            nav ul li a {
                padding: 1rem 1.5rem;
            }

            section {
                padding: 4rem 0;
            }

            section h2 {
                font-size: 2.2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .contact-info {
                flex-direction: column;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 1rem;
            }
        }
/* ===== Slider-only Modal (mobile friendly) ===== */
.cw-modal { position: fixed; inset: 0; display: none; z-index: 99999; }
.cw-modal.open { display: block; }

.cw-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); }

/* Fullscreen-ish on phones, centered card on desktop */
.cw-modal-content{
  position: relative;
  width: min(1100px, 96vw);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border-radius: 18px;
  padding: 10px;
}

/* Close button */
.cw-modal-close{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  z-index: 2;
}

/* Slider layout */
.cw-slider{
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 10px;
}

/* Big image container */
.cw-slide{
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  height: min(72vh, 620px);
}

.cw-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full photo visible */
  display: block;
}

/* Nav buttons: large tap targets */
.cw-nav{
  width: 54px; height: 54px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 30px;
  user-select: none;
  touch-action: manipulation;
}

/* Dots */
.cw-dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  padding: 12px 0 6px;
}
.cw-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.cw-dot.active{ background: rgba(255,255,255,.95); }

/* Loader overlay */
.cw-loader{
  position:absolute;
  inset:0;
  display:none;
  place-items:center;
  gap: 10px;
  background: rgba(0,0,0,.35);
  color:#fff;
  text-align:center;
}
.cw-loader.show{ display:grid; }

.cw-spinner{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,1);
  animation: cwspin .8s linear infinite;
}
@keyframes cwspin { to { transform: rotate(360deg); } }

.cw-loading-text{ font-size: 14px; opacity: .95; }

/* Mobile tweaks */
@media (max-width: 640px){
  .cw-modal-content{
    width: 100vw;
    padding: 0;
    border-radius: 0;
  }
  .cw-slider{
    grid-template-columns: 1fr; /* arrows overlay instead */
    gap: 0;
  }
  .cw-slide{
    height: 82vh;
    border-radius: 0;
  }
  .cw-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 18px;
    z-index: 2;
  }
  .cw-nav.prev{ left: 10px; }
  .cw-nav.next{ right: 10px; }
  .cw-modal-close{
    top: 10px;
    left: 10px;
  }
}
/* Smooth swap */
.cw-slide img {
  opacity: 1;
  transition: opacity 160ms ease;
}
.cw-slide img.is-fading {
  opacity: 0.15;
}
.cw-mini-loader{
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,.25),
    rgba(0,0,0,0) 65%
  );
}

.cw-mini-loader.show{
  display: grid;
}
