:root {
  --bg: #0a0f0a;
  --surface: #111a11;
  --surface-2: #1a2b1a;
  --accent: #4a7c4a;
  --accent-bright: #6baa6b;
  --accent-dim: #3a6339;
  --text: #f1f5f1;
  --text-muted: #9ab09a;
  --border: #2a3d2a;
  --green-light: #c8f0c8;
  --amber: #d4a72c;
  --amber-dim: #b8922a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent-bright) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}

/* OPEN 7 DAYS BADGE */
.open-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent-bright);
  text-align: center;
  padding: 8px 24px;
}
.open-badge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.open-badge-dot {
  width: 8px;
  height: 8px;
  background: #c8f0c8;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.open-badge-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: #c8f0c8;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bright);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent-bright); color: var(--text); }
.hero-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,15,10,0.85);
  border: 1px solid var(--accent-bright);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--green-light);
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--accent-bright);
  letter-spacing: 1px;
}
.hero-meta-item span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

/* WHY CHOOSE US */
.why-us {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  text-align: center;
}
.why-us h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.why-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SERVICES */
.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent-bright); }
.service-card-icon { margin-bottom: 12px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* BEFORE / AFTER GALLERY */
.gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.gallery h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.gallery-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.before-label { background: rgba(200, 80, 80, 0.85); color: #fff; }
.after-label { background: rgba(60, 140, 60, 0.85); color: #fff; }
.gallery-info {
  padding: 16px;
}
.gallery-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.gallery-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--amber); font-size: 16px; }
.test-card blockquote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.test-card cite {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
}
.test-card cite strong { color: var(--text); display: block; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dim) 0%, var(--accent) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--accent-dim);
  font-size: 18px;
  padding: 16px 40px;
}
.cta-section .btn-primary:hover { background: var(--green-light); }
.cta-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}
.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer ul li { font-size: 13px; color: var(--text-muted); }
.footer ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent-bright); }
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px; gap: 36px; }
  .hero h1 { font-size: 52px; }
  .hero-visual { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  nav { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .why-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-badges { flex-direction: column; align-items: center; }
}