/* =============== Root / Reset ================== */
:root {
  --container-width: 1200px;
  --container-padding: clamp(1rem, 2.5vw, 2rem);

  --color-text: #1a1a1a;
  --color-muted: #666;
  --color-bg: #ffffff;
  --color-bg-soft: #fbfbfb;
  --color-border: #e8e8e8;
  --color-border-strong: #dddddd;
  --color-brand: #c6d23b;
  --color-brand: #9bc837;
  --color-brand-hover: #88b130;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --section-space: clamp(4rem, 7vw, 6rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}



/* ==============================
   Recent Work / Gallery
   ============================== */

.works-gallery {
  padding: 5rem 1rem;
  background: #fbfbfb;
}

.works-gallery .eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #7d861f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0,0,0,0.14);
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Dark overlay for readable text */
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* Small hover label */
.work-card::after {
  content: "Click to view";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.work-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.work-card:hover::after {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.work-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
}

.work-caption strong,
.work-caption small {
  display: block;
}

.work-caption strong {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.work-caption small {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}


/* ==============================
   Lightbox
   ============================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0,0,0,0.88);
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10000;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
}


/* ==============================
   Responsive
   ============================== */

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    height: 280px;
  }
}





.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.logo-card {
  min-height: 120px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
}

.logo-card img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

section,
header,
footer {
  width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* =============== Typography ================== */
h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

.highlight {
  color: var(--color-brand);
}

.u-center {
  text-align: center;
}

/* =============== Header ================== */
.header-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  overflow-x: clip;
}

.header-nav .container {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-nav a:first-child {
  flex-shrink: 1;
}

.header-nav h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 300px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-brand);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* =============== Buttons ================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--color-brand);
  color: #000;
}

.button-primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-1px);
}

.button-outline {
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  background: #fff;
}

.button-outline:hover {
  border-color: var(--color-brand);
  background: var(--color-bg-soft);
}

/* =============== Hero ================== */
.hero-clean {
  padding: clamp(4rem, 10vw, 7rem) 1rem;
  text-align: center;
  background: linear-gradient(to bottom, #fbfbfb, #ffffff);
  overflow-x: clip;
}

.hero-clean .container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-clean img {
  height: auto;
  max-height: 100px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero-clean h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 850;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-clean p {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  color: var(--color-muted);
  max-width: 750px;
  margin: 0 auto 2rem;
}

.hero-clean .button {
  min-width: 200px;
}

.hero-clean .container > div:last-child {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============== Sections ================== */
#services.container,
#contact.container {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* =============== Services ================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-brand);
}

.service-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-brand);
  font-size: 1.7rem;
  background: #f8f9ea;
}

.service-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.service-card .price-tag {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.05rem;
  margin-top: auto;
}

/* =============== Why Choose Us ================== */
#about {
  background: var(--color-bg-soft);
  padding: var(--section-space) 1rem;
  overflow-x: clip;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.feature-item::before {
  content: "✓";
  color: var(--color-brand);
  background: #f4f6d8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

#about .hero-clean {
  background: transparent;
  padding: 3rem 0 0;
}

#about .hero-clean img {
  max-height: 90px;
}

/* =============== Testimonials ================== */
.testimonials {
  padding: var(--section-space) 1rem;
  background: #fff;
  overflow-x: clip;
}

.ticker {
  overflow: hidden;
  margin-top: 2rem;
  white-space: nowrap;
  width: 100%;
}

.ticker .track {
  display: inline-flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.ticker:hover .track {
  animation-play-state: paused;
}

.review {
  background: var(--color-bg-soft);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  width: min(280px, 80vw);
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.review blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
}

.review figcaption {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.green-link {
  color: #7e8c15;
  color: #9bc837;
  font-weight: 600;
}

.green-link:hover {
  color: #647108;
}

/* =============== Contact ================== */
.contact-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 4rem);
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.contact-card > div:last-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr) !important;
  gap: clamp(1.5rem, 4vw, 4rem) !important;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(198, 210, 59, 0.16);
}

.contact-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  color: #444;
  line-height: 1.6;
}

.contact-info a:hover {
  color: var(--color-brand);
}

/* =============== Footer ================== */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  overflow-x: clip;
}

/* =============== Large Tablet / Small Laptop ================== */
@media (max-width: 1100px) {
  .header-nav .container {
    gap: 1rem;
  }

  .header-nav h2 {
    max-width: 240px;
    font-size: 1.15rem;
  }

  .nav-links {
    gap: 1.1rem;
  }

  .nav-cta-group {
    gap: 0.75rem;
  }

  .phone-link {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =============== Tablet ================== */
@media (max-width: 900px) {
  .header-nav .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .header-nav a:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-nav h2 {
    max-width: none;
    text-align: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 0.25rem;
  }

  .nav-cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-clean {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-clean .container {
    max-width: 100%;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.6rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }

  .contact-card > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .contact-info {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
  }
}

/* =============== Mobile ================== */
@media (max-width: 768px) {
  .header-nav .container {
    min-height: auto;
  }

  .nav-links,
  .nav-cta-group {
    display: none;
  }

  .header-nav a:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-nav h2 {
    text-align: center;
    font-size: 1.15rem;
    max-width: none;
  }

  .hero-clean {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-clean h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-clean p {
    font-size: 1rem;
  }

  .hero-clean .button {
    width: 100%;
    max-width: 320px;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .review {
    width: min(280px, 84vw);
    min-height: 200px;
  }

  .contact-card {
    border-radius: 12px;
  }

  .contact-card input,
  .contact-card textarea {
    font-size: 16px;
  }
}

/* =============== Small Mobile ================== */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .hero-clean {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-clean img {
    max-height: 76px;
  }

  .service-card {
    padding: 1.35rem;
  }

  .service-card h3 {
    font-size: 1.12rem;
  }

  .review {
    padding: 1.25rem;
  }

  .footer {
    font-size: 0.88rem;
  }
}

/* =============== Reduced Motion ================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker .track {
    animation: none;
  }
}