/* ====== BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #f9f7f4; color: #1a1a1a;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  line-height: 1.6; font-weight: 400;
  text-rendering: optimizeLegibility;
}

/* ====== NAV ====== */
nav {
  position: sticky; top: 0; width: 100%; z-index: 100;
  background: #fff; display: flex; align-items: center;
  justify-content: space-between; padding: 0 3rem; height: 92px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; color: #0a3a5c; text-transform: uppercase; }
.logo a { text-decoration: none; }
.logo img { height: 70px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 2.8rem; }
nav ul a { color: #0d0d0d; text-decoration: none; font-size: 0.92rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: #0C4DCD; }
.nav-cta { background: #0C4DCD; color: #fff; padding: 0.5rem 1.5rem; font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; font-weight: 700; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #0a3fb5; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: #2a2a2a; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; top: 92px; left: 0; right: 0; background: #fff; padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.mob-menu.open { display: flex; }
.mob-menu a { color: #0d0d0d; text-decoration: none; font-size: 0.98rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mob-menu a:last-child { color: #0C4DCD; border-bottom: none; }

/* ====== HERO ====== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  height: calc(96vh - 92px);
  margin-top: 0;
}
.hero-img {
  background: #0C4DCD; position: relative;
  display: grid; grid-template-rows: 1fr 1fr; gap: 3px;
  padding: 0; overflow: hidden;
}
.hero-img-item {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-img-item:first-child {
  border-bottom-right-radius: 25px;
}
.hero-img-item:last-child {
  border-top-right-radius: 25px;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-text { 
  background: #fff; 
  /* Simplified background pattern for better mobile performance */
  background-image: 
    radial-gradient(circle at 25% 35%, transparent 0%, transparent 42%, rgba(45,134,89,0.03) 42%, rgba(45,134,89,0.03) 43%, transparent 43%),
    radial-gradient(circle at 70% 60%, transparent 0%, transparent 40%, rgba(45,134,89,0.03) 40%, rgba(45,134,89,0.03) 41%, transparent 41%);
  background-size: 800px 800px;
  background-position: center;
  display: flex; align-items: center; justify-content: center; padding: 0 3.5rem 3rem; 
}
.hero-text-inner { max-width: 540px; padding-top: 0; text-align: center; }
.hero-logo { height: 220px; width: auto; display: block; margin: 0 auto 1.5rem; }
.eyebrow { font-size: 0.88rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #0C4DCD; margin-bottom: 1.4rem; margin-top: 0; display: block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; line-height: 1.2; color: #1a2e23; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: #2d8659; font-weight: 500; }
.hero p { font-family: 'Lato', sans-serif; font-size: 1.15rem; font-weight: 400; color: #3a3a3a; line-height: 1.85; margin-bottom: 2.8rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-p { background: #0C4DCD; color: #fff; padding: 1rem 2.2rem; font-weight: 700; font-size: 0.92rem; letter-spacing: 1.8px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s; border: none; cursor: pointer; }
.btn-p:hover { background: #0a3fb5; }
.btn-o { background: transparent; color: #2d8659; padding: 1rem 2.2rem; font-size: 0.92rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; text-decoration: none; display: inline-block; border: 2px solid #2d8659; cursor: pointer; transition: all 0.2s; }
.btn-o:hover { background: #2d8659; color: #fff; }

/* ====== PAGE HEADER ====== */
.page-header { background: linear-gradient(135deg, #e8f4f8 0%, #f9f7f4 100%); padding: 5rem 2rem 3rem; text-align: center; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; color: #1a2e23; margin-bottom: 1rem; }
.page-header p { font-family: 'Lato', sans-serif; font-size: 1.15rem; color: #3a3a3a; max-width: 700px; margin: 0 auto; }

/* ====== ABOUT STRIP ====== */
.about-strip { background: #e8f4f8; padding: 5.5rem 2rem; text-align: center; }
.about-strip-inner { max-width: 820px; margin: 0 auto; }
.sec-label { font-size: 0.88rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #0C4DCD; display: block; text-align: center; margin-bottom: 1rem; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; text-align: center; }
.about-strip .sec-title { color: #1a2e23; margin-bottom: 1.8rem; }
.about-strip p { font-family: 'Lato', sans-serif; font-size: 1.15rem; font-weight: 400; color: #2a2a2a; line-height: 1.9; }
.stats { display: flex; justify-content: center; gap: 4.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; color: #0C4DCD; display: block; line-height: 1; }
.stat-label { font-size: 0.88rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #1a1a1a; display: block; margin-top: 0.5rem; }

/* ====== SERVICES ====== */
.services { background: #2d8659; padding: 6.5rem 2rem; }
.services .sec-label { color: rgba(12,77,205,0.85); }
.services .sec-title { color: #f5f0e8; margin-bottom: 3.5rem; }
.svc-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; }
.svc-card { background: rgba(255,255,255,0.05); padding: 2.8rem 2.2rem; border-top: 2px solid #0C4DCD; }
.svc-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: rgba(12,77,205,0.4); display: block; margin-bottom: 1rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: #f5f0e8; margin-bottom: 0.9rem; letter-spacing: 0.5px; }
.svc-card p { font-size: 1rem; font-weight: 400; color: rgba(245,240,232,0.97); line-height: 1.9; }

/* ====== SERVICES DETAILED ====== */
.services-detailed { background: #fff; padding: 6rem 2rem; }
.services-detailed-inner { max-width: 1100px; margin: 0 auto; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reverse { grid-template-columns: 1fr 1fr; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-img { overflow: hidden; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.service-detail-img:hover img { transform: scale(1.05); }
.service-detail-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #1a2e23; margin-bottom: 1rem; }
.service-detail-content p { font-family: 'Lato', sans-serif; font-size: 1.08rem; color: #2a2a2a; font-weight: 400; line-height: 1.85; margin-bottom: 1.5rem; }
.service-list { list-style: none; padding: 0; }
.service-list li { padding: 0.6rem 0 0.6rem 1.8rem; position: relative; color: #0d0d0d; font-size: 1.02rem; font-weight: 500; }
.service-list li:before { content: '✓'; position: absolute; left: 0; color: #0C4DCD; font-weight: 700; }

/* ====== GALLERY ====== */
.gallery { background: #fff; padding: 6.5rem 2rem; }
.gallery .sec-label { color: #0C4DCD; }
.gallery .sec-title { color: #1a2e23; }
.project-section { max-width: 1100px; margin: 0 auto 4rem; }
.project-section:last-child { margin-bottom: 0; }
.project-header { padding: 1.5rem 0 1.2rem; border-bottom: 2px solid #e8f4f8; margin-bottom: 1.5rem; }
.project-header h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: #1a2e23; margin-bottom: 0.6rem; }
.project-header p { font-family: 'Lato', sans-serif; font-size: 1rem; color: #3a3a3a; font-weight: 400; line-height: 1.75; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 1.5rem; }
.gi { height: 260px; background: #d8e8dd; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: #6a8a78; border: 1px dashed #a8c4b2; cursor: pointer; overflow: hidden; }
.gi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; will-change: transform; }
.gi:hover img { transform: scale(1.05); }
.gi.hidden { display: none; }
.load-more-btn { background: #0C4DCD; color: #fff; padding: 1rem 2.5rem; font-family: 'Lato', sans-serif; font-size: 0.92rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; margin: 0 auto; display: block; transition: background 0.2s; }
.load-more-btn:hover { background: #0a3fb5; }
.load-more-btn.hidden { display: none; }

/* ====== LIGHTBOX ====== */
.lb { display: none; position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; display: block; box-shadow: 0 8px 60px rgba(0,0,0,0.6); }
.lb-close { position: fixed; top: 1.2rem; right: 1.5rem; font-size: 2.2rem; color: #fff; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: #fff; cursor: pointer; background: none; border: none; opacity: 0.6; transition: opacity 0.2s; padding: 0.5rem; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 2px; }

/* ====== TESTIMONIAL CAROUSEL ====== */
.testi { background: #0a3a5c; padding: 6.5rem 2rem; overflow: hidden; }
.testi-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.testi-inner .sec-label { color: rgba(12,77,205,0.85); }
.testi-inner .sec-title { color: #f5f0e8; margin-bottom: 1.8rem; }
.testi-stars { font-size: 1.3rem; color: #0C4DCD; letter-spacing: 5px; margin-bottom: 2.5rem; }
.carousel-container { position: relative; max-width: 800px; margin: 0 auto; }
.carousel-wrapper { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; box-sizing: border-box; }
.testi-quote { background: rgba(255,255,255,0.05); border-top: 3px solid #0C4DCD; padding: 3rem 2.5rem; border-radius: 8px; }
.testi-quote p { font-family: 'Lato', sans-serif; font-size: clamp(1.05rem, 2.2vw, 1.18rem); font-style: italic; font-weight: 400; color: rgba(245,240,232,0.97); line-height: 1.85; margin-bottom: 1.8rem; min-height: 120px; }
.testi-cite { font-size: 0.88rem; letter-spacing: 2.5px; text-transform: uppercase; color: #0C4DCD; font-weight: 700; display: block; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(12,77,205,0.15); color: #0C4DCD; border: 2px solid #0C4DCD; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; transition: all 0.3s; z-index: 10; }
.carousel-arrow:hover { background: #0C4DCD; color: #fff; }
.carousel-arrow-left { left: -60px; }
.carousel-arrow-right { right: -60px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2.5rem; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(12,77,205,0.3); cursor: pointer; transition: all 0.3s; }
.carousel-dot.active { background: #0C4DCD; width: 30px; border-radius: 5px; }

/* ====== CTA STRIP ====== */
.cta-strip { background: #e8f4f8; padding: 5rem 2rem; text-align: center; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; color: #1a2e23; margin-bottom: 1.2rem; }
.cta-strip h2 em { font-style: italic; color: #0C4DCD; font-weight: 500; }
.cta-strip p { color: #2a2a2a; max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; font-weight: 400; line-height: 1.85; }

/* ====== CTA / CONTACT ====== */
.cta-s { background: #e8f4f8; padding: 6.5rem 2rem; text-align: center; }
.cta-s h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; color: #1a2e23; margin-bottom: 1.2rem; }
.cta-s h2 em { font-style: italic; color: #0C4DCD; font-weight: 500; }
.cta-s > p { color: #2a2a2a; max-width: 520px; margin: 0 auto 3rem; font-size: 1.08rem; font-weight: 400; line-height: 1.85; }

/* ====== CONTACT METHODS ====== */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto 4rem; }
.contact-method { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); text-align: center; }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-method h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #1a2e23; margin-bottom: 0.8rem; }
.contact-method a { color: #0C4DCD; text-decoration: none; font-size: 1.02rem; font-weight: 600; transition: opacity 0.2s; }
.contact-method a:hover { opacity: 0.8; }
.contact-method p { color: #1a1a1a; font-size: 1.02rem; font-weight: 500; line-height: 1.6; }

/* ====== FORM ====== */
.form-wrap { max-width: 600px; margin: 0 auto; background: #fff; padding: 3rem; border-top: 3px solid #0C4DCD; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.4rem; }
.ff label { display: block; font-size: 0.85rem; letter-spacing: 2.5px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 0.6rem; font-weight: 700; }
.fi { background: #faf8f4; border: 1px solid #e0dbd3; color: #0d0d0d; font-family: 'Lato', sans-serif; font-size: 1.02rem; font-weight: 500; padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s; width: 100%; }
.fi:focus { border-color: #0C4DCD; }
.fi::placeholder { color: #bbb; }
.form-full { margin-bottom: 1.2rem; }
.fta { min-height: 100px; resize: vertical; }
.btn-sub { background: #0C4DCD; color: #fff; padding: 1rem; font-family: 'Lato', sans-serif; font-size: 0.98rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; width: 100%; margin-top: 0.8rem; transition: background 0.2s; }
.btn-sub:hover { background: #0a3fb5; }

/* ====== FOOTER ====== */
footer { background: #fff; padding: 2.5rem 3rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; border-top: 1px solid #e0e0e0; }
.ft-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #0a3a5c; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.ft-logo img { height: 90px; width: auto; display: block; }
.ft-links { display: flex; gap: 2.5rem; }
.ft-links a { color: #1a1a1a; font-size: 0.9rem; letter-spacing: 1.8px; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.ft-links a:hover { color: #0C4DCD; }
.ft-copy { color: #666; font-size: 0.85rem; font-weight: 500; }
.ft-copy span { color: #0C4DCD; font-weight: 600; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; height: 85px; }
  .logo img { height: 85px; }
  .hero { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .hero-img { height: 380px; grid-template-rows: 1fr 1fr; }
  .hero-text { padding: 4rem 2.5rem; align-items: center; text-align: center; }
  .hero-text-inner { max-width: 100%; }
  .hero-logo { height: 170px; margin-bottom: 2rem; }
  .hero-btns { justify-content: center; gap: 1.2rem; }
  .btn-p, .btn-o { padding: 1rem 2rem; }
  .about-strip { padding: 4.5rem 2rem; }
  .stats { gap: 3.5rem; }
  .services { padding: 5.5rem 2rem; }
  .svc-grid { gap: 1.8rem; }
  .services-detailed { padding: 5rem 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 5rem; }
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-img { order: 1; }
  .service-detail.reverse .service-detail-content { order: 2; }
  .gallery { padding: 5rem 2rem; }
  .project-section { margin-bottom: 3.5rem; }
  .project-grid { gap: 10px; }
  .gi { height: 240px; }
  .testi { padding: 5.5rem 2rem; }
  .carousel-arrow { width: 45px; height: 45px; }
  .carousel-arrow-left { left: -20px; }
  .carousel-arrow-right { right: -20px; }
  .cta-s { padding: 5rem 2rem; }
  .cta-strip { padding: 4.5rem 2rem; }
  .page-header { padding: 4rem 2rem 2.5rem; }
  .contact-methods { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .form-wrap { padding: 2.8rem 2.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.2rem; }
  footer { padding: 2.5rem 2rem; gap: 2rem; }
  .ft-links { gap: 2rem; }
  section[id], div[id] { scroll-margin-top: 84px; }
}

@media (max-width: 768px) {
  nav ul, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 1.5rem; height: 90px; }
  .logo img { height: 90px !important; }
  .mob-menu { top: 90px; padding: 1.5rem 1.5rem; }
  .mob-menu a { font-size: 0.92rem; padding: 0.65rem 0; }
  .hero-img { height: 340px; grid-template-rows: 1fr 1fr; gap: 0; }
  .hero-img-item:first-child { border-bottom-right-radius: 0; }
  .hero-img-item:last-child { border-top-right-radius: 0; }
  .hero-text { padding: 3.5rem 1.8rem; }
  .hero-logo { height: 280px; margin-bottom: 1.8rem; }
  .eyebrow { font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1.2rem; }
  .hero p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 2.2rem; }
  .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
  .btn-p, .btn-o { width: 100%; text-align: center; padding: 1.1rem 1.5rem; font-size: 0.9rem; }
  .about-strip { padding: 4rem 1.8rem; }
  .about-strip p { font-size: 1.15rem; }
  .stats { gap: 3rem; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 0 0 auto; min-width: 140px; }
  .stat-num { font-size: 2.8rem; }
  .stat-label { font-size: 0.78rem; letter-spacing: 2px; }
  .services { padding: 4.5rem 1.8rem; }
  .svc-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-card { padding: 2.5rem 2rem; }
  .svc-card h3 { font-size: 1.18rem; }
  .svc-card p { font-size: 0.98rem; }
  .services-detailed { padding: 4.5rem 1.8rem; }
  .service-detail { gap: 2rem; margin-bottom: 4rem; }
  .gallery { padding: 4.5rem 1.8rem; }
  .project-section { margin-bottom: 3rem; }
  .project-header { padding: 1.2rem 0 1rem; margin-bottom: 1.2rem; }
  .project-header h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
  .project-header p { font-size: 1rem; line-height: 1.7; }
  .project-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gi { height: 180px; }
  .load-more-btn { padding: 0.95rem 2rem; font-size: 0.88rem; }
  .testi { padding: 4.5rem 1.8rem; }
  .testi-quote { padding: 2.5rem 2rem; }
  .testi-quote p { font-size: 1.08rem; min-height: auto; line-height: 1.8; }
  .testi-cite { font-size: 0.78rem; }
  .carousel-arrow-left { left: -8px; }
  .carousel-arrow-right { right: -8px; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.25rem; }
  .cta-s { padding: 4.5rem 1.8rem; }
  .cta-s h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .cta-s > p { font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.8; }
  .contact-methods { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-method { padding: 2.2rem 1.8rem; }
  .form-wrap { padding: 2.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
  .ff label { font-size: 0.78rem; letter-spacing: 2.2px; }
  .fi { font-size: 1rem; padding: 0.85rem 1rem; }
  .fta { min-height: 100px; }
  .btn-sub { padding: 1rem; font-size: 0.9rem; letter-spacing: 2.2px; }
  footer { flex-direction: column; text-align: center; padding: 2.5rem 1.8rem; }
  .ft-logo img { height: 120px; }
  .ft-links { justify-content: center; gap: 2rem; flex-wrap: wrap; }
  .ft-links a { font-size: 0.82rem; }
  .ft-copy { font-size: 0.8rem; margin-top: 0.8rem; }
  .lb-img { max-width: 94vw; max-height: 80vh; }
  .lb-prev { left: 0.3rem; }
  .lb-next { right: 0.3rem; }
  .lb-prev, .lb-next { font-size: 2.2rem; }
  .page-header { padding: 4rem 1.8rem 2.5rem; }
  section[id], div[id] { scroll-margin-top: 110px; }
}

@media (max-width: 480px) {
  nav { height: 85px; padding: 0 1.2rem; }
  .logo img { height: 85px !important; }
  .mob-menu { top: 85px; padding: 1.2rem 1.2rem; gap: 0.8rem; }
  .mob-menu a { font-size: 0.9rem; padding: 0.7rem 0; }
  .hero-img { height: 300px; gap: 0; }
  .hero-text { padding: 3rem 1.5rem; }
  .hero-logo { height: 260px; margin-bottom: 1.5rem; }
  .eyebrow { font-size: 0.73rem; letter-spacing: 2.8px; margin-bottom: 1.2rem; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.5rem); line-height: 1.3; margin-bottom: 1.5rem; }
  .hero p { font-size: 1.05rem; margin-bottom: 2.2rem; line-height: 1.7; }
  .btn-p, .btn-o { padding: 1rem 1.5rem; font-size: 0.85rem; letter-spacing: 1.8px; }
  .about-strip { padding: 3.5rem 1.5rem; }
  .sec-label { font-size: 0.75rem; letter-spacing: 3px; }
  .sec-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .about-strip p { font-size: 1.08rem; line-height: 1.8; }
  .stats { flex-direction: column; gap: 2.5rem; }
  .stat-item { min-width: auto; }
  .stat-num { font-size: 2.5rem; }
  .stat-label { font-size: 0.75rem; }
  .services { padding: 4rem 1.5rem; }
  .svc-card { padding: 2.5rem 1.8rem; }
  .svc-num { font-size: 2.2rem; }
  .svc-card h3 { font-size: 1.15rem; }
  .svc-card p { font-size: 0.95rem; line-height: 1.8; }
  .services-detailed { padding: 4rem 1.5rem; }
  .service-detail { margin-bottom: 3.5rem; }
  .gallery { padding: 4rem 1.5rem; }
  .project-section { margin-bottom: 2.8rem; }
  .project-header { padding: 1rem 0 0.9rem; margin-bottom: 1rem; border-bottom-width: 1px; }
  .project-header h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .project-header p { font-size: 0.95rem; line-height: 1.7; }
  .project-grid { grid-template-columns: 1fr; gap: 10px; }
  .gi { height: 220px; }
  .load-more-btn { padding: 0.9rem 2rem; font-size: 0.82rem; letter-spacing: 1.8px; }
  .testi { padding: 4rem 1.5rem; }
  .testi-quote { padding: 2.2rem 1.8rem; }
  .testi-quote p { font-size: 1.05rem; line-height: 1.75; }
  .testi-cite { font-size: 0.73rem; letter-spacing: 3px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.1rem; border-width: 1px; }
  .carousel-arrow-left { left: -5px; }
  .carousel-arrow-right { right: -5px; }
  .cta-s { padding: 4rem 1.5rem; }
  .cta-s h2 { font-size: clamp(1.5rem, 8vw, 2rem); margin-bottom: 1rem; }
  .cta-s > p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 2.2rem; }
  .contact-method { padding: 2rem 1.5rem; }
  .contact-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .contact-method h3 { font-size: 1.1rem; }
  .contact-method a, .contact-method p { font-size: 0.98rem; }
  .form-wrap { padding: 2.2rem 1.5rem; }
  .ff label { font-size: 0.73rem; margin-bottom: 0.5rem; letter-spacing: 2.2px; }
  .fi { font-size: 0.95rem; padding: 0.8rem 0.9rem; }
  .fta { min-height: 110px; }
  .btn-sub { font-size: 0.88rem; letter-spacing: 2px; padding: 1rem; }
  footer { padding: 2.2rem 1.5rem; }
  .ft-logo img { height: 110px; }
  .ft-links { gap: 1.8rem; }
  .ft-links a { font-size: 0.78rem; letter-spacing: 1.6px; }
  .ft-copy { font-size: 0.78rem; }
  .lb-img { max-width: 95vw; max-height: 82vh; }
  .lb-prev, .lb-next { font-size: 2rem; padding: 0.3rem; }
  .lb-close { font-size: 2rem; top: 1rem; right: 1rem; }
  .page-header { padding: 3.5rem 1.5rem 2rem; }
  section[id], div[id] { scroll-margin-top: 85px; }
}

/* ====== SCROLL OFFSET (sticky nav compensation) ====== */
section[id], div[id] { scroll-margin-top: 96px; }