/* ============================================================
   CRYSTAL CLEANING — design tokens
   Signature: a "cut facet" corner (inspired by a cut gemstone)
   used consistently on cards, images, buttons and dividers.
   ============================================================ */

:root {
  /* colour */
  --bg:        #F4FAFB;
  --bg-alt:    #E7F2F3;
  --surface:   #FFFFFF;
  --ink:       #0E262C;
  --ink-soft:  #4C6A70;
  --teal:      #0E7C86;
  --teal-deep: #0A4A52;
  --teal-dark: #082F35;
  --aqua:      #8FEDE0;
  --gold:      #E7B75F;
  --gold-deep: #C9963E;
  --line:      rgba(14, 38, 44, 0.10);

  /* type */
  --f-display: "Space Grotesk", "Manrope", sans-serif;
  --f-body:    "Inter", sans-serif;
  --f-label:   "Space Grotesk", monospace;

  /* facet cut size */
  --cut: 22px;
  --cut-sm: 12px;

  /* motion */
  --ease: cubic-bezier(.22,.68,0,1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--teal-dark);
  margin: 0 0 0.5em;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-label);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex: none;
}

section { position: relative; }

/* ---------- facet cut utility (the signature shape) ---------- */
.facet {
  clip-path: polygon(
    var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut)
  );
}
.facet-sm {
  clip-path: polygon(
    var(--cut-sm) 0%, 100% 0%, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0% 100%, 0% var(--cut-sm)
  );
}
.facet-rev {
  clip-path: polygon(
    0% 0%, calc(100% - var(--cut)) 0%, 100% var(--cut), 100% 100%, var(--cut) 100%, 0% calc(100% - var(--cut))
  );
}

/* ---------- buttons ---------- */
.btn {
  --cut-btn: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--f-label);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  clip-path: polygon(var(--cut-btn) 0%, 100% 0%, 100% calc(100% - var(--cut-btn)), calc(100% - var(--cut-btn)) 100%, 0% 100%, 0% var(--cut-btn));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
}
.btn-primary:hover { background: #f0c471; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(231,183,95,.35); }

.btn-ghost {
  background: transparent;
  color: var(--surface);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-dark {
  background: var(--teal-dark);
  color: var(--surface);
}
.btn-dark:hover { background: var(--teal-deep); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 250, 251, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--teal-dark);
}
.logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex: none;
}
.logo span { color: var(--teal); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 22px; }
.header-phone {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { width: 16px; height: 16px; }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
  padding: 76px 0 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  max-width: 12.5ch;
}
.hero-copy .lede {
  font-size: 18px;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-family: var(--f-label);
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats div { display: flex; align-items: center; gap: 10px; }
.hero-stats svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.hero-stats span { font-size: 13.5px; font-weight: 500; color: var(--ink); max-width: 14ch; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/4.6;
}
.hero-visual .frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--teal-deep), var(--teal) 55%, var(--aqua));
  clip-path: polygon(38px 0%, 100% 0%, 100% calc(100% - 38px), calc(100% - 38px) 100%, 0% 100%, 0% 38px);
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: normal;
  opacity: .92;
}
.hero-visual .shard {
  position: absolute;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.hero-visual .shard-1 { width: 92px; height: 92px; top: -30px; right: 30px; opacity: .95; }
.hero-visual .shard-2 { width: 46px; height: 46px; bottom: 40px; left: -20px; background: var(--surface); opacity: .85; }
.hero-visual .badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(8, 47, 53, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 14px 18px;
  font-family: var(--f-label);
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10px);
}
.hero-visual .badge strong { display: block; font-size: 15px; color: var(--aqua); letter-spacing: 0; text-transform: none; font-family: var(--f-body); font-weight: 700; margin-top: 2px; }

