/* ================================================
   LEEONITIS CONTRACTING — Global Stylesheet
   Dark · Industrial · Edgy · Not flashy
   Edit colours in :root to rebrand quickly
   ================================================ */
:root {
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-mid:    #1A1A1A;
  --dark-light:  #242424;
  --concrete:    #2E2E2E;
  --steel:       #3D3D3D;
  --border:      rgba(255,255,255,0.08);
  --border-warm: rgba(255,255,255,0.12);
  --red:         #C8341A;
  --red-light:   #E03D20;
  --white:       #FFFFFF;
  --off-white:   #F0EDE8;
  --grey-light:  #B8B4AE;
  --grey-mid:    #7A7670;
  --grey-dark:   #4A4642;
  --text-body:   #A8A4A0;
  --text-light:  #D0CBC4;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-sub:     'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    6px;
  --radius-lg: 10px;
  --max-width: 1180px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: var(--red-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--white); }
ul { list-style: none; }

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 28px; max-width: var(--max-width); margin: 0 auto; }
.wrap-dark    { background: var(--dark); }
.wrap-darker  { background: var(--black); }
.wrap-mid     { background: var(--dark-mid); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.text-center { text-align: center; }

/* TYPOGRAPHY */
.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-light);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: .95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 16px;
}
.section-heading em { color: var(--red-light); font-style: normal; }
.section-heading .slash { color: var(--steel); }
.section-sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 600px;
}
.section-sub.center { margin: 0 auto; }

/* DIAGONAL DIVIDERS */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 60px;
}
.clip-top {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: 60px;
}
.clip-both {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 60px 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, color .2s;
  white-space: nowrap;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn:active { transform: scale(.97); }
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-light); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,.25);
  clip-path: none;
  border-radius: 0;
}
.btn-ghost:hover { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline {
  background: transparent;
  color: var(--red-light);
  border: 1.5px solid rgba(200,52,26,.4);
  clip-path: none;
  font-size: 13px;
  padding: 10px 22px;
}
.btn-outline:hover { background: rgba(200,52,26,.1); color: var(--white); border-color: var(--red); }

/* NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,.97);
  border-bottom: 1px solid var(--border-warm);
  backdrop-filter: blur(10px);
}
.navbar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.navbar-logo img { height: 52px; width: auto; filter: invert(1); }
.navbar-logo-text { line-height: 1; }
.navbar-logo-text .t1 { font-family: var(--font-heading); font-size: 24px; color: var(--white); display: block; letter-spacing: .06em; }
.navbar-logo-text .t2 { font-family: var(--font-sub); font-size: 11px; font-weight: 600; color: var(--red-light); letter-spacing: .16em; text-transform: uppercase; display: block; margin-top: 1px; }
.navbar-links { display: flex; gap: 28px; align-items: center; }
.navbar-links a { font-family: var(--font-sub); font-size: 13px; font-weight: 600; color: var(--grey-light); letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.navbar-links a:hover, .navbar-links a.active { color: var(--white); }
.navbar-phone {
  font-family: var(--font-sub); font-weight: 700; font-size: 15px;
  color: var(--white); background: var(--red);
  padding: 10px 20px; letter-spacing: .06em;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s;
}
.navbar-phone:hover { background: var(--red-light); color: var(--white); }
.navbar-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--off-white); }
.navbar-drawer { display: none; flex-direction: column; background: var(--black); border-top: 1px solid var(--border); padding: 8px 0 20px; }
.navbar-drawer a { color: var(--grey-light); font-family: var(--font-sub); font-size: 15px; font-weight: 600; padding: 13px 28px; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .08em; display: block; }
.navbar-drawer a:last-child { border-bottom: none; }
.navbar-drawer a:hover { color: var(--white); }
.navbar-drawer.open { display: flex; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 68px 28px 60px; background: var(--black); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(135deg, transparent, rgba(200,52,26,.05)); pointer-events: none; }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-sub); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 20px; }
.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb-sep { color: var(--steel); }
.page-hero h1 { font-family: var(--font-heading); font-weight: 400; font-size: clamp(44px, 6vw, 72px); color: var(--white); text-transform: uppercase; letter-spacing: .04em; line-height: .95; margin-bottom: 18px; }
.page-hero h1 em { color: var(--red-light); font-style: normal; }
.page-hero p { font-size: 18px; color: var(--text-body); max-width: 580px; line-height: 1.7; }

/* TRUST BAR */
.trust-bar { background: var(--dark-light); border-top: 2px solid var(--red); border-bottom: 1px solid var(--border); padding: 18px 28px; }
.trust-bar-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-sub); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-light); white-space: nowrap; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* SERVICE CARDS */
.service-card { background: var(--dark-light); border: 1px solid var(--border); border-top: 2px solid var(--red); position: relative; overflow: hidden; transition: transform .2s, border-color .25s; }
.service-card:hover { transform: translateY(-3px); border-color: var(--border-warm); }
.service-card-img { width: 100%; height: 210px; object-fit: cover; object-position: center; display: block; filter: grayscale(20%); transition: filter .3s; }
.service-card:hover .service-card-img { filter: grayscale(0%); }
.service-card-body { padding: 22px 20px; }
.service-card h3 { font-family: var(--font-heading); font-size: 24px; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; line-height: 1; }
.service-card p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; }
.service-card .cta-link { font-family: var(--font-sub); font-size: 12px; font-weight: 700; color: var(--red-light); letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s; }
.service-card .cta-link:hover { gap: 10px; color: var(--white); }

