/* ============================================================
   Pure Peak Exterior Cleaning — Main Stylesheet
   ============================================================ */

/* ── Screen-reader only utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Custom Properties ── */
:root {
  --purple:        #8B35D6;
  --purple-alpha-low:  rgba(139, 53, 214, 0.18);
  --purple-alpha-mid:  rgba(139, 53, 214, 0.35);
  --purple-alpha-high: rgba(139, 53, 214, 0.28);
  --bg:            #0a0a0a;
  --bg-alt:        #0d0d0d;
  --bg-dark:       #080808;
  --card:          #111111;
  --card-deep:     #171717;
  --border:        #1c1c1c;
  --border-mid:    #1e1e1e;
  --border-form:   #252525;
  --text:          #ffffff;
  --text-muted:    #bbbbbb;
  --text-dim:      #999999;
  --text-faint:    #777777;
  --text-ghost:    #555555;
  --text-dark:     #444444;
  --stars:         #f59e0b;
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius-sm:     6px;
  --radius-md:     8px;
  --radius-lg:     10px;
  --radius-xl:     12px;
  --radius-pill:   20px;
  --radius-circle: 50%;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr 310px;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main        { grid-column: 1; grid-row: 1; }
.sidebar     { grid-column: 2; grid-row: 1; }
.site-bottom { grid-column: 1 / -1; grid-row: 2; }

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  background: var(--bg);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 150px;
  width: 250px;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* Nav */
nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-call {
  background: var(--purple);
  color: var(--text);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-call:hover {
  opacity: 0.88;
}

.btn-primary {
  background: var(--purple);
  color: var(--text);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #555555;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--text);
}

/* ============================================================
   SECTION SHARED UTILITIES
   ============================================================ */

.sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.sec-label--left {
  text-align: left;
}

.purple {
  color: var(--purple);
}

/* Checkmark bullet */
.chk {
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--bg);
  padding: 56px 40px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-worker {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
}

.hero-fade {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(to right, var(--bg) 0%, var(--bg) 10%, transparent 55%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, var(--purple-alpha-high) 0%, transparent 70%);
  bottom: -80px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
}

.badge {
  display: inline-block;
  border: 1px solid var(--purple);
  color: #dddddd;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero h1 .purple {
  font-size: 62px;
  display: block;
  margin-top: 2px;
}

.hero-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 18px 0 28px;
  line-height: 1.65;
  max-width: 360px;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hf {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hf-icon {
  width: 34px;
  height: 34px;
  background: var(--purple-alpha-low);
  border: 1px solid var(--purple-alpha-mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 13px;
  flex-shrink: 0;
}

.hf-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hf-desc {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
  line-height: 1.4;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  background: var(--bg);
  padding: 52px 40px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.svc-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.svc-img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

.svc-body {
  padding: 12px 10px 16px;
}

.svc-icon {
  width: 34px;
  height: 34px;
  background: var(--purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px auto 10px;
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 13px;
}

.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.svc-card p {
  font-size: 10px;
  color: #888888;
  line-height: 1.5;
}

/* ============================================================
   SERVICES DETAIL
   ============================================================ */

.svc-detail {
  background: var(--bg-alt);
}

.svc-detail-header {
  padding: 52px 40px 0;
  text-align: center;
}

.svc-detail-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.svc-detail-row:nth-child(odd) {
  background: var(--bg);
}

.svc-detail-row:nth-child(even) {
  background: var(--bg-alt);
}

.svc-detail-row--reverse {
  flex-direction: row-reverse;
}

.svc-detail-img {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  max-height: 420px;
}

.svc-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.svc-detail-body {
  flex: 1;
  min-width: 0;
  padding: 52px 52px;
}

.svc-detail-body h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.svc-detail-body h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--purple);
  margin-top: 10px;
}

.svc-detail-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  background: var(--bg);
  padding: 52px 40px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
}

.price-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-circle);
  background: var(--purple-alpha-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple);
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin: 0;
}

.price-range {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}

.price-range span {
  color: var(--text-dim);
  font-size: 16px;
}

.price-plus {
  font-size: 14px;
  color: var(--text-dim);
}

.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 0;
}

.pricing-note a {
  color: var(--purple);
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ============================================================
   GALLERY (BEFORE / AFTER)
   ============================================================ */

.gallery {
  background: var(--bg);
  padding: 52px 40px;
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
}

.ba-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ba-service {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 10px 8px;
  text-align: center;
}

/* ============================================================
   SOCIAL PROOF (TESTIMONIALS + AREAS)
   ============================================================ */

.social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}

.testimonials {
  padding: 46px 40px;
  border-right: 1px solid var(--border-mid);
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.2;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.test-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.stars {
  color: var(--stars);
  font-size: 12px;
  margin-bottom: 7px;
}

.test-card p {
  font-size: 11px;
  color: #aaaaaa;
  line-height: 1.55;
  margin-bottom: 10px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewer img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background: #333333;
  object-fit: cover;
}

.r-name {
  font-size: 11px;
  font-weight: 700;
}

.r-role {
  font-size: 10px;
  color: var(--text-faint);
}

.areas {
  padding: 0;
  overflow: hidden;
}

.areas-map-wrap {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.areas-map-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0.9;
}

.areas-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 6%),
              linear-gradient(to left,  var(--bg) 0%, transparent 6%);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, #150a28 0%, #0d0d1a 100%);
  border-top: 2px solid var(--purple);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-banner p {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 4px;
}