/* trust strip */
.trust-strip {
  background: var(--teal-dark);
  margin-top: 70px;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-left: 1px solid rgba(255,255,255,.1);
  color: #E7F2F3;
  font-size: 14px;
  font-weight: 500;
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item svg { width: 22px; height: 22px; color: var(--aqua); flex: none; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 34px 28px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(10,74,82,.10);
  border-color: transparent;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 8px);
}
.service-icon svg { width: 26px; height: 26px; color: var(--teal); }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card .link {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.service-card:hover .link svg { transform: translateX(4px); }

/* ============================================================
   FEATURE (regular cleaning split)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.feature-img { position: relative; aspect-ratio: 3/3.6; }
.feature-img .frame {
  position: absolute; inset: 0;
  background: var(--bg-alt);
  overflow: hidden;
  clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 30px, 100% 100%, 30px 100%, 0% calc(100% - 30px));
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; margin: 0 0 32px; padding: 0; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.checklist li:first-child { padding-top: 0; }
.checklist svg { width: 18px; height: 18px; color: var(--teal); margin-top: 2px; flex: none; }

/* ============================================================
   EXTRAS
   ============================================================ */
.extras-scroller {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.extra-card {
  position: relative;
  aspect-ratio: 1/1.05;
  overflow: hidden;
  clip-path: polygon(16px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 16px);
}
.extra-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.extra-card:hover img { transform: scale(1.08); }
.extra-card .tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,47,53,0) 40%, rgba(8,47,53,.86) 100%);
}
.extra-card .label {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: #fff;
}
.extra-card .label h4 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.extra-card .label p { color: rgba(255,255,255,.75); font-size: 12.5px; margin: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--teal-dark);
  color: var(--surface);
}
.process .section-head h2, .process .eyebrow { color: var(--surface); }
.process .eyebrow { color: var(--aqua); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 26px 0 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px; right: -1px;
  width: 24px; height: 1px;
  background: rgba(255,255,255,.25);
  display: none;
}
.process-num {
  font-family: var(--f-label);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.process-step h3 { color: var(--surface); font-size: 18px; margin-bottom: 10px; }
.process-step p { color: rgba(231,242,243,.68); font-size: 14px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-item {
  background: var(--surface);
  padding: 34px 30px;
}
.why-item svg { width: 24px; height: 24px; color: var(--teal); margin-bottom: 16px; }
.why-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-item p { font-size: 14px; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 28px;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); }
.testimonial-card p { color: var(--ink); font-size: 15px; font-style: italic; }
.testimonial-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  background: var(--bg-alt);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 13px;
  clip-path: polygon(6px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 6px);
  flex: none;
}
.testimonial-who span { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.testimonial-who small { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 400; }
.testimonial-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 30px;
  font-family: var(--f-label);
  letter-spacing: .03em;
}

/* ============================================================
   QUOTE / CONTACT
   ============================================================ */
.quote {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--surface);
  overflow: hidden;
  position: relative;
}
.quote .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-copy .eyebrow { color: var(--aqua); }
.quote-copy h2 { color: var(--surface); font-size: clamp(28px, 3.4vw, 40px); max-width: 12ch; }
.quote-copy p { color: rgba(231,242,243,.78); max-width: 42ch; }
.quote-list { list-style: none; margin: 30px 0 0; padding: 0; }
.quote-list li {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0;
  font-size: 14.5px;
  color: rgba(231,242,243,.9);
}
.quote-list svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.quote-form {
  background: var(--surface);
  padding: 38px;
  clip-path: polygon(0% 0%, calc(100% - 26px) 0%, 100% 26px, 100% 100%, 26px 100%, 0% calc(100% - 26px));
}
.quote-form h3 { color: var(--teal-dark); font-size: 20px; margin-bottom: 4px; }
.quote-form .sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-status { font-size: 13px; margin-top: 12px; color: var(--teal-deep); display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-dark);
  color: rgba(231,242,243,.7);
  padding: 70px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--surface); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--aqua); }
.footer-brand p { font-size: 14px; max-width: 32ch; color: rgba(231,242,243,.6); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(6px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 6px);
  transition: background .3s, border-color .3s;
}
.footer-socials a:hover { background: rgba(255,255,255,.08); border-color: var(--aqua); }
.footer-socials svg { width: 16px; height: 16px; color: var(--surface); }

.footer-col h4 {
  color: var(--surface);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--f-label);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; font-size: 14px; }
.footer-col a:hover { color: var(--aqua); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(231,242,243,.6); }
.footer-bottom a:hover { color: var(--aqua); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .trust-strip .wrap, .why-grid, .testimonial-track, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-scroller { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature-img { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .quote .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle {
    display: flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--teal-dark);
    clip-path: polygon(6px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 6px);
    border: none; cursor: pointer;
  }
  .nav-toggle svg { width: 18px; height: 18px; color: #fff; }
  .wrap { padding: 0 20px; }
  .section { padding: 68px 0; }
  .trust-strip .wrap, .why-grid, .testimonial-track, .services-grid, .extras-scroller, .process-grid, .footer-top { grid-template-columns: 1fr; }
  .trust-item { border-left: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 20px; }
  .hero-stats { gap: 20px; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 60;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-family: var(--f-display); font-size: 24px; }
.mobile-menu-close {
  position: absolute; top: 26px; right: 26px;
  width: 40px; height: 40px;
  border: none; background: rgba(255,255,255,.08);
  clip-path: polygon(6px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-close svg { width: 18px; height: 18px; color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
