:root {
  --primary: #9ef01a;
  --bg: #141611;
  --ink: #f2f5ec;
  --accent: #70b800;
  --surface: #1e2118;
  --line: #2a2e22;
  --mute: #9aa08a;
  --r: 14px;
  --display: 'Tinos', Georgia, serif;
  --body: 'Open Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1120px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); line-height: 1.1; }
h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
p { color: var(--mute); line-height: 1.65; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.eyebrow--accent { color: var(--accent); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(20, 22, 17, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.brand__icon { font-size: 20px; }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 700; text-decoration: none;
  padding: 13px 26px; border-radius: 999px; transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-2px); opacity: .88; }
.btn--sm { padding: 9px 18px; font-size: 13.5px; background: var(--primary); color: #141611; }
.btn--lg { background: var(--primary); color: #141611; font-size: 16px; padding: 16px 32px; }
.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--primary { background: var(--primary); color: #141611; font-size: 15px; padding: 14px 28px; }

/* HERO — fullbleed */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__cover { position: absolute; inset: 0; }
.hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,8,.92) 40%, rgba(10,12,8,.4) 75%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2; padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 8vw, 100px);
}
.hero__content h1 { color: #fff; margin: 8px 0 20px; max-width: 14ch; }
.hero__sub { color: rgba(255,255,255,.75); max-width: 46ch; font-size: clamp(15px, 1.5vw, 18px); margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* SERVICES */
.services { padding: clamp(56px, 7vw, 96px) 0; }
.sec-head { margin-bottom: 40px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-head p { color: var(--mute); max-width: 50ch; font-size: 16px; }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.srv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: border-color .2s;
}
.srv-card:hover { border-color: var(--primary); }
.srv-card__num {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  color: var(--primary); letter-spacing: .1em; margin-bottom: 14px;
}
.srv-card h3 { color: var(--ink); font-size: 17px; margin-bottom: 8px; }
.srv-card p { font-size: 14px; flex: 1; }
.srv-card__price {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  color: var(--accent); margin-top: 16px;
}

/* FEATURE */
.feature {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0;
}
.feature__in {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.feature__left h2 { margin: 4px 0 18px; }
.feature__left p { max-width: 50ch; margin-bottom: 28px; font-size: 15.5px; }

.feat-list { list-style: none; display: grid; gap: 12px; }
.feat-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); }
.feat-bullet { color: var(--primary); font-weight: 700; flex-shrink: 0; }

.feature__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feat-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.feat-stat__num {
  font-family: var(--display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--primary); line-height: 1;
}
.feat-stat__unit { font-size: 18px; font-weight: 600; color: var(--accent); }
.feat-stat__label { width: 100%; font-size: 13px; color: var(--mute); margin-top: 2px; }

/* ABOUT */
.about { padding: clamp(56px, 7vw, 96px) 0; }
.about__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.about__text h2 { margin-bottom: 18px; }
.about__text p { font-size: 15.5px; max-width: 52ch; }
.about__text p + p { margin-top: 14px; }

.about__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
}
.badge b {
  display: block; font-family: var(--display);
  font-size: 22px; color: var(--primary); margin-bottom: 4px;
}
.badge span { font-size: 13px; color: var(--mute); }

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 96px) 0; }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.contact__info h2 { margin-bottom: 12px; }
.contact__info > p { font-size: 15.5px; max-width: 46ch; margin-bottom: 28px; }
.contact__details { display: grid; gap: 16px; margin-bottom: 32px; }
.cdet { display: flex; flex-direction: column; gap: 2px; }
.cdet__label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.cdet__val { font-size: 15px; color: var(--ink); }

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--mute);
}
.map-placeholder span { font-size: 40px; }
.map-placeholder p { font-size: 15px; text-align: center; line-height: 1.5; color: var(--mute); }

/* FOOTER */
.foot { background: #0b0d09; border-top: 1px solid var(--line); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot__brand { font-family: var(--display); font-size: 15px; color: var(--ink); }
.foot__copy { font-size: 13px; color: var(--mute); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero { min-height: 80vh; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .feature__in { grid-template-columns: 1fr; }
  .about__in { grid-template-columns: 1fr; }
  .contact__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .srv-grid { grid-template-columns: 1fr; }
  .about__badges { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
}