.btn-cta-banner {
  padding: 13px 26px;
  font-size: 13px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--bg-dark);
  padding: 36px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 26px;
}

.footer-logo-wrap {
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.footer-copy {
  font-size: 10px;
  color: var(--text-dark);
  margin-top: 10px;
  max-width: 160px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  margin-bottom: 12px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col ul li a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaaaaa;
  font-size: 12px;
  margin-bottom: 7px;
}

.footer-contact .icon-purple {
  color: var(--purple);
  width: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 10px;
  color: var(--text-dark);
  text-align: center;
}

.site-bottom {
  width: 100%;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 10px;
  color: var(--text-dark);
  text-align: center;
}

.site-bottom a {
  color: var(--text-dim);
  text-decoration: underline;
}

.site-bottom a:hover {
  color: var(--text);
}

.hutchins-logo {
  height: 70px;
  width: auto;
  opacity: 0.5;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
  width: 310px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border-left: 2px solid var(--purple);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Sidebar Header */
.sb-header {
  background: linear-gradient(160deg, #1a0535 0%, #0d0d1a 100%);
  padding: 20px 18px 18px;
  text-align: center;
  position: relative;
}

.sb-header .hamburger {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #666666;
  font-size: 15px;
  cursor: pointer;
}

.sb-get {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 6px;
}

.sb-header h2 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.sb-header h2 span {
  color: var(--purple);
}

.sb-header p {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.5;
}

/* Mountains / Logo Banner */
.sb-mountains {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px 0;
}

.sb-logo-full {
  width: 80%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* Sidebar Sections */
.sb-sec {
  padding: 18px;
  border-top: 1px solid var(--border-mid);
}

.sb-sec h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Contact Info Items */
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
}

.ci-icon {
  width: 34px;
  height: 34px;
  background: var(--purple);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text);
  flex-shrink: 0;
}

.ci-label {
  font-size: 12px;
  font-weight: 600;
  word-break: break-word;
}

.ci-sub {
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 1px;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 7px;
}

.form-f {
  margin-bottom: 7px;
}

.form-f input,
.form-f textarea {
  width: 100%;
  background: var(--card-deep);
  border: 1px solid var(--border-form);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--text);
  font-size: 12px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-f input::placeholder,
.form-f textarea::placeholder {
  color: #4a4a4a;
}

.form-f input:focus,
.form-f textarea:focus {
  border-color: var(--purple);
}

.form-f textarea {
  height: 82px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--purple);
  color: var(--text);
  border: none;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.88;
}

/* We Offer Image */
.sb-we-offer {
  border-top: 1px solid var(--border-mid);
}

.sb-we-offer img {
  width: 100%;
  display: block;
}

/* Sidebar Worker Image */
.sb-worker {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.sb-worker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

/* Sidebar CTA */
.sb-cta {
  background: linear-gradient(160deg, #1a0535 0%, #0d0d1a 100%);
  padding: 18px;
  text-align: center;
  border-top: 1px solid var(--purple);
}

.sb-cta h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sb-cta p {
  font-size: 11px;
  color: #aaaaaa;
  margin-bottom: 12px;
}

.sb-cta .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 12px;
}

/* Sidebar Footer */
.sb-footer {
  padding: 14px 18px;
  text-align: center;
  border-top: 1px solid var(--border-mid);
}

.sb-footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.sb-footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.bf-copy {
  font-size: 9px;
  color: var(--text-dark);
  margin-top: 6px;
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ============================================================
   TABLET — max-width: 1024px
   ============================================================ */

@media (max-width: 1024px) {

  /* Layout */
  body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .main        { grid-column: 1; grid-row: 1; }
  .sidebar     { grid-column: 1; grid-row: 2; }
  .site-bottom { grid-column: 1; grid-row: 3; }

  .sidebar {
    width: 100%;
    border-left: none;
    border-top: 2px solid var(--purple);
  }

  /* Header */
  .header {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: 11px;
  }

  /* Hero */
  .hero {
    padding: 44px 28px;
  }

  .hero-content {
    max-width: 60%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h1 .purple {
    font-size: 52px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services Detail */
  .svc-detail-header {
    padding: 44px 28px 0;
  }

  .svc-detail-body {
    padding: 36px 32px;
  }

  .svc-detail-body h3 {
    font-size: 22px;
  }

  /* Gallery */
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Social proof */
  .social {
    grid-template-columns: 1fr;
  }

  .testimonials {
    border-right: none;
    border-bottom: 1px solid var(--border-mid);
    padding: 36px 28px;
  }

  .areas {
    padding: 0;
    min-height: 260px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* CTA banner */
  .cta-banner {
    padding: 24px 28px;
    gap: 20px;
  }

  /* Sidebar layout */
  .sb-mountains {
    max-height: 140px;
  }
}

/* ============================================================
   MOBILE — max-width: 640px
   ============================================================ */

@media (max-width: 640px) {

  /* ── Header ── */
  .header {
    padding: 12px 16px;
    flex-wrap: nowrap;
    position: sticky;
    top: 0;
    z-index: 200;
  }

  /* Hide desktop nav, show toggle */
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f0f;
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--purple);
    z-index: 300;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 14px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
  }

  nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
  }

  .btn-call {
    font-size: 11px;
    padding: 9px 12px;
    gap: 6px;
  }

  /* hide the long number text on very small screens, keep icon */
  .btn-call .call-number {
    display: none;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    height: 64px;
    width: auto;
  }

  /* ── Hero ── */
  .hero {
    padding: 36px 18px 44px;
    min-height: 0;
    align-items: flex-start;
  }

  .hero-worker {
    width: 100%;
    opacity: 0.25;
  }

  .hero-fade {
    width: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 85%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1 .purple {
    font-size: 44px;
  }

  .hero-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 14px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 13px 18px;
  }

  /* ── Services ── */
  .services {
    padding: 40px 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Pricing ── */
  .pricing {
    padding: 40px 16px;
  }

  .svc-card h3 {
    font-size: 10px;
  }

  /* ── Services Detail ── */
  .svc-detail-header {
    padding: 40px 16px 0;
  }

  .svc-detail-row,
  .svc-detail-row--reverse {
    flex-direction: column;
  }

  .svc-detail-img img {
    height: 260px;
  }

  .svc-detail-body {
    padding: 28px 16px;
  }

  .svc-detail-body h3 {
    font-size: 20px;
  }

  /* ── Gallery ── */
  .gallery {
    padding: 40px 16px;
  }

  .ba-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  /* ── Social proof ── */
  .testimonials {
    padding: 36px 16px;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .areas {
    padding: 36px 16px;
  }

  .areas h2,
  .testimonials h2 {
    font-size: 20px;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
  }

  .cta-banner h2 {
    font-size: 17px;
  }

  .btn-cta-banner {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  footer {
    padding: 32px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-logo-img {
    height: 56px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  /* ── Sidebar ── */
  .sidebar {
    width: 100%;
  }

  .sb-header h2 {
    font-size: 17px;
  }

  .sb-sec {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── Section shared ── */
  .sec-title {
    font-size: 24px;
  }

  .sec-sub {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .services,
  .gallery {
    text-align: center;
  }
}

/* ============================================================
   SMALL MOBILE — max-width: 380px
   ============================================================ */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero h1 .purple {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn-call {
    padding: 8px 10px;
  }
}

/* ============================================================
   HERO INTRO ANIMATION — Water Hose Reveal
   ============================================================ */

/*
  HOW IT WORKS:
  ─────────────
  Two elements sit on top of the sharp hero:

  1. .hero-mist  — a full-cover blurred overlay (backdrop-filter).
                   JS progressively clips it away from the left,
                   revealing the clean hero beneath as the stream passes.

  2. .hero-stream — the water jet visual. A narrow gradient strip
                    with a bright leading edge and a glowing spray.
                    JS moves it in sync with the mist clip edge.
*/

/* ── Mist overlay ── */
.hero-mist {
  position: absolute;
  inset: 0;
  /* backdrop-filter blurs everything behind this element */
  backdrop-filter:         blur(10px) brightness(0.72) saturate(0.4);
  -webkit-backdrop-filter: blur(10px) brightness(0.72) saturate(0.4);
  /* clip-path starts at full coverage — JS animates it to reveal */
  clip-path: inset(0 0 0 0%);
  z-index: 3;
  pointer-events: none;
  will-change: clip-path;
}

/* ── Water jet stream ── */
.hero-stream {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 100%;
  transform: translateX(-90px); /* starts fully off-screen left */
  z-index: 4;
  pointer-events: none;
  will-change: transform;

  /* Layered gradients: water colour + fine vertical flow lines */
  background:
    linear-gradient(
      90deg,
      transparent              0%,
      rgba(190,220,255,0.08)  12%,
      rgba(190,220,255,0.30)  42%,
      rgba(230,245,255,0.78)  68%,
      rgba(255,255,255,0.96)  80%,
      rgba(220,240,255,0.60)  91%,
      transparent             100%
    ),
    repeating-linear-gradient(
      180deg,
      transparent                0px,
      transparent                7px,
      rgba(255,255,255,0.07)  7px,
      rgba(255,255,255,0.07)  8px
    );
}

/* Soft glowing spray halo on the leading edge of the stream */
.hero-stream::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 40px;
  background: linear-gradient(
    90deg,
    rgba(210,235,255,0.45) 0%,
    transparent 100%
  );
  filter: blur(12px);
}

/* ── Reduced motion: skip the whole animation ── */
@media (prefers-reduced-motion: reduce) {
  .hero-mist   { display: none; }
  .hero-stream { display: none; }
}
