:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --blue: #1e4e8c;
  --blue-bright: #2b6cb0;
  --green: #2f6b4f;
  --green-bright: #45a06f;
  --white: #ffffff;
  --mist: #eaf1fa;
  --ice: #d7e3f4;
  --slate: #3d4a5c;
  --border: #c5d3e6;
  --max: 1120px;
  --nav-h: 64px;
  --bar-h: 0px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--mist);
  line-height: 1.5;
  padding-bottom: var(--bar-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding-block: .65rem;
}
.brand {
  text-decoration: none;
  line-height: 1.1;
}
.brand strong {
  display: block;
  letter-spacing: 1.2px;
  font-size: 1rem;
}
.brand span {
  display: block;
  color: var(--green-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .6px;
  padding: .55rem .7rem;
  border-radius: 8px;
}
.nav-links a:hover { background: rgba(255,255,255,.08); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-bright);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .5px;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .35rem;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,38,.94) 0%, rgba(11,31,58,.82) 45%, rgba(30,78,140,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 640px;
}
.pill {
  display: inline-block;
  background: var(--green-bright);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .9px;
  padding: .45rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 1.4px;
  line-height: 1.05;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--green-bright);
  font-size: .48em;
  letter-spacing: 1.8px;
  margin-top: .35rem;
}
.hero .tag {
  margin: 1.1rem 0 .7rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.hero .desc {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.75);
  max-width: 36rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .5px;
  padding: .9rem 1.15rem;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-green {
  background: var(--green-bright);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47,107,79,.35);
}
.btn-blue {
  background: var(--blue-bright);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30,78,140,.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-full { width: 100%; }

/* SECTIONS */
section { padding: 4.5rem 0; }
.section-head {
  margin-bottom: 1.75rem;
}
.section-head .bar {
  width: 3.5rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--blue-bright));
  margin-bottom: 1rem;
}
.section-head h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -.02em;
}
.section-head p {
  margin: 0;
  color: var(--slate);
  max-width: 46rem;
}
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.72); }

.specials {
  background: linear-gradient(135deg, #0c2340, #1a4f8c 55%, #1e6b5a);
  color: #fff;
}
.services { background: linear-gradient(180deg, #d5e4f7, #eaf2fb 40%, #f3f8fc); }
.about { background: var(--mist); }
.areas { background: linear-gradient(180deg, #d5e4f7, #f3f8fc); }
.contact {
  background: linear-gradient(135deg, #071526, #0f2c52 50%, #163e6b);
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11,31,58,.08);
}
.promo-card {
  border: 1.5px solid rgba(69,160,111,.55);
  box-shadow: 0 14px 32px rgba(11,31,58,.28);
}
.promo-card.dryer { border-color: rgba(59,130,196,.55); }
.card-media {
  position: relative;
  height: 180px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .8px;
  padding: .4rem .7rem;
  border-radius: 8px;
}
.badge.blue { background: linear-gradient(90deg, #3b82c4, var(--blue)); }
.promo-body {
  background: linear-gradient(135deg, #0b1f3a, #153a66);
  color: #fff;
  padding: 1.35rem 1.35rem 1.5rem;
}
.promo-body h3 {
  margin: 0 0 .75rem;
  letter-spacing: .4px;
}
.price-chip {
  display: inline-block;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  padding: .55rem .85rem;
  border-radius: 12px;
  margin-bottom: .75rem;
}
.price-chip.blue { background: linear-gradient(90deg, #3b82c4, var(--blue)); }
.promo-body .hi {
  color: var(--green-bright);
  font-weight: 800;
  white-space: pre-line;
  margin: 0 0 .75rem;
}
.promo-body p, .promo-body li { color: rgba(255,255,255,.75); }
.promo-body ul, .svc-body ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.promo-body li, .svc-body li {
  display: flex;
  gap: .5rem;
  margin-bottom: .4rem;
}
.check { color: var(--green-bright); font-weight: 800; }

.svc-card .card-media { height: 150px; }
.svc-body { padding: 1.15rem 1.15rem 1.35rem; }
.svc-body h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  letter-spacing: .3px;
}
.svc-price {
  display: inline-block;
  background: rgba(30,78,140,.1);
  color: var(--blue);
  font-weight: 800;
  padding: .35rem .65rem;
  border-radius: 8px;
  margin-bottom: .7rem;
}
.svc-quote {
  color: var(--green);
  font-weight: 700;
  margin: 0 0 .7rem;
}
.svc-body li { color: var(--slate); }
.svc-body .check { color: var(--green); }

.before-after {
  margin-top: 2.25rem;
}
.before-after h3 { margin: 0 0 .35rem; }
.before-after > p {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: .95rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.ba-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
}
.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(11,31,58,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .8px;
  padding: .35rem .65rem;
  border-radius: 6px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.about-copy {
  font-size: 1.05rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

.area-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(11,31,58,.08);
}
.area-card h3 {
  margin: 0 0 .9rem;
  font-size: 1rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.chip {
  background: linear-gradient(135deg, var(--mist), rgba(215,227,244,.7));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .35rem .65rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.75rem;
  align-items: start;
}
.contact-info h3 {
  margin: 0 0 1.25rem;
  letter-spacing: .5px;
}
.contact-info .label {
  color: var(--green-bright);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 .25rem;
}
.contact-info .value {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
.contact-info .value.email { font-size: 1.05rem; font-weight: 600; }
.form-card {
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  padding: 1.35rem;
}
.form-card h3 { margin: 0 0 1rem; }
.field { margin-bottom: .75rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem .9rem;
  background: var(--mist);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-msg {
  display: none;
  padding: .75rem .9rem;
  border-radius: 10px;
  margin-bottom: .75rem;
  font-weight: 700;
}
.form-msg.ok {
  display: block;
  background: rgba(47,107,79,.12);
  color: var(--green);
}
.form-msg.err {
  display: block;
  background: rgba(220,38,38,.08);
  color: #dc2626;
}

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 1.5rem;
}
.footer h4 {
  color: #fff;
  margin: 0 0 .7rem;
  font-size: .95rem;
}
.footer .brand strong { color: #fff; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li { margin-bottom: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: var(--navy);
  padding: .65rem .75rem calc(.65rem + env(safe-area-inset-bottom));
  gap: .6rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .4px;
  padding: .85rem .5rem;
  border-radius: 10px;
  color: #fff;
}
.mobile-bar .call { background: var(--green-bright); }
.mobile-bar .text {
  border: 1.5px solid rgba(255,255,255,.65);
  background: transparent;
}

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --bar-h: 72px; }
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: .5rem .75rem 1rem;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links li .nav-cta { display: none; }
  .nav-cta.desktop-only { display: none; }
  .hero { min-height: 0; }
  .hero-content { padding: 2.5rem 0 2.75rem; }
  .grid-2, .grid-3, .ba-grid, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bar { display: flex; }
  section { padding: 3.25rem 0; }
}
