/* ============================================================
   Everguard Services — design system
   Palette: near-black ground + saw-blade green + warm paper white
   Type: Barlow Condensed (display) / Work Sans (body)
   Signature shape: the angled blade-cut divider between sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Work+Sans:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500&display=swap');

:root{
  --black:      #101210;
  --charcoal:   #1B1E19;
  --charcoal-2: #23271F;
  --paper:      #F4F1E6;
  --paper-dim:  #C9C6B8;
  --green:      #3CA35A;
  --green-lite: #6BC98A;
  --green-deep: #1F4A31;
  --amber:      #E3A93C;
  --line:       #34382E;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Work Sans', sans-serif;

  --cut: 3.5deg;
  --shadow-soft: 0 12px 40px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a{ color: var(--green-lite); text-decoration: none; }
a:hover{ color: var(--green); }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0 0 16px;
  color: var(--paper);
}
h1{ font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2{ font-size: clamp(1.9rem, 4vw, 3rem); }
h3{ font-size: 1.4rem; letter-spacing: 0.02em; }

p{ margin: 0 0 16px; color: var(--paper-dim); max-width: 62ch; }
.on-dark p{ color: var(--paper-dim); }

.tag{
  display:inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--green-lite);
  border-left: 3px solid var(--green);
  padding-left: 10px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--green);
  color: var(--black);
}
.btn-primary:hover{ background: var(--green-lite); color: var(--black); }
.btn-outline{
  background: transparent;
  border-color: var(--paper-dim);
  color: var(--paper);
}
.btn-outline:hover{ border-color: var(--green-lite); color: var(--green-lite); }

.cta-row{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16,18,16,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand .name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
}
.brand .name span{ color: var(--green); }
.brand .tag-line{
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-top: 2px;
}
nav.primary-nav ul{
  display:flex;
  gap: 30px;
  list-style:none;
  margin:0; padding:0;
}
nav.primary-nav a{
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}
nav.primary-nav a.is-active{ color: var(--green-lite); }
.header-phone{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
  white-space: nowrap;
}
.header-phone span{ display:block; font-size: 0.65rem; letter-spacing:0.12em; color: var(--paper-dim); font-family: var(--font-body); font-weight:600; text-transform:uppercase; }

.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 86vh;
  display:flex;
  align-items:flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(16,18,16,0.15) 0%, rgba(16,18,16,0.55) 55%, rgba(16,18,16,0.94) 100%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  max-width: 760px;
}
.hero .tag{ color: var(--green-lite); border-color: var(--green-lite); }
.hero p{ font-size: 1.15rem; color: var(--paper); max-width: 50ch; }

/* ---------- Blade-cut divider (signature shape) ---------- */
.cut-top{
  clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -3.5vw;
}
.cut-bottom-edge{
  position: relative;
}
.cut-bottom-edge::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 3.5vw;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  z-index: 1;
}

/* ---------- Sections ---------- */
section{ padding: 96px 0; position: relative; }
section.dark{ background: var(--black); }
section.charcoal{ background: var(--charcoal); }
section.green{ background: var(--green-deep); }

.section-head{ max-width: 640px; margin-bottom: 48px; }

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--charcoal-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip ul{
  display:flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style:none;
  margin:0; padding:0;
  justify-content: center;
}
.trust-strip li{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--paper-dim);
  display:flex; align-items:center; gap:8px;
}
.trust-strip li::before{
  content:"";
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 1px;
  transform: rotate(45deg);
  flex: none;
}

/* ---------- Service split rows ---------- */
.service-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child{ border-bottom:none; }
.service-row.reverse .service-media{ order: 2; }
.service-media{
  border-radius: 4px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.service-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3; }
.service-media.no-photo{
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(115deg, var(--green-deep) 0 26px, var(--charcoal-2) 26px 52px);
  display:flex; align-items:center; justify-content:center;
  position: relative;
}
.service-media.no-photo .badge-mark{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--paper);
  letter-spacing: 0.02em;
  text-align:center;
  text-transform: uppercase;
  z-index: 2;
}
.service-copy .tag{ margin-bottom: 12px; }
.service-list{
  list-style:none;
  margin: 0 0 24px; padding:0;
}
.service-list li{
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--paper);
  font-weight: 500;
  display:flex; gap: 12px;
}
.service-list li:last-child{ border-bottom: 1px solid var(--line); }
.service-list li::before{
  content:"—";
  color: var(--green);
  font-weight: 700;
  flex: none;
}