/* FEATURE / BENEFIT CARDS */
.benefit-card { padding: 28px 24px; border: 1px solid var(--border); border-left: 3px solid var(--red); background: var(--dark-light); position: relative; }
.benefit-num { font-family: var(--font-heading); font-size: 72px; color: rgba(200,52,26,.08); position: absolute; top: 12px; right: 16px; line-height: 1; user-select: none; }
.benefit-card h3 { font-family: var(--font-heading); font-size: 26px; color: var(--white); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.benefit-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.benefit-result { margin-top: 14px; padding: 10px 14px; background: rgba(200,52,26,.06); border-left: 2px solid var(--red); font-size: 13px; font-weight: 600; font-family: var(--font-sub); color: var(--red-light); letter-spacing: .04em; text-transform: uppercase; }

/* GALLERY */
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s, filter .3s; filter: grayscale(15%); }
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-family: var(--font-sub); font-weight: 700; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: .08em; }

/* TESTIMONIAL */
.testimonial-card { background: var(--dark-light); border: 1px solid var(--border); padding: 28px 24px; display: flex; flex-direction: column; transition: border-color .25s; }
.testimonial-card:hover { border-color: rgba(200,52,26,.3); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--red); font-size: 15px; }
.quote-sym { font-family: var(--font-heading); font-size: 52px; color: var(--red); line-height: .6; margin-bottom: 12px; display: block; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-light); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.author-badge { width: 38px; height: 38px; background: var(--concrete); border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 16px; color: var(--red-light); flex-shrink: 0; }
.author-name  { font-family: var(--font-sub); font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .04em; text-transform: uppercase; }
.author-detail { font-size: 12px; color: var(--grey-mid); margin-top: 1px; }

/* BLOG CARDS */
.blog-card { background: var(--dark-light); border: 1px solid var(--border); overflow: hidden; transition: border-color .25s, transform .2s; }
.blog-card:hover { border-color: rgba(200,52,26,.3); transform: translateY(-2px); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; filter: grayscale(20%); transition: filter .3s; }
.blog-card:hover .blog-card-img { filter: grayscale(0%); }
.blog-card-body { padding: 20px 18px; }
.blog-tag { display: inline-block; font-family: var(--font-sub); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red-light); border: 1px solid rgba(200,52,26,.3); padding: 3px 10px; margin-bottom: 10px; }
.blog-date { font-size: 11px; color: var(--grey-mid); margin-bottom: 8px; font-family: var(--font-sub); letter-spacing: .05em; }
.blog-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--white); text-transform: uppercase; line-height: 1.05; margin-bottom: 10px; letter-spacing: .02em; }
.blog-card p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 14px; }
.blog-card .read-more { font-family: var(--font-sub); font-size: 12px; font-weight: 700; color: var(--red-light); text-transform: uppercase; letter-spacing: .08em; }
.blog-card .read-more:hover { color: var(--white); }

