/* ---------------------------
   Even Cut Contracting
   Clean, fast, responsive
---------------------------- */

:root{
  --bg: #0b0f14;
  --surface: #0f1620;
  --panel: #121b26;
  --text: #e7eef7;
  --muted: #b7c2d0;
  --border: rgba(231, 238, 247, 0.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);

  /* subtle accent (muted green/steel) */
  --accent: #5ea09a;
  --accent-2: #3c6a66;

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 15% 10%, rgba(94,160,154,.16), transparent 60%),
              radial-gradient(900px 600px at 80% 0%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(180deg, #070a0e 0%, #0b0f14 100%);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  object-fit: cover;
}

.brand-text{ display: grid; gap: 2px; }
.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-sub{
  font-size: 12.5px;
  color: var(--muted);
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a{
  font-weight: 600;
  font-size: 14px;
  color: rgba(231,238,247,.88);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease, transform .15s ease;
}
.site-nav a:hover{
  background: rgba(231,238,247,.06);
  transform: translateY(-1px);
}

.nav-cta{
  background: rgba(94,160,154,.18);
  border: 1px solid rgba(94,160,154,.35);
}
.nav-cta:hover{
  background: rgba(94,160,154,.22);
}

.nav-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(231,238,247,.04);
  cursor: pointer;
}
.nav-toggle-bar{
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(231,238,247,.86);
  border-radius: 99px;
}

/* Hero */
.hero{
  padding: 56px 0 22px;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 26px;
  align-items: start;
}

.hero-eyebrow{
  margin: 0 0 10px;
  color: rgba(183,194,208,.9);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
}

h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.8px;
}

.hero-lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(231,238,247,.82);
  max-width: 60ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge{
  font-size: 12.5px;
  color: rgba(231,238,247,.86);
  background: rgba(231,238,247,.06);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 999px;
}

.card{
  background: linear-gradient(180deg, rgba(18,27,38,.92), rgba(15,22,32,.92));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.2px;
}

.card-text{ margin: 0 0 14px; color: rgba(231,238,247,.78); }

.contact-quick{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-quick li{
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(231,238,247,.04);
  border: 1px solid rgba(231,238,247,.10);
}
.label{
  font-size: 12px;
  color: rgba(183,194,208,.92);
}
.contact-quick a{
  font-weight: 700;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: rgba(94,160,154,.92);
  border-color: rgba(94,160,154,.35);
  color: #061010;
}
.btn-primary:hover{ background: rgba(94,160,154,1); }

.btn-secondary{
  background: rgba(231,238,247,.06);
  border-color: rgba(231,238,247,.14);
  color: rgba(231,238,247,.94);
}
.btn-secondary:hover{ background: rgba(231,238,247,.09); }

.btn-ghost{
  background: transparent;
  border-color: rgba(231,238,247,.18);
  color: rgba(231,238,247,.92);
}
.btn-ghost:hover{ background: rgba(231,238,247,.06); }

.full{ width: 100%; }

/* Sections */
.section{
  padding: 56px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(231,238,247,.08);
  border-bottom: 1px solid rgba(231,238,247,.08);
}

.section-head{
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0;
  font-size: 28px;
  letter-spacing: -.4px;
}
.section-head p{
  margin: 0;
  color: rgba(231,238,247,.74);
  max-width: 70ch;
}

.section-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.grid{
  display: grid;
  gap: 14px;
}

/* Services */
.services-grid{
  grid-template-columns: repeat(3, 1fr);
}
.service{
  background: rgba(231,238,247,.04);
  border: 1px solid rgba(231,238,247,.10);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.service h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.service p{
  margin: 0;
  color: rgba(231,238,247,.74);
}

/* About */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.about-grid h2{ margin-top: 0; }
.checks{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checks li{
  padding-left: 28px;
  position: relative;
  color: rgba(231,238,247,.86);
}
.checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(94,160,154,1);
  font-weight: 800;
}

.divider{
  height: 1px;
  background: rgba(231,238,247,.12);
  margin: 14px 0;
}

.muted{ color: rgba(231,238,247,.72); }

/* Reviews */
.reviews-grid{
  grid-template-columns: repeat(3, 1fr);
}
.review{
  margin: 0;
  padding: 16px;
  background: rgba(231,238,247,.04);
  border: 1px solid rgba(231,238,247,.10);
  border-radius: var(--radius-lg);
}
.review blockquote{
  margin: 0 0 12px;
  color: rgba(231,238,247,.84);
}
.review figcaption{
  color: rgba(183,194,208,.92);
  font-weight: 700;
  font-size: 13px;
}

/* Gallery */
.gallery-grid{
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item{
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(231,238,247,.10);
  background: rgba(231,238,247,.04);
}
.photo{
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(94,160,154,.22), rgba(255,255,255,.05)),
    radial-gradient(700px 240px at 30% 20%, rgba(255,255,255,.10), transparent 60%);
}
.gallery-item figcaption{
  padding: 12px 12px 14px;
  color: rgba(231,238,247,.86);
  font-weight: 700;
  font-size: 13px;
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.form{
  display: grid;
  gap: 12px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(231,238,247,.88);
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(231,238,247,.14);
  background: rgba(231,238,247,.04);
  color: rgba(231,238,247,.92);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(94,160,154,.55);
  box-shadow: 0 0 0 4px rgba(94,160,154,.18);
}

.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.form-note{
  margin: 0;
  font-size: 12.5px;
}

.contact-side{
  display: grid;
  gap: 14px;
}

.map{
  padding: 0;
  overflow: hidden;
}
.map iframe{
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(231,238,247,.10);
  padding: 26px 0 18px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand{
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  object-fit: cover;
}
.footer-name{ font-weight: 800; }
.footer-sub{ color: rgba(183,194,208,.92); font-size: 12.5px; }

.footer-links, .footer-contact{
  display: grid;
  gap: 8px;
  color: rgba(231,238,247,.86);
  font-weight: 600;
  font-size: 13.5px;
}

.footer-bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(231,238,247,.08);
  color: rgba(183,194,208,.92);
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .site-nav{
    position: fixed;
    inset: 70px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(11,15,20,.96);
    border: 1px solid rgba(231,238,247,.12);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav a{
    padding: 12px 12px;
    background: rgba(231,238,247,.03);
    border: 1px solid rgba(231,238,247,.10);
  }
  .site-nav.is-open{ display: flex; }

  .nav-toggle{ display: inline-block; }
  .form-row{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
}