/* ---------- Process steps (genuine sequence, numbering earned) ---------- */
.process{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step{
  border-top: 3px solid var(--green);
  padding-top: 18px;
}
.process-step .num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--green);
  display:block;
  margin-bottom: 6px;
}
.process-step h3{ margin-bottom: 8px; }
.process-step p{ font-size: 0.95rem; }

/* ---------- Gallery strip ---------- */
.gallery-strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-strip img{
  width:100%; height: 260px; object-fit:cover;
  border-radius: 3px;
}

/* ---------- Two-col generic ---------- */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items:start;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h3{ font-size: 1.05rem; margin-bottom: 14px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom: 8px; }
.footer-grid a{ color: var(--paper-dim); }
.footer-grid a:hover{ color: var(--green-lite); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--paper-dim);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
}

/* ---------- Collage hero (landing page) ---------- */
.collage-hero{
  background: #FFFFFF;
  color: var(--black);
  padding: 48px 0 0;
}
.collage-top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
}
.mini-brand{
  display:flex;
  align-items:center;
  flex: none;
}
.mini-brand img{
  height: 92px;
  width: auto;
}
.serif-headline{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  margin: 0;
  text-align: right;
  max-width: 760px;
}
.collage-strip{
  display:flex;
  gap: 4px;
  height: 46vw;
  max-height: 480px;
  min-height: 300px;
  overflow: hidden;
}
.collage-panel{
  flex: 1;
  position: relative;
  overflow: hidden;
  display: block;
}
.collage-panel img{
  width:100%; height:100%; object-fit: cover; object-position: center;
  transition: transform 0.25s ease;
}
.collage-panel:hover img{ transform: scale(1.04); }
.collage-panel .panel-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(16,18,16,0) 45%, rgba(16,18,16,0.82) 100%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom: 22px;
}
.collage-panel .panel-overlay span{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
  text-align: center;
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
}
.collage-panel.graphic{
  background: var(--charcoal);
  display:flex; align-items:center; justify-content:center;
}
.collage-panel.graphic .stripes{
  position:absolute; inset:0;
  background: repeating-linear-gradient(115deg, var(--green-deep) 0 22px, var(--charcoal) 22px 44px);
}
.collage-panel.graphic .panel-label{
  position: relative; z-index:2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  text-align: center;
  padding: 0 20px;
}
.collage-panel.logo-panel{
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
}
.collage-panel.logo-panel img{
  width: 62%; height: auto; object-fit: contain;
}
.collage-hero .btn-outline{
  border-color: var(--black);
  color: var(--black);
}
.collage-hero .btn-outline:hover{ border-color: var(--green-deep); color: var(--green-deep); }
.collage-caption{
  padding: 22px 0 34px;
}
.caption-line{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
  max-width: 100%;
}
@media (max-width: 700px){
  .collage-top{ flex-direction:column; gap:20px; }
  .serif-headline{ text-align:left; font-size: 2.6rem; }
  .collage-strip{ height: 70vw; }
}

/* ---------- Cleaning page graphic hero (no photography) ---------- */
.sweep-hero{
  position: relative;
  min-height: 70vh;
  display:flex;
  align-items:center;
  background: var(--black);
  overflow:hidden;
}
.sweep-hero .sweep-lines{
  position:absolute; inset:0;
  background: repeating-linear-gradient(100deg, transparent 0 64px, rgba(60,163,90,0.08) 64px 66px);
}
.sweep-hero .sweep-band{
  position:absolute;
  top: -10%; right: -10%;
  width: 60%; height: 140%;
  background: linear-gradient(100deg, var(--green-deep) 0%, var(--green) 100%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  opacity: 0.9;
}
.sweep-hero-inner{ position:relative; z-index:2; max-width: 700px; }
.clean-badge{
  width: 150px;
  height: auto;
  background: var(--paper);
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Booking form ---------- */
.hp-field{ position:absolute; left:-9999px; }
.booking-form{ display:flex; flex-direction:column; gap:6px; }
.booking-form label{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--paper-dim);
  margin-top: 14px;
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--paper);
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  outline: none;
  border-color: var(--green);
}
.booking-form textarea{ resize: vertical; }

/* ---------- Price table ---------- */
.price-table{
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.price-row{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-row:last-child{ border-bottom: none; }
.price-row.price-head{
  background: var(--charcoal-2);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-lite);
}
.price-row span:not(:first-child){ color: var(--paper-dim); }
.price-row.price-head span{ color: var(--green-lite); }
@media (max-width: 900px){
  nav.primary-nav{ display:none; }
  .service-row{ grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse .service-media{ order: 0; }
  .process{ grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: 1fr 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px){
  .process{ grid-template-columns: 1fr; }
  .gallery-strip{ grid-template-columns: 1fr; }
  .hero{ min-height: 92vh; }
}
