/* ============================================================
   Kolis Brothers LLC — site styles
   Palette: deep evergreen, warm sand, charcoal
   ============================================================ */

:root {
  /* Brand: deep navy + steel blue + flag red + chrome.
     Variable names kept as --green-* so the whole sheet re-themes
     from these values alone. */
  --green-900: #0c2340;  /* deep navy */
  --green-700: #163a63;  /* navy */
  --green-600: #1f5394;  /* steel blue (primary) */
  --green-500: #2e6db4;  /* bright blue */
  --green-100: #e8f0f9;  /* pale blue */
  --sand:      #f2f5f9;  /* light blue-gray */
  --sand-dark: #dbe3ee;
  --charcoal:  #14181f;
  --gray-700:  #344050;
  --gray-500:  #647082;
  --gray-300:  #c2ccda;
  --white:     #ffffff;
  --gold:      #d23b34;  /* flag red — accent / CTA */

  --shadow-sm: 0 1px 3px rgba(20,54,31,.10), 0 1px 2px rgba(20,54,31,.06);
  --shadow-md: 0 8px 24px rgba(20,54,31,.12);
  --shadow-lg: 0 20px 50px rgba(20,54,31,.18);

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;

  --font-head: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

a { color: var(--green-700); text-decoration: none; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--sand { background: var(--sand); }
.section--green {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--white);
}
.section--green h1,
.section--green h2,
.section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .80rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--gray-500); font-size: 1.08rem; }
.section--green .section-head p { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #b22f29; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--green-700); border-color: var(--green-600); }
.btn--outline:hover { background: var(--green-100); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 9px;
  object-fit: cover;
  background: #0b0b0b;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-900);
  letter-spacing: -.01em;
}
.brand__tag {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a {
  font-weight: 500;
  color: var(--gray-700);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--green-100); color: var(--green-700); }
.nav__links a.is-active { color: var(--green-700); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  font-weight: 700;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--green-900);
  border-radius: 2px;
  margin: 5px 0;
  transition: .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 15%, rgba(255,255,255,.10), transparent 40%);
  pointer-events: none;
  z-index: 1;
}
/* Hero photo background + slow pan */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/home-curb.jpg') center 40% / cover no-repeat;
  transform: scale(1.08);
  animation: heroPan 28s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(12,35,64,.93) 0%, rgba(18,47,84,.88) 45%, rgba(31,83,148,.80) 100%);
}
@keyframes heroPan {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18); }
}
/* Hero entrance animation */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero .eyebrow   { animation: heroRise .7s ease both; }
.hero h1         { animation: heroRise .7s ease .08s both; }
.hero p.lead     { animation: heroRise .7s ease .20s both; }
.hero__actions   { animation: heroRise .7s ease .32s both; }
.hero__trust     { animation: heroRise .7s ease .44s both; }
.hero__card      { animation: heroRise .85s ease .22s both; }
/* Pulsing glow on the main hero CTA */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210,59,52,.55); }
  50%      { box-shadow: 0 0 0 12px rgba(210,59,52,0); }
}
.hero__actions .btn--gold { animation: ctaGlow 2.8s ease-in-out 1.4s infinite; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero .eyebrow, .hero h1, .hero p.lead, .hero__actions,
  .hero__trust, .hero__card, .hero__actions .btn--gold { animation: none; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  padding: 92px 0 100px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero__trust-item { display: flex; align-items: center; gap: 10px; }
.hero__trust-item strong { display: block; font-size: 1.5rem; font-family: var(--font-head); color: var(--white); }
.hero__trust-item span { font-size: .85rem; color: rgba(255,255,255,.75); }

.hero__card {
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}
.hero__card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.hero__card p.sub { color: var(--gray-500); font-size: .95rem; margin-bottom: 20px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(46,125,67,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: 10px; }
.form-success {
  display: none;
  background: var(--green-100);
  border: 1.5px solid var(--green-500);
  color: var(--green-900);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; stroke: var(--green-600); }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--gray-500); font-size: .96rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: .92rem;
}

/* ---------- Feature / why-us ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-list { list-style: none; margin-top: 26px; }
.feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.feature-list .tick {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-600);
  display: grid; place-items: center;
}
.feature-list .tick svg { width: 16px; height: 16px; stroke: #fff; }
.feature-list h4 { font-size: 1.08rem; margin-bottom: 3px; }
.feature-list p { color: var(--gray-500); font-size: .94rem; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

/* ---------- Real photo fill (img inside a frame/tile) ---------- */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Placeholder photo blocks (swap with real images) ---------- */
.photo {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  text-align: center;
  min-height: 220px;
}
.photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.12), transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,.18), transparent 40%);
}
.photo span {
  position: relative;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px dashed rgba(255,255,255,.5);
  border-radius: 6px;
}
.photo--alt { background: linear-gradient(135deg, var(--green-900), var(--green-600)); }
.photo--gold { background: linear-gradient(135deg, #6b5a2e, var(--gold)); }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}
.stat span { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--sand-dark);
}
.quote-card .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p { font-size: 1.02rem; color: var(--gray-700); font-style: italic; margin-bottom: 18px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  font-family: var(--font-head);
}
.quote-card .who b { display: block; color: var(--green-900); }
.quote-card .who small { color: var(--gray-500); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: 22px;
  padding: 56px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 540px; margin: 0 auto 26px; }
.cta-banner .hero__actions { justify-content: center; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(155deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 620px; margin: 0 auto; }
.crumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumb a { color: rgba(255,255,255,.85); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery-item .photo { min-height: 100%; height: 100%; }
.gallery-item .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(20,54,31,.85));
  color: #fff;
  padding: 30px 16px 14px;
  font-weight: 600;
  font-size: .95rem;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- About / process ---------- */
.process { counter-reset: step; }
.process .step {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.process .step:last-child { border-bottom: none; }
.process .step .num {
  counter-increment: step;
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid; place-items: center;
}
.process .step .num::before { content: counter(step); }
.process .step h4 { font-size: 1.2rem; margin-bottom: 5px; }
.process .step p { color: var(--gray-500); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-line { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-line .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-600);
  display: grid; place-items: center;
}
.contact-line .ic svg { width: 22px; height: 22px; stroke: #fff; }
.contact-line h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-line p, .contact-line a { color: var(--gray-700); font-size: .98rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--sand-dark); font-size: .95rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green-900); }

.form-card {
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Pricing / packages ---------- */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--green-600); border-width: 2px; box-shadow: var(--shadow-md); }
.price-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-card .price { font-family: var(--font-head); font-size: 2.4rem; color: var(--green-700); margin: 10px 0; }
.price-card .price small { font-size: .9rem; color: var(--gray-500); font-family: var(--font-body); font-weight: 400; }
.price-card ul { list-style: none; margin: 18px 0 24px; }
.price-card ul li { padding: 8px 0; display: flex; gap: 10px; color: var(--gray-700); font-size: .95rem; }
.price-card ul li svg { width: 18px; height: 18px; stroke: var(--green-600); flex: none; margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .95rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .94rem; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.footer-social a:hover { background: var(--green-600); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .86rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Mobile / tablet nav */
  .nav__links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--sand-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 40;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 12px; }
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .nav__cta .btn--primary { display: none; }
  .brand__tag { display: none; }
  .brand__name { white-space: nowrap; }
}

@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