/* CONTACT FORM */
.form-wrapper { background: var(--dark-light); border: 1px solid var(--border); border-top: 2px solid var(--red); padding: 36px 32px; }
.form-title { font-family: var(--font-heading); font-size: 28px; color: var(--white); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group.full { grid-column: span 2; }
.form-label { font-family: var(--font-sub); font-size: 11px; font-weight: 700; color: var(--grey-mid); letter-spacing: .1em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--concrete); border: 1px solid var(--border);
  border-radius: 0; padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--text-light);
  transition: border-color .2s; outline: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(168,164,160,.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-select { color: var(--text-body); cursor: pointer; }
.form-select option { background: var(--dark-mid); color: var(--text-light); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 16px;
  font-family: var(--font-sub); font-weight: 700; font-size: 18px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--red); color: var(--white); border: none; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s; margin-top: 4px;
}
.form-submit:hover { background: var(--red-light); }
.form-note { font-size: 12px; color: var(--grey-mid); text-align: center; margin-top: 12px; font-family: var(--font-sub); letter-spacing: .05em; }

/* STAT CELLS */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 24px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 52px; color: var(--white); line-height: 1; letter-spacing: .02em; }
.stat-number em { color: var(--red-light); font-style: normal; }
.stat-label { font-family: var(--font-sub); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); margin-top: 4px; }

/* PROCESS STEPS */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-step { padding: 32px 20px; border-right: 1px solid var(--border); text-align: center; }
.process-step:last-child { border-right: none; }
.step-num { width: 52px; height: 52px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 28px; color: var(--white); margin: 0 auto 16px; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); }
.process-step h4 { font-family: var(--font-heading); font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--font-sub); font-weight: 700; font-size: 18px; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-q span { color: var(--red); font-size: 22px; flex-shrink: 0; }
.faq-a { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* IMAGE + TEXT GRID */
.img-text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.img-text-img { overflow: hidden; position: relative; }
.img-text-img img { width: 100%; height: 440px; object-fit: cover; object-position: center; display: block; filter: grayscale(10%); }
.img-text-img::before { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 40px; background: var(--red); z-index: 1; clip-path: polygon(0 0, 0% 100%, 100% 100%); }

/* CTA BAND */
.cta-band { padding: 64px 28px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band h2 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 58px); color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; line-height: .95; }
.cta-band h2 em { color: var(--red-light); font-style: normal; }
.cta-band p { font-size: 17px; color: var(--text-body); max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--black); border-top: 2px solid var(--red); }
.footer-main { max-width: var(--max-width); margin: 0 auto; padding: 56px 28px 36px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-logo img { height: 48px; width: auto; filter: invert(1); }
.footer-brand-text .t1 { font-family: var(--font-heading); font-size: 20px; color: var(--white); letter-spacing: .06em; text-transform: uppercase; display: block; }
.footer-brand-text .t2 { font-family: var(--font-sub); font-size: 11px; font-weight: 600; color: var(--red-light); letter-spacing: .14em; text-transform: uppercase; display: block; margin-top: 2px; }
.footer-tagline { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: var(--dark-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 16px; height: 16px; fill: var(--grey-light); }
.footer-social a:hover svg { fill: var(--white); }
.footer-col-title { font-family: var(--font-sub); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-body); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { flex-shrink: 0; padding-top: 1px; }
.footer-contact-icon svg { width: 14px; height: 14px; stroke: var(--red-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-text { font-size: 13px; color: var(--text-body); line-height: 1.55; }
.footer-contact-text a { color: var(--text-body); }
.footer-contact-text a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 28px; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-family: var(--font-sub); font-size: 12px; color: var(--grey-dark); letter-spacing: .04em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--grey-dark); transition: color .2s; }
.footer-legal a:hover { color: var(--grey-light); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .img-text-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 48px 20px 44px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-wrapper { padding: 24px 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .navbar-inner { padding: 0 20px; }
}
