/* ==========================================================================
   Kevin Sullivan LLC — shared stylesheet
   Palette: orange #F07443 | green #5CAB57 | charcoal #2B2724 | cream #FDF6EF
   ========================================================================== */

html { scroll-behavior: smooth; }
body { background: #FDF6EF; }

/* Anchor targets clear the sticky nav */
[id] { scroll-margin-top: 96px; }

/* --------------------------------------------------------------- desktop nav */
.sss-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sss-nav > li { position: relative; }
.sss-nav > li > a {
  display: block;
  padding: 16px 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.sss-nav > li > a:hover { color: #F07443; }
.sss-nav > li.is-active > a { color: #F07443; }

/* dropdown */
.sss-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 258px;
  background: #221F1D;
  border-top: 3px solid #F07443;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 60;
}
.sss-nav .has-dropdown:hover > .dropdown-menu,
.sss-nav .has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sss-nav .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-family: Barlow, sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .14s ease;
}
.sss-nav .dropdown-menu a:hover {
  color: #fff;
  background: rgba(240, 116, 67, .14);
  border-left-color: #5CAB57;
}

/* quote button in the nav bar */
.sss-quote-btn {
  display: inline-block;
  background: #F07443;
  color: #2B2724;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}
.sss-quote-btn:hover { background: #D95E2C; transform: translateY(-1px); }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 14px 26px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: #F07443; color: #fff; }
.btn-orange:hover { background: #D95E2C; }
.btn-green { background: #5CAB57; color: #fff; }
.btn-green:hover { background: #488C44; }
.btn-dark { background: #2B2724; color: #fff; }
.btn-dark:hover { background: #4A433D; }
.btn-outline-dark { border-color: #2B2724; color: #2B2724; }
.btn-outline-dark:hover { background: #2B2724; color: #fff; }
.btn-outline-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: #2B2724; border-color: #fff; }

/* --------------------------------------------------------------------- hero */
.hero {
  position: relative;
  background:
    radial-gradient(58% 62% at 78% 44%, #FDDCB6 0%, rgba(253, 220, 182, 0) 68%),
    linear-gradient(180deg, #FFFCF8 0%, #FDF1E4 100%);
  overflow: hidden;
}
/* soft disc behind the mascot so the cut-out reads as a portrait, not a sticker */
.hero-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 92%;
  aspect-ratio: 1;
  border-radius: 9999px;
  background: radial-gradient(circle, #FCD3A4 0%, #FBDCBB 58%, rgba(251, 220, 187, 0) 72%);
}
.hero-mascot { position: relative; filter: drop-shadow(0 22px 26px rgba(43, 39, 36, .17)); }

/* ------------------------------------------------------------- service card */
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(43, 39, 36, .1);
  border-top: 3px solid #5CAB57;
  padding: 26px 24px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-top-color .18s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(43, 39, 36, .12);
  border-top-color: #F07443;
}
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  background: rgba(240, 116, 67, .12);
  color: #D95E2C;
  margin-bottom: 16px;
}
/* dark "not on the list?" card that closes out the services grid */
.svc-card-dark {
  background: #2B2724;
  border-color: rgba(43, 39, 36, 1);
  border-top-color: #F07443;
  color: #fff;
}
.svc-card-dark:hover { border-top-color: #5CAB57; }

.svc-list { list-style: none; margin: 14px 0 0; padding: 0; }
.svc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-family: Barlow, sans-serif;
  font-size: 15px;
  color: #5B534C;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #5CAB57;
  border-radius: 2px;
}

/* ------------------------------------------------------------- trust strip */
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.trust-item svg { color: #F07443; flex-shrink: 0; }

/* ---------------------------------------------------------------- town chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(43, 39, 36, .12);
  padding: 9px 15px;
  font-family: Barlow, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2B2724;
}
.chip svg { color: #5CAB57; flex-shrink: 0; }

/* ------------------------------------------------------------ misc helpers */
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #D95E2C;
}
.rule-orange {
  width: 62px;
  height: 4px;
  background: #F07443;
}
.logo-plate {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(43, 39, 36, .13);
  line-height: 0;
}
.footer-link {
  font-family: Barlow, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  transition: color .14s ease;
}
.footer-link:hover { color: #F07443; }

/* Reduce motion for users who ask for it */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .sss-quote-btn:hover, .svc-card:hover { transform: none; }
}
